diff --git a/data/parser.js b/data/parser.js index 149ba1a2d..e7f85d0b2 100644 --- a/data/parser.js +++ b/data/parser.js @@ -2,11 +2,13 @@ import fs from 'fs/promises' import fg from 'fast-glob' import path from 'path' import StreamZip from 'node-stream-zip' +import XLSX from 'xlsx' import Counties from './parser/counties.js' import OverallTesting from './parser/overall/testing.js' import OverallCases from './parser/overall/cases.js' import OverallHospitalizations from './parser/overall/hospitalizations.js' import OverallDeaths from './parser/overall/deaths.js' +import OverallVaccinations from './parser/overall/vaccinations.js' import RiskAge from './parser/risk/age.js' import RiskHealthConditions from './parser/risk/health-conditions.js' @@ -14,7 +16,7 @@ import RiskHealthConditions from './parser/risk/health-conditions.js' import Summary from './parser/summary.js' async function main() { - const sources = await fg(['./data/raw/*.zip']) + const sources = await fg(['./data/raw/dph-daily-report/*.zip']) sources.sort() const zips = sources.map(source => ({ @@ -22,12 +24,19 @@ async function main() { zip: new StreamZip.async({ file: source }) })) + const vaccinations = await fg(['./data/raw/vaccinations/*.xlsx']) + const vaccinationSheets = vaccinations.map(source => ({ + date: path.basename(source, path.extname(source)), + xlsx: XLSX.readFile(source) + })) + const counties = await Counties(zips) await OverallTesting(zips) await OverallCases(zips, counties) await OverallHospitalizations(zips, counties) await OverallDeaths(zips, counties) + await OverallVaccinations(vaccinationSheets, counties) await RiskAge(zips) await RiskHealthConditions(zips) diff --git a/data/parser/overall/vaccinations.js b/data/parser/overall/vaccinations.js new file mode 100644 index 000000000..d36e44a83 --- /dev/null +++ b/data/parser/overall/vaccinations.js @@ -0,0 +1,95 @@ +import mkdirp from 'mkdirp' +import path from 'path' +import fsp from 'fs/promises' +import XLSX from 'xlsx' +import { getCounty } from '../../util.js' + +async function processByCounty({ date, xlsx }, countyInfo, output) { + output = { + directory: path.join(output.directory, 'by-county'), + file: county => `${county}.json` + } + + const rows = XLSX.utils.sheet_to_json(xlsx.Sheets.VAX_ADMIN_BY_DAY_COUNTY) + + const counties = rows.reduce((counties, row) => { + const county = getCounty(row.COUNTY_NAME) + const info = countyInfo[county] + if (!county) return counties + if (!counties[county]) counties[county] = [] + counties[county].push({ + report_date: row.ADMIN_DATE, + population: info.population, + vaccinations: row.VAXADMIN, + total_vaccinations: row.CUMVAXADMIN, + }) + return counties + }, {}) + + for (const county in counties) { + const data = { + segment: { county }, + headers: Object.keys(counties[county][0]), + rows: counties[county].map(row => Object.values(row)) + } + + await mkdirp(output.directory) + await fsp.writeFile(path.join(output.directory, output.file(county)), JSON.stringify(data)) + } +} + +async function processCombined({ date, xlsx }, countyInfo, output) { + output = { + directory: output.directory, + file: `combined.json` + } + + const rows = XLSX.utils.sheet_to_json(xlsx.Sheets.VAX_ADMIN_BY_DAY_COUNTY) + + const report_dates = new Set() + + const results = rows.map(row => { + const county = getCounty(row.COUNTY_NAME) + if (!county) return null + if (['GEORGIA'].includes(county)) return null + + const info = countyInfo[county] + report_dates.add(row['report_date']) + return { + county, + report_date: row.ADMIN_DATE, + population: info.population, + vaccinations: row.VAXADMIN, + total_vaccinations: row.CUMVAXADMIN, + } + }).filter(row => !!row) + + const data = { + segment: { report_date: Array.from(report_dates) }, + headers: Object.keys(results[0]), + rows: results.map(row => Object.values(row)) + } + + await mkdirp(output.directory) + await fsp.writeFile(path.join(output.directory, output.file), JSON.stringify(data)) +} + + +async function processSingleWorkbook (xlsx, countyInfo) { + const output = { + directory: `./public/data/overall/vaccinations/`, + } + + try { + await fsp.rm(output.directory, { recursive: true }) + } catch (e) {} + + await processByCounty(xlsx, countyInfo, output) + await processCombined(xlsx, countyInfo, output) +} + +function process (vaccinationSources, countyInfo) { + return processSingleWorkbook(vaccinationSources.at(-1), countyInfo) +} + +export default process diff --git a/data/parser/reddit/index.js b/data/parser/reddit/index.js new file mode 100644 index 000000000..7f854b7f0 --- /dev/null +++ b/data/parser/reddit/index.js @@ -0,0 +1,129 @@ + +import mkdirp from 'mkdirp' +import path from 'path' +import fsp from 'fs/promises' + +function normalize(data) { + return data.rows.map(row => { + const obj = {} + row.forEach((col, i) => { + obj[data.headers[i]] = col + }) + + return obj + }) +} + +function percentChange (current, prev) { + const change = current - prev + let percent = (change / Math.abs(prev)) * 100 + + if (isNaN(percent)) return 0 + + const sign = percent > 0 ? '+' : '-' + if (Math.abs(percent) === Infinity) percent = 100 + + return `${sign}${Math.abs(percent.toFixed(2)).toLocaleString()}` +} + +function replaceVariables (template, variables) { + Object.keys(variables).forEach(key => { + let value = variables[key] + if (typeof value === 'number') value = value.toLocaleString() + + template = template.split(`{${key}}`).join(value) + }) + + return template +} + + +async function readJSON(file) { + return JSON.parse(await fsp.readFile(file, 'utf-8')) +} + +async function process () { + const template = await fsp.readFile('./data/parser/reddit/template.md', 'utf-8') + + const data = { + tests: normalize(await readJSON('./public/data/overall/testing/by-county/-- All --.json')).reverse(), + cases: normalize(await readJSON('./public/data/overall/cases/by-county/-- All --.json')).reverse(), + hospitalizations: normalize(await readJSON('./public/data/overall/hospitalizations/by-county/-- All --.json')).reverse(), + deaths: normalize(await readJSON('./public/data/overall/deaths/by-county/-- All --.json')).reverse(), + vaccinations: normalize(await readJSON('./public/data/overall/vaccinations/by-county/-- All --.json')).reverse(), + } + + function formatRow(data, index) { + const prevData = { + tests: data.tests[index + 1], + cases: data.cases[index + 1], + hospitalizations: data.hospitalizations[index + 1], + deaths: data.deaths[index + 1], + vaccinations: data.vaccinations[index + 1], + } + + const currentData = { + tests: data.tests[index], + cases: data.cases[index], + hospitalizations: data.hospitalizations[index], + deaths: data.deaths[index], + vaccinations: data.vaccinations[index], + } + + currentData.hospitalizations.total_hospitalizations = data.hospitalizations.reduce((total, r) => { + return total + r.hospitalizations + }, 0) + + const date = new Date(`${currentData.tests.report_date} 23:59:59`) + + const date_short = `${`${(date.getMonth() + 1)}`.padStart(2, '0')}/${`${date.getDate()}`.padStart(2, '0')}` + + const computedData = { + date, + date_short, + date_long: date.toLocaleDateString('en-US', { year: 'numeric', month: 'long', day: 'numeric' }), + current_percent_positive: Math.round(currentData.tests.seven_day_percent_positive), + current_tests: currentData.tests.combined_performed_running_total.toLocaleString(), + current_cases: currentData.cases.total_cases.toLocaleString(), + current_hospitalizations: currentData.hospitalizations.total_hospitalizations.toLocaleString(), + current_deaths: currentData.deaths.total_deaths.toLocaleString(), + current_vaccinations: currentData.vaccinations.total_vaccinations.toLocaleString(), + current_tests_increase: (currentData.tests.combined_performed - prevData.tests.combined_performed).toLocaleString(), + current_cases_increase: currentData.cases.cases.toLocaleString(), + current_hospitalizations_increase: currentData.hospitalizations.hospitalizations.toLocaleString(), + current_deaths_increase: currentData.deaths.deaths.toLocaleString(), + current_vaccinations_increase: currentData.vaccinations.vaccinations.toLocaleString(), + current_tests_change_percent: percentChange(currentData.tests.combined_performed, prevData.tests.combined_performed), + current_cases_change_percent: percentChange(currentData.cases.cases, prevData.cases.cases), + current_hospitalizations_change_percent: percentChange(currentData.hospitalizations.hospitalizations, prevData.hospitalizations.hospitalizations), + current_deaths_change_percent: percentChange(currentData.deaths.deaths, prevData.deaths.deaths), + current_vaccinations_change_percent: percentChange(currentData.vaccinations.vaccinations, prevData.vaccinations.vaccinations), + } + + return computedData + } + + const results = [] + + for (let i = 0; i <= 30; i++) { + results.push(formatRow(data, i)) + } + + const variables = { + ...results.at(0), + table_rows: results.map(row => { + return `| ${[ + row.date_short, + `${row.current_percent_positive}%`, + `${row.current_cases_increase} [${row.current_cases_change_percent}%]`, + `${row.current_hospitalizations_increase} [${row.current_hospitalizations_change_percent}%]`, + `${row.current_deaths_increase} [${row.current_deaths_change_percent}%]`, + `${row.current_vaccinations_increase} [${row.current_vaccinations_change_percent}%]`, + ].join(' | ')} |` + }).join('\n') + } + + console.log(replaceVariables(template, variables)) +} + +process() diff --git a/data/parser/reddit/template.md b/data/parser/reddit/template.md new file mode 100644 index 000000000..17ad9e62c --- /dev/null +++ b/data/parser/reddit/template.md @@ -0,0 +1,54 @@ +**{date_long} Case + Vaccine Update** + +This post is an attempt to accurately represent a few helpful statistics provided by the Georgia Department of Public Health (DPH) at the time of posting. + +--------------------- + +Total Tests (PCR + Antigen): {current_tests} + +Tests Reported Today: {current_tests_increase} ({current_tests_change_percent}% day-over-day) + +7-Day Percent Positive: {current_percent_positive}% + +------------------- + +Total Confirmed Cases (PCR + Antigen): {current_cases} + +Cases Reported Today: {current_cases_increase} ({current_cases_change_percent}% day-over-day) + +--------------------- + +Total Hospitalizations: {current_hospitalizations} + +Hospitalized Today: {current_hospitalizations_increase} ({current_hospitalizations_change_percent}% day-over-day) + +--------------------- + +Total Deaths: {current_deaths} + +Deaths Reported Today: {current_deaths_increase} ({current_deaths_change_percent}% day-over-day) + +--------------------- + +Total Vaccine Doses Administered: {current_vaccinations} + +Vaccine Doses Reported Today: {current_vaccinations_increase} ({current_vaccinations_change_percent}% day-over-day) + +--------------------- + +**Each column below contains the following space-separated values:** + +Contents of New Cases, New Hospitalizations, New Deaths, and New Vaccine Doses columns: +- The day-over-day increase [The day-over-day change as a percent of the previous day] + +| Date | Test % Positive | New Cases | New Hospitalizations | New Deaths | New Vaccine Doses | +| ---- | --------------- | --------- | -------------------- | ---------- | ----------------- | +{table_rows} + +Final data for December 2021, with links to posts starting in March 2020 courtesy of /u/diemunkiesdie can be found here: https://www.reddit.com/r/Atlanta/comments/rpkf94/comment/hqq24ct/ + +--------------------- + +**Sourced from today's Georgia DPH COVID-19 Report and Vaccination Data:** +- https://dph.georgia.gov/covid-19-daily-status-report +- https://experience.arcgis.com/experience/3d8eea39f5c1443db1743a4cb8948a9c diff --git a/data/raw/2021-03-01.zip b/data/raw/dph-daily-report/2021-03-01.zip similarity index 100% rename from data/raw/2021-03-01.zip rename to data/raw/dph-daily-report/2021-03-01.zip diff --git a/data/raw/2021-12-27.zip b/data/raw/dph-daily-report/2021-12-27.zip similarity index 100% rename from data/raw/2021-12-27.zip rename to data/raw/dph-daily-report/2021-12-27.zip diff --git a/data/raw/2021-12-28.zip b/data/raw/dph-daily-report/2021-12-28.zip similarity index 100% rename from data/raw/2021-12-28.zip rename to data/raw/dph-daily-report/2021-12-28.zip diff --git a/data/raw/2021-12-29.zip b/data/raw/dph-daily-report/2021-12-29.zip similarity index 100% rename from data/raw/2021-12-29.zip rename to data/raw/dph-daily-report/2021-12-29.zip diff --git a/data/raw/2021-12-30.zip b/data/raw/dph-daily-report/2021-12-30.zip similarity index 100% rename from data/raw/2021-12-30.zip rename to data/raw/dph-daily-report/2021-12-30.zip diff --git a/data/raw/2021-12-31.zip b/data/raw/dph-daily-report/2021-12-31.zip similarity index 100% rename from data/raw/2021-12-31.zip rename to data/raw/dph-daily-report/2021-12-31.zip diff --git a/data/raw/2022-01-04.zip b/data/raw/dph-daily-report/2022-01-04.zip similarity index 100% rename from data/raw/2022-01-04.zip rename to data/raw/dph-daily-report/2022-01-04.zip diff --git a/data/raw/vaccinations/2022-01-04.xlsx b/data/raw/vaccinations/2022-01-04.xlsx new file mode 100644 index 000000000..48a1efda2 Binary files /dev/null and b/data/raw/vaccinations/2022-01-04.xlsx differ diff --git a/data/util.js b/data/util.js index 5ee98b0f2..a5034fb9b 100644 --- a/data/util.js +++ b/data/util.js @@ -1,5 +1,6 @@ export function getCounty (county) { - if (county === 'Georgia') return '-- All --' + if (!county) return county + if (county.toLowerCase() === 'georgia') return '-- All --' if (county === 'Non-GA Resident/Unknown State') return '-- Unknown --' - return county + return county.split('County').join('').split('county').join('').trim() } diff --git a/package-lock.json b/package-lock.json index 8612b5d98..f07d6aea2 100644 --- a/package-lock.json +++ b/package-lock.json @@ -11,7 +11,8 @@ "dependencies": { "jscharting": "^3.2.2", "mkdirp": "^1.0.4", - "papaparse": "^5.3.1" + "papaparse": "^5.3.1", + "xlsx": "^0.17.4" }, "devDependencies": { "@iconify-json/healthicons": "^1.0.3", @@ -843,6 +844,21 @@ "node": ">=0.4.0" } }, + "node_modules/adler-32": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/adler-32/-/adler-32-1.2.0.tgz", + "integrity": "sha1-aj5r8KY5ALoVZSgIyxXGgT0aXyU=", + "dependencies": { + "exit-on-epipe": "~1.0.1", + "printj": "~1.1.0" + }, + "bin": { + "adler32": "bin/adler32.njs" + }, + "engines": { + "node": ">=0.8" + } + }, "node_modules/ansi-styles": { "version": "4.3.0", "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", @@ -1140,6 +1156,52 @@ "url": "https://github.com/sponsors/wooorm" } }, + "node_modules/cfb": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/cfb/-/cfb-1.2.1.tgz", + "integrity": "sha512-wT2ScPAFGSVy7CY+aauMezZBnNrfnaLSrxHUHdea+Td/86vrk6ZquggV+ssBR88zNs0OnBkL2+lf9q0K+zVGzQ==", + "dependencies": { + "adler-32": "~1.3.0", + "crc-32": "~1.2.0", + "printj": "~1.3.0" + }, + "engines": { + "node": ">=0.8" + } + }, + "node_modules/cfb/node_modules/adler-32": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/adler-32/-/adler-32-1.3.0.tgz", + "integrity": "sha512-f5nltvjl+PRUh6YNfUstRaXwJxtfnKEWhAWWlmKvh+Y3J2+98a0KKVYDEhz6NdKGqswLhjNGznxfSsZGOvOd9g==", + "dependencies": { + "printj": "~1.2.2" + }, + "engines": { + "node": ">=0.8" + } + }, + "node_modules/cfb/node_modules/adler-32/node_modules/printj": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/printj/-/printj-1.2.3.tgz", + "integrity": "sha512-sanczS6xOJOg7IKDvi4sGOUOe7c1tsEzjwlLFH/zgwx/uyImVM9/rgBkc8AfiQa/Vg54nRd8mkm9yI7WV/O+WA==", + "bin": { + "printj": "bin/printj.njs" + }, + "engines": { + "node": ">=0.8" + } + }, + "node_modules/cfb/node_modules/printj": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/printj/-/printj-1.3.0.tgz", + "integrity": "sha512-017o8YIaz8gLhaNxRB9eBv2mWXI2CtzhPJALnQTP+OPpuUfP0RMWqr/mHCzqVeu1AQxfzSfAtAq66vKB8y7Lzg==", + "bin": { + "printj": "bin/printj.njs" + }, + "engines": { + "node": ">=0.8" + } + }, "node_modules/chalk": { "version": "4.1.2", "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", @@ -1235,6 +1297,14 @@ "mimic-response": "^1.0.0" } }, + "node_modules/codepage": { + "version": "1.15.0", + "resolved": "https://registry.npmjs.org/codepage/-/codepage-1.15.0.tgz", + "integrity": "sha512-3g6NUTPd/YtuuGrhMnOMRjFc+LJw/bnMp3+0r/Wcz3IXUuCosKRJvMphm5+Q+bvTVGcJJuRvVLuYba+WojaFaA==", + "engines": { + "node": ">=0.8" + } + }, "node_modules/color-convert": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", @@ -1295,6 +1365,21 @@ "node": ">=10" } }, + "node_modules/crc-32": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/crc-32/-/crc-32-1.2.0.tgz", + "integrity": "sha512-1uBwHxF+Y/4yF5G48fwnKq6QsIXheor3ZLPT80yGBV1oEUwpPojlEhQbWKVw1VwcTQyMGHK1/XMmTjmlsmTTGA==", + "dependencies": { + "exit-on-epipe": "~1.0.1", + "printj": "~1.1.0" + }, + "bin": { + "crc32": "bin/crc32.njs" + }, + "engines": { + "node": ">=0.8" + } + }, "node_modules/cross-spawn": { "version": "7.0.3", "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", @@ -2059,6 +2144,14 @@ "url": "https://github.com/sindresorhus/execa?sponsor=1" } }, + "node_modules/exit-on-epipe": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/exit-on-epipe/-/exit-on-epipe-1.0.1.tgz", + "integrity": "sha512-h2z5mrROTxce56S+pnvAV890uu7ls7f1kEvVGJbw1OlFH3/mlJ5bkXu0KRyW94v37zzHPiUd55iLn3DA7TjWpw==", + "engines": { + "node": ">=0.8" + } + }, "node_modules/extend": { "version": "3.0.2", "resolved": "https://registry.npmjs.org/extend/-/extend-3.0.2.tgz", @@ -2165,6 +2258,14 @@ "node": ">=0.4.x" } }, + "node_modules/frac": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/frac/-/frac-1.1.2.tgz", + "integrity": "sha512-w/XBfkibaTl3YDqASwfDUqkna4Z2p9cFSr1aHDt0WoMTECnRfBOv2WArlZILlqgWlmdIlALXGpM2AOhEk5W3IA==", + "engines": { + "node": ">=0.8" + } + }, "node_modules/fraction.js": { "version": "4.1.2", "resolved": "https://registry.npmjs.org/fraction.js/-/fraction.js-4.1.2.tgz", @@ -4684,6 +4785,17 @@ "integrity": "sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==", "dev": true }, + "node_modules/printj": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/printj/-/printj-1.1.2.tgz", + "integrity": "sha512-zA2SmoLaxZyArQTOPj5LXecR+RagfPSU5Kw1qP+jkWeNlrq+eJZyY2oS68SU1Z/7/myXM4lo9716laOFAVStCQ==", + "bin": { + "printj": "bin/printj.njs" + }, + "engines": { + "node": ">=0.8" + } + }, "node_modules/promise": { "version": "7.3.1", "resolved": "https://registry.npmjs.org/promise/-/promise-7.3.1.tgz", @@ -5171,6 +5283,17 @@ "integrity": "sha1-BOaSb2YolTVPPdAVIDYzuFcpfiw=", "dev": true }, + "node_modules/ssf": { + "version": "0.11.2", + "resolved": "https://registry.npmjs.org/ssf/-/ssf-0.11.2.tgz", + "integrity": "sha512-+idbmIXoYET47hH+d7dfm2epdOMUDjqcB4648sTZ+t2JwoyBFL/insLfB/racrDmsKB3diwsDA696pZMieAC5g==", + "dependencies": { + "frac": "~1.1.2" + }, + "engines": { + "node": ">=0.8" + } + }, "node_modules/string.prototype.trimend": { "version": "1.0.4", "resolved": "https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.4.tgz", @@ -5979,6 +6102,22 @@ "node": ">= 10.0.0" } }, + "node_modules/wmf": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/wmf/-/wmf-1.0.2.tgz", + "integrity": "sha512-/p9K7bEh0Dj6WbXg4JG0xvLQmIadrner1bi45VMJTfnbVHsc7yIajZyoSoK60/dtVBs12Fm6WkUI5/3WAVsNMw==", + "engines": { + "node": ">=0.8" + } + }, + "node_modules/word": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/word/-/word-0.3.0.tgz", + "integrity": "sha512-OELeY0Q61OXpdUfTp+oweA/vtLVg5VDOXh+3he3PNzLGG/y0oylSOC1xRVj0+l4vQ3tj/bB1HVHv1ocXkQceFA==", + "engines": { + "node": ">=0.8" + } + }, "node_modules/wrappy": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", @@ -6021,6 +6160,26 @@ "deasync": "^0.1.0" } }, + "node_modules/xlsx": { + "version": "0.17.4", + "resolved": "https://registry.npmjs.org/xlsx/-/xlsx-0.17.4.tgz", + "integrity": "sha512-9aKt8g9ZLP0CUdBX8L5xnoMDFwSiLI997eQnDThCaqQMYB9AEBIRzblSSNN/ICMGLYIHUO3VKaItcedZJ3ijIg==", + "dependencies": { + "adler-32": "~1.2.0", + "cfb": "^1.1.4", + "codepage": "~1.15.0", + "crc-32": "~1.2.0", + "ssf": "~0.11.2", + "wmf": "~1.0.1", + "word": "~0.3.0" + }, + "bin": { + "xlsx": "bin/xlsx.njs" + }, + "engines": { + "node": ">=0.8" + } + }, "node_modules/xtend": { "version": "4.0.2", "resolved": "https://registry.npmjs.org/xtend/-/xtend-4.0.2.tgz", @@ -6790,6 +6949,15 @@ "integrity": "sha512-OPdCF6GsMIP+Az+aWfAAOEt2/+iVDKE7oy6lJ098aoe59oAmK76qV6Gw60SbZ8jHuG2wH058GF4pLFbYamYrVA==", "dev": true }, + "adler-32": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/adler-32/-/adler-32-1.2.0.tgz", + "integrity": "sha1-aj5r8KY5ALoVZSgIyxXGgT0aXyU=", + "requires": { + "exit-on-epipe": "~1.0.1", + "printj": "~1.1.0" + } + }, "ansi-styles": { "version": "4.3.0", "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", @@ -7006,6 +7174,38 @@ "integrity": "sha512-eyrF0jiFpY+3drT6383f1qhkbGsLSifNAjA61IUjZjmLCWjItY6LB9ft9YhoDgwfmclB2zhu51Lc7+95b8NRAg==", "dev": true }, + "cfb": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/cfb/-/cfb-1.2.1.tgz", + "integrity": "sha512-wT2ScPAFGSVy7CY+aauMezZBnNrfnaLSrxHUHdea+Td/86vrk6ZquggV+ssBR88zNs0OnBkL2+lf9q0K+zVGzQ==", + "requires": { + "adler-32": "~1.3.0", + "crc-32": "~1.2.0", + "printj": "~1.3.0" + }, + "dependencies": { + "adler-32": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/adler-32/-/adler-32-1.3.0.tgz", + "integrity": "sha512-f5nltvjl+PRUh6YNfUstRaXwJxtfnKEWhAWWlmKvh+Y3J2+98a0KKVYDEhz6NdKGqswLhjNGznxfSsZGOvOd9g==", + "requires": { + "printj": "~1.2.2" + }, + "dependencies": { + "printj": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/printj/-/printj-1.2.3.tgz", + "integrity": "sha512-sanczS6xOJOg7IKDvi4sGOUOe7c1tsEzjwlLFH/zgwx/uyImVM9/rgBkc8AfiQa/Vg54nRd8mkm9yI7WV/O+WA==" + } + } + }, + "printj": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/printj/-/printj-1.3.0.tgz", + "integrity": "sha512-017o8YIaz8gLhaNxRB9eBv2mWXI2CtzhPJALnQTP+OPpuUfP0RMWqr/mHCzqVeu1AQxfzSfAtAq66vKB8y7Lzg==" + } + } + }, "chalk": { "version": "4.1.2", "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", @@ -7074,6 +7274,11 @@ "mimic-response": "^1.0.0" } }, + "codepage": { + "version": "1.15.0", + "resolved": "https://registry.npmjs.org/codepage/-/codepage-1.15.0.tgz", + "integrity": "sha512-3g6NUTPd/YtuuGrhMnOMRjFc+LJw/bnMp3+0r/Wcz3IXUuCosKRJvMphm5+Q+bvTVGcJJuRvVLuYba+WojaFaA==" + }, "color-convert": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", @@ -7124,6 +7329,15 @@ "yaml": "^1.10.0" } }, + "crc-32": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/crc-32/-/crc-32-1.2.0.tgz", + "integrity": "sha512-1uBwHxF+Y/4yF5G48fwnKq6QsIXheor3ZLPT80yGBV1oEUwpPojlEhQbWKVw1VwcTQyMGHK1/XMmTjmlsmTTGA==", + "requires": { + "exit-on-epipe": "~1.0.1", + "printj": "~1.1.0" + } + }, "cross-spawn": { "version": "7.0.3", "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", @@ -7653,6 +7867,11 @@ "strip-final-newline": "^2.0.0" } }, + "exit-on-epipe": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/exit-on-epipe/-/exit-on-epipe-1.0.1.tgz", + "integrity": "sha512-h2z5mrROTxce56S+pnvAV890uu7ls7f1kEvVGJbw1OlFH3/mlJ5bkXu0KRyW94v37zzHPiUd55iLn3DA7TjWpw==" + }, "extend": { "version": "3.0.2", "resolved": "https://registry.npmjs.org/extend/-/extend-3.0.2.tgz", @@ -7737,6 +7956,11 @@ "integrity": "sha1-1hcBB+nv3E7TDJ3DkBbflCtctYs=", "dev": true }, + "frac": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/frac/-/frac-1.1.2.tgz", + "integrity": "sha512-w/XBfkibaTl3YDqASwfDUqkna4Z2p9cFSr1aHDt0WoMTECnRfBOv2WArlZILlqgWlmdIlALXGpM2AOhEk5W3IA==" + }, "fraction.js": { "version": "4.1.2", "resolved": "https://registry.npmjs.org/fraction.js/-/fraction.js-4.1.2.tgz", @@ -9470,6 +9694,11 @@ "integrity": "sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==", "dev": true }, + "printj": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/printj/-/printj-1.1.2.tgz", + "integrity": "sha512-zA2SmoLaxZyArQTOPj5LXecR+RagfPSU5Kw1qP+jkWeNlrq+eJZyY2oS68SU1Z/7/myXM4lo9716laOFAVStCQ==" + }, "promise": { "version": "7.3.1", "resolved": "https://registry.npmjs.org/promise/-/promise-7.3.1.tgz", @@ -9845,6 +10074,14 @@ "integrity": "sha1-BOaSb2YolTVPPdAVIDYzuFcpfiw=", "dev": true }, + "ssf": { + "version": "0.11.2", + "resolved": "https://registry.npmjs.org/ssf/-/ssf-0.11.2.tgz", + "integrity": "sha512-+idbmIXoYET47hH+d7dfm2epdOMUDjqcB4648sTZ+t2JwoyBFL/insLfB/racrDmsKB3diwsDA696pZMieAC5g==", + "requires": { + "frac": "~1.1.2" + } + }, "string.prototype.trimend": { "version": "1.0.4", "resolved": "https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.4.tgz", @@ -10440,6 +10677,16 @@ "babel-walk": "3.0.0-canary-5" } }, + "wmf": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/wmf/-/wmf-1.0.2.tgz", + "integrity": "sha512-/p9K7bEh0Dj6WbXg4JG0xvLQmIadrner1bi45VMJTfnbVHsc7yIajZyoSoK60/dtVBs12Fm6WkUI5/3WAVsNMw==" + }, + "word": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/word/-/word-0.3.0.tgz", + "integrity": "sha512-OELeY0Q61OXpdUfTp+oweA/vtLVg5VDOXh+3he3PNzLGG/y0oylSOC1xRVj0+l4vQ3tj/bB1HVHv1ocXkQceFA==" + }, "wrappy": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", @@ -10476,6 +10723,20 @@ "vfile": "^5.0.0" } }, + "xlsx": { + "version": "0.17.4", + "resolved": "https://registry.npmjs.org/xlsx/-/xlsx-0.17.4.tgz", + "integrity": "sha512-9aKt8g9ZLP0CUdBX8L5xnoMDFwSiLI997eQnDThCaqQMYB9AEBIRzblSSNN/ICMGLYIHUO3VKaItcedZJ3ijIg==", + "requires": { + "adler-32": "~1.2.0", + "cfb": "^1.1.4", + "codepage": "~1.15.0", + "crc-32": "~1.2.0", + "ssf": "~0.11.2", + "wmf": "~1.0.1", + "word": "~0.3.0" + } + }, "xtend": { "version": "4.0.2", "resolved": "https://registry.npmjs.org/xtend/-/xtend-4.0.2.tgz", diff --git a/package.json b/package.json index f4d5eeb0d..f314738ef 100644 --- a/package.json +++ b/package.json @@ -31,6 +31,7 @@ "dependencies": { "jscharting": "^3.2.2", "mkdirp": "^1.0.4", - "papaparse": "^5.3.1" + "papaparse": "^5.3.1", + "xlsx": "^0.17.4" } } diff --git a/public/data/overall/vaccinations/by-county/-- All --.json b/public/data/overall/vaccinations/by-county/-- All --.json new file mode 100644 index 000000000..3b01bad94 --- /dev/null +++ b/public/data/overall/vaccinations/by-county/-- All --.json @@ -0,0 +1 @@ +{"segment":{"county":"-- All --"},"headers":["report_date","population","vaccinations","total_vaccinations"],"rows":[["2020-12-12",10833472,21,21],["2020-12-13",10833472,7,28],["2020-12-14",10833472,26,54],["2020-12-15",10833472,181,235],["2020-12-16",10833472,726,961],["2020-12-17",10833472,2385,3346],["2020-12-18",10833472,6425,9771],["2020-12-19",10833472,4203,13974],["2020-12-20",10833472,3252,17226],["2020-12-21",10833472,6317,23543],["2020-12-22",10833472,11250,34793],["2020-12-23",10833472,14620,49413],["2020-12-24",10833472,3811,53224],["2020-12-25",10833472,111,53335],["2020-12-26",10833472,1873,55208],["2020-12-27",10833472,1748,56956],["2020-12-28",10833472,15440,72396],["2020-12-29",10833472,16899,89295],["2020-12-30",10833472,16685,105980],["2020-12-31",10833472,8384,114364],["2021-01-01",10833472,4041,118405],["2021-01-02",10833472,2185,120590],["2021-01-03",10833472,2972,123562],["2021-01-04",10833472,15781,139343],["2021-01-05",10833472,17759,157102],["2021-01-06",10833472,19663,176765],["2021-01-07",10833472,20499,197264],["2021-01-08",10833472,22546,219810],["2021-01-09",10833472,10166,229976],["2021-01-10",10833472,6235,236211],["2021-01-11",10833472,34821,271032],["2021-01-12",10833472,40912,311944],["2021-01-13",10833472,48794,360738],["2021-01-14",10833472,49063,409801],["2021-01-15",10833472,43083,452884],["2021-01-16",10833472,22870,475754],["2021-01-17",10833472,9452,485206],["2021-01-18",10833472,44523,529729],["2021-01-19",10833472,51070,580799],["2021-01-20",10833472,56085,636884],["2021-01-21",10833472,50789,687673],["2021-01-22",10833472,42321,729994],["2021-01-23",10833472,14456,744450],["2021-01-24",10833472,7361,751811],["2021-01-25",10833472,43278,795089],["2021-01-26",10833472,43665,838754],["2021-01-27",10833472,49533,888287],["2021-01-28",10833472,53444,941731],["2021-01-29",10833472,47029,988760],["2021-01-30",10833472,14990,1003750],["2021-01-31",10833472,5732,1009482],["2021-02-01",10833472,43742,1053224],["2021-02-02",10833472,42167,1095391],["2021-02-03",10833472,46857,1142248],["2021-02-04",10833472,52259,1194507],["2021-02-05",10833472,44294,1238801],["2021-02-06",10833472,15927,1254728],["2021-02-07",10833472,5433,1260161],["2021-02-08",10833472,45388,1305549],["2021-02-09",10833472,52768,1358317],["2021-02-10",10833472,56577,1414894],["2021-02-11",10833472,57550,1472444],["2021-02-12",10833472,53633,1526077],["2021-02-13",10833472,28430,1554507],["2021-02-14",10833472,9549,1564056],["2021-02-15",10833472,53653,1617709],["2021-02-16",10833472,52891,1670600],["2021-02-17",10833472,62889,1733489],["2021-02-18",10833472,56895,1790384],["2021-02-19",10833472,49892,1840276],["2021-02-20",10833472,18582,1858858],["2021-02-21",10833472,5986,1864844],["2021-02-22",10833472,34369,1899213],["2021-02-23",10833472,47914,1947127],["2021-02-24",10833472,56498,2003625],["2021-02-25",10833472,70897,2074522],["2021-02-26",10833472,67309,2141831],["2021-02-27",10833472,20113,2161944],["2021-02-28",10833472,9031,2170975],["2021-03-01",10833472,54149,2225124],["2021-03-02",10833472,56586,2281710],["2021-03-03",10833472,61363,2343073],["2021-03-04",10833472,60349,2403422],["2021-03-05",10833472,58120,2461542],["2021-03-06",10833472,20511,2482053],["2021-03-07",10833472,10694,2492747],["2021-03-08",10833472,59432,2552179],["2021-03-09",10833472,65523,2617702],["2021-03-10",10833472,75019,2692721],["2021-03-11",10833472,75882,2768603],["2021-03-12",10833472,75252,2843855],["2021-03-13",10833472,33870,2877725],["2021-03-14",10833472,15192,2892917],["2021-03-15",10833472,72480,2965397],["2021-03-16",10833472,85714,3051111],["2021-03-17",10833472,91328,3142439],["2021-03-18",10833472,79715,3222154],["2021-03-19",10833472,88856,3311010],["2021-03-20",10833472,34554,3345564],["2021-03-21",10833472,17578,3363142],["2021-03-22",10833472,70838,3433980],["2021-03-23",10833472,83707,3517687],["2021-03-24",10833472,92263,3609950],["2021-03-25",10833472,105071,3715021],["2021-03-26",10833472,94705,3809726],["2021-03-27",10833472,43677,3853403],["2021-03-28",10833472,23319,3876722],["2021-03-29",10833472,86161,3962883],["2021-03-30",10833472,114736,4077619],["2021-03-31",10833472,119896,4197515],["2021-04-01",10833472,123281,4320796],["2021-04-02",10833472,90102,4410898],["2021-04-03",10833472,40028,4450926],["2021-04-04",10833472,19289,4470215],["2021-04-05",10833472,90754,4560969],["2021-04-06",10833472,113640,4674609],["2021-04-07",10833472,114491,4789100],["2021-04-08",10833472,106885,4895985],["2021-04-09",10833472,108442,5004427],["2021-04-10",10833472,54366,5058793],["2021-04-11",10833472,23336,5082129],["2021-04-12",10833472,96085,5178214],["2021-04-13",10833472,102447,5280661],["2021-04-14",10833472,108385,5389046],["2021-04-15",10833472,104136,5493182],["2021-04-16",10833472,98358,5591540],["2021-04-17",10833472,40809,5632349],["2021-04-18",10833472,28636,5660985],["2021-04-19",10833472,84050,5745035],["2021-04-20",10833472,98490,5843525],["2021-04-21",10833472,100202,5943727],["2021-04-22",10833472,98022,6041749],["2021-04-23",10833472,95436,6137185],["2021-04-24",10833472,41001,6178186],["2021-04-25",10833472,18198,6196384],["2021-04-26",10833472,71251,6267635],["2021-04-27",10833472,79324,6346959],["2021-04-28",10833472,92082,6439041],["2021-04-29",10833472,82628,6521669],["2021-04-30",10833472,86784,6608453],["2021-05-01",10833472,48332,6656785],["2021-05-02",10833472,16112,6672897],["2021-05-03",10833472,51325,6724222],["2021-05-04",10833472,64803,6789025],["2021-05-05",10833472,65848,6854873],["2021-05-06",10833472,59013,6913886],["2021-05-07",10833472,62610,6976496],["2021-05-08",10833472,28213,7004709],["2021-05-09",10833472,10897,7015606],["2021-05-10",10833472,37694,7053300],["2021-05-11",10833472,49465,7102765],["2021-05-12",10833472,47481,7150246],["2021-05-13",10833472,48696,7198942],["2021-05-14",10833472,52508,7251450],["2021-05-15",10833472,35795,7287245],["2021-05-16",10833472,19565,7306810],["2021-05-17",10833472,42761,7349571],["2021-05-18",10833472,48891,7398462],["2021-05-19",10833472,49795,7448257],["2021-05-20",10833472,44426,7492683],["2021-05-21",10833472,45506,7538189],["2021-05-22",10833472,29421,7567610],["2021-05-23",10833472,14380,7581990],["2021-05-24",10833472,27869,7609859],["2021-05-25",10833472,33775,7643634],["2021-05-26",10833472,35184,7678818],["2021-05-27",10833472,31555,7710373],["2021-05-28",10833472,30984,7741357],["2021-05-29",10833472,16350,7757707],["2021-05-30",10833472,10220,7767927],["2021-05-31",10833472,4657,7772584],["2021-06-01",10833472,36105,7808689],["2021-06-02",10833472,32524,7841213],["2021-06-03",10833472,32503,7873716],["2021-06-04",10833472,35570,7909286],["2021-06-05",10833472,25161,7934447],["2021-06-06",10833472,15424,7949871],["2021-06-07",10833472,28586,7978457],["2021-06-08",10833472,29657,8008114],["2021-06-09",10833472,27896,8036010],["2021-06-10",10833472,28901,8064911],["2021-06-11",10833472,30672,8095583],["2021-06-12",10833472,22107,8117690],["2021-06-13",10833472,10007,8127697],["2021-06-14",10833472,22745,8150442],["2021-06-15",10833472,24443,8174885],["2021-06-16",10833472,23135,8198020],["2021-06-17",10833472,22708,8220728],["2021-06-18",10833472,24350,8245078],["2021-06-19",10833472,14563,8259641],["2021-06-20",10833472,8297,8267938],["2021-06-21",10833472,14815,8282753],["2021-06-22",10833472,20818,8303571],["2021-06-23",10833472,20986,8324557],["2021-06-24",10833472,18647,8343204],["2021-06-25",10833472,21103,8364307],["2021-06-26",10833472,14507,8378814],["2021-06-27",10833472,8871,8387685],["2021-06-28",10833472,15865,8403550],["2021-06-29",10833472,17463,8421013],["2021-06-30",10833472,17342,8438355],["2021-07-01",10833472,16732,8455087],["2021-07-02",10833472,17423,8472510],["2021-07-03",10833472,11824,8484334],["2021-07-04",10833472,1199,8485533],["2021-07-05",10833472,12214,8497747],["2021-07-06",10833472,15491,8513238],["2021-07-07",10833472,15949,8529187],["2021-07-08",10833472,15472,8544659],["2021-07-09",10833472,17726,8562385],["2021-07-10",10833472,11942,8574327],["2021-07-11",10833472,7409,8581736],["2021-07-12",10833472,14573,8596309],["2021-07-13",10833472,15134,8611443],["2021-07-14",10833472,15533,8626976],["2021-07-15",10833472,15836,8642812],["2021-07-16",10833472,17915,8660727],["2021-07-17",10833472,12554,8673281],["2021-07-18",10833472,8226,8681507],["2021-07-19",10833472,17509,8699016],["2021-07-20",10833472,18361,8717377],["2021-07-21",10833472,20220,8737597],["2021-07-22",10833472,20571,8758168],["2021-07-23",10833472,24330,8782498],["2021-07-24",10833472,17900,8800398],["2021-07-25",10833472,9586,8809984],["2021-07-26",10833472,21605,8831589],["2021-07-27",10833472,23901,8855490],["2021-07-28",10833472,25570,8881060],["2021-07-29",10833472,25310,8906370],["2021-07-30",10833472,29492,8935862],["2021-07-31",10833472,19664,8955526],["2021-08-01",10833472,14118,8969644],["2021-08-02",10833472,24995,8994639],["2021-08-03",10833472,26120,9020759],["2021-08-04",10833472,27235,9047994],["2021-08-05",10833472,26808,9074802],["2021-08-06",10833472,32576,9107378],["2021-08-07",10833472,22654,9130032],["2021-08-08",10833472,15885,9145917],["2021-08-09",10833472,27373,9173290],["2021-08-10",10833472,30315,9203605],["2021-08-11",10833472,28860,9232465],["2021-08-12",10833472,30385,9262850],["2021-08-13",10833472,36771,9299621],["2021-08-14",10833472,26016,9325637],["2021-08-15",10833472,16391,9342028],["2021-08-16",10833472,31806,9373834],["2021-08-17",10833472,34315,9408149],["2021-08-18",10833472,36012,9444161],["2021-08-19",10833472,35772,9479933],["2021-08-20",10833472,42829,9522762],["2021-08-21",10833472,28229,9550991],["2021-08-22",10833472,17050,9568041],["2021-08-23",10833472,33991,9602032],["2021-08-24",10833472,35336,9637368],["2021-08-25",10833472,36695,9674063],["2021-08-26",10833472,38538,9712601],["2021-08-27",10833472,43605,9756206],["2021-08-28",10833472,30834,9787040],["2021-08-29",10833472,18561,9805601],["2021-08-30",10833472,35641,9841242],["2021-08-31",10833472,35442,9876684],["2021-09-01",10833472,36947,9913631],["2021-09-02",10833472,35976,9949607],["2021-09-03",10833472,42820,9992427],["2021-09-04",10833472,23576,10016003],["2021-09-05",10833472,16406,10032409],["2021-09-06",10833472,6102,10038511],["2021-09-07",10833472,35922,10074433],["2021-09-08",10833472,34001,10108434],["2021-09-09",10833472,35041,10143475],["2021-09-10",10833472,41452,10184927],["2021-09-11",10833472,24634,10209561],["2021-09-12",10833472,15932,10225493],["2021-09-13",10833472,30926,10256419],["2021-09-14",10833472,30363,10286782],["2021-09-15",10833472,29059,10315841],["2021-09-16",10833472,29237,10345078],["2021-09-17",10833472,35067,10380145],["2021-09-18",10833472,21768,10401913],["2021-09-19",10833472,13286,10415199],["2021-09-20",10833472,26350,10441549],["2021-09-21",10833472,25303,10466852],["2021-09-22",10833472,24767,10491619],["2021-09-23",10833472,24046,10515665],["2021-09-24",10833472,31702,10547367],["2021-09-25",10833472,19621,10566988],["2021-09-26",10833472,13243,10580231],["2021-09-27",10833472,28045,10608276],["2021-09-28",10833472,32208,10640484],["2021-09-29",10833472,30643,10671127],["2021-09-30",10833472,32315,10703442],["2021-10-01",10833472,37412,10740854],["2021-10-02",10833472,19524,10760378],["2021-10-03",10833472,11295,10771673],["2021-10-04",10833472,25764,10797437],["2021-10-05",10833472,27945,10825382],["2021-10-06",10833472,26537,10851919],["2021-10-07",10833472,26145,10878064],["2021-10-08",10833472,30427,10908491],["2021-10-09",10833472,15570,10924061],["2021-10-10",10833472,10343,10934404],["2021-10-11",10833472,20450,10954854],["2021-10-12",10833472,22783,10977637],["2021-10-13",10833472,21717,10999354],["2021-10-14",10833472,22258,11021612],["2021-10-15",10833472,25762,11047374],["2021-10-16",10833472,13745,11061119],["2021-10-17",10833472,8008,11069127],["2021-10-18",10833472,20825,11089952],["2021-10-19",10833472,19574,11109526],["2021-10-20",10833472,19241,11128767],["2021-10-21",10833472,20469,11149236],["2021-10-22",10833472,33086,11182322],["2021-10-23",10833472,23267,11205589],["2021-10-24",10833472,13503,11219092],["2021-10-25",10833472,38296,11257388],["2021-10-26",10833472,38480,11295868],["2021-10-27",10833472,42094,11337962],["2021-10-28",10833472,38433,11376395],["2021-10-29",10833472,43175,11419570],["2021-10-30",10833472,19849,11439419],["2021-10-31",10833472,11196,11450615],["2021-11-01",10833472,35779,11486394],["2021-11-02",10833472,36489,11522883],["2021-11-03",10833472,37744,11560627],["2021-11-04",10833472,36345,11596972],["2021-11-05",10833472,42328,11639300],["2021-11-06",10833472,24260,11663560],["2021-11-07",10833472,14307,11677867],["2021-11-08",10833472,33126,11710993],["2021-11-09",10833472,36772,11747765],["2021-11-10",10833472,36283,11784048],["2021-11-11",10833472,32486,11816534],["2021-11-12",10833472,42482,11859016],["2021-11-13",10833472,25778,11884794],["2021-11-14",10833472,12835,11897629],["2021-11-15",10833472,34721,11932350],["2021-11-16",10833472,36680,11969030],["2021-11-17",10833472,35786,12004816],["2021-11-18",10833472,37220,12042036],["2021-11-19",10833472,44351,12086387],["2021-11-20",10833472,27396,12113783],["2021-11-21",10833472,16221,12130004],["2021-11-22",10833472,41227,12171231],["2021-11-23",10833472,39381,12210612],["2021-11-24",10833472,28237,12238849],["2021-11-25",10833472,156,12239005],["2021-11-26",10833472,29981,12268986],["2021-11-27",10833472,21830,12290816],["2021-11-28",10833472,15724,12306540],["2021-11-29",10833472,40512,12347052],["2021-11-30",10833472,46612,12393664],["2021-12-01",10833472,50629,12444293],["2021-12-02",10833472,51056,12495349],["2021-12-03",10833472,57880,12553229],["2021-12-04",10833472,35664,12588893],["2021-12-05",10833472,16817,12605710],["2021-12-06",10833472,40619,12646329],["2021-12-07",10833472,42451,12688780],["2021-12-08",10833472,40626,12729406],["2021-12-09",10833472,41192,12770598],["2021-12-10",10833472,47060,12817658],["2021-12-11",10833472,26966,12844624],["2021-12-12",10833472,15805,12860429],["2021-12-13",10833472,33299,12893728],["2021-12-14",10833472,35213,12928941],["2021-12-15",10833472,33999,12962940],["2021-12-16",10833472,33896,12996836],["2021-12-17",10833472,40526,13037362],["2021-12-18",10833472,25988,13063350],["2021-12-19",10833472,16008,13079358],["2021-12-20",10833472,41442,13120800],["2021-12-21",10833472,44186,13164986],["2021-12-22",10833472,42135,13207121],["2021-12-23",10833472,33090,13240211],["2021-12-24",10833472,11040,13251251],["2021-12-25",10833472,61,13251312],["2021-12-26",10833472,11875,13263187],["2021-12-27",10833472,36052,13299239],["2021-12-28",10833472,39631,13338870],["2021-12-29",10833472,39595,13378465],["2021-12-30",10833472,33306,13411771],["2021-12-31",10833472,17230,13429001],["2022-01-01",10833472,2841,13431842],["2022-01-02",10833472,10294,13442136],["2022-01-03",10833472,11410,13453546],["2022-01-04",10833472,6454,13460000]]} \ No newline at end of file diff --git a/public/data/overall/vaccinations/by-county/Appling.json b/public/data/overall/vaccinations/by-county/Appling.json new file mode 100644 index 000000000..ca1142118 --- /dev/null +++ b/public/data/overall/vaccinations/by-county/Appling.json @@ -0,0 +1 @@ +{"segment":{"county":"Appling"},"headers":["report_date","population","vaccinations","total_vaccinations"],"rows":[["2020-12-16",18561,1,1],["2020-12-18",18561,2,3],["2020-12-21",18561,3,6],["2020-12-22",18561,3,9],["2020-12-23",18561,9,18],["2020-12-24",18561,11,29],["2020-12-26",18561,2,31],["2020-12-28",18561,11,42],["2020-12-29",18561,13,55],["2020-12-30",18561,15,70],["2020-12-31",18561,3,73],["2021-01-01",18561,2,75],["2021-01-02",18561,1,76],["2021-01-03",18561,1,77],["2021-01-04",18561,8,85],["2021-01-05",18561,15,100],["2021-01-06",18561,24,124],["2021-01-07",18561,9,133],["2021-01-08",18561,20,153],["2021-01-09",18561,2,155],["2021-01-10",18561,44,199],["2021-01-11",18561,80,279],["2021-01-12",18561,42,321],["2021-01-13",18561,143,464],["2021-01-14",18561,69,533],["2021-01-15",18561,55,588],["2021-01-16",18561,5,593],["2021-01-17",18561,2,595],["2021-01-18",18561,99,694],["2021-01-19",18561,59,753],["2021-01-20",18561,107,860],["2021-01-21",18561,57,917],["2021-01-22",18561,50,967],["2021-01-23",18561,28,995],["2021-01-24",18561,3,998],["2021-01-25",18561,82,1080],["2021-01-26",18561,25,1105],["2021-01-27",18561,89,1194],["2021-01-28",18561,17,1211],["2021-01-29",18561,8,1219],["2021-01-30",18561,4,1223],["2021-01-31",18561,43,1266],["2021-02-01",18561,87,1353],["2021-02-02",18561,85,1438],["2021-02-03",18561,92,1530],["2021-02-04",18561,29,1559],["2021-02-05",18561,29,1588],["2021-02-06",18561,23,1611],["2021-02-07",18561,1,1612],["2021-02-08",18561,127,1739],["2021-02-09",18561,83,1822],["2021-02-10",18561,188,2010],["2021-02-11",18561,87,2097],["2021-02-12",18561,64,2161],["2021-02-13",18561,8,2169],["2021-02-14",18561,6,2175],["2021-02-15",18561,189,2364],["2021-02-16",18561,81,2445],["2021-02-17",18561,118,2563],["2021-02-18",18561,27,2590],["2021-02-19",18561,16,2606],["2021-02-20",18561,50,2656],["2021-02-22",18561,105,2761],["2021-02-23",18561,57,2818],["2021-02-24",18561,84,2902],["2021-02-25",18561,55,2957],["2021-02-26",18561,50,3007],["2021-02-27",18561,4,3011],["2021-02-28",18561,2,3013],["2021-03-01",18561,109,3122],["2021-03-02",18561,115,3237],["2021-03-03",18561,138,3375],["2021-03-04",18561,36,3411],["2021-03-05",18561,39,3450],["2021-03-06",18561,4,3454],["2021-03-07",18561,2,3456],["2021-03-08",18561,205,3661],["2021-03-09",18561,92,3753],["2021-03-10",18561,112,3865],["2021-03-11",18561,30,3895],["2021-03-12",18561,48,3943],["2021-03-13",18561,13,3956],["2021-03-14",18561,6,3962],["2021-03-15",18561,154,4116],["2021-03-16",18561,126,4242],["2021-03-17",18561,152,4394],["2021-03-18",18561,32,4426],["2021-03-19",18561,46,4472],["2021-03-20",18561,3,4475],["2021-03-21",18561,7,4482],["2021-03-22",18561,104,4586],["2021-03-23",18561,104,4690],["2021-03-24",18561,96,4786],["2021-03-25",18561,61,4847],["2021-03-26",18561,46,4893],["2021-03-27",18561,13,4906],["2021-03-28",18561,4,4910],["2021-03-29",18561,89,4999],["2021-03-30",18561,144,5143],["2021-03-31",18561,146,5289],["2021-04-01",18561,153,5442],["2021-04-02",18561,51,5493],["2021-04-03",18561,10,5503],["2021-04-04",18561,8,5511],["2021-04-05",18561,205,5716],["2021-04-06",18561,92,5808],["2021-04-07",18561,104,5912],["2021-04-08",18561,102,6014],["2021-04-09",18561,120,6134],["2021-04-10",18561,17,6151],["2021-04-11",18561,9,6160],["2021-04-12",18561,126,6286],["2021-04-13",18561,78,6364],["2021-04-14",18561,116,6480],["2021-04-15",18561,95,6575],["2021-04-16",18561,50,6625],["2021-04-17",18561,15,6640],["2021-04-18",18561,9,6649],["2021-04-19",18561,73,6722],["2021-04-20",18561,74,6796],["2021-04-21",18561,73,6869],["2021-04-22",18561,83,6952],["2021-04-23",18561,53,7005],["2021-04-24",18561,8,7013],["2021-04-25",18561,2,7015],["2021-04-26",18561,57,7072],["2021-04-27",18561,47,7119],["2021-04-28",18561,115,7234],["2021-04-29",18561,84,7318],["2021-04-30",18561,63,7381],["2021-05-01",18561,16,7397],["2021-05-02",18561,21,7418],["2021-05-03",18561,34,7452],["2021-05-04",18561,41,7493],["2021-05-05",18561,115,7608],["2021-05-06",18561,41,7649],["2021-05-07",18561,24,7673],["2021-05-08",18561,13,7686],["2021-05-09",18561,7,7693],["2021-05-10",18561,11,7704],["2021-05-11",18561,45,7749],["2021-05-12",18561,137,7886],["2021-05-13",18561,39,7925],["2021-05-14",18561,25,7950],["2021-05-15",18561,10,7960],["2021-05-16",18561,12,7972],["2021-05-17",18561,19,7991],["2021-05-18",18561,55,8046],["2021-05-19",18561,102,8148],["2021-05-20",18561,29,8177],["2021-05-21",18561,27,8204],["2021-05-22",18561,5,8209],["2021-05-23",18561,8,8217],["2021-05-24",18561,12,8229],["2021-05-25",18561,33,8262],["2021-05-26",18561,59,8321],["2021-05-27",18561,18,8339],["2021-05-28",18561,21,8360],["2021-05-29",18561,7,8367],["2021-05-31",18561,7,8374],["2021-06-01",18561,36,8410],["2021-06-02",18561,63,8473],["2021-06-03",18561,19,8492],["2021-06-04",18561,23,8515],["2021-06-05",18561,11,8526],["2021-06-06",18561,9,8535],["2021-06-07",18561,12,8547],["2021-06-08",18561,18,8565],["2021-06-09",18561,26,8591],["2021-06-10",18561,15,8606],["2021-06-11",18561,34,8640],["2021-06-12",18561,17,8657],["2021-06-13",18561,9,8666],["2021-06-14",18561,12,8678],["2021-06-15",18561,37,8715],["2021-06-16",18561,30,8745],["2021-06-17",18561,37,8782],["2021-06-18",18561,12,8794],["2021-06-19",18561,8,8802],["2021-06-20",18561,7,8809],["2021-06-21",18561,14,8823],["2021-06-22",18561,17,8840],["2021-06-23",18561,35,8875],["2021-06-24",18561,7,8882],["2021-06-25",18561,7,8889],["2021-06-26",18561,14,8903],["2021-06-27",18561,2,8905],["2021-06-28",18561,10,8915],["2021-06-29",18561,18,8933],["2021-06-30",18561,33,8966],["2021-07-01",18561,9,8975],["2021-07-02",18561,16,8991],["2021-07-03",18561,5,8996],["2021-07-04",18561,7,9003],["2021-07-05",18561,7,9010],["2021-07-06",18561,10,9020],["2021-07-07",18561,19,9039],["2021-07-08",18561,14,9053],["2021-07-09",18561,17,9070],["2021-07-10",18561,1,9071],["2021-07-11",18561,5,9076],["2021-07-12",18561,24,9100],["2021-07-13",18561,16,9116],["2021-07-14",18561,39,9155],["2021-07-15",18561,20,9175],["2021-07-16",18561,10,9185],["2021-07-17",18561,9,9194],["2021-07-18",18561,8,9202],["2021-07-19",18561,19,9221],["2021-07-20",18561,22,9243],["2021-07-21",18561,52,9295],["2021-07-22",18561,14,9309],["2021-07-23",18561,15,9324],["2021-07-24",18561,27,9351],["2021-07-25",18561,6,9357],["2021-07-26",18561,27,9384],["2021-07-27",18561,49,9433],["2021-07-28",18561,39,9472],["2021-07-29",18561,30,9502],["2021-07-30",18561,54,9556],["2021-07-31",18561,17,9573],["2021-08-01",18561,11,9584],["2021-08-02",18561,33,9617],["2021-08-03",18561,28,9645],["2021-08-04",18561,39,9684],["2021-08-05",18561,57,9741],["2021-08-06",18561,69,9810],["2021-08-07",18561,19,9829],["2021-08-08",18561,8,9837],["2021-08-09",18561,63,9900],["2021-08-10",18561,74,9974],["2021-08-11",18561,54,10028],["2021-08-12",18561,70,10098],["2021-08-13",18561,56,10154],["2021-08-14",18561,43,10197],["2021-08-15",18561,11,10208],["2021-08-16",18561,33,10241],["2021-08-17",18561,62,10303],["2021-08-18",18561,50,10353],["2021-08-19",18561,36,10389],["2021-08-20",18561,63,10452],["2021-08-21",18561,31,10483],["2021-08-22",18561,12,10495],["2021-08-23",18561,63,10558],["2021-08-24",18561,72,10630],["2021-08-25",18561,39,10669],["2021-08-26",18561,96,10765],["2021-08-27",18561,87,10852],["2021-08-28",18561,33,10885],["2021-08-29",18561,8,10893],["2021-08-30",18561,46,10939],["2021-08-31",18561,65,11004],["2021-09-01",18561,60,11064],["2021-09-02",18561,60,11124],["2021-09-03",18561,95,11219],["2021-09-04",18561,20,11239],["2021-09-05",18561,16,11255],["2021-09-06",18561,11,11266],["2021-09-07",18561,62,11328],["2021-09-08",18561,52,11380],["2021-09-09",18561,62,11442],["2021-09-10",18561,102,11544],["2021-09-11",18561,34,11578],["2021-09-12",18561,7,11585],["2021-09-13",18561,36,11621],["2021-09-14",18561,61,11682],["2021-09-15",18561,32,11714],["2021-09-16",18561,49,11763],["2021-09-17",18561,81,11844],["2021-09-18",18561,25,11869],["2021-09-19",18561,11,11880],["2021-09-20",18561,51,11931],["2021-09-21",18561,40,11971],["2021-09-22",18561,34,12005],["2021-09-23",18561,34,12039],["2021-09-24",18561,52,12091],["2021-09-25",18561,6,12097],["2021-09-26",18561,10,12107],["2021-09-27",18561,13,12120],["2021-09-28",18561,30,12150],["2021-09-29",18561,18,12168],["2021-09-30",18561,25,12193],["2021-10-01",18561,63,12256],["2021-10-02",18561,13,12269],["2021-10-03",18561,9,12278],["2021-10-04",18561,17,12295],["2021-10-05",18561,21,12316],["2021-10-06",18561,16,12332],["2021-10-07",18561,40,12372],["2021-10-08",18561,42,12414],["2021-10-09",18561,16,12430],["2021-10-10",18561,9,12439],["2021-10-11",18561,9,12448],["2021-10-12",18561,24,12472],["2021-10-13",18561,13,12485],["2021-10-14",18561,18,12503],["2021-10-15",18561,19,12522],["2021-10-16",18561,5,12527],["2021-10-17",18561,1,12528],["2021-10-18",18561,18,12546],["2021-10-19",18561,13,12559],["2021-10-20",18561,21,12580],["2021-10-21",18561,17,12597],["2021-10-22",18561,18,12615],["2021-10-23",18561,15,12630],["2021-10-24",18561,5,12635],["2021-10-25",18561,61,12696],["2021-10-26",18561,49,12745],["2021-10-27",18561,61,12806],["2021-10-28",18561,59,12865],["2021-10-29",18561,72,12937],["2021-10-30",18561,22,12959],["2021-10-31",18561,7,12966],["2021-11-01",18561,83,13049],["2021-11-02",18561,65,13114],["2021-11-03",18561,58,13172],["2021-11-04",18561,64,13236],["2021-11-05",18561,67,13303],["2021-11-06",18561,9,13312],["2021-11-07",18561,8,13320],["2021-11-08",18561,36,13356],["2021-11-09",18561,40,13396],["2021-11-10",18561,41,13437],["2021-11-11",18561,12,13449],["2021-11-12",18561,72,13521],["2021-11-13",18561,9,13530],["2021-11-14",18561,6,13536],["2021-11-15",18561,62,13598],["2021-11-16",18561,41,13639],["2021-11-17",18561,51,13690],["2021-11-18",18561,62,13752],["2021-11-19",18561,49,13801],["2021-11-20",18561,6,13807],["2021-11-21",18561,5,13812],["2021-11-22",18561,52,13864],["2021-11-23",18561,46,13910],["2021-11-24",18561,21,13931],["2021-11-26",18561,10,13941],["2021-11-27",18561,8,13949],["2021-11-28",18561,5,13954],["2021-11-29",18561,41,13995],["2021-11-30",18561,42,14037],["2021-12-01",18561,54,14091],["2021-12-02",18561,45,14136],["2021-12-03",18561,67,14203],["2021-12-04",18561,21,14224],["2021-12-05",18561,4,14228],["2021-12-06",18561,43,14271],["2021-12-07",18561,48,14319],["2021-12-08",18561,37,14356],["2021-12-09",18561,45,14401],["2021-12-10",18561,31,14432],["2021-12-11",18561,9,14441],["2021-12-12",18561,5,14446],["2021-12-13",18561,23,14469],["2021-12-14",18561,33,14502],["2021-12-15",18561,34,14536],["2021-12-16",18561,43,14579],["2021-12-17",18561,43,14622],["2021-12-18",18561,9,14631],["2021-12-19",18561,4,14635],["2021-12-20",18561,46,14681],["2021-12-21",18561,37,14718],["2021-12-22",18561,31,14749],["2021-12-23",18561,32,14781],["2021-12-24",18561,5,14786],["2021-12-26",18561,7,14793],["2021-12-27",18561,32,14825],["2021-12-28",18561,42,14867],["2021-12-29",18561,35,14902],["2021-12-30",18561,30,14932],["2021-12-31",18561,20,14952],["2022-01-01",18561,2,14954],["2022-01-02",18561,10,14964],["2022-01-03",18561,14,14978]]} \ No newline at end of file diff --git a/public/data/overall/vaccinations/by-county/Atkinson.json b/public/data/overall/vaccinations/by-county/Atkinson.json new file mode 100644 index 000000000..f63806cee --- /dev/null +++ b/public/data/overall/vaccinations/by-county/Atkinson.json @@ -0,0 +1 @@ +{"segment":{"county":"Atkinson"},"headers":["report_date","population","vaccinations","total_vaccinations"],"rows":[["2020-12-17",8330,1,1],["2020-12-21",8330,1,2],["2020-12-22",8330,2,4],["2020-12-23",8330,8,12],["2020-12-24",8330,7,19],["2020-12-28",8330,8,27],["2020-12-29",8330,3,30],["2020-12-30",8330,10,40],["2020-12-31",8330,3,43],["2021-01-01",8330,1,44],["2021-01-04",8330,9,53],["2021-01-05",8330,3,56],["2021-01-06",8330,8,64],["2021-01-07",8330,12,76],["2021-01-08",8330,24,100],["2021-01-10",8330,6,106],["2021-01-11",8330,43,149],["2021-01-12",8330,46,195],["2021-01-13",8330,16,211],["2021-01-14",8330,60,271],["2021-01-15",8330,27,298],["2021-01-16",8330,3,301],["2021-01-17",8330,1,302],["2021-01-18",8330,22,324],["2021-01-19",8330,48,372],["2021-01-20",8330,21,393],["2021-01-21",8330,54,447],["2021-01-22",8330,25,472],["2021-01-23",8330,6,478],["2021-01-24",8330,1,479],["2021-01-25",8330,24,503],["2021-01-26",8330,32,535],["2021-01-27",8330,26,561],["2021-01-28",8330,50,611],["2021-01-29",8330,18,629],["2021-01-31",8330,4,633],["2021-02-01",8330,22,655],["2021-02-02",8330,7,662],["2021-02-03",8330,14,676],["2021-02-04",8330,24,700],["2021-02-05",8330,30,730],["2021-02-06",8330,1,731],["2021-02-07",8330,2,733],["2021-02-08",8330,48,781],["2021-02-09",8330,56,837],["2021-02-10",8330,27,864],["2021-02-11",8330,69,933],["2021-02-12",8330,32,965],["2021-02-13",8330,1,966],["2021-02-14",8330,1,967],["2021-02-15",8330,17,984],["2021-02-16",8330,72,1056],["2021-02-17",8330,27,1083],["2021-02-18",8330,38,1121],["2021-02-19",8330,29,1150],["2021-02-20",8330,8,1158],["2021-02-22",8330,20,1178],["2021-02-23",8330,44,1222],["2021-02-24",8330,28,1250],["2021-02-25",8330,60,1310],["2021-02-26",8330,25,1335],["2021-02-28",8330,2,1337],["2021-03-01",8330,23,1360],["2021-03-02",8330,28,1388],["2021-03-03",8330,37,1425],["2021-03-04",8330,13,1438],["2021-03-05",8330,24,1462],["2021-03-06",8330,1,1463],["2021-03-08",8330,40,1503],["2021-03-09",8330,33,1536],["2021-03-10",8330,23,1559],["2021-03-11",8330,14,1573],["2021-03-12",8330,23,1596],["2021-03-15",8330,15,1611],["2021-03-16",8330,47,1658],["2021-03-17",8330,25,1683],["2021-03-18",8330,27,1710],["2021-03-19",8330,27,1737],["2021-03-20",8330,38,1775],["2021-03-21",8330,1,1776],["2021-03-22",8330,17,1793],["2021-03-23",8330,63,1856],["2021-03-24",8330,14,1870],["2021-03-25",8330,74,1944],["2021-03-26",8330,52,1996],["2021-03-27",8330,6,2002],["2021-03-28",8330,3,2005],["2021-03-29",8330,9,2014],["2021-03-30",8330,69,2083],["2021-03-31",8330,61,2144],["2021-04-01",8330,53,2197],["2021-04-02",8330,46,2243],["2021-04-03",8330,29,2272],["2021-04-04",8330,1,2273],["2021-04-05",8330,8,2281],["2021-04-06",8330,64,2345],["2021-04-07",8330,23,2368],["2021-04-08",8330,50,2418],["2021-04-09",8330,27,2445],["2021-04-10",8330,3,2448],["2021-04-11",8330,2,2450],["2021-04-12",8330,14,2464],["2021-04-13",8330,82,2546],["2021-04-14",8330,25,2571],["2021-04-15",8330,36,2607],["2021-04-16",8330,60,2667],["2021-04-17",8330,66,2733],["2021-04-18",8330,1,2734],["2021-04-19",8330,9,2743],["2021-04-20",8330,57,2800],["2021-04-21",8330,21,2821],["2021-04-22",8330,27,2848],["2021-04-23",8330,29,2877],["2021-04-24",8330,4,2881],["2021-04-25",8330,6,2887],["2021-04-26",8330,10,2897],["2021-04-27",8330,70,2967],["2021-04-28",8330,19,2986],["2021-04-29",8330,49,3035],["2021-04-30",8330,26,3061],["2021-05-01",8330,25,3086],["2021-05-02",8330,1,3087],["2021-05-03",8330,65,3152],["2021-05-04",8330,44,3196],["2021-05-05",8330,22,3218],["2021-05-06",8330,38,3256],["2021-05-07",8330,24,3280],["2021-05-08",8330,7,3287],["2021-05-09",8330,2,3289],["2021-05-10",8330,8,3297],["2021-05-11",8330,41,3338],["2021-05-12",8330,17,3355],["2021-05-13",8330,5,3360],["2021-05-14",8330,29,3389],["2021-05-15",8330,21,3410],["2021-05-16",8330,2,3412],["2021-05-17",8330,8,3420],["2021-05-18",8330,43,3463],["2021-05-19",8330,26,3489],["2021-05-20",8330,13,3502],["2021-05-21",8330,15,3517],["2021-05-22",8330,6,3523],["2021-05-23",8330,3,3526],["2021-05-24",8330,5,3531],["2021-05-25",8330,43,3574],["2021-05-26",8330,14,3588],["2021-05-27",8330,28,3616],["2021-05-28",8330,18,3634],["2021-05-29",8330,6,3640],["2021-05-31",8330,1,3641],["2021-06-01",8330,73,3714],["2021-06-02",8330,21,3735],["2021-06-03",8330,8,3743],["2021-06-04",8330,12,3755],["2021-06-05",8330,3,3758],["2021-06-06",8330,3,3761],["2021-06-07",8330,4,3765],["2021-06-08",8330,20,3785],["2021-06-09",8330,4,3789],["2021-06-10",8330,14,3803],["2021-06-11",8330,12,3815],["2021-06-12",8330,5,3820],["2021-06-13",8330,2,3822],["2021-06-14",8330,4,3826],["2021-06-15",8330,22,3848],["2021-06-16",8330,7,3855],["2021-06-17",8330,8,3863],["2021-06-18",8330,14,3877],["2021-06-19",8330,2,3879],["2021-06-20",8330,1,3880],["2021-06-21",8330,3,3883],["2021-06-22",8330,17,3900],["2021-06-23",8330,8,3908],["2021-06-24",8330,16,3924],["2021-06-25",8330,13,3937],["2021-06-26",8330,12,3949],["2021-06-27",8330,1,3950],["2021-06-28",8330,11,3961],["2021-06-29",8330,11,3972],["2021-06-30",8330,10,3982],["2021-07-01",8330,12,3994],["2021-07-02",8330,6,4000],["2021-07-03",8330,1,4001],["2021-07-05",8330,1,4002],["2021-07-06",8330,14,4016],["2021-07-07",8330,10,4026],["2021-07-08",8330,3,4029],["2021-07-09",8330,11,4040],["2021-07-10",8330,1,4041],["2021-07-12",8330,5,4046],["2021-07-13",8330,15,4061],["2021-07-14",8330,9,4070],["2021-07-15",8330,4,4074],["2021-07-16",8330,15,4089],["2021-07-17",8330,2,4091],["2021-07-19",8330,21,4112],["2021-07-20",8330,25,4137],["2021-07-21",8330,11,4148],["2021-07-22",8330,12,4160],["2021-07-23",8330,37,4197],["2021-07-24",8330,22,4219],["2021-07-25",8330,5,4224],["2021-07-26",8330,10,4234],["2021-07-27",8330,27,4261],["2021-07-28",8330,23,4284],["2021-07-29",8330,27,4311],["2021-07-30",8330,41,4352],["2021-07-31",8330,10,4362],["2021-08-01",8330,15,4377],["2021-08-02",8330,20,4397],["2021-08-03",8330,39,4436],["2021-08-04",8330,35,4471],["2021-08-05",8330,38,4509],["2021-08-06",8330,40,4549],["2021-08-07",8330,9,4558],["2021-08-08",8330,3,4561],["2021-08-09",8330,21,4582],["2021-08-10",8330,72,4654],["2021-08-11",8330,48,4702],["2021-08-12",8330,39,4741],["2021-08-13",8330,70,4811],["2021-08-14",8330,21,4832],["2021-08-15",8330,9,4841],["2021-08-16",8330,37,4878],["2021-08-17",8330,43,4921],["2021-08-18",8330,49,4970],["2021-08-19",8330,32,5002],["2021-08-20",8330,48,5050],["2021-08-21",8330,19,5069],["2021-08-22",8330,3,5072],["2021-08-23",8330,27,5099],["2021-08-24",8330,39,5138],["2021-08-25",8330,38,5176],["2021-08-26",8330,41,5217],["2021-08-27",8330,61,5278],["2021-08-28",8330,12,5290],["2021-08-29",8330,22,5312],["2021-08-30",8330,30,5342],["2021-08-31",8330,38,5380],["2021-09-01",8330,39,5419],["2021-09-02",8330,54,5473],["2021-09-03",8330,49,5522],["2021-09-04",8330,19,5541],["2021-09-05",8330,6,5547],["2021-09-06",8330,2,5549],["2021-09-07",8330,48,5597],["2021-09-08",8330,42,5639],["2021-09-09",8330,36,5675],["2021-09-10",8330,47,5722],["2021-09-11",8330,17,5739],["2021-09-12",8330,2,5741],["2021-09-13",8330,18,5759],["2021-09-14",8330,31,5790],["2021-09-15",8330,33,5823],["2021-09-16",8330,26,5849],["2021-09-17",8330,34,5883],["2021-09-18",8330,13,5896],["2021-09-20",8330,18,5914],["2021-09-21",8330,26,5940],["2021-09-22",8330,20,5960],["2021-09-23",8330,16,5976],["2021-09-24",8330,43,6019],["2021-09-25",8330,6,6025],["2021-09-26",8330,13,6038],["2021-09-27",8330,16,6054],["2021-09-28",8330,16,6070],["2021-09-29",8330,6,6076],["2021-09-30",8330,8,6084],["2021-10-01",8330,18,6102],["2021-10-02",8330,1,6103],["2021-10-03",8330,2,6105],["2021-10-04",8330,9,6114],["2021-10-05",8330,14,6128],["2021-10-06",8330,11,6139],["2021-10-07",8330,13,6152],["2021-10-08",8330,15,6167],["2021-10-09",8330,5,6172],["2021-10-10",8330,1,6173],["2021-10-11",8330,7,6180],["2021-10-12",8330,9,6189],["2021-10-13",8330,6,6195],["2021-10-14",8330,9,6204],["2021-10-15",8330,13,6217],["2021-10-16",8330,3,6220],["2021-10-18",8330,6,6226],["2021-10-19",8330,12,6238],["2021-10-20",8330,4,6242],["2021-10-21",8330,5,6247],["2021-10-22",8330,19,6266],["2021-10-23",8330,3,6269],["2021-10-24",8330,3,6272],["2021-10-25",8330,6,6278],["2021-10-26",8330,53,6331],["2021-10-27",8330,24,6355],["2021-10-28",8330,20,6375],["2021-10-29",8330,26,6401],["2021-10-30",8330,6,6407],["2021-11-01",8330,20,6427],["2021-11-02",8330,35,6462],["2021-11-03",8330,23,6485],["2021-11-04",8330,26,6511],["2021-11-05",8330,23,6534],["2021-11-06",8330,3,6537],["2021-11-08",8330,20,6557],["2021-11-09",8330,30,6587],["2021-11-10",8330,17,6604],["2021-11-11",8330,5,6609],["2021-11-12",8330,17,6626],["2021-11-13",8330,3,6629],["2021-11-14",8330,2,6631],["2021-11-15",8330,12,6643],["2021-11-16",8330,37,6680],["2021-11-17",8330,14,6694],["2021-11-18",8330,18,6712],["2021-11-19",8330,19,6731],["2021-11-20",8330,2,6733],["2021-11-21",8330,1,6734],["2021-11-22",8330,17,6751],["2021-11-23",8330,11,6762],["2021-11-24",8330,6,6768],["2021-11-26",8330,4,6772],["2021-11-27",8330,6,6778],["2021-11-28",8330,1,6779],["2021-11-29",8330,22,6801],["2021-11-30",8330,32,6833],["2021-12-01",8330,19,6852],["2021-12-02",8330,19,6871],["2021-12-03",8330,20,6891],["2021-12-04",8330,2,6893],["2021-12-05",8330,1,6894],["2021-12-06",8330,18,6912],["2021-12-07",8330,28,6940],["2021-12-08",8330,26,6966],["2021-12-09",8330,14,6980],["2021-12-10",8330,27,7007],["2021-12-11",8330,2,7009],["2021-12-13",8330,12,7021],["2021-12-14",8330,16,7037],["2021-12-15",8330,13,7050],["2021-12-16",8330,19,7069],["2021-12-17",8330,16,7085],["2021-12-18",8330,1,7086],["2021-12-20",8330,23,7109],["2021-12-21",8330,19,7128],["2021-12-22",8330,20,7148],["2021-12-23",8330,5,7153],["2021-12-24",8330,4,7157],["2021-12-26",8330,1,7158],["2021-12-27",8330,19,7177],["2021-12-28",8330,20,7197],["2021-12-29",8330,44,7241],["2021-12-30",8330,18,7259],["2021-12-31",8330,13,7272],["2022-01-02",8330,5,7277],["2022-01-03",8330,8,7285]]} \ No newline at end of file diff --git a/public/data/overall/vaccinations/by-county/Bacon.json b/public/data/overall/vaccinations/by-county/Bacon.json new file mode 100644 index 000000000..6dd62878d --- /dev/null +++ b/public/data/overall/vaccinations/by-county/Bacon.json @@ -0,0 +1 @@ +{"segment":{"county":"Bacon"},"headers":["report_date","population","vaccinations","total_vaccinations"],"rows":[["2020-12-16",11404,1,1],["2020-12-18",11404,2,3],["2020-12-19",11404,1,4],["2020-12-23",11404,5,9],["2020-12-24",11404,26,35],["2020-12-28",11404,4,39],["2020-12-29",11404,39,78],["2020-12-30",11404,31,109],["2020-12-31",11404,5,114],["2021-01-03",11404,1,115],["2021-01-04",11404,5,120],["2021-01-05",11404,6,126],["2021-01-06",11404,108,234],["2021-01-07",11404,4,238],["2021-01-08",11404,6,244],["2021-01-10",11404,5,249],["2021-01-11",11404,17,266],["2021-01-12",11404,70,336],["2021-01-13",11404,39,375],["2021-01-14",11404,22,397],["2021-01-15",11404,10,407],["2021-01-16",11404,7,414],["2021-01-17",11404,1,415],["2021-01-18",11404,29,444],["2021-01-19",11404,43,487],["2021-01-20",11404,45,532],["2021-01-21",11404,25,557],["2021-01-22",11404,29,586],["2021-01-23",11404,9,595],["2021-01-24",11404,1,596],["2021-01-25",11404,18,614],["2021-01-26",11404,41,655],["2021-01-27",11404,51,706],["2021-01-28",11404,32,738],["2021-01-29",11404,20,758],["2021-01-30",11404,4,762],["2021-01-31",11404,4,766],["2021-02-01",11404,26,792],["2021-02-02",11404,40,832],["2021-02-03",11404,116,948],["2021-02-04",11404,4,952],["2021-02-05",11404,21,973],["2021-02-06",11404,7,980],["2021-02-08",11404,31,1011],["2021-02-09",11404,100,1111],["2021-02-10",11404,43,1154],["2021-02-11",11404,36,1190],["2021-02-12",11404,20,1210],["2021-02-13",11404,11,1221],["2021-02-14",11404,1,1222],["2021-02-15",11404,59,1281],["2021-02-16",11404,59,1340],["2021-02-17",11404,43,1383],["2021-02-18",11404,12,1395],["2021-02-19",11404,27,1422],["2021-02-20",11404,16,1438],["2021-02-22",11404,46,1484],["2021-02-23",11404,46,1530],["2021-02-24",11404,32,1562],["2021-02-25",11404,29,1591],["2021-02-26",11404,17,1608],["2021-02-27",11404,1,1609],["2021-02-28",11404,1,1610],["2021-03-01",11404,40,1650],["2021-03-02",11404,66,1716],["2021-03-03",11404,57,1773],["2021-03-04",11404,13,1786],["2021-03-05",11404,19,1805],["2021-03-06",11404,1,1806],["2021-03-07",11404,2,1808],["2021-03-08",11404,43,1851],["2021-03-09",11404,58,1909],["2021-03-10",11404,40,1949],["2021-03-11",11404,15,1964],["2021-03-12",11404,50,2014],["2021-03-13",11404,8,2022],["2021-03-14",11404,9,2031],["2021-03-15",11404,47,2078],["2021-03-16",11404,99,2177],["2021-03-17",11404,46,2223],["2021-03-18",11404,16,2239],["2021-03-19",11404,110,2349],["2021-03-20",11404,4,2353],["2021-03-21",11404,12,2365],["2021-03-22",11404,63,2428],["2021-03-23",11404,72,2500],["2021-03-24",11404,67,2567],["2021-03-25",11404,34,2601],["2021-03-26",11404,50,2651],["2021-03-27",11404,7,2658],["2021-03-28",11404,1,2659],["2021-03-29",11404,34,2693],["2021-03-30",11404,60,2753],["2021-03-31",11404,76,2829],["2021-04-01",11404,41,2870],["2021-04-02",11404,60,2930],["2021-04-03",11404,6,2936],["2021-04-04",11404,3,2939],["2021-04-05",11404,31,2970],["2021-04-06",11404,44,3014],["2021-04-07",11404,50,3064],["2021-04-08",11404,104,3168],["2021-04-09",11404,37,3205],["2021-04-10",11404,6,3211],["2021-04-11",11404,15,3226],["2021-04-12",11404,37,3263],["2021-04-13",11404,77,3340],["2021-04-14",11404,27,3367],["2021-04-15",11404,13,3380],["2021-04-16",11404,99,3479],["2021-04-17",11404,12,3491],["2021-04-18",11404,5,3496],["2021-04-19",11404,40,3536],["2021-04-20",11404,75,3611],["2021-04-21",11404,47,3658],["2021-04-22",11404,25,3683],["2021-04-23",11404,81,3764],["2021-04-24",11404,7,3771],["2021-04-25",11404,1,3772],["2021-04-26",11404,41,3813],["2021-04-27",11404,44,3857],["2021-04-28",11404,61,3918],["2021-04-29",11404,24,3942],["2021-04-30",11404,55,3997],["2021-05-01",11404,9,4006],["2021-05-02",11404,4,4010],["2021-05-03",11404,9,4019],["2021-05-04",11404,33,4052],["2021-05-05",11404,35,4087],["2021-05-06",11404,19,4106],["2021-05-07",11404,47,4153],["2021-05-08",11404,13,4166],["2021-05-09",11404,2,4168],["2021-05-10",11404,17,4185],["2021-05-11",11404,29,4214],["2021-05-12",11404,8,4222],["2021-05-13",11404,15,4237],["2021-05-14",11404,26,4263],["2021-05-15",11404,4,4267],["2021-05-16",11404,3,4270],["2021-05-17",11404,15,4285],["2021-05-18",11404,34,4319],["2021-05-19",11404,26,4345],["2021-05-20",11404,17,4362],["2021-05-21",11404,27,4389],["2021-05-22",11404,4,4393],["2021-05-23",11404,1,4394],["2021-05-24",11404,14,4408],["2021-05-25",11404,16,4424],["2021-05-26",11404,17,4441],["2021-05-27",11404,11,4452],["2021-05-28",11404,26,4478],["2021-05-29",11404,6,4484],["2021-05-30",11404,4,4488],["2021-05-31",11404,2,4490],["2021-06-01",11404,15,4505],["2021-06-02",11404,18,4523],["2021-06-03",11404,9,4532],["2021-06-04",11404,19,4551],["2021-06-05",11404,2,4553],["2021-06-07",11404,12,4565],["2021-06-08",11404,16,4581],["2021-06-09",11404,7,4588],["2021-06-10",11404,78,4666],["2021-06-11",11404,10,4676],["2021-06-12",11404,6,4682],["2021-06-13",11404,2,4684],["2021-06-14",11404,7,4691],["2021-06-15",11404,9,4700],["2021-06-16",11404,24,4724],["2021-06-17",11404,5,4729],["2021-06-18",11404,20,4749],["2021-06-19",11404,3,4752],["2021-06-20",11404,1,4753],["2021-06-21",11404,6,4759],["2021-06-22",11404,6,4765],["2021-06-23",11404,13,4778],["2021-06-24",11404,4,4782],["2021-06-25",11404,14,4796],["2021-06-26",11404,5,4801],["2021-06-27",11404,1,4802],["2021-06-28",11404,5,4807],["2021-06-29",11404,9,4816],["2021-06-30",11404,11,4827],["2021-07-01",11404,10,4837],["2021-07-02",11404,2,4839],["2021-07-03",11404,3,4842],["2021-07-05",11404,4,4846],["2021-07-06",11404,12,4858],["2021-07-07",11404,10,4868],["2021-07-08",11404,3,4871],["2021-07-09",11404,6,4877],["2021-07-10",11404,5,4882],["2021-07-11",11404,3,4885],["2021-07-12",11404,2,4887],["2021-07-13",11404,8,4895],["2021-07-14",11404,16,4911],["2021-07-15",11404,7,4918],["2021-07-16",11404,10,4928],["2021-07-17",11404,4,4932],["2021-07-19",11404,16,4948],["2021-07-20",11404,12,4960],["2021-07-21",11404,28,4988],["2021-07-22",11404,7,4995],["2021-07-23",11404,16,5011],["2021-07-24",11404,10,5021],["2021-07-26",11404,12,5033],["2021-07-27",11404,24,5057],["2021-07-28",11404,36,5093],["2021-07-29",11404,12,5105],["2021-07-30",11404,30,5135],["2021-07-31",11404,5,5140],["2021-08-01",11404,7,5147],["2021-08-02",11404,16,5163],["2021-08-03",11404,19,5182],["2021-08-04",11404,28,5210],["2021-08-05",11404,23,5233],["2021-08-06",11404,55,5288],["2021-08-07",11404,11,5299],["2021-08-08",11404,8,5307],["2021-08-09",11404,29,5336],["2021-08-10",11404,24,5360],["2021-08-11",11404,28,5388],["2021-08-12",11404,23,5411],["2021-08-13",11404,53,5464],["2021-08-14",11404,9,5473],["2021-08-15",11404,3,5476],["2021-08-16",11404,29,5505],["2021-08-17",11404,33,5538],["2021-08-18",11404,59,5597],["2021-08-19",11404,15,5612],["2021-08-20",11404,43,5655],["2021-08-21",11404,10,5665],["2021-08-22",11404,7,5672],["2021-08-23",11404,17,5689],["2021-08-24",11404,28,5717],["2021-08-25",11404,32,5749],["2021-08-26",11404,20,5769],["2021-08-27",11404,28,5797],["2021-08-28",11404,7,5804],["2021-08-29",11404,3,5807],["2021-08-30",11404,25,5832],["2021-08-31",11404,30,5862],["2021-09-01",11404,55,5917],["2021-09-02",11404,31,5948],["2021-09-03",11404,44,5992],["2021-09-04",11404,7,5999],["2021-09-05",11404,6,6005],["2021-09-06",11404,3,6008],["2021-09-07",11404,28,6036],["2021-09-08",11404,33,6069],["2021-09-09",11404,24,6093],["2021-09-10",11404,60,6153],["2021-09-11",11404,7,6160],["2021-09-12",11404,5,6165],["2021-09-13",11404,15,6180],["2021-09-14",11404,31,6211],["2021-09-15",11404,23,6234],["2021-09-16",11404,11,6245],["2021-09-17",11404,55,6300],["2021-09-18",11404,2,6302],["2021-09-20",11404,21,6323],["2021-09-21",11404,15,6338],["2021-09-22",11404,21,6359],["2021-09-23",11404,15,6374],["2021-09-24",11404,29,6403],["2021-09-25",11404,5,6408],["2021-09-26",11404,2,6410],["2021-09-27",11404,7,6417],["2021-09-28",11404,9,6426],["2021-09-29",11404,24,6450],["2021-09-30",11404,14,6464],["2021-10-01",11404,28,6492],["2021-10-02",11404,5,6497],["2021-10-03",11404,3,6500],["2021-10-04",11404,15,6515],["2021-10-05",11404,12,6527],["2021-10-06",11404,6,6533],["2021-10-07",11404,7,6540],["2021-10-08",11404,13,6553],["2021-10-09",11404,6,6559],["2021-10-10",11404,2,6561],["2021-10-11",11404,8,6569],["2021-10-12",11404,6,6575],["2021-10-13",11404,18,6593],["2021-10-14",11404,6,6599],["2021-10-15",11404,20,6619],["2021-10-16",11404,2,6621],["2021-10-18",11404,8,6629],["2021-10-19",11404,8,6637],["2021-10-20",11404,11,6648],["2021-10-21",11404,3,6651],["2021-10-22",11404,8,6659],["2021-10-23",11404,4,6663],["2021-10-25",11404,8,6671],["2021-10-26",11404,31,6702],["2021-10-27",11404,62,6764],["2021-10-28",11404,34,6798],["2021-10-29",11404,44,6842],["2021-10-30",11404,6,6848],["2021-10-31",11404,4,6852],["2021-11-01",11404,11,6863],["2021-11-02",11404,43,6906],["2021-11-03",11404,32,6938],["2021-11-04",11404,8,6946],["2021-11-05",11404,43,6989],["2021-11-06",11404,3,6992],["2021-11-07",11404,1,6993],["2021-11-08",11404,14,7007],["2021-11-09",11404,15,7022],["2021-11-10",11404,30,7052],["2021-11-11",11404,5,7057],["2021-11-12",11404,48,7105],["2021-11-13",11404,3,7108],["2021-11-14",11404,1,7109],["2021-11-15",11404,23,7132],["2021-11-16",11404,19,7151],["2021-11-17",11404,33,7184],["2021-11-18",11404,22,7206],["2021-11-19",11404,39,7245],["2021-11-20",11404,6,7251],["2021-11-21",11404,2,7253],["2021-11-22",11404,12,7265],["2021-11-23",11404,16,7281],["2021-11-24",11404,16,7297],["2021-11-26",11404,3,7300],["2021-11-27",11404,6,7306],["2021-11-28",11404,2,7308],["2021-11-29",11404,41,7349],["2021-11-30",11404,32,7381],["2021-12-01",11404,49,7430],["2021-12-02",11404,15,7445],["2021-12-03",11404,29,7474],["2021-12-04",11404,3,7477],["2021-12-06",11404,19,7496],["2021-12-07",11404,6,7502],["2021-12-08",11404,35,7537],["2021-12-09",11404,8,7545],["2021-12-10",11404,33,7578],["2021-12-11",11404,4,7582],["2021-12-12",11404,4,7586],["2021-12-13",11404,11,7597],["2021-12-14",11404,10,7607],["2021-12-15",11404,18,7625],["2021-12-16",11404,17,7642],["2021-12-17",11404,27,7669],["2021-12-18",11404,6,7675],["2021-12-19",11404,3,7678],["2021-12-20",11404,28,7706],["2021-12-21",11404,18,7724],["2021-12-22",11404,23,7747],["2021-12-23",11404,3,7750],["2021-12-24",11404,6,7756],["2021-12-26",11404,2,7758],["2021-12-27",11404,2,7760],["2021-12-28",11404,27,7787],["2021-12-29",11404,31,7818],["2021-12-30",11404,15,7833],["2021-12-31",11404,16,7849],["2022-01-02",11404,4,7853],["2022-01-03",11404,7,7860]]} \ No newline at end of file diff --git a/public/data/overall/vaccinations/by-county/Baker.json b/public/data/overall/vaccinations/by-county/Baker.json new file mode 100644 index 000000000..2e89015b6 --- /dev/null +++ b/public/data/overall/vaccinations/by-county/Baker.json @@ -0,0 +1 @@ +{"segment":{"county":"Baker"},"headers":["report_date","population","vaccinations","total_vaccinations"],"rows":[["2020-12-17",3116,2,2],["2020-12-18",3116,1,3],["2020-12-20",3116,1,4],["2020-12-21",3116,1,5],["2020-12-22",3116,4,9],["2020-12-23",3116,10,19],["2020-12-26",3116,1,20],["2020-12-28",3116,9,29],["2020-12-29",3116,5,34],["2020-12-30",3116,3,37],["2021-01-01",3116,1,38],["2021-01-04",3116,1,39],["2021-01-05",3116,11,50],["2021-01-06",3116,3,53],["2021-01-07",3116,6,59],["2021-01-08",3116,9,68],["2021-01-09",3116,1,69],["2021-01-11",3116,17,86],["2021-01-12",3116,22,108],["2021-01-13",3116,28,136],["2021-01-14",3116,33,169],["2021-01-15",3116,13,182],["2021-01-18",3116,34,216],["2021-01-19",3116,32,248],["2021-01-20",3116,30,278],["2021-01-21",3116,41,319],["2021-01-22",3116,14,333],["2021-01-23",3116,4,337],["2021-01-24",3116,1,338],["2021-01-25",3116,23,361],["2021-01-26",3116,33,394],["2021-01-27",3116,29,423],["2021-01-28",3116,33,456],["2021-01-29",3116,6,462],["2021-02-01",3116,18,480],["2021-02-02",3116,20,500],["2021-02-03",3116,13,513],["2021-02-04",3116,25,538],["2021-02-05",3116,11,549],["2021-02-06",3116,7,556],["2021-02-08",3116,25,581],["2021-02-09",3116,36,617],["2021-02-10",3116,29,646],["2021-02-11",3116,39,685],["2021-02-12",3116,9,694],["2021-02-13",3116,1,695],["2021-02-15",3116,27,722],["2021-02-16",3116,32,754],["2021-02-17",3116,27,781],["2021-02-18",3116,38,819],["2021-02-19",3116,15,834],["2021-02-20",3116,2,836],["2021-02-22",3116,24,860],["2021-02-23",3116,44,904],["2021-02-24",3116,24,928],["2021-02-25",3116,37,965],["2021-02-26",3116,7,972],["2021-02-27",3116,3,975],["2021-02-28",3116,3,978],["2021-03-01",3116,22,1000],["2021-03-02",3116,26,1026],["2021-03-03",3116,17,1043],["2021-03-04",3116,22,1065],["2021-03-05",3116,7,1072],["2021-03-08",3116,14,1086],["2021-03-09",3116,15,1101],["2021-03-10",3116,16,1117],["2021-03-11",3116,14,1131],["2021-03-12",3116,8,1139],["2021-03-13",3116,5,1144],["2021-03-15",3116,29,1173],["2021-03-16",3116,19,1192],["2021-03-17",3116,22,1214],["2021-03-18",3116,21,1235],["2021-03-19",3116,5,1240],["2021-03-20",3116,6,1246],["2021-03-21",3116,3,1249],["2021-03-22",3116,16,1265],["2021-03-23",3116,13,1278],["2021-03-24",3116,11,1289],["2021-03-25",3116,26,1315],["2021-03-27",3116,2,1317],["2021-03-28",3116,2,1319],["2021-03-29",3116,23,1342],["2021-03-30",3116,41,1383],["2021-03-31",3116,17,1400],["2021-04-01",3116,29,1429],["2021-04-02",3116,7,1436],["2021-04-03",3116,2,1438],["2021-04-04",3116,1,1439],["2021-04-05",3116,16,1455],["2021-04-06",3116,21,1476],["2021-04-07",3116,25,1501],["2021-04-08",3116,17,1518],["2021-04-09",3116,6,1524],["2021-04-10",3116,7,1531],["2021-04-11",3116,2,1533],["2021-04-12",3116,38,1571],["2021-04-13",3116,19,1590],["2021-04-14",3116,25,1615],["2021-04-15",3116,21,1636],["2021-04-16",3116,7,1643],["2021-04-17",3116,3,1646],["2021-04-18",3116,2,1648],["2021-04-19",3116,6,1654],["2021-04-20",3116,19,1673],["2021-04-21",3116,10,1683],["2021-04-22",3116,4,1687],["2021-04-23",3116,5,1692],["2021-04-24",3116,3,1695],["2021-04-26",3116,18,1713],["2021-04-27",3116,39,1752],["2021-04-28",3116,15,1767],["2021-04-29",3116,18,1785],["2021-04-30",3116,5,1790],["2021-05-02",3116,1,1791],["2021-05-03",3116,7,1798],["2021-05-04",3116,14,1812],["2021-05-05",3116,11,1823],["2021-05-06",3116,5,1828],["2021-05-07",3116,7,1835],["2021-05-08",3116,5,1840],["2021-05-10",3116,5,1845],["2021-05-11",3116,14,1859],["2021-05-12",3116,49,1908],["2021-05-13",3116,8,1916],["2021-05-15",3116,4,1920],["2021-05-17",3116,3,1923],["2021-05-18",3116,12,1935],["2021-05-19",3116,17,1952],["2021-05-20",3116,5,1957],["2021-05-21",3116,1,1958],["2021-05-22",3116,3,1961],["2021-05-24",3116,1,1962],["2021-05-25",3116,12,1974],["2021-05-26",3116,5,1979],["2021-05-27",3116,7,1986],["2021-05-28",3116,1,1987],["2021-05-29",3116,2,1989],["2021-06-01",3116,11,2000],["2021-06-03",3116,3,2003],["2021-06-04",3116,2,2005],["2021-06-05",3116,2,2007],["2021-06-06",3116,1,2008],["2021-06-07",3116,2,2010],["2021-06-08",3116,5,2015],["2021-06-09",3116,7,2022],["2021-06-10",3116,22,2044],["2021-06-11",3116,1,2045],["2021-06-12",3116,5,2050],["2021-06-15",3116,8,2058],["2021-06-16",3116,3,2061],["2021-06-17",3116,1,2062],["2021-06-18",3116,2,2064],["2021-06-19",3116,4,2068],["2021-06-21",3116,2,2070],["2021-06-22",3116,9,2079],["2021-06-23",3116,3,2082],["2021-06-24",3116,3,2085],["2021-06-25",3116,1,2086],["2021-06-27",3116,1,2087],["2021-06-29",3116,8,2095],["2021-06-30",3116,2,2097],["2021-07-01",3116,11,2108],["2021-07-02",3116,2,2110],["2021-07-05",3116,2,2112],["2021-07-06",3116,3,2115],["2021-07-07",3116,5,2120],["2021-07-08",3116,2,2122],["2021-07-09",3116,1,2123],["2021-07-10",3116,4,2127],["2021-07-12",3116,1,2128],["2021-07-13",3116,2,2130],["2021-07-14",3116,3,2133],["2021-07-15",3116,1,2134],["2021-07-16",3116,7,2141],["2021-07-19",3116,1,2142],["2021-07-20",3116,12,2154],["2021-07-21",3116,2,2156],["2021-07-22",3116,6,2162],["2021-07-23",3116,4,2166],["2021-07-24",3116,3,2169],["2021-07-25",3116,1,2170],["2021-07-26",3116,8,2178],["2021-07-27",3116,19,2197],["2021-07-28",3116,10,2207],["2021-07-29",3116,9,2216],["2021-07-30",3116,5,2221],["2021-07-31",3116,5,2226],["2021-08-01",3116,2,2228],["2021-08-02",3116,15,2243],["2021-08-03",3116,9,2252],["2021-08-04",3116,11,2263],["2021-08-05",3116,8,2271],["2021-08-06",3116,7,2278],["2021-08-07",3116,7,2285],["2021-08-08",3116,1,2286],["2021-08-09",3116,7,2293],["2021-08-10",3116,14,2307],["2021-08-11",3116,12,2319],["2021-08-12",3116,13,2332],["2021-08-13",3116,14,2346],["2021-08-14",3116,3,2349],["2021-08-15",3116,3,2352],["2021-08-16",3116,5,2357],["2021-08-17",3116,24,2381],["2021-08-18",3116,9,2390],["2021-08-19",3116,11,2401],["2021-08-20",3116,10,2411],["2021-08-21",3116,4,2415],["2021-08-23",3116,15,2430],["2021-08-24",3116,16,2446],["2021-08-25",3116,23,2469],["2021-08-26",3116,12,2481],["2021-08-27",3116,7,2488],["2021-08-28",3116,6,2494],["2021-08-29",3116,4,2498],["2021-08-30",3116,15,2513],["2021-08-31",3116,21,2534],["2021-09-01",3116,19,2553],["2021-09-02",3116,12,2565],["2021-09-03",3116,16,2581],["2021-09-04",3116,9,2590],["2021-09-05",3116,4,2594],["2021-09-06",3116,1,2595],["2021-09-07",3116,14,2609],["2021-09-08",3116,14,2623],["2021-09-09",3116,10,2633],["2021-09-10",3116,8,2641],["2021-09-11",3116,2,2643],["2021-09-13",3116,4,2647],["2021-09-14",3116,20,2667],["2021-09-15",3116,8,2675],["2021-09-16",3116,14,2689],["2021-09-17",3116,11,2700],["2021-09-18",3116,6,2706],["2021-09-19",3116,1,2707],["2021-09-20",3116,6,2713],["2021-09-21",3116,19,2732],["2021-09-22",3116,8,2740],["2021-09-23",3116,11,2751],["2021-09-24",3116,5,2756],["2021-09-27",3116,4,2760],["2021-09-28",3116,10,2770],["2021-09-29",3116,12,2782],["2021-09-30",3116,18,2800],["2021-10-01",3116,9,2809],["2021-10-02",3116,2,2811],["2021-10-03",3116,2,2813],["2021-10-04",3116,3,2816],["2021-10-05",3116,2,2818],["2021-10-06",3116,4,2822],["2021-10-07",3116,10,2832],["2021-10-08",3116,5,2837],["2021-10-09",3116,2,2839],["2021-10-11",3116,7,2846],["2021-10-12",3116,11,2857],["2021-10-13",3116,6,2863],["2021-10-14",3116,8,2871],["2021-10-15",3116,1,2872],["2021-10-16",3116,3,2875],["2021-10-18",3116,2,2877],["2021-10-19",3116,1,2878],["2021-10-20",3116,3,2881],["2021-10-21",3116,1,2882],["2021-10-22",3116,2,2884],["2021-10-24",3116,1,2885],["2021-10-25",3116,10,2895],["2021-10-26",3116,10,2905],["2021-10-27",3116,3,2908],["2021-10-28",3116,24,2932],["2021-10-29",3116,8,2940],["2021-10-30",3116,4,2944],["2021-11-01",3116,29,2973],["2021-11-02",3116,21,2994],["2021-11-03",3116,14,3008],["2021-11-04",3116,25,3033],["2021-11-05",3116,3,3036],["2021-11-06",3116,10,3046],["2021-11-08",3116,2,3048],["2021-11-09",3116,25,3073],["2021-11-10",3116,7,3080],["2021-11-11",3116,4,3084],["2021-11-12",3116,4,3088],["2021-11-14",3116,1,3089],["2021-11-15",3116,16,3105],["2021-11-16",3116,16,3121],["2021-11-17",3116,14,3135],["2021-11-18",3116,22,3157],["2021-11-19",3116,7,3164],["2021-11-21",3116,1,3165],["2021-11-22",3116,9,3174],["2021-11-23",3116,16,3190],["2021-11-24",3116,9,3199],["2021-11-26",3116,3,3202],["2021-11-28",3116,2,3204],["2021-11-29",3116,12,3216],["2021-11-30",3116,24,3240],["2021-12-01",3116,14,3254],["2021-12-02",3116,12,3266],["2021-12-03",3116,3,3269],["2021-12-04",3116,2,3271],["2021-12-06",3116,21,3292],["2021-12-07",3116,13,3305],["2021-12-08",3116,12,3317],["2021-12-09",3116,8,3325],["2021-12-10",3116,4,3329],["2021-12-11",3116,1,3330],["2021-12-12",3116,2,3332],["2021-12-13",3116,11,3343],["2021-12-14",3116,13,3356],["2021-12-15",3116,3,3359],["2021-12-16",3116,12,3371],["2021-12-17",3116,5,3376],["2021-12-19",3116,1,3377],["2021-12-20",3116,5,3382],["2021-12-21",3116,10,3392],["2021-12-22",3116,6,3398],["2021-12-23",3116,7,3405],["2021-12-24",3116,2,3407],["2021-12-27",3116,11,3418],["2021-12-28",3116,6,3424],["2021-12-29",3116,18,3442],["2021-12-30",3116,7,3449],["2021-12-31",3116,9,3458],["2022-01-02",3116,1,3459],["2022-01-03",3116,1,3460]]} \ No newline at end of file diff --git a/public/data/overall/vaccinations/by-county/Baldwin.json b/public/data/overall/vaccinations/by-county/Baldwin.json new file mode 100644 index 000000000..1dc869b7b --- /dev/null +++ b/public/data/overall/vaccinations/by-county/Baldwin.json @@ -0,0 +1 @@ +{"segment":{"county":"Baldwin"},"headers":["report_date","population","vaccinations","total_vaccinations"],"rows":[["2020-12-14",44428,1,1],["2020-12-16",44428,1,2],["2020-12-17",44428,4,6],["2020-12-18",44428,5,11],["2020-12-19",44428,3,14],["2020-12-20",44428,2,16],["2020-12-21",44428,4,20],["2020-12-22",44428,22,42],["2020-12-23",44428,48,90],["2020-12-24",44428,15,105],["2020-12-26",44428,9,114],["2020-12-27",44428,4,118],["2020-12-28",44428,42,160],["2020-12-29",44428,34,194],["2020-12-30",44428,112,306],["2020-12-31",44428,42,348],["2021-01-01",44428,3,351],["2021-01-02",44428,5,356],["2021-01-03",44428,3,359],["2021-01-04",44428,233,592],["2021-01-05",44428,32,624],["2021-01-06",44428,134,758],["2021-01-07",44428,31,789],["2021-01-08",44428,66,855],["2021-01-09",44428,12,867],["2021-01-10",44428,9,876],["2021-01-11",44428,90,966],["2021-01-12",44428,200,1166],["2021-01-13",44428,122,1288],["2021-01-14",44428,161,1449],["2021-01-15",44428,205,1654],["2021-01-16",44428,69,1723],["2021-01-17",44428,35,1758],["2021-01-18",44428,177,1935],["2021-01-19",44428,183,2118],["2021-01-20",44428,280,2398],["2021-01-21",44428,292,2690],["2021-01-22",44428,243,2933],["2021-01-23",44428,115,3048],["2021-01-24",44428,73,3121],["2021-01-25",44428,202,3323],["2021-01-26",44428,89,3412],["2021-01-27",44428,327,3739],["2021-01-28",44428,206,3945],["2021-01-29",44428,198,4143],["2021-01-30",44428,25,4168],["2021-01-31",44428,8,4176],["2021-02-01",44428,320,4496],["2021-02-02",44428,222,4718],["2021-02-03",44428,305,5023],["2021-02-04",44428,225,5248],["2021-02-05",44428,178,5426],["2021-02-06",44428,43,5469],["2021-02-07",44428,31,5500],["2021-02-08",44428,181,5681],["2021-02-09",44428,213,5894],["2021-02-10",44428,183,6077],["2021-02-11",44428,264,6341],["2021-02-12",44428,232,6573],["2021-02-13",44428,50,6623],["2021-02-14",44428,84,6707],["2021-02-15",44428,215,6922],["2021-02-16",44428,251,7173],["2021-02-17",44428,340,7513],["2021-02-18",44428,401,7914],["2021-02-19",44428,272,8186],["2021-02-20",44428,60,8246],["2021-02-21",44428,12,8258],["2021-02-22",44428,124,8382],["2021-02-23",44428,177,8559],["2021-02-24",44428,292,8851],["2021-02-25",44428,354,9205],["2021-02-26",44428,336,9541],["2021-02-27",44428,43,9584],["2021-02-28",44428,44,9628],["2021-03-01",44428,228,9856],["2021-03-02",44428,332,10188],["2021-03-03",44428,314,10502],["2021-03-04",44428,338,10840],["2021-03-05",44428,267,11107],["2021-03-06",44428,18,11125],["2021-03-07",44428,42,11167],["2021-03-08",44428,242,11409],["2021-03-09",44428,335,11744],["2021-03-10",44428,329,12073],["2021-03-11",44428,351,12424],["2021-03-12",44428,533,12957],["2021-03-13",44428,87,13044],["2021-03-14",44428,41,13085],["2021-03-15",44428,223,13308],["2021-03-16",44428,414,13722],["2021-03-17",44428,428,14150],["2021-03-18",44428,218,14368],["2021-03-19",44428,578,14946],["2021-03-20",44428,57,15003],["2021-03-21",44428,28,15031],["2021-03-22",44428,144,15175],["2021-03-23",44428,373,15548],["2021-03-24",44428,272,15820],["2021-03-25",44428,425,16245],["2021-03-26",44428,322,16567],["2021-03-27",44428,94,16661],["2021-03-28",44428,66,16727],["2021-03-29",44428,218,16945],["2021-03-30",44428,421,17366],["2021-03-31",44428,326,17692],["2021-04-01",44428,467,18159],["2021-04-02",44428,281,18440],["2021-04-03",44428,72,18512],["2021-04-04",44428,48,18560],["2021-04-05",44428,169,18729],["2021-04-06",44428,427,19156],["2021-04-07",44428,365,19521],["2021-04-08",44428,414,19935],["2021-04-09",44428,433,20368],["2021-04-10",44428,56,20424],["2021-04-11",44428,46,20470],["2021-04-12",44428,172,20642],["2021-04-13",44428,399,21041],["2021-04-14",44428,390,21431],["2021-04-15",44428,273,21704],["2021-04-16",44428,466,22170],["2021-04-17",44428,50,22220],["2021-04-18",44428,35,22255],["2021-04-19",44428,155,22410],["2021-04-20",44428,425,22835],["2021-04-21",44428,258,23093],["2021-04-22",44428,416,23509],["2021-04-23",44428,254,23763],["2021-04-24",44428,59,23822],["2021-04-25",44428,13,23835],["2021-04-26",44428,153,23988],["2021-04-27",44428,294,24282],["2021-04-28",44428,252,24534],["2021-04-29",44428,316,24850],["2021-04-30",44428,255,25105],["2021-05-01",44428,101,25206],["2021-05-02",44428,17,25223],["2021-05-03",44428,72,25295],["2021-05-04",44428,207,25502],["2021-05-05",44428,203,25705],["2021-05-06",44428,209,25914],["2021-05-07",44428,141,26055],["2021-05-08",44428,51,26106],["2021-05-09",44428,22,26128],["2021-05-10",44428,45,26173],["2021-05-11",44428,166,26339],["2021-05-12",44428,163,26502],["2021-05-13",44428,139,26641],["2021-05-14",44428,99,26740],["2021-05-15",44428,49,26789],["2021-05-16",44428,38,26827],["2021-05-17",44428,88,26915],["2021-05-18",44428,143,27058],["2021-05-19",44428,108,27166],["2021-05-20",44428,198,27364],["2021-05-21",44428,173,27537],["2021-05-22",44428,38,27575],["2021-05-23",44428,22,27597],["2021-05-24",44428,70,27667],["2021-05-25",44428,117,27784],["2021-05-26",44428,108,27892],["2021-05-27",44428,104,27996],["2021-05-28",44428,101,28097],["2021-05-29",44428,37,28134],["2021-05-30",44428,16,28150],["2021-05-31",44428,12,28162],["2021-06-01",44428,95,28257],["2021-06-02",44428,95,28352],["2021-06-03",44428,100,28452],["2021-06-04",44428,92,28544],["2021-06-05",44428,47,28591],["2021-06-06",44428,31,28622],["2021-06-07",44428,51,28673],["2021-06-08",44428,77,28750],["2021-06-09",44428,62,28812],["2021-06-10",44428,90,28902],["2021-06-11",44428,155,29057],["2021-06-12",44428,43,29100],["2021-06-13",44428,26,29126],["2021-06-14",44428,43,29169],["2021-06-15",44428,79,29248],["2021-06-16",44428,72,29320],["2021-06-17",44428,71,29391],["2021-06-18",44428,75,29466],["2021-06-19",44428,38,29504],["2021-06-20",44428,15,29519],["2021-06-21",44428,23,29542],["2021-06-22",44428,89,29631],["2021-06-23",44428,60,29691],["2021-06-24",44428,57,29748],["2021-06-25",44428,89,29837],["2021-06-26",44428,31,29868],["2021-06-27",44428,17,29885],["2021-06-28",44428,46,29931],["2021-06-29",44428,61,29992],["2021-06-30",44428,45,30037],["2021-07-01",44428,72,30109],["2021-07-02",44428,50,30159],["2021-07-03",44428,19,30178],["2021-07-04",44428,3,30181],["2021-07-05",44428,38,30219],["2021-07-06",44428,56,30275],["2021-07-07",44428,47,30322],["2021-07-08",44428,43,30365],["2021-07-09",44428,58,30423],["2021-07-10",44428,19,30442],["2021-07-11",44428,9,30451],["2021-07-12",44428,35,30486],["2021-07-13",44428,80,30566],["2021-07-14",44428,62,30628],["2021-07-15",44428,54,30682],["2021-07-16",44428,59,30741],["2021-07-17",44428,27,30768],["2021-07-18",44428,17,30785],["2021-07-19",44428,45,30830],["2021-07-20",44428,81,30911],["2021-07-21",44428,90,31001],["2021-07-22",44428,76,31077],["2021-07-23",44428,165,31242],["2021-07-24",44428,53,31295],["2021-07-25",44428,23,31318],["2021-07-26",44428,67,31385],["2021-07-27",44428,129,31514],["2021-07-28",44428,117,31631],["2021-07-29",44428,102,31733],["2021-07-30",44428,142,31875],["2021-07-31",44428,54,31929],["2021-08-01",44428,43,31972],["2021-08-02",44428,86,32058],["2021-08-03",44428,115,32173],["2021-08-04",44428,83,32256],["2021-08-05",44428,84,32340],["2021-08-06",44428,113,32453],["2021-08-07",44428,80,32533],["2021-08-08",44428,35,32568],["2021-08-09",44428,83,32651],["2021-08-10",44428,169,32820],["2021-08-11",44428,159,32979],["2021-08-12",44428,114,33093],["2021-08-13",44428,189,33282],["2021-08-14",44428,86,33368],["2021-08-15",44428,48,33416],["2021-08-16",44428,99,33515],["2021-08-17",44428,164,33679],["2021-08-18",44428,145,33824],["2021-08-19",44428,123,33947],["2021-08-20",44428,143,34090],["2021-08-21",44428,65,34155],["2021-08-22",44428,40,34195],["2021-08-23",44428,96,34291],["2021-08-24",44428,178,34469],["2021-08-25",44428,164,34633],["2021-08-26",44428,147,34780],["2021-08-27",44428,116,34896],["2021-08-28",44428,87,34983],["2021-08-29",44428,50,35033],["2021-08-30",44428,90,35123],["2021-08-31",44428,206,35329],["2021-09-01",44428,145,35474],["2021-09-02",44428,139,35613],["2021-09-03",44428,138,35751],["2021-09-04",44428,63,35814],["2021-09-05",44428,48,35862],["2021-09-06",44428,64,35926],["2021-09-07",44428,183,36109],["2021-09-08",44428,139,36248],["2021-09-09",44428,97,36345],["2021-09-10",44428,153,36498],["2021-09-11",44428,51,36549],["2021-09-12",44428,51,36600],["2021-09-13",44428,80,36680],["2021-09-14",44428,153,36833],["2021-09-15",44428,172,37005],["2021-09-16",44428,109,37114],["2021-09-17",44428,91,37205],["2021-09-18",44428,46,37251],["2021-09-19",44428,26,37277],["2021-09-20",44428,58,37335],["2021-09-21",44428,120,37455],["2021-09-22",44428,109,37564],["2021-09-23",44428,72,37636],["2021-09-24",44428,85,37721],["2021-09-25",44428,39,37760],["2021-09-26",44428,17,37777],["2021-09-27",44428,58,37835],["2021-09-28",44428,128,37963],["2021-09-29",44428,98,38061],["2021-09-30",44428,100,38161],["2021-10-01",44428,109,38270],["2021-10-02",44428,38,38308],["2021-10-03",44428,36,38344],["2021-10-04",44428,55,38399],["2021-10-05",44428,101,38500],["2021-10-06",44428,77,38577],["2021-10-07",44428,46,38623],["2021-10-08",44428,54,38677],["2021-10-09",44428,36,38713],["2021-10-10",44428,29,38742],["2021-10-11",44428,34,38776],["2021-10-12",44428,77,38853],["2021-10-13",44428,57,38910],["2021-10-14",44428,52,38962],["2021-10-15",44428,62,39024],["2021-10-16",44428,16,39040],["2021-10-17",44428,14,39054],["2021-10-18",44428,65,39119],["2021-10-19",44428,77,39196],["2021-10-20",44428,94,39290],["2021-10-21",44428,53,39343],["2021-10-22",44428,60,39403],["2021-10-23",44428,50,39453],["2021-10-24",44428,39,39492],["2021-10-25",44428,70,39562],["2021-10-26",44428,296,39858],["2021-10-27",44428,326,40184],["2021-10-28",44428,128,40312],["2021-10-29",44428,150,40462],["2021-10-30",44428,47,40509],["2021-10-31",44428,42,40551],["2021-11-01",44428,61,40612],["2021-11-02",44428,340,40952],["2021-11-03",44428,315,41267],["2021-11-04",44428,123,41390],["2021-11-05",44428,120,41510],["2021-11-06",44428,42,41552],["2021-11-07",44428,22,41574],["2021-11-08",44428,77,41651],["2021-11-09",44428,280,41931],["2021-11-10",44428,242,42173],["2021-11-11",44428,97,42270],["2021-11-12",44428,140,42410],["2021-11-13",44428,31,42441],["2021-11-14",44428,25,42466],["2021-11-15",44428,64,42530],["2021-11-16",44428,251,42781],["2021-11-17",44428,202,42983],["2021-11-18",44428,82,43065],["2021-11-19",44428,119,43184],["2021-11-20",44428,61,43245],["2021-11-21",44428,26,43271],["2021-11-22",44428,62,43333],["2021-11-23",44428,339,43672],["2021-11-24",44428,127,43799],["2021-11-25",44428,2,43801],["2021-11-26",44428,57,43858],["2021-11-27",44428,23,43881],["2021-11-28",44428,33,43914],["2021-11-29",44428,64,43978],["2021-11-30",44428,329,44307],["2021-12-01",44428,278,44585],["2021-12-02",44428,113,44698],["2021-12-03",44428,103,44801],["2021-12-04",44428,90,44891],["2021-12-05",44428,42,44933],["2021-12-06",44428,98,45031],["2021-12-07",44428,277,45308],["2021-12-08",44428,230,45538],["2021-12-09",44428,215,45753],["2021-12-10",44428,120,45873],["2021-12-11",44428,28,45901],["2021-12-12",44428,36,45937],["2021-12-13",44428,47,45984],["2021-12-14",44428,212,46196],["2021-12-15",44428,191,46387],["2021-12-16",44428,74,46461],["2021-12-17",44428,66,46527],["2021-12-18",44428,35,46562],["2021-12-19",44428,26,46588],["2021-12-20",44428,72,46660],["2021-12-21",44428,240,46900],["2021-12-22",44428,171,47071],["2021-12-23",44428,83,47154],["2021-12-24",44428,23,47177],["2021-12-26",44428,28,47205],["2021-12-27",44428,68,47273],["2021-12-28",44428,308,47581],["2021-12-29",44428,237,47818],["2021-12-30",44428,77,47895],["2021-12-31",44428,56,47951],["2022-01-01",44428,9,47960],["2022-01-02",44428,14,47974],["2022-01-03",44428,18,47992]]} \ No newline at end of file diff --git a/public/data/overall/vaccinations/by-county/Banks.json b/public/data/overall/vaccinations/by-county/Banks.json new file mode 100644 index 000000000..3e7f9ece6 --- /dev/null +++ b/public/data/overall/vaccinations/by-county/Banks.json @@ -0,0 +1 @@ +{"segment":{"county":"Banks"},"headers":["report_date","population","vaccinations","total_vaccinations"],"rows":[["2020-12-14",19982,1,1],["2020-12-18",19982,2,3],["2020-12-19",19982,2,5],["2020-12-20",19982,1,6],["2020-12-21",19982,9,15],["2020-12-22",19982,16,31],["2020-12-23",19982,11,42],["2020-12-26",19982,2,44],["2020-12-27",19982,2,46],["2020-12-28",19982,16,62],["2020-12-29",19982,24,86],["2020-12-30",19982,13,99],["2020-12-31",19982,7,106],["2021-01-01",19982,3,109],["2021-01-02",19982,2,111],["2021-01-03",19982,1,112],["2021-01-04",19982,13,125],["2021-01-05",19982,24,149],["2021-01-06",19982,11,160],["2021-01-07",19982,9,169],["2021-01-08",19982,14,183],["2021-01-09",19982,5,188],["2021-01-10",19982,4,192],["2021-01-11",19982,43,235],["2021-01-12",19982,54,289],["2021-01-13",19982,101,390],["2021-01-14",19982,133,523],["2021-01-15",19982,78,601],["2021-01-16",19982,10,611],["2021-01-17",19982,11,622],["2021-01-18",19982,88,710],["2021-01-19",19982,102,812],["2021-01-20",19982,94,906],["2021-01-21",19982,41,947],["2021-01-22",19982,53,1000],["2021-01-23",19982,17,1017],["2021-01-24",19982,11,1028],["2021-01-25",19982,32,1060],["2021-01-26",19982,61,1121],["2021-01-27",19982,84,1205],["2021-01-28",19982,29,1234],["2021-01-29",19982,47,1281],["2021-01-30",19982,8,1289],["2021-01-31",19982,6,1295],["2021-02-01",19982,49,1344],["2021-02-02",19982,61,1405],["2021-02-03",19982,107,1512],["2021-02-04",19982,42,1554],["2021-02-05",19982,32,1586],["2021-02-06",19982,13,1599],["2021-02-07",19982,5,1604],["2021-02-08",19982,88,1692],["2021-02-09",19982,77,1769],["2021-02-10",19982,103,1872],["2021-02-11",19982,112,1984],["2021-02-12",19982,67,2051],["2021-02-13",19982,11,2062],["2021-02-14",19982,6,2068],["2021-02-15",19982,111,2179],["2021-02-16",19982,80,2259],["2021-02-17",19982,65,2324],["2021-02-18",19982,55,2379],["2021-02-19",19982,57,2436],["2021-02-20",19982,10,2446],["2021-02-21",19982,11,2457],["2021-02-22",19982,51,2508],["2021-02-23",19982,42,2550],["2021-02-24",19982,67,2617],["2021-02-25",19982,61,2678],["2021-02-26",19982,52,2730],["2021-02-27",19982,14,2744],["2021-02-28",19982,12,2756],["2021-03-01",19982,51,2807],["2021-03-02",19982,99,2906],["2021-03-03",19982,104,3010],["2021-03-04",19982,69,3079],["2021-03-05",19982,57,3136],["2021-03-06",19982,21,3157],["2021-03-07",19982,20,3177],["2021-03-08",19982,58,3235],["2021-03-09",19982,95,3330],["2021-03-10",19982,83,3413],["2021-03-11",19982,77,3490],["2021-03-12",19982,103,3593],["2021-03-13",19982,30,3623],["2021-03-14",19982,6,3629],["2021-03-15",19982,96,3725],["2021-03-16",19982,165,3890],["2021-03-17",19982,91,3981],["2021-03-18",19982,124,4105],["2021-03-19",19982,83,4188],["2021-03-20",19982,22,4210],["2021-03-21",19982,48,4258],["2021-03-22",19982,52,4310],["2021-03-23",19982,70,4380],["2021-03-24",19982,89,4469],["2021-03-25",19982,88,4557],["2021-03-26",19982,59,4616],["2021-03-27",19982,18,4634],["2021-03-28",19982,19,4653],["2021-03-29",19982,73,4726],["2021-03-30",19982,86,4812],["2021-03-31",19982,82,4894],["2021-04-01",19982,101,4995],["2021-04-02",19982,52,5047],["2021-04-03",19982,26,5073],["2021-04-04",19982,17,5090],["2021-04-05",19982,86,5176],["2021-04-06",19982,176,5352],["2021-04-07",19982,92,5444],["2021-04-08",19982,130,5574],["2021-04-09",19982,83,5657],["2021-04-10",19982,27,5684],["2021-04-11",19982,53,5737],["2021-04-12",19982,113,5850],["2021-04-13",19982,56,5906],["2021-04-14",19982,82,5988],["2021-04-15",19982,113,6101],["2021-04-16",19982,60,6161],["2021-04-17",19982,24,6185],["2021-04-18",19982,7,6192],["2021-04-19",19982,64,6256],["2021-04-20",19982,86,6342],["2021-04-21",19982,106,6448],["2021-04-22",19982,97,6545],["2021-04-23",19982,97,6642],["2021-04-24",19982,25,6667],["2021-04-25",19982,8,6675],["2021-04-26",19982,63,6738],["2021-04-27",19982,58,6796],["2021-04-28",19982,92,6888],["2021-04-29",19982,88,6976],["2021-04-30",19982,77,7053],["2021-05-01",19982,19,7072],["2021-05-02",19982,12,7084],["2021-05-03",19982,43,7127],["2021-05-04",19982,45,7172],["2021-05-05",19982,77,7249],["2021-05-06",19982,50,7299],["2021-05-07",19982,67,7366],["2021-05-08",19982,16,7382],["2021-05-09",19982,14,7396],["2021-05-10",19982,35,7431],["2021-05-11",19982,36,7467],["2021-05-12",19982,44,7511],["2021-05-13",19982,47,7558],["2021-05-14",19982,51,7609],["2021-05-15",19982,22,7631],["2021-05-16",19982,7,7638],["2021-05-17",19982,33,7671],["2021-05-18",19982,39,7710],["2021-05-19",19982,47,7757],["2021-05-20",19982,49,7806],["2021-05-21",19982,49,7855],["2021-05-22",19982,16,7871],["2021-05-23",19982,10,7881],["2021-05-24",19982,21,7902],["2021-05-25",19982,35,7937],["2021-05-26",19982,33,7970],["2021-05-27",19982,38,8008],["2021-05-28",19982,43,8051],["2021-05-29",19982,10,8061],["2021-05-30",19982,4,8065],["2021-05-31",19982,9,8074],["2021-06-01",19982,27,8101],["2021-06-02",19982,34,8135],["2021-06-03",19982,21,8156],["2021-06-04",19982,18,8174],["2021-06-05",19982,16,8190],["2021-06-06",19982,9,8199],["2021-06-07",19982,22,8221],["2021-06-08",19982,24,8245],["2021-06-09",19982,18,8263],["2021-06-10",19982,25,8288],["2021-06-11",19982,29,8317],["2021-06-12",19982,15,8332],["2021-06-13",19982,8,8340],["2021-06-14",19982,25,8365],["2021-06-15",19982,34,8399],["2021-06-16",19982,22,8421],["2021-06-17",19982,16,8437],["2021-06-18",19982,29,8466],["2021-06-19",19982,13,8479],["2021-06-20",19982,2,8481],["2021-06-21",19982,11,8492],["2021-06-22",19982,21,8513],["2021-06-23",19982,28,8541],["2021-06-24",19982,10,8551],["2021-06-25",19982,22,8573],["2021-06-26",19982,5,8578],["2021-06-27",19982,4,8582],["2021-06-28",19982,10,8592],["2021-06-29",19982,9,8601],["2021-06-30",19982,11,8612],["2021-07-01",19982,16,8628],["2021-07-02",19982,14,8642],["2021-07-03",19982,10,8652],["2021-07-04",19982,2,8654],["2021-07-05",19982,2,8656],["2021-07-06",19982,8,8664],["2021-07-07",19982,16,8680],["2021-07-08",19982,11,8691],["2021-07-09",19982,17,8708],["2021-07-10",19982,10,8718],["2021-07-11",19982,2,8720],["2021-07-12",19982,12,8732],["2021-07-13",19982,10,8742],["2021-07-14",19982,11,8753],["2021-07-15",19982,12,8765],["2021-07-16",19982,25,8790],["2021-07-17",19982,9,8799],["2021-07-18",19982,5,8804],["2021-07-19",19982,15,8819],["2021-07-20",19982,16,8835],["2021-07-21",19982,16,8851],["2021-07-22",19982,16,8867],["2021-07-23",19982,23,8890],["2021-07-24",19982,13,8903],["2021-07-25",19982,10,8913],["2021-07-26",19982,7,8920],["2021-07-27",19982,16,8936],["2021-07-28",19982,23,8959],["2021-07-29",19982,24,8983],["2021-07-30",19982,30,9013],["2021-07-31",19982,16,9029],["2021-08-01",19982,11,9040],["2021-08-02",19982,22,9062],["2021-08-03",19982,41,9103],["2021-08-04",19982,32,9135],["2021-08-05",19982,36,9171],["2021-08-06",19982,45,9216],["2021-08-07",19982,22,9238],["2021-08-08",19982,16,9254],["2021-08-09",19982,33,9287],["2021-08-10",19982,37,9324],["2021-08-11",19982,32,9356],["2021-08-12",19982,39,9395],["2021-08-13",19982,49,9444],["2021-08-14",19982,30,9474],["2021-08-15",19982,22,9496],["2021-08-16",19982,32,9528],["2021-08-17",19982,29,9557],["2021-08-18",19982,45,9602],["2021-08-19",19982,32,9634],["2021-08-20",19982,63,9697],["2021-08-21",19982,35,9732],["2021-08-22",19982,11,9743],["2021-08-23",19982,43,9786],["2021-08-24",19982,51,9837],["2021-08-25",19982,28,9865],["2021-08-26",19982,50,9915],["2021-08-27",19982,59,9974],["2021-08-28",19982,34,10008],["2021-08-29",19982,19,10027],["2021-08-30",19982,50,10077],["2021-08-31",19982,63,10140],["2021-09-01",19982,59,10199],["2021-09-02",19982,47,10246],["2021-09-03",19982,76,10322],["2021-09-04",19982,32,10354],["2021-09-05",19982,23,10377],["2021-09-06",19982,5,10382],["2021-09-07",19982,38,10420],["2021-09-08",19982,46,10466],["2021-09-09",19982,43,10509],["2021-09-10",19982,70,10579],["2021-09-11",19982,31,10610],["2021-09-12",19982,13,10623],["2021-09-13",19982,39,10662],["2021-09-14",19982,39,10701],["2021-09-15",19982,37,10738],["2021-09-16",19982,50,10788],["2021-09-17",19982,45,10833],["2021-09-18",19982,28,10861],["2021-09-19",19982,11,10872],["2021-09-20",19982,43,10915],["2021-09-21",19982,39,10954],["2021-09-22",19982,36,10990],["2021-09-23",19982,23,11013],["2021-09-24",19982,49,11062],["2021-09-25",19982,14,11076],["2021-09-26",19982,10,11086],["2021-09-27",19982,27,11113],["2021-09-28",19982,35,11148],["2021-09-29",19982,21,11169],["2021-09-30",19982,31,11200],["2021-10-01",19982,52,11252],["2021-10-02",19982,13,11265],["2021-10-03",19982,14,11279],["2021-10-04",19982,15,11294],["2021-10-05",19982,20,11314],["2021-10-06",19982,28,11342],["2021-10-07",19982,26,11368],["2021-10-08",19982,36,11404],["2021-10-09",19982,7,11411],["2021-10-10",19982,8,11419],["2021-10-11",19982,20,11439],["2021-10-12",19982,29,11468],["2021-10-13",19982,18,11486],["2021-10-14",19982,19,11505],["2021-10-15",19982,25,11530],["2021-10-16",19982,11,11541],["2021-10-17",19982,9,11550],["2021-10-18",19982,9,11559],["2021-10-19",19982,13,11572],["2021-10-20",19982,21,11593],["2021-10-21",19982,14,11607],["2021-10-22",19982,24,11631],["2021-10-23",19982,25,11656],["2021-10-24",19982,7,11663],["2021-10-25",19982,42,11705],["2021-10-26",19982,90,11795],["2021-10-27",19982,72,11867],["2021-10-28",19982,73,11940],["2021-10-29",19982,59,11999],["2021-10-30",19982,11,12010],["2021-10-31",19982,8,12018],["2021-11-01",19982,52,12070],["2021-11-02",19982,45,12115],["2021-11-03",19982,55,12170],["2021-11-04",19982,37,12207],["2021-11-05",19982,61,12268],["2021-11-06",19982,14,12282],["2021-11-07",19982,8,12290],["2021-11-08",19982,33,12323],["2021-11-09",19982,35,12358],["2021-11-10",19982,46,12404],["2021-11-11",19982,46,12450],["2021-11-12",19982,47,12497],["2021-11-13",19982,8,12505],["2021-11-14",19982,9,12514],["2021-11-15",19982,26,12540],["2021-11-16",19982,38,12578],["2021-11-17",19982,34,12612],["2021-11-18",19982,41,12653],["2021-11-19",19982,33,12686],["2021-11-20",19982,19,12705],["2021-11-21",19982,8,12713],["2021-11-22",19982,21,12734],["2021-11-23",19982,35,12769],["2021-11-24",19982,27,12796],["2021-11-25",19982,2,12798],["2021-11-26",19982,18,12816],["2021-11-27",19982,11,12827],["2021-11-28",19982,8,12835],["2021-11-29",19982,36,12871],["2021-11-30",19982,62,12933],["2021-12-01",19982,58,12991],["2021-12-02",19982,33,13024],["2021-12-03",19982,44,13068],["2021-12-04",19982,18,13086],["2021-12-05",19982,5,13091],["2021-12-06",19982,33,13124],["2021-12-07",19982,26,13150],["2021-12-08",19982,27,13177],["2021-12-09",19982,36,13213],["2021-12-10",19982,41,13254],["2021-12-11",19982,12,13266],["2021-12-12",19982,16,13282],["2021-12-13",19982,23,13305],["2021-12-14",19982,29,13334],["2021-12-15",19982,26,13360],["2021-12-16",19982,24,13384],["2021-12-17",19982,37,13421],["2021-12-18",19982,17,13438],["2021-12-19",19982,13,13451],["2021-12-20",19982,28,13479],["2021-12-21",19982,39,13518],["2021-12-22",19982,41,13559],["2021-12-23",19982,30,13589],["2021-12-24",19982,4,13593],["2021-12-26",19982,12,13605],["2021-12-27",19982,30,13635],["2021-12-28",19982,41,13676],["2021-12-29",19982,42,13718],["2021-12-30",19982,30,13748],["2021-12-31",19982,27,13775],["2022-01-01",19982,8,13783],["2022-01-02",19982,12,13795],["2022-01-03",19982,14,13809]]} \ No newline at end of file diff --git a/public/data/overall/vaccinations/by-county/Barrow.json b/public/data/overall/vaccinations/by-county/Barrow.json new file mode 100644 index 000000000..4206ecfee --- /dev/null +++ b/public/data/overall/vaccinations/by-county/Barrow.json @@ -0,0 +1 @@ +{"segment":{"county":"Barrow"},"headers":["report_date","population","vaccinations","total_vaccinations"],"rows":[["2020-12-16",86383,2,2],["2020-12-17",86383,8,10],["2020-12-18",86383,23,33],["2020-12-19",86383,10,43],["2020-12-20",86383,11,54],["2020-12-21",86383,30,84],["2020-12-22",86383,37,121],["2020-12-23",86383,64,185],["2020-12-24",86383,17,202],["2020-12-25",86383,2,204],["2020-12-26",86383,10,214],["2020-12-27",86383,10,224],["2020-12-28",86383,73,297],["2020-12-29",86383,170,467],["2020-12-30",86383,74,541],["2020-12-31",86383,46,587],["2021-01-01",86383,21,608],["2021-01-02",86383,13,621],["2021-01-03",86383,19,640],["2021-01-04",86383,63,703],["2021-01-05",86383,59,762],["2021-01-06",86383,102,864],["2021-01-07",86383,61,925],["2021-01-08",86383,88,1013],["2021-01-09",86383,52,1065],["2021-01-10",86383,16,1081],["2021-01-11",86383,95,1176],["2021-01-12",86383,124,1300],["2021-01-13",86383,122,1422],["2021-01-14",86383,178,1600],["2021-01-15",86383,235,1835],["2021-01-16",86383,162,1997],["2021-01-17",86383,55,2052],["2021-01-18",86383,197,2249],["2021-01-19",86383,245,2494],["2021-01-20",86383,384,2878],["2021-01-21",86383,184,3062],["2021-01-22",86383,193,3255],["2021-01-23",86383,159,3414],["2021-01-24",86383,53,3467],["2021-01-25",86383,153,3620],["2021-01-26",86383,277,3897],["2021-01-27",86383,311,4208],["2021-01-28",86383,259,4467],["2021-01-29",86383,308,4775],["2021-01-30",86383,52,4827],["2021-01-31",86383,11,4838],["2021-02-01",86383,130,4968],["2021-02-02",86383,194,5162],["2021-02-03",86383,237,5399],["2021-02-04",86383,178,5577],["2021-02-05",86383,162,5739],["2021-02-06",86383,86,5825],["2021-02-07",86383,22,5847],["2021-02-08",86383,163,6010],["2021-02-09",86383,242,6252],["2021-02-10",86383,239,6491],["2021-02-11",86383,210,6701],["2021-02-12",86383,247,6948],["2021-02-13",86383,163,7111],["2021-02-14",86383,59,7170],["2021-02-15",86383,259,7429],["2021-02-16",86383,290,7719],["2021-02-17",86383,316,8035],["2021-02-18",86383,205,8240],["2021-02-19",86383,220,8460],["2021-02-20",86383,154,8614],["2021-02-21",86383,26,8640],["2021-02-22",86383,172,8812],["2021-02-23",86383,328,9140],["2021-02-24",86383,377,9517],["2021-02-25",86383,268,9785],["2021-02-26",86383,404,10189],["2021-02-27",86383,209,10398],["2021-02-28",86383,46,10444],["2021-03-01",86383,234,10678],["2021-03-02",86383,356,11034],["2021-03-03",86383,354,11388],["2021-03-04",86383,273,11661],["2021-03-05",86383,303,11964],["2021-03-06",86383,186,12150],["2021-03-07",86383,55,12205],["2021-03-08",86383,383,12588],["2021-03-09",86383,444,13032],["2021-03-10",86383,466,13498],["2021-03-11",86383,707,14205],["2021-03-12",86383,388,14593],["2021-03-13",86383,196,14789],["2021-03-14",86383,104,14893],["2021-03-15",86383,309,15202],["2021-03-16",86383,492,15694],["2021-03-17",86383,701,16395],["2021-03-18",86383,449,16844],["2021-03-19",86383,350,17194],["2021-03-20",86383,306,17500],["2021-03-21",86383,99,17599],["2021-03-22",86383,277,17876],["2021-03-23",86383,608,18484],["2021-03-24",86383,485,18969],["2021-03-25",86383,655,19624],["2021-03-26",86383,503,20127],["2021-03-27",86383,279,20406],["2021-03-28",86383,130,20536],["2021-03-29",86383,510,21046],["2021-03-30",86383,680,21726],["2021-03-31",86383,723,22449],["2021-04-01",86383,1009,23458],["2021-04-02",86383,542,24000],["2021-04-03",86383,277,24277],["2021-04-04",86383,138,24415],["2021-04-05",86383,524,24939],["2021-04-06",86383,676,25615],["2021-04-07",86383,856,26471],["2021-04-08",86383,540,27011],["2021-04-09",86383,572,27583],["2021-04-10",86383,355,27938],["2021-04-11",86383,185,28123],["2021-04-12",86383,463,28586],["2021-04-13",86383,630,29216],["2021-04-14",86383,642,29858],["2021-04-15",86383,552,30410],["2021-04-16",86383,526,30936],["2021-04-17",86383,215,31151],["2021-04-18",86383,127,31278],["2021-04-19",86383,414,31692],["2021-04-20",86383,656,32348],["2021-04-21",86383,624,32972],["2021-04-22",86383,636,33608],["2021-04-23",86383,616,34224],["2021-04-24",86383,236,34460],["2021-04-25",86383,107,34567],["2021-04-26",86383,480,35047],["2021-04-27",86383,617,35664],["2021-04-28",86383,554,36218],["2021-04-29",86383,527,36745],["2021-04-30",86383,554,37299],["2021-05-01",86383,291,37590],["2021-05-02",86383,137,37727],["2021-05-03",86383,332,38059],["2021-05-04",86383,446,38505],["2021-05-05",86383,408,38913],["2021-05-06",86383,377,39290],["2021-05-07",86383,417,39707],["2021-05-08",86383,251,39958],["2021-05-09",86383,93,40051],["2021-05-10",86383,234,40285],["2021-05-11",86383,328,40613],["2021-05-12",86383,337,40950],["2021-05-13",86383,270,41220],["2021-05-14",86383,383,41603],["2021-05-15",86383,208,41811],["2021-05-16",86383,147,41958],["2021-05-17",86383,276,42234],["2021-05-18",86383,337,42571],["2021-05-19",86383,401,42972],["2021-05-20",86383,326,43298],["2021-05-21",86383,347,43645],["2021-05-22",86383,229,43874],["2021-05-23",86383,92,43966],["2021-05-24",86383,202,44168],["2021-05-25",86383,292,44460],["2021-05-26",86383,255,44715],["2021-05-27",86383,230,44945],["2021-05-28",86383,249,45194],["2021-05-29",86383,111,45305],["2021-05-30",86383,74,45379],["2021-05-31",86383,53,45432],["2021-06-01",86383,246,45678],["2021-06-02",86383,247,45925],["2021-06-03",86383,209,46134],["2021-06-04",86383,280,46414],["2021-06-05",86383,220,46634],["2021-06-06",86383,96,46730],["2021-06-07",86383,209,46939],["2021-06-08",86383,197,47136],["2021-06-09",86383,208,47344],["2021-06-10",86383,180,47524],["2021-06-11",86383,286,47810],["2021-06-12",86383,167,47977],["2021-06-13",86383,77,48054],["2021-06-14",86383,132,48186],["2021-06-15",86383,215,48401],["2021-06-16",86383,159,48560],["2021-06-17",86383,141,48701],["2021-06-18",86383,191,48892],["2021-06-19",86383,113,49005],["2021-06-20",86383,48,49053],["2021-06-21",86383,107,49160],["2021-06-22",86383,137,49297],["2021-06-23",86383,147,49444],["2021-06-24",86383,138,49582],["2021-06-25",86383,174,49756],["2021-06-26",86383,121,49877],["2021-06-27",86383,58,49935],["2021-06-28",86383,167,50102],["2021-06-29",86383,133,50235],["2021-06-30",86383,157,50392],["2021-07-01",86383,98,50490],["2021-07-02",86383,154,50644],["2021-07-03",86383,86,50730],["2021-07-04",86383,8,50738],["2021-07-05",86383,58,50796],["2021-07-06",86383,92,50888],["2021-07-07",86383,124,51012],["2021-07-08",86383,79,51091],["2021-07-09",86383,153,51244],["2021-07-10",86383,76,51320],["2021-07-11",86383,60,51380],["2021-07-12",86383,85,51465],["2021-07-13",86383,93,51558],["2021-07-14",86383,90,51648],["2021-07-15",86383,91,51739],["2021-07-16",86383,151,51890],["2021-07-17",86383,96,51986],["2021-07-18",86383,66,52052],["2021-07-19",86383,113,52165],["2021-07-20",86383,102,52267],["2021-07-21",86383,211,52478],["2021-07-22",86383,117,52595],["2021-07-23",86383,151,52746],["2021-07-24",86383,118,52864],["2021-07-25",86383,70,52934],["2021-07-26",86383,130,53064],["2021-07-27",86383,128,53192],["2021-07-28",86383,195,53387],["2021-07-29",86383,140,53527],["2021-07-30",86383,207,53734],["2021-07-31",86383,119,53853],["2021-08-01",86383,87,53940],["2021-08-02",86383,174,54114],["2021-08-03",86383,107,54221],["2021-08-04",86383,182,54403],["2021-08-05",86383,172,54575],["2021-08-06",86383,211,54786],["2021-08-07",86383,150,54936],["2021-08-08",86383,113,55049],["2021-08-09",86383,180,55229],["2021-08-10",86383,174,55403],["2021-08-11",86383,165,55568],["2021-08-12",86383,172,55740],["2021-08-13",86383,227,55967],["2021-08-14",86383,155,56122],["2021-08-15",86383,108,56230],["2021-08-16",86383,196,56426],["2021-08-17",86383,173,56599],["2021-08-18",86383,204,56803],["2021-08-19",86383,197,57000],["2021-08-20",86383,283,57283],["2021-08-21",86383,166,57449],["2021-08-22",86383,89,57538],["2021-08-23",86383,183,57721],["2021-08-24",86383,201,57922],["2021-08-25",86383,203,58125],["2021-08-26",86383,189,58314],["2021-08-27",86383,280,58594],["2021-08-28",86383,189,58783],["2021-08-29",86383,119,58902],["2021-08-30",86383,186,59088],["2021-08-31",86383,183,59271],["2021-09-01",86383,200,59471],["2021-09-02",86383,210,59681],["2021-09-03",86383,259,59940],["2021-09-04",86383,159,60099],["2021-09-05",86383,117,60216],["2021-09-06",86383,32,60248],["2021-09-07",86383,183,60431],["2021-09-08",86383,185,60616],["2021-09-09",86383,194,60810],["2021-09-10",86383,228,61038],["2021-09-11",86383,130,61168],["2021-09-12",86383,86,61254],["2021-09-13",86383,188,61442],["2021-09-14",86383,148,61590],["2021-09-15",86383,159,61749],["2021-09-16",86383,143,61892],["2021-09-17",86383,219,62111],["2021-09-18",86383,125,62236],["2021-09-19",86383,76,62312],["2021-09-20",86383,109,62421],["2021-09-21",86383,135,62556],["2021-09-22",86383,124,62680],["2021-09-23",86383,115,62795],["2021-09-24",86383,219,63014],["2021-09-25",86383,121,63135],["2021-09-26",86383,63,63198],["2021-09-27",86383,108,63306],["2021-09-28",86383,189,63495],["2021-09-29",86383,174,63669],["2021-09-30",86383,150,63819],["2021-10-01",86383,207,64026],["2021-10-02",86383,86,64112],["2021-10-03",86383,60,64172],["2021-10-04",86383,183,64355],["2021-10-05",86383,116,64471],["2021-10-06",86383,123,64594],["2021-10-07",86383,119,64713],["2021-10-08",86383,189,64902],["2021-10-09",86383,90,64992],["2021-10-10",86383,52,65044],["2021-10-11",86383,79,65123],["2021-10-12",86383,92,65215],["2021-10-13",86383,131,65346],["2021-10-14",86383,96,65442],["2021-10-15",86383,160,65602],["2021-10-16",86383,64,65666],["2021-10-17",86383,41,65707],["2021-10-18",86383,98,65805],["2021-10-19",86383,94,65899],["2021-10-20",86383,162,66061],["2021-10-21",86383,87,66148],["2021-10-22",86383,156,66304],["2021-10-23",86383,143,66447],["2021-10-24",86383,100,66547],["2021-10-25",86383,225,66772],["2021-10-26",86383,173,66945],["2021-10-27",86383,204,67149],["2021-10-28",86383,209,67358],["2021-10-29",86383,242,67600],["2021-10-30",86383,93,67693],["2021-10-31",86383,71,67764],["2021-11-01",86383,165,67929],["2021-11-02",86383,199,68128],["2021-11-03",86383,230,68358],["2021-11-04",86383,168,68526],["2021-11-05",86383,263,68789],["2021-11-06",86383,98,68887],["2021-11-07",86383,79,68966],["2021-11-08",86383,142,69108],["2021-11-09",86383,158,69266],["2021-11-10",86383,173,69439],["2021-11-11",86383,183,69622],["2021-11-12",86383,196,69818],["2021-11-13",86383,117,69935],["2021-11-14",86383,44,69979],["2021-11-15",86383,218,70197],["2021-11-16",86383,155,70352],["2021-11-17",86383,133,70485],["2021-11-18",86383,182,70667],["2021-11-19",86383,245,70912],["2021-11-20",86383,126,71038],["2021-11-21",86383,94,71132],["2021-11-22",86383,183,71315],["2021-11-23",86383,179,71494],["2021-11-24",86383,124,71618],["2021-11-26",86383,138,71756],["2021-11-27",86383,105,71861],["2021-11-28",86383,62,71923],["2021-11-29",86383,224,72147],["2021-11-30",86383,232,72379],["2021-12-01",86383,268,72647],["2021-12-02",86383,265,72912],["2021-12-03",86383,305,73217],["2021-12-04",86383,166,73383],["2021-12-05",86383,98,73481],["2021-12-06",86383,252,73733],["2021-12-07",86383,191,73924],["2021-12-08",86383,193,74117],["2021-12-09",86383,230,74347],["2021-12-10",86383,305,74652],["2021-12-11",86383,125,74777],["2021-12-12",86383,91,74868],["2021-12-13",86383,169,75037],["2021-12-14",86383,136,75173],["2021-12-15",86383,192,75365],["2021-12-16",86383,177,75542],["2021-12-17",86383,221,75763],["2021-12-18",86383,140,75903],["2021-12-19",86383,76,75979],["2021-12-20",86383,175,76154],["2021-12-21",86383,192,76346],["2021-12-22",86383,241,76587],["2021-12-23",86383,199,76786],["2021-12-24",86383,60,76846],["2021-12-26",86383,74,76920],["2021-12-27",86383,192,77112],["2021-12-28",86383,220,77332],["2021-12-29",86383,207,77539],["2021-12-30",86383,232,77771],["2021-12-31",86383,114,77885],["2022-01-01",86383,34,77919],["2022-01-02",86383,63,77982],["2022-01-03",86383,44,78026]]} \ No newline at end of file diff --git a/public/data/overall/vaccinations/by-county/Bartow.json b/public/data/overall/vaccinations/by-county/Bartow.json new file mode 100644 index 000000000..4e85e3460 --- /dev/null +++ b/public/data/overall/vaccinations/by-county/Bartow.json @@ -0,0 +1 @@ +{"segment":{"county":"Bartow"},"headers":["report_date","population","vaccinations","total_vaccinations"],"rows":[["2020-12-14",110771,2,2],["2020-12-15",110771,1,3],["2020-12-17",110771,4,7],["2020-12-18",110771,22,29],["2020-12-19",110771,3,32],["2020-12-20",110771,8,40],["2020-12-21",110771,38,78],["2020-12-22",110771,43,121],["2020-12-23",110771,58,179],["2020-12-24",110771,11,190],["2020-12-26",110771,3,193],["2020-12-27",110771,19,212],["2020-12-28",110771,261,473],["2020-12-29",110771,132,605],["2020-12-30",110771,167,772],["2020-12-31",110771,59,831],["2021-01-01",110771,25,856],["2021-01-02",110771,18,874],["2021-01-03",110771,12,886],["2021-01-04",110771,105,991],["2021-01-05",110771,140,1131],["2021-01-06",110771,114,1245],["2021-01-07",110771,186,1431],["2021-01-08",110771,86,1517],["2021-01-09",110771,18,1535],["2021-01-10",110771,11,1546],["2021-01-11",110771,280,1826],["2021-01-12",110771,366,2192],["2021-01-13",110771,441,2633],["2021-01-14",110771,512,3145],["2021-01-15",110771,255,3400],["2021-01-16",110771,68,3468],["2021-01-17",110771,87,3555],["2021-01-18",110771,551,4106],["2021-01-19",110771,597,4703],["2021-01-20",110771,505,5208],["2021-01-21",110771,392,5600],["2021-01-22",110771,224,5824],["2021-01-23",110771,52,5876],["2021-01-24",110771,52,5928],["2021-01-25",110771,530,6458],["2021-01-26",110771,639,7097],["2021-01-27",110771,593,7690],["2021-01-28",110771,580,8270],["2021-01-29",110771,215,8485],["2021-01-30",110771,51,8536],["2021-01-31",110771,7,8543],["2021-02-01",110771,326,8869],["2021-02-02",110771,252,9121],["2021-02-03",110771,289,9410],["2021-02-04",110771,433,9843],["2021-02-05",110771,250,10093],["2021-02-06",110771,53,10146],["2021-02-07",110771,16,10162],["2021-02-08",110771,347,10509],["2021-02-09",110771,332,10841],["2021-02-10",110771,460,11301],["2021-02-11",110771,491,11792],["2021-02-12",110771,353,12145],["2021-02-13",110771,173,12318],["2021-02-14",110771,61,12379],["2021-02-15",110771,511,12890],["2021-02-16",110771,241,13131],["2021-02-17",110771,323,13454],["2021-02-18",110771,385,13839],["2021-02-19",110771,260,14099],["2021-02-20",110771,41,14140],["2021-02-21",110771,35,14175],["2021-02-22",110771,140,14315],["2021-02-23",110771,236,14551],["2021-02-24",110771,572,15123],["2021-02-25",110771,574,15697],["2021-02-26",110771,431,16128],["2021-02-27",110771,113,16241],["2021-02-28",110771,76,16317],["2021-03-01",110771,781,17098],["2021-03-02",110771,760,17858],["2021-03-03",110771,754,18612],["2021-03-04",110771,635,19247],["2021-03-05",110771,444,19691],["2021-03-06",110771,125,19816],["2021-03-07",110771,75,19891],["2021-03-08",110771,579,20470],["2021-03-09",110771,517,20987],["2021-03-10",110771,425,21412],["2021-03-11",110771,394,21806],["2021-03-12",110771,493,22299],["2021-03-13",110771,191,22490],["2021-03-14",110771,49,22539],["2021-03-15",110771,683,23222],["2021-03-16",110771,709,23931],["2021-03-17",110771,646,24577],["2021-03-18",110771,535,25112],["2021-03-19",110771,616,25728],["2021-03-20",110771,90,25818],["2021-03-21",110771,117,25935],["2021-03-22",110771,463,26398],["2021-03-23",110771,626,27024],["2021-03-24",110771,633,27657],["2021-03-25",110771,521,28178],["2021-03-26",110771,636,28814],["2021-03-27",110771,274,29088],["2021-03-28",110771,132,29220],["2021-03-29",110771,516,29736],["2021-03-30",110771,642,30378],["2021-03-31",110771,742,31120],["2021-04-01",110771,721,31841],["2021-04-02",110771,508,32349],["2021-04-03",110771,204,32553],["2021-04-04",110771,148,32701],["2021-04-05",110771,899,33600],["2021-04-06",110771,624,34224],["2021-04-07",110771,878,35102],["2021-04-08",110771,645,35747],["2021-04-09",110771,769,36516],["2021-04-10",110771,368,36884],["2021-04-11",110771,133,37017],["2021-04-12",110771,867,37884],["2021-04-13",110771,639,38523],["2021-04-14",110771,900,39423],["2021-04-15",110771,698,40121],["2021-04-16",110771,895,41016],["2021-04-17",110771,125,41141],["2021-04-18",110771,75,41216],["2021-04-19",110771,666,41882],["2021-04-20",110771,628,42510],["2021-04-21",110771,789,43299],["2021-04-22",110771,626,43925],["2021-04-23",110771,728,44653],["2021-04-24",110771,317,44970],["2021-04-25",110771,99,45069],["2021-04-26",110771,580,45649],["2021-04-27",110771,433,46082],["2021-04-28",110771,636,46718],["2021-04-29",110771,540,47258],["2021-04-30",110771,650,47908],["2021-05-01",110771,180,48088],["2021-05-02",110771,93,48181],["2021-05-03",110771,393,48574],["2021-05-04",110771,421,48995],["2021-05-05",110771,526,49521],["2021-05-06",110771,386,49907],["2021-05-07",110771,452,50359],["2021-05-08",110771,277,50636],["2021-05-09",110771,61,50697],["2021-05-10",110771,337,51034],["2021-05-11",110771,293,51327],["2021-05-12",110771,384,51711],["2021-05-13",110771,427,52138],["2021-05-14",110771,502,52640],["2021-05-15",110771,178,52818],["2021-05-16",110771,106,52924],["2021-05-17",110771,293,53217],["2021-05-18",110771,295,53512],["2021-05-19",110771,384,53896],["2021-05-20",110771,310,54206],["2021-05-21",110771,331,54537],["2021-05-22",110771,142,54679],["2021-05-23",110771,91,54770],["2021-05-24",110771,196,54966],["2021-05-25",110771,242,55208],["2021-05-26",110771,243,55451],["2021-05-27",110771,238,55689],["2021-05-28",110771,205,55894],["2021-05-29",110771,101,55995],["2021-05-30",110771,62,56057],["2021-05-31",110771,37,56094],["2021-06-01",110771,241,56335],["2021-06-02",110771,194,56529],["2021-06-03",110771,186,56715],["2021-06-04",110771,263,56978],["2021-06-05",110771,116,57094],["2021-06-06",110771,99,57193],["2021-06-07",110771,166,57359],["2021-06-08",110771,183,57542],["2021-06-09",110771,149,57691],["2021-06-10",110771,174,57865],["2021-06-11",110771,231,58096],["2021-06-12",110771,144,58240],["2021-06-13",110771,62,58302],["2021-06-14",110771,96,58398],["2021-06-15",110771,157,58555],["2021-06-16",110771,107,58662],["2021-06-17",110771,125,58787],["2021-06-18",110771,143,58930],["2021-06-19",110771,85,59015],["2021-06-20",110771,51,59066],["2021-06-21",110771,107,59173],["2021-06-22",110771,102,59275],["2021-06-23",110771,160,59435],["2021-06-24",110771,129,59564],["2021-06-25",110771,135,59699],["2021-06-26",110771,65,59764],["2021-06-27",110771,46,59810],["2021-06-28",110771,89,59899],["2021-06-29",110771,138,60037],["2021-06-30",110771,84,60121],["2021-07-01",110771,101,60222],["2021-07-02",110771,150,60372],["2021-07-03",110771,55,60427],["2021-07-04",110771,7,60434],["2021-07-05",110771,80,60514],["2021-07-06",110771,96,60610],["2021-07-07",110771,80,60690],["2021-07-08",110771,99,60789],["2021-07-09",110771,114,60903],["2021-07-10",110771,81,60984],["2021-07-11",110771,44,61028],["2021-07-12",110771,77,61105],["2021-07-13",110771,109,61214],["2021-07-14",110771,84,61298],["2021-07-15",110771,110,61408],["2021-07-16",110771,148,61556],["2021-07-17",110771,76,61632],["2021-07-18",110771,61,61693],["2021-07-19",110771,108,61801],["2021-07-20",110771,156,61957],["2021-07-21",110771,113,62070],["2021-07-22",110771,154,62224],["2021-07-23",110771,153,62377],["2021-07-24",110771,105,62482],["2021-07-25",110771,74,62556],["2021-07-26",110771,124,62680],["2021-07-27",110771,145,62825],["2021-07-28",110771,183,63008],["2021-07-29",110771,167,63175],["2021-07-30",110771,218,63393],["2021-07-31",110771,160,63553],["2021-08-01",110771,115,63668],["2021-08-02",110771,180,63848],["2021-08-03",110771,220,64068],["2021-08-04",110771,212,64280],["2021-08-05",110771,235,64515],["2021-08-06",110771,251,64766],["2021-08-07",110771,165,64931],["2021-08-08",110771,106,65037],["2021-08-09",110771,193,65230],["2021-08-10",110771,245,65475],["2021-08-11",110771,208,65683],["2021-08-12",110771,257,65940],["2021-08-13",110771,312,66252],["2021-08-14",110771,196,66448],["2021-08-15",110771,144,66592],["2021-08-16",110771,181,66773],["2021-08-17",110771,218,66991],["2021-08-18",110771,255,67246],["2021-08-19",110771,322,67568],["2021-08-20",110771,406,67974],["2021-08-21",110771,211,68185],["2021-08-22",110771,181,68366],["2021-08-23",110771,300,68666],["2021-08-24",110771,284,68950],["2021-08-25",110771,262,69212],["2021-08-26",110771,231,69443],["2021-08-27",110771,377,69820],["2021-08-28",110771,194,70014],["2021-08-29",110771,175,70189],["2021-08-30",110771,274,70463],["2021-08-31",110771,294,70757],["2021-09-01",110771,293,71050],["2021-09-02",110771,356,71406],["2021-09-03",110771,346,71752],["2021-09-04",110771,215,71967],["2021-09-05",110771,132,72099],["2021-09-06",110771,56,72155],["2021-09-07",110771,264,72419],["2021-09-08",110771,247,72666],["2021-09-09",110771,251,72917],["2021-09-10",110771,367,73284],["2021-09-11",110771,187,73471],["2021-09-12",110771,118,73589],["2021-09-13",110771,238,73827],["2021-09-14",110771,212,74039],["2021-09-15",110771,206,74245],["2021-09-16",110771,238,74483],["2021-09-17",110771,325,74808],["2021-09-18",110771,160,74968],["2021-09-19",110771,110,75078],["2021-09-20",110771,206,75284],["2021-09-21",110771,212,75496],["2021-09-22",110771,185,75681],["2021-09-23",110771,183,75864],["2021-09-24",110771,231,76095],["2021-09-25",110771,120,76215],["2021-09-26",110771,74,76289],["2021-09-27",110771,162,76451],["2021-09-28",110771,165,76616],["2021-09-29",110771,189,76805],["2021-09-30",110771,212,77017],["2021-10-01",110771,256,77273],["2021-10-02",110771,97,77370],["2021-10-03",110771,79,77449],["2021-10-04",110771,127,77576],["2021-10-05",110771,173,77749],["2021-10-06",110771,129,77878],["2021-10-07",110771,141,78019],["2021-10-08",110771,176,78195],["2021-10-09",110771,80,78275],["2021-10-10",110771,52,78327],["2021-10-11",110771,84,78411],["2021-10-12",110771,122,78533],["2021-10-13",110771,112,78645],["2021-10-14",110771,109,78754],["2021-10-15",110771,168,78922],["2021-10-16",110771,73,78995],["2021-10-17",110771,38,79033],["2021-10-18",110771,84,79117],["2021-10-19",110771,108,79225],["2021-10-20",110771,110,79335],["2021-10-21",110771,118,79453],["2021-10-22",110771,216,79669],["2021-10-23",110771,126,79795],["2021-10-24",110771,103,79898],["2021-10-25",110771,325,80223],["2021-10-26",110771,402,80625],["2021-10-27",110771,281,80906],["2021-10-28",110771,312,81218],["2021-10-29",110771,375,81593],["2021-10-30",110771,103,81696],["2021-10-31",110771,62,81758],["2021-11-01",110771,306,82064],["2021-11-02",110771,310,82374],["2021-11-03",110771,266,82640],["2021-11-04",110771,239,82879],["2021-11-05",110771,369,83248],["2021-11-06",110771,128,83376],["2021-11-07",110771,76,83452],["2021-11-08",110771,236,83688],["2021-11-09",110771,203,83891],["2021-11-10",110771,200,84091],["2021-11-11",110771,245,84336],["2021-11-12",110771,322,84658],["2021-11-13",110771,131,84789],["2021-11-14",110771,63,84852],["2021-11-15",110771,194,85046],["2021-11-16",110771,281,85327],["2021-11-17",110771,218,85545],["2021-11-18",110771,237,85782],["2021-11-19",110771,347,86129],["2021-11-20",110771,115,86244],["2021-11-21",110771,89,86333],["2021-11-22",110771,215,86548],["2021-11-23",110771,254,86802],["2021-11-24",110771,159,86961],["2021-11-25",110771,1,86962],["2021-11-26",110771,148,87110],["2021-11-27",110771,124,87234],["2021-11-28",110771,85,87319],["2021-11-29",110771,264,87583],["2021-11-30",110771,331,87914],["2021-12-01",110771,337,88251],["2021-12-02",110771,387,88638],["2021-12-03",110771,384,89022],["2021-12-04",110771,173,89195],["2021-12-05",110771,115,89310],["2021-12-06",110771,194,89504],["2021-12-07",110771,266,89770],["2021-12-08",110771,251,90021],["2021-12-09",110771,296,90317],["2021-12-10",110771,321,90638],["2021-12-11",110771,143,90781],["2021-12-12",110771,102,90883],["2021-12-13",110771,170,91053],["2021-12-14",110771,242,91295],["2021-12-15",110771,178,91473],["2021-12-16",110771,233,91706],["2021-12-17",110771,271,91977],["2021-12-18",110771,140,92117],["2021-12-19",110771,79,92196],["2021-12-20",110771,234,92430],["2021-12-21",110771,273,92703],["2021-12-22",110771,270,92973],["2021-12-23",110771,220,93193],["2021-12-24",110771,62,93255],["2021-12-25",110771,2,93257],["2021-12-26",110771,81,93338],["2021-12-27",110771,215,93553],["2021-12-28",110771,278,93831],["2021-12-29",110771,299,94130],["2021-12-30",110771,238,94368],["2021-12-31",110771,145,94513],["2022-01-01",110771,33,94546],["2022-01-02",110771,101,94647],["2022-01-03",110771,54,94701]]} \ No newline at end of file diff --git a/public/data/overall/vaccinations/by-county/Ben Hill.json b/public/data/overall/vaccinations/by-county/Ben Hill.json new file mode 100644 index 000000000..2d0c029fa --- /dev/null +++ b/public/data/overall/vaccinations/by-county/Ben Hill.json @@ -0,0 +1 @@ +{"segment":{"county":"Ben Hill"},"headers":["report_date","population","vaccinations","total_vaccinations"],"rows":[["2020-12-18",16645,2,2],["2020-12-21",16645,1,3],["2020-12-22",16645,3,6],["2020-12-23",16645,13,19],["2020-12-24",16645,12,31],["2020-12-27",16645,5,36],["2020-12-28",16645,14,50],["2020-12-29",16645,57,107],["2020-12-30",16645,25,132],["2020-12-31",16645,16,148],["2021-01-01",16645,1,149],["2021-01-03",16645,3,152],["2021-01-04",16645,55,207],["2021-01-05",16645,26,233],["2021-01-06",16645,28,261],["2021-01-07",16645,45,306],["2021-01-08",16645,29,335],["2021-01-09",16645,3,338],["2021-01-10",16645,3,341],["2021-01-11",16645,70,411],["2021-01-12",16645,91,502],["2021-01-13",16645,66,568],["2021-01-14",16645,126,694],["2021-01-15",16645,135,829],["2021-01-16",16645,11,840],["2021-01-17",16645,10,850],["2021-01-18",16645,120,970],["2021-01-19",16645,92,1062],["2021-01-20",16645,129,1191],["2021-01-21",16645,121,1312],["2021-01-22",16645,65,1377],["2021-01-23",16645,2,1379],["2021-01-24",16645,37,1416],["2021-01-25",16645,42,1458],["2021-01-26",16645,70,1528],["2021-01-27",16645,72,1600],["2021-01-28",16645,73,1673],["2021-01-29",16645,24,1697],["2021-01-30",16645,2,1699],["2021-01-31",16645,4,1703],["2021-02-01",16645,43,1746],["2021-02-02",16645,44,1790],["2021-02-03",16645,65,1855],["2021-02-04",16645,76,1931],["2021-02-05",16645,68,1999],["2021-02-06",16645,2,2001],["2021-02-07",16645,6,2007],["2021-02-08",16645,99,2106],["2021-02-09",16645,106,2212],["2021-02-10",16645,137,2349],["2021-02-11",16645,119,2468],["2021-02-12",16645,163,2631],["2021-02-13",16645,17,2648],["2021-02-14",16645,12,2660],["2021-02-15",16645,184,2844],["2021-02-16",16645,111,2955],["2021-02-17",16645,110,3065],["2021-02-18",16645,132,3197],["2021-02-19",16645,70,3267],["2021-02-20",16645,2,3269],["2021-02-22",16645,73,3342],["2021-02-23",16645,91,3433],["2021-02-24",16645,90,3523],["2021-02-25",16645,121,3644],["2021-02-26",16645,48,3692],["2021-02-27",16645,6,3698],["2021-02-28",16645,1,3699],["2021-03-01",16645,47,3746],["2021-03-02",16645,58,3804],["2021-03-03",16645,67,3871],["2021-03-04",16645,76,3947],["2021-03-05",16645,83,4030],["2021-03-06",16645,2,4032],["2021-03-07",16645,1,4033],["2021-03-08",16645,69,4102],["2021-03-09",16645,83,4185],["2021-03-10",16645,88,4273],["2021-03-11",16645,93,4366],["2021-03-12",16645,96,4462],["2021-03-13",16645,8,4470],["2021-03-14",16645,6,4476],["2021-03-15",16645,120,4596],["2021-03-16",16645,106,4702],["2021-03-17",16645,119,4821],["2021-03-18",16645,125,4946],["2021-03-19",16645,110,5056],["2021-03-20",16645,4,5060],["2021-03-21",16645,1,5061],["2021-03-22",16645,54,5115],["2021-03-23",16645,168,5283],["2021-03-24",16645,102,5385],["2021-03-25",16645,107,5492],["2021-03-26",16645,142,5634],["2021-03-27",16645,12,5646],["2021-03-29",16645,70,5716],["2021-03-30",16645,79,5795],["2021-03-31",16645,84,5879],["2021-04-01",16645,84,5963],["2021-04-02",16645,102,6065],["2021-04-03",16645,2,6067],["2021-04-04",16645,1,6068],["2021-04-05",16645,109,6177],["2021-04-06",16645,92,6269],["2021-04-07",16645,81,6350],["2021-04-08",16645,91,6441],["2021-04-09",16645,103,6544],["2021-04-10",16645,9,6553],["2021-04-11",16645,9,6562],["2021-04-12",16645,88,6650],["2021-04-13",16645,83,6733],["2021-04-14",16645,105,6838],["2021-04-15",16645,94,6932],["2021-04-16",16645,117,7049],["2021-04-17",16645,38,7087],["2021-04-18",16645,3,7090],["2021-04-19",16645,89,7179],["2021-04-20",16645,63,7242],["2021-04-21",16645,75,7317],["2021-04-22",16645,78,7395],["2021-04-23",16645,109,7504],["2021-04-24",16645,5,7509],["2021-04-25",16645,1,7510],["2021-04-26",16645,50,7560],["2021-04-27",16645,66,7626],["2021-04-28",16645,51,7677],["2021-04-29",16645,51,7728],["2021-04-30",16645,41,7769],["2021-05-01",16645,6,7775],["2021-05-02",16645,3,7778],["2021-05-03",16645,49,7827],["2021-05-04",16645,42,7869],["2021-05-05",16645,56,7925],["2021-05-06",16645,30,7955],["2021-05-07",16645,42,7997],["2021-05-08",16645,16,8013],["2021-05-09",16645,10,8023],["2021-05-10",16645,48,8071],["2021-05-11",16645,25,8096],["2021-05-12",16645,46,8142],["2021-05-13",16645,36,8178],["2021-05-14",16645,58,8236],["2021-05-15",16645,8,8244],["2021-05-16",16645,9,8253],["2021-05-17",16645,45,8298],["2021-05-18",16645,109,8407],["2021-05-19",16645,44,8451],["2021-05-20",16645,27,8478],["2021-05-21",16645,55,8533],["2021-05-22",16645,34,8567],["2021-05-23",16645,3,8570],["2021-05-24",16645,18,8588],["2021-05-25",16645,26,8614],["2021-05-26",16645,26,8640],["2021-05-27",16645,22,8662],["2021-05-28",16645,24,8686],["2021-05-29",16645,11,8697],["2021-05-30",16645,5,8702],["2021-05-31",16645,5,8707],["2021-06-01",16645,30,8737],["2021-06-02",16645,36,8773],["2021-06-03",16645,32,8805],["2021-06-04",16645,19,8824],["2021-06-05",16645,8,8832],["2021-06-06",16645,7,8839],["2021-06-07",16645,20,8859],["2021-06-08",16645,32,8891],["2021-06-09",16645,26,8917],["2021-06-10",16645,16,8933],["2021-06-11",16645,34,8967],["2021-06-12",16645,10,8977],["2021-06-13",16645,1,8978],["2021-06-14",16645,30,9008],["2021-06-15",16645,27,9035],["2021-06-16",16645,19,9054],["2021-06-17",16645,16,9070],["2021-06-18",16645,49,9119],["2021-06-19",16645,25,9144],["2021-06-20",16645,5,9149],["2021-06-21",16645,13,9162],["2021-06-22",16645,29,9191],["2021-06-23",16645,13,9204],["2021-06-24",16645,21,9225],["2021-06-25",16645,17,9242],["2021-06-26",16645,13,9255],["2021-06-27",16645,1,9256],["2021-06-28",16645,18,9274],["2021-06-29",16645,14,9288],["2021-06-30",16645,13,9301],["2021-07-01",16645,9,9310],["2021-07-02",16645,18,9328],["2021-07-03",16645,6,9334],["2021-07-04",16645,2,9336],["2021-07-05",16645,13,9349],["2021-07-06",16645,19,9368],["2021-07-07",16645,22,9390],["2021-07-08",16645,6,9396],["2021-07-09",16645,22,9418],["2021-07-10",16645,6,9424],["2021-07-12",16645,9,9433],["2021-07-13",16645,34,9467],["2021-07-14",16645,10,9477],["2021-07-15",16645,31,9508],["2021-07-16",16645,26,9534],["2021-07-17",16645,5,9539],["2021-07-18",16645,4,9543],["2021-07-19",16645,37,9580],["2021-07-20",16645,36,9616],["2021-07-21",16645,43,9659],["2021-07-22",16645,31,9690],["2021-07-23",16645,55,9745],["2021-07-24",16645,21,9766],["2021-07-25",16645,4,9770],["2021-07-26",16645,44,9814],["2021-07-27",16645,26,9840],["2021-07-28",16645,33,9873],["2021-07-29",16645,16,9889],["2021-07-30",16645,52,9941],["2021-07-31",16645,16,9957],["2021-08-01",16645,7,9964],["2021-08-02",16645,63,10027],["2021-08-03",16645,53,10080],["2021-08-04",16645,45,10125],["2021-08-05",16645,43,10168],["2021-08-06",16645,86,10254],["2021-08-07",16645,27,10281],["2021-08-08",16645,12,10293],["2021-08-09",16645,48,10341],["2021-08-10",16645,59,10400],["2021-08-11",16645,73,10473],["2021-08-12",16645,37,10510],["2021-08-13",16645,111,10621],["2021-08-14",16645,36,10657],["2021-08-15",16645,13,10670],["2021-08-16",16645,69,10739],["2021-08-17",16645,67,10806],["2021-08-18",16645,52,10858],["2021-08-19",16645,31,10889],["2021-08-20",16645,88,10977],["2021-08-21",16645,33,11010],["2021-08-22",16645,13,11023],["2021-08-23",16645,50,11073],["2021-08-24",16645,27,11100],["2021-08-25",16645,60,11160],["2021-08-26",16645,34,11194],["2021-08-27",16645,80,11274],["2021-08-28",16645,33,11307],["2021-08-29",16645,14,11321],["2021-08-30",16645,63,11384],["2021-08-31",16645,45,11429],["2021-09-01",16645,56,11485],["2021-09-02",16645,52,11537],["2021-09-03",16645,62,11599],["2021-09-04",16645,23,11622],["2021-09-05",16645,16,11638],["2021-09-06",16645,16,11654],["2021-09-07",16645,54,11708],["2021-09-08",16645,60,11768],["2021-09-09",16645,43,11811],["2021-09-10",16645,73,11884],["2021-09-11",16645,21,11905],["2021-09-12",16645,16,11921],["2021-09-13",16645,52,11973],["2021-09-14",16645,35,12008],["2021-09-15",16645,50,12058],["2021-09-16",16645,36,12094],["2021-09-17",16645,59,12153],["2021-09-18",16645,17,12170],["2021-09-19",16645,12,12182],["2021-09-20",16645,29,12211],["2021-09-21",16645,39,12250],["2021-09-22",16645,23,12273],["2021-09-23",16645,30,12303],["2021-09-24",16645,22,12325],["2021-09-25",16645,8,12333],["2021-09-26",16645,6,12339],["2021-09-27",16645,37,12376],["2021-09-28",16645,21,12397],["2021-09-29",16645,19,12416],["2021-09-30",16645,19,12435],["2021-10-01",16645,24,12459],["2021-10-02",16645,8,12467],["2021-10-03",16645,13,12480],["2021-10-04",16645,21,12501],["2021-10-05",16645,26,12527],["2021-10-06",16645,21,12548],["2021-10-07",16645,26,12574],["2021-10-08",16645,25,12599],["2021-10-09",16645,8,12607],["2021-10-10",16645,4,12611],["2021-10-11",16645,14,12625],["2021-10-12",16645,7,12632],["2021-10-13",16645,14,12646],["2021-10-14",16645,32,12678],["2021-10-15",16645,12,12690],["2021-10-16",16645,3,12693],["2021-10-17",16645,2,12695],["2021-10-18",16645,8,12703],["2021-10-19",16645,8,12711],["2021-10-20",16645,10,12721],["2021-10-21",16645,28,12749],["2021-10-22",16645,21,12770],["2021-10-23",16645,46,12816],["2021-10-24",16645,5,12821],["2021-10-25",16645,56,12877],["2021-10-26",16645,24,12901],["2021-10-27",16645,67,12968],["2021-10-28",16645,35,13003],["2021-10-29",16645,27,13030],["2021-10-30",16645,6,13036],["2021-11-01",16645,56,13092],["2021-11-02",16645,26,13118],["2021-11-03",16645,56,13174],["2021-11-04",16645,40,13214],["2021-11-05",16645,30,13244],["2021-11-06",16645,14,13258],["2021-11-07",16645,7,13265],["2021-11-08",16645,55,13320],["2021-11-09",16645,39,13359],["2021-11-10",16645,101,13460],["2021-11-11",16645,26,13486],["2021-11-12",16645,20,13506],["2021-11-13",16645,7,13513],["2021-11-14",16645,1,13514],["2021-11-15",16645,46,13560],["2021-11-16",16645,18,13578],["2021-11-17",16645,21,13599],["2021-11-18",16645,51,13650],["2021-11-19",16645,75,13725],["2021-11-20",16645,7,13732],["2021-11-21",16645,10,13742],["2021-11-22",16645,61,13803],["2021-11-23",16645,30,13833],["2021-11-24",16645,18,13851],["2021-11-26",16645,10,13861],["2021-11-27",16645,6,13867],["2021-11-28",16645,5,13872],["2021-11-29",16645,43,13915],["2021-11-30",16645,53,13968],["2021-12-01",16645,52,14020],["2021-12-02",16645,39,14059],["2021-12-03",16645,49,14108],["2021-12-04",16645,12,14120],["2021-12-05",16645,6,14126],["2021-12-06",16645,58,14184],["2021-12-07",16645,42,14226],["2021-12-08",16645,77,14303],["2021-12-09",16645,29,14332],["2021-12-10",16645,36,14368],["2021-12-11",16645,3,14371],["2021-12-12",16645,3,14374],["2021-12-13",16645,42,14416],["2021-12-14",16645,11,14427],["2021-12-15",16645,65,14492],["2021-12-16",16645,50,14542],["2021-12-17",16645,26,14568],["2021-12-18",16645,5,14573],["2021-12-19",16645,3,14576],["2021-12-20",16645,52,14628],["2021-12-21",16645,46,14674],["2021-12-22",16645,36,14710],["2021-12-23",16645,20,14730],["2021-12-24",16645,8,14738],["2021-12-26",16645,6,14744],["2021-12-27",16645,64,14808],["2021-12-28",16645,53,14861],["2021-12-29",16645,40,14901],["2021-12-30",16645,30,14931],["2021-12-31",16645,11,14942],["2022-01-02",16645,3,14945],["2022-01-03",16645,14,14959]]} \ No newline at end of file diff --git a/public/data/overall/vaccinations/by-county/Berrien.json b/public/data/overall/vaccinations/by-county/Berrien.json new file mode 100644 index 000000000..ba9fd37bb --- /dev/null +++ b/public/data/overall/vaccinations/by-county/Berrien.json @@ -0,0 +1 @@ +{"segment":{"county":"Berrien"},"headers":["report_date","population","vaccinations","total_vaccinations"],"rows":[["2020-12-18",19276,1,1],["2020-12-21",19276,10,11],["2020-12-22",19276,16,27],["2020-12-23",19276,27,54],["2020-12-24",19276,6,60],["2020-12-26",19276,2,62],["2020-12-28",19276,19,81],["2020-12-29",19276,36,117],["2020-12-30",19276,42,159],["2020-12-31",19276,15,174],["2021-01-01",19276,3,177],["2021-01-03",19276,48,225],["2021-01-04",19276,52,277],["2021-01-05",19276,36,313],["2021-01-06",19276,32,345],["2021-01-07",19276,18,363],["2021-01-08",19276,16,379],["2021-01-09",19276,1,380],["2021-01-11",19276,68,448],["2021-01-12",19276,66,514],["2021-01-13",19276,104,618],["2021-01-14",19276,82,700],["2021-01-15",19276,84,784],["2021-01-16",19276,3,787],["2021-01-18",19276,86,873],["2021-01-19",19276,87,960],["2021-01-20",19276,125,1085],["2021-01-21",19276,83,1168],["2021-01-22",19276,81,1249],["2021-01-24",19276,56,1305],["2021-01-25",19276,97,1402],["2021-01-26",19276,74,1476],["2021-01-27",19276,134,1610],["2021-01-28",19276,55,1665],["2021-01-29",19276,55,1720],["2021-01-30",19276,66,1786],["2021-01-31",19276,2,1788],["2021-02-01",19276,105,1893],["2021-02-02",19276,87,1980],["2021-02-03",19276,155,2135],["2021-02-04",19276,74,2209],["2021-02-05",19276,90,2299],["2021-02-06",19276,2,2301],["2021-02-08",19276,81,2382],["2021-02-09",19276,84,2466],["2021-02-10",19276,87,2553],["2021-02-11",19276,68,2621],["2021-02-12",19276,131,2752],["2021-02-13",19276,11,2763],["2021-02-14",19276,3,2766],["2021-02-15",19276,119,2885],["2021-02-16",19276,98,2983],["2021-02-17",19276,207,3190],["2021-02-18",19276,97,3287],["2021-02-19",19276,94,3381],["2021-02-20",19276,1,3382],["2021-02-21",19276,1,3383],["2021-02-22",19276,90,3473],["2021-02-23",19276,75,3548],["2021-02-24",19276,152,3700],["2021-02-25",19276,68,3768],["2021-02-26",19276,62,3830],["2021-02-27",19276,67,3897],["2021-02-28",19276,3,3900],["2021-03-01",19276,89,3989],["2021-03-02",19276,76,4065],["2021-03-03",19276,108,4173],["2021-03-04",19276,35,4208],["2021-03-05",19276,56,4264],["2021-03-06",19276,4,4268],["2021-03-07",19276,2,4270],["2021-03-08",19276,102,4372],["2021-03-09",19276,92,4464],["2021-03-10",19276,86,4550],["2021-03-11",19276,71,4621],["2021-03-12",19276,88,4709],["2021-03-13",19276,14,4723],["2021-03-14",19276,19,4742],["2021-03-15",19276,77,4819],["2021-03-16",19276,57,4876],["2021-03-17",19276,123,4999],["2021-03-18",19276,44,5043],["2021-03-19",19276,72,5115],["2021-03-20",19276,6,5121],["2021-03-21",19276,8,5129],["2021-03-22",19276,123,5252],["2021-03-23",19276,85,5337],["2021-03-24",19276,93,5430],["2021-03-25",19276,58,5488],["2021-03-26",19276,67,5555],["2021-03-27",19276,30,5585],["2021-03-28",19276,12,5597],["2021-03-29",19276,100,5697],["2021-03-30",19276,83,5780],["2021-03-31",19276,98,5878],["2021-04-01",19276,68,5946],["2021-04-02",19276,76,6022],["2021-04-03",19276,14,6036],["2021-04-04",19276,8,6044],["2021-04-05",19276,104,6148],["2021-04-06",19276,100,6248],["2021-04-07",19276,124,6372],["2021-04-08",19276,63,6435],["2021-04-09",19276,83,6518],["2021-04-10",19276,6,6524],["2021-04-11",19276,24,6548],["2021-04-12",19276,105,6653],["2021-04-13",19276,67,6720],["2021-04-14",19276,96,6816],["2021-04-15",19276,81,6897],["2021-04-16",19276,89,6986],["2021-04-17",19276,2,6988],["2021-04-18",19276,10,6998],["2021-04-19",19276,61,7059],["2021-04-20",19276,36,7095],["2021-04-21",19276,89,7184],["2021-04-22",19276,45,7229],["2021-04-23",19276,60,7289],["2021-04-24",19276,17,7306],["2021-04-25",19276,5,7311],["2021-04-26",19276,76,7387],["2021-04-27",19276,44,7431],["2021-04-28",19276,73,7504],["2021-04-29",19276,56,7560],["2021-04-30",19276,69,7629],["2021-05-01",19276,6,7635],["2021-05-02",19276,2,7637],["2021-05-03",19276,24,7661],["2021-05-04",19276,45,7706],["2021-05-05",19276,48,7754],["2021-05-06",19276,38,7792],["2021-05-07",19276,49,7841],["2021-05-08",19276,7,7848],["2021-05-09",19276,5,7853],["2021-05-10",19276,41,7894],["2021-05-11",19276,63,7957],["2021-05-12",19276,55,8012],["2021-05-13",19276,49,8061],["2021-05-14",19276,44,8105],["2021-05-15",19276,16,8121],["2021-05-16",19276,5,8126],["2021-05-17",19276,28,8154],["2021-05-18",19276,49,8203],["2021-05-19",19276,46,8249],["2021-05-20",19276,41,8290],["2021-05-21",19276,39,8329],["2021-05-22",19276,9,8338],["2021-05-23",19276,3,8341],["2021-05-24",19276,33,8374],["2021-05-25",19276,32,8406],["2021-05-26",19276,36,8442],["2021-05-27",19276,26,8468],["2021-05-28",19276,34,8502],["2021-05-29",19276,11,8513],["2021-05-30",19276,4,8517],["2021-05-31",19276,3,8520],["2021-06-01",19276,23,8543],["2021-06-02",19276,21,8564],["2021-06-03",19276,24,8588],["2021-06-04",19276,28,8616],["2021-06-05",19276,10,8626],["2021-06-06",19276,7,8633],["2021-06-07",19276,25,8658],["2021-06-08",19276,23,8681],["2021-06-09",19276,20,8701],["2021-06-10",19276,36,8737],["2021-06-11",19276,41,8778],["2021-06-12",19276,7,8785],["2021-06-13",19276,6,8791],["2021-06-14",19276,15,8806],["2021-06-15",19276,18,8824],["2021-06-16",19276,18,8842],["2021-06-17",19276,24,8866],["2021-06-18",19276,20,8886],["2021-06-19",19276,18,8904],["2021-06-20",19276,2,8906],["2021-06-21",19276,22,8928],["2021-06-22",19276,11,8939],["2021-06-23",19276,14,8953],["2021-06-24",19276,22,8975],["2021-06-25",19276,31,9006],["2021-06-26",19276,6,9012],["2021-06-27",19276,10,9022],["2021-06-28",19276,10,9032],["2021-06-29",19276,16,9048],["2021-06-30",19276,10,9058],["2021-07-01",19276,10,9068],["2021-07-02",19276,18,9086],["2021-07-03",19276,1,9087],["2021-07-04",19276,1,9088],["2021-07-05",19276,6,9094],["2021-07-06",19276,9,9103],["2021-07-07",19276,7,9110],["2021-07-08",19276,14,9124],["2021-07-09",19276,31,9155],["2021-07-10",19276,6,9161],["2021-07-11",19276,2,9163],["2021-07-12",19276,14,9177],["2021-07-13",19276,15,9192],["2021-07-14",19276,9,9201],["2021-07-15",19276,18,9219],["2021-07-16",19276,21,9240],["2021-07-17",19276,9,9249],["2021-07-18",19276,10,9259],["2021-07-19",19276,23,9282],["2021-07-20",19276,17,9299],["2021-07-21",19276,15,9314],["2021-07-22",19276,16,9330],["2021-07-23",19276,45,9375],["2021-07-24",19276,12,9387],["2021-07-25",19276,8,9395],["2021-07-26",19276,38,9433],["2021-07-27",19276,44,9477],["2021-07-28",19276,57,9534],["2021-07-29",19276,34,9568],["2021-07-30",19276,48,9616],["2021-07-31",19276,17,9633],["2021-08-01",19276,6,9639],["2021-08-02",19276,27,9666],["2021-08-03",19276,39,9705],["2021-08-04",19276,37,9742],["2021-08-05",19276,40,9782],["2021-08-06",19276,77,9859],["2021-08-07",19276,31,9890],["2021-08-08",19276,22,9912],["2021-08-09",19276,67,9979],["2021-08-10",19276,59,10038],["2021-08-11",19276,64,10102],["2021-08-12",19276,54,10156],["2021-08-13",19276,88,10244],["2021-08-14",19276,38,10282],["2021-08-15",19276,13,10295],["2021-08-16",19276,55,10350],["2021-08-17",19276,62,10412],["2021-08-18",19276,66,10478],["2021-08-19",19276,64,10542],["2021-08-20",19276,72,10614],["2021-08-21",19276,25,10639],["2021-08-22",19276,17,10656],["2021-08-23",19276,39,10695],["2021-08-24",19276,44,10739],["2021-08-25",19276,61,10800],["2021-08-26",19276,108,10908],["2021-08-27",19276,96,11004],["2021-08-28",19276,40,11044],["2021-08-29",19276,17,11061],["2021-08-30",19276,58,11119],["2021-08-31",19276,68,11187],["2021-09-01",19276,67,11254],["2021-09-02",19276,79,11333],["2021-09-03",19276,66,11399],["2021-09-04",19276,28,11427],["2021-09-05",19276,8,11435],["2021-09-06",19276,2,11437],["2021-09-07",19276,80,11517],["2021-09-08",19276,52,11569],["2021-09-09",19276,52,11621],["2021-09-10",19276,70,11691],["2021-09-11",19276,15,11706],["2021-09-12",19276,14,11720],["2021-09-13",19276,35,11755],["2021-09-14",19276,31,11786],["2021-09-15",19276,34,11820],["2021-09-16",19276,96,11916],["2021-09-17",19276,45,11961],["2021-09-18",19276,14,11975],["2021-09-19",19276,2,11977],["2021-09-20",19276,37,12014],["2021-09-21",19276,24,12038],["2021-09-22",19276,29,12067],["2021-09-23",19276,25,12092],["2021-09-24",19276,46,12138],["2021-09-25",19276,8,12146],["2021-09-26",19276,6,12152],["2021-09-27",19276,15,12167],["2021-09-28",19276,31,12198],["2021-09-29",19276,21,12219],["2021-09-30",19276,24,12243],["2021-10-01",19276,38,12281],["2021-10-02",19276,2,12283],["2021-10-03",19276,7,12290],["2021-10-04",19276,17,12307],["2021-10-05",19276,27,12334],["2021-10-06",19276,83,12417],["2021-10-07",19276,20,12437],["2021-10-08",19276,20,12457],["2021-10-09",19276,10,12467],["2021-10-10",19276,6,12473],["2021-10-11",19276,8,12481],["2021-10-12",19276,19,12500],["2021-10-13",19276,14,12514],["2021-10-14",19276,12,12526],["2021-10-15",19276,22,12548],["2021-10-16",19276,5,12553],["2021-10-17",19276,5,12558],["2021-10-18",19276,16,12574],["2021-10-19",19276,25,12599],["2021-10-20",19276,15,12614],["2021-10-21",19276,18,12632],["2021-10-22",19276,32,12664],["2021-10-23",19276,4,12668],["2021-10-24",19276,6,12674],["2021-10-25",19276,24,12698],["2021-10-26",19276,48,12746],["2021-10-27",19276,23,12769],["2021-10-28",19276,33,12802],["2021-10-29",19276,38,12840],["2021-10-30",19276,8,12848],["2021-10-31",19276,4,12852],["2021-11-01",19276,61,12913],["2021-11-02",19276,17,12930],["2021-11-03",19276,31,12961],["2021-11-04",19276,22,12983],["2021-11-05",19276,28,13011],["2021-11-06",19276,12,13023],["2021-11-07",19276,2,13025],["2021-11-08",19276,48,13073],["2021-11-09",19276,30,13103],["2021-11-10",19276,19,13122],["2021-11-11",19276,24,13146],["2021-11-12",19276,47,13193],["2021-11-13",19276,9,13202],["2021-11-14",19276,3,13205],["2021-11-15",19276,55,13260],["2021-11-16",19276,31,13291],["2021-11-17",19276,31,13322],["2021-11-18",19276,28,13350],["2021-11-19",19276,35,13385],["2021-11-20",19276,23,13408],["2021-11-21",19276,6,13414],["2021-11-22",19276,79,13493],["2021-11-23",19276,38,13531],["2021-11-24",19276,12,13543],["2021-11-26",19276,13,13556],["2021-11-27",19276,10,13566],["2021-11-28",19276,5,13571],["2021-11-29",19276,52,13623],["2021-11-30",19276,50,13673],["2021-12-01",19276,49,13722],["2021-12-02",19276,25,13747],["2021-12-03",19276,57,13804],["2021-12-04",19276,5,13809],["2021-12-05",19276,2,13811],["2021-12-06",19276,54,13865],["2021-12-07",19276,33,13898],["2021-12-08",19276,36,13934],["2021-12-09",19276,24,13958],["2021-12-10",19276,57,14015],["2021-12-11",19276,9,14024],["2021-12-12",19276,3,14027],["2021-12-13",19276,42,14069],["2021-12-14",19276,13,14082],["2021-12-15",19276,28,14110],["2021-12-16",19276,18,14128],["2021-12-17",19276,49,14177],["2021-12-18",19276,4,14181],["2021-12-19",19276,5,14186],["2021-12-20",19276,38,14224],["2021-12-21",19276,34,14258],["2021-12-22",19276,27,14285],["2021-12-23",19276,10,14295],["2021-12-24",19276,8,14303],["2021-12-26",19276,5,14308],["2021-12-27",19276,42,14350],["2021-12-28",19276,35,14385],["2021-12-29",19276,37,14422],["2021-12-30",19276,27,14449],["2021-12-31",19276,20,14469],["2022-01-01",19276,1,14470],["2022-01-02",19276,2,14472],["2022-01-03",19276,7,14479]]} \ No newline at end of file diff --git a/public/data/overall/vaccinations/by-county/Bibb.json b/public/data/overall/vaccinations/by-county/Bibb.json new file mode 100644 index 000000000..625f4b265 --- /dev/null +++ b/public/data/overall/vaccinations/by-county/Bibb.json @@ -0,0 +1 @@ +{"segment":{"county":"Bibb"},"headers":["report_date","population","vaccinations","total_vaccinations"],"rows":[["2020-12-16",152150,5,5],["2020-12-17",152150,7,12],["2020-12-18",152150,17,29],["2020-12-19",152150,11,40],["2020-12-20",152150,3,43],["2020-12-21",152150,34,77],["2020-12-22",152150,162,239],["2020-12-23",152150,185,424],["2020-12-24",152150,218,642],["2020-12-25",152150,2,644],["2020-12-26",152150,135,779],["2020-12-27",152150,42,821],["2020-12-28",152150,430,1251],["2020-12-29",152150,219,1470],["2020-12-30",152150,449,1919],["2020-12-31",152150,53,1972],["2021-01-01",152150,52,2024],["2021-01-02",152150,20,2044],["2021-01-03",152150,43,2087],["2021-01-04",152150,189,2276],["2021-01-05",152150,251,2527],["2021-01-06",152150,327,2854],["2021-01-07",152150,258,3112],["2021-01-08",152150,266,3378],["2021-01-09",152150,53,3431],["2021-01-10",152150,108,3539],["2021-01-11",152150,297,3836],["2021-01-12",152150,359,4195],["2021-01-13",152150,536,4731],["2021-01-14",152150,407,5138],["2021-01-15",152150,520,5658],["2021-01-16",152150,175,5833],["2021-01-17",152150,110,5943],["2021-01-18",152150,608,6551],["2021-01-19",152150,451,7002],["2021-01-20",152150,1036,8038],["2021-01-21",152150,796,8834],["2021-01-22",152150,899,9733],["2021-01-23",152150,187,9920],["2021-01-24",152150,155,10075],["2021-01-25",152150,879,10954],["2021-01-26",152150,510,11464],["2021-01-27",152150,1306,12770],["2021-01-28",152150,518,13288],["2021-01-29",152150,677,13965],["2021-01-30",152150,60,14025],["2021-01-31",152150,138,14163],["2021-02-01",152150,539,14702],["2021-02-02",152150,413,15115],["2021-02-03",152150,688,15803],["2021-02-04",152150,461,16264],["2021-02-05",152150,734,16998],["2021-02-06",152150,90,17088],["2021-02-07",152150,51,17139],["2021-02-08",152150,566,17705],["2021-02-09",152150,388,18093],["2021-02-10",152150,997,19090],["2021-02-11",152150,529,19619],["2021-02-12",152150,867,20486],["2021-02-13",152150,234,20720],["2021-02-14",152150,153,20873],["2021-02-15",152150,810,21683],["2021-02-16",152150,527,22210],["2021-02-17",152150,1065,23275],["2021-02-18",152150,803,24078],["2021-02-19",152150,621,24699],["2021-02-20",152150,182,24881],["2021-02-21",152150,43,24924],["2021-02-22",152150,658,25582],["2021-02-23",152150,600,26182],["2021-02-24",152150,1132,27314],["2021-02-25",152150,1088,28402],["2021-02-26",152150,1491,29893],["2021-02-27",152150,154,30047],["2021-02-28",152150,81,30128],["2021-03-01",152150,1436,31564],["2021-03-02",152150,808,32372],["2021-03-03",152150,1362,33734],["2021-03-04",152150,1191,34925],["2021-03-05",152150,1191,36116],["2021-03-06",152150,101,36217],["2021-03-07",152150,75,36292],["2021-03-08",152150,1241,37533],["2021-03-09",152150,836,38369],["2021-03-10",152150,1221,39590],["2021-03-11",152150,1014,40604],["2021-03-12",152150,1038,41642],["2021-03-13",152150,787,42429],["2021-03-14",152150,181,42610],["2021-03-15",152150,1664,44274],["2021-03-16",152150,1235,45509],["2021-03-17",152150,1475,46984],["2021-03-18",152150,966,47950],["2021-03-19",152150,1432,49382],["2021-03-20",152150,261,49643],["2021-03-21",152150,95,49738],["2021-03-22",152150,1078,50816],["2021-03-23",152150,878,51694],["2021-03-24",152150,1034,52728],["2021-03-25",152150,1377,54105],["2021-03-26",152150,1362,55467],["2021-03-27",152150,174,55641],["2021-03-28",152150,169,55810],["2021-03-29",152150,1775,57585],["2021-03-30",152150,1329,58914],["2021-03-31",152150,1376,60290],["2021-04-01",152150,1405,61695],["2021-04-02",152150,1260,62955],["2021-04-03",152150,885,63840],["2021-04-04",152150,134,63974],["2021-04-05",152150,1506,65480],["2021-04-06",152150,1405,66885],["2021-04-07",152150,1562,68447],["2021-04-08",152150,1287,69734],["2021-04-09",152150,1686,71420],["2021-04-10",152150,210,71630],["2021-04-11",152150,172,71802],["2021-04-12",152150,1465,73267],["2021-04-13",152150,998,74265],["2021-04-14",152150,1060,75325],["2021-04-15",152150,954,76279],["2021-04-16",152150,1289,77568],["2021-04-17",152150,139,77707],["2021-04-18",152150,95,77802],["2021-04-19",152150,1106,78908],["2021-04-20",152150,815,79723],["2021-04-21",152150,913,80636],["2021-04-22",152150,839,81475],["2021-04-23",152150,1183,82658],["2021-04-24",152150,161,82819],["2021-04-25",152150,111,82930],["2021-04-26",152150,1102,84032],["2021-04-27",152150,908,84940],["2021-04-28",152150,948,85888],["2021-04-29",152150,899,86787],["2021-04-30",152150,1012,87799],["2021-05-01",152150,203,88002],["2021-05-02",152150,123,88125],["2021-05-03",152150,660,88785],["2021-05-04",152150,585,89370],["2021-05-05",152150,695,90065],["2021-05-06",152150,477,90542],["2021-05-07",152150,657,91199],["2021-05-08",152150,183,91382],["2021-05-09",152150,73,91455],["2021-05-10",152150,380,91835],["2021-05-11",152150,423,92258],["2021-05-12",152150,469,92727],["2021-05-13",152150,453,93180],["2021-05-14",152150,616,93796],["2021-05-15",152150,239,94035],["2021-05-16",152150,136,94171],["2021-05-17",152150,473,94644],["2021-05-18",152150,557,95201],["2021-05-19",152150,461,95662],["2021-05-20",152150,448,96110],["2021-05-21",152150,593,96703],["2021-05-22",152150,175,96878],["2021-05-23",152150,128,97006],["2021-05-24",152150,304,97310],["2021-05-25",152150,351,97661],["2021-05-26",152150,337,97998],["2021-05-27",152150,318,98316],["2021-05-28",152150,269,98585],["2021-05-29",152150,129,98714],["2021-05-30",152150,110,98824],["2021-05-31",152150,60,98884],["2021-06-01",152150,383,99267],["2021-06-02",152150,299,99566],["2021-06-03",152150,313,99879],["2021-06-04",152150,354,100233],["2021-06-05",152150,183,100416],["2021-06-06",152150,131,100547],["2021-06-07",152150,316,100863],["2021-06-08",152150,242,101105],["2021-06-09",152150,297,101402],["2021-06-10",152150,328,101730],["2021-06-11",152150,334,102064],["2021-06-12",152150,190,102254],["2021-06-13",152150,83,102337],["2021-06-14",152150,242,102579],["2021-06-15",152150,249,102828],["2021-06-16",152150,242,103070],["2021-06-17",152150,267,103337],["2021-06-18",152150,223,103560],["2021-06-19",152150,137,103697],["2021-06-20",152150,108,103805],["2021-06-21",152150,174,103979],["2021-06-22",152150,250,104229],["2021-06-23",152150,201,104430],["2021-06-24",152150,215,104645],["2021-06-25",152150,207,104852],["2021-06-26",152150,136,104988],["2021-06-27",152150,85,105073],["2021-06-28",152150,192,105265],["2021-06-29",152150,183,105448],["2021-06-30",152150,269,105717],["2021-07-01",152150,190,105907],["2021-07-02",152150,190,106097],["2021-07-03",152150,85,106182],["2021-07-04",152150,17,106199],["2021-07-05",152150,153,106352],["2021-07-06",152150,188,106540],["2021-07-07",152150,162,106702],["2021-07-08",152150,180,106882],["2021-07-09",152150,197,107079],["2021-07-10",152150,104,107183],["2021-07-11",152150,61,107244],["2021-07-12",152150,143,107387],["2021-07-13",152150,173,107560],["2021-07-14",152150,223,107783],["2021-07-15",152150,176,107959],["2021-07-16",152150,195,108154],["2021-07-17",152150,156,108310],["2021-07-18",152150,81,108391],["2021-07-19",152150,220,108611],["2021-07-20",152150,205,108816],["2021-07-21",152150,259,109075],["2021-07-22",152150,291,109366],["2021-07-23",152150,300,109666],["2021-07-24",152150,379,110045],["2021-07-25",152150,129,110174],["2021-07-26",152150,318,110492],["2021-07-27",152150,335,110827],["2021-07-28",152150,346,111173],["2021-07-29",152150,336,111509],["2021-07-30",152150,396,111905],["2021-07-31",152150,231,112136],["2021-08-01",152150,178,112314],["2021-08-02",152150,299,112613],["2021-08-03",152150,286,112899],["2021-08-04",152150,381,113280],["2021-08-05",152150,398,113678],["2021-08-06",152150,502,114180],["2021-08-07",152150,264,114444],["2021-08-08",152150,223,114667],["2021-08-09",152150,334,115001],["2021-08-10",152150,409,115410],["2021-08-11",152150,422,115832],["2021-08-12",152150,457,116289],["2021-08-13",152150,490,116779],["2021-08-14",152150,412,117191],["2021-08-15",152150,239,117430],["2021-08-16",152150,430,117860],["2021-08-17",152150,399,118259],["2021-08-18",152150,448,118707],["2021-08-19",152150,419,119126],["2021-08-20",152150,536,119662],["2021-08-21",152150,314,119976],["2021-08-22",152150,231,120207],["2021-08-23",152150,365,120572],["2021-08-24",152150,424,120996],["2021-08-25",152150,443,121439],["2021-08-26",152150,450,121889],["2021-08-27",152150,551,122440],["2021-08-28",152150,320,122760],["2021-08-29",152150,252,123012],["2021-08-30",152150,389,123401],["2021-08-31",152150,425,123826],["2021-09-01",152150,413,124239],["2021-09-02",152150,444,124683],["2021-09-03",152150,495,125178],["2021-09-04",152150,286,125464],["2021-09-05",152150,213,125677],["2021-09-06",152150,81,125758],["2021-09-07",152150,396,126154],["2021-09-08",152150,469,126623],["2021-09-09",152150,426,127049],["2021-09-10",152150,533,127582],["2021-09-11",152150,288,127870],["2021-09-12",152150,172,128042],["2021-09-13",152150,347,128389],["2021-09-14",152150,310,128699],["2021-09-15",152150,340,129039],["2021-09-16",152150,323,129362],["2021-09-17",152150,455,129817],["2021-09-18",152150,188,130005],["2021-09-19",152150,150,130155],["2021-09-20",152150,268,130423],["2021-09-21",152150,256,130679],["2021-09-22",152150,298,130977],["2021-09-23",152150,278,131255],["2021-09-24",152150,347,131602],["2021-09-25",152150,174,131776],["2021-09-26",152150,139,131915],["2021-09-27",152150,280,132195],["2021-09-28",152150,329,132524],["2021-09-29",152150,323,132847],["2021-09-30",152150,332,133179],["2021-10-01",152150,377,133556],["2021-10-02",152150,193,133749],["2021-10-03",152150,128,133877],["2021-10-04",152150,277,134154],["2021-10-05",152150,282,134436],["2021-10-06",152150,295,134731],["2021-10-07",152150,287,135018],["2021-10-08",152150,363,135381],["2021-10-09",152150,182,135563],["2021-10-10",152150,111,135674],["2021-10-11",152150,210,135884],["2021-10-12",152150,250,136134],["2021-10-13",152150,220,136354],["2021-10-14",152150,215,136569],["2021-10-15",152150,322,136891],["2021-10-16",152150,154,137045],["2021-10-17",152150,100,137145],["2021-10-18",152150,243,137388],["2021-10-19",152150,230,137618],["2021-10-20",152150,402,138020],["2021-10-21",152150,285,138305],["2021-10-22",152150,414,138719],["2021-10-23",152150,305,139024],["2021-10-24",152150,183,139207],["2021-10-25",152150,446,139653],["2021-10-26",152150,586,140239],["2021-10-27",152150,885,141124],["2021-10-28",152150,500,141624],["2021-10-29",152150,579,142203],["2021-10-30",152150,256,142459],["2021-10-31",152150,155,142614],["2021-11-01",152150,470,143084],["2021-11-02",152150,508,143592],["2021-11-03",152150,576,144168],["2021-11-04",152150,559,144727],["2021-11-05",152150,558,145285],["2021-11-06",152150,244,145529],["2021-11-07",152150,171,145700],["2021-11-08",152150,457,146157],["2021-11-09",152150,417,146574],["2021-11-10",152150,516,147090],["2021-11-11",152150,437,147527],["2021-11-12",152150,512,148039],["2021-11-13",152150,216,148255],["2021-11-14",152150,143,148398],["2021-11-15",152150,396,148794],["2021-11-16",152150,439,149233],["2021-11-17",152150,531,149764],["2021-11-18",152150,537,150301],["2021-11-19",152150,532,150833],["2021-11-20",152150,320,151153],["2021-11-21",152150,156,151309],["2021-11-22",152150,478,151787],["2021-11-23",152150,548,152335],["2021-11-24",152150,297,152632],["2021-11-25",152150,2,152634],["2021-11-26",152150,305,152939],["2021-11-27",152150,236,153175],["2021-11-28",152150,195,153370],["2021-11-29",152150,438,153808],["2021-11-30",152150,505,154313],["2021-12-01",152150,644,154957],["2021-12-02",152150,606,155563],["2021-12-03",152150,717,156280],["2021-12-04",152150,343,156623],["2021-12-05",152150,155,156778],["2021-12-06",152150,414,157192],["2021-12-07",152150,441,157633],["2021-12-08",152150,513,158146],["2021-12-09",152150,535,158681],["2021-12-10",152150,552,159233],["2021-12-11",152150,215,159448],["2021-12-12",152150,113,159561],["2021-12-13",152150,321,159882],["2021-12-14",152150,312,160194],["2021-12-15",152150,439,160633],["2021-12-16",152150,350,160983],["2021-12-17",152150,469,161452],["2021-12-18",152150,232,161684],["2021-12-19",152150,177,161861],["2021-12-20",152150,444,162305],["2021-12-21",152150,477,162782],["2021-12-22",152150,531,163313],["2021-12-23",152150,379,163692],["2021-12-24",152150,130,163822],["2021-12-25",152150,1,163823],["2021-12-26",152150,154,163977],["2021-12-27",152150,410,164387],["2021-12-28",152150,462,164849],["2021-12-29",152150,562,165411],["2021-12-30",152150,418,165829],["2021-12-31",152150,262,166091],["2022-01-01",152150,23,166114],["2022-01-02",152150,115,166229],["2022-01-03",152150,135,166364]]} \ No newline at end of file diff --git a/public/data/overall/vaccinations/by-county/Bleckley.json b/public/data/overall/vaccinations/by-county/Bleckley.json new file mode 100644 index 000000000..61d2fa19c --- /dev/null +++ b/public/data/overall/vaccinations/by-county/Bleckley.json @@ -0,0 +1 @@ +{"segment":{"county":"Bleckley"},"headers":["report_date","population","vaccinations","total_vaccinations"],"rows":[["2020-12-16",12838,1,1],["2020-12-17",12838,1,2],["2020-12-18",12838,4,6],["2020-12-19",12838,1,7],["2020-12-21",12838,2,9],["2020-12-22",12838,5,14],["2020-12-23",12838,4,18],["2020-12-24",12838,4,22],["2020-12-26",12838,5,27],["2020-12-27",12838,1,28],["2020-12-28",12838,22,50],["2020-12-29",12838,14,64],["2020-12-30",12838,13,77],["2020-12-31",12838,6,83],["2021-01-01",12838,3,86],["2021-01-02",12838,2,88],["2021-01-03",12838,3,91],["2021-01-04",12838,26,117],["2021-01-05",12838,20,137],["2021-01-06",12838,25,162],["2021-01-07",12838,24,186],["2021-01-08",12838,39,225],["2021-01-09",12838,1,226],["2021-01-11",12838,42,268],["2021-01-12",12838,17,285],["2021-01-13",12838,85,370],["2021-01-14",12838,35,405],["2021-01-15",12838,44,449],["2021-01-16",12838,3,452],["2021-01-17",12838,4,456],["2021-01-18",12838,342,798],["2021-01-19",12838,22,820],["2021-01-20",12838,70,890],["2021-01-21",12838,64,954],["2021-01-22",12838,134,1088],["2021-01-23",12838,3,1091],["2021-01-24",12838,3,1094],["2021-01-25",12838,314,1408],["2021-01-26",12838,35,1443],["2021-01-27",12838,20,1463],["2021-01-28",12838,38,1501],["2021-01-29",12838,27,1528],["2021-01-30",12838,1,1529],["2021-02-01",12838,117,1646],["2021-02-02",12838,22,1668],["2021-02-03",12838,32,1700],["2021-02-04",12838,20,1720],["2021-02-05",12838,51,1771],["2021-02-06",12838,2,1773],["2021-02-08",12838,85,1858],["2021-02-09",12838,21,1879],["2021-02-10",12838,32,1911],["2021-02-11",12838,86,1997],["2021-02-12",12838,35,2032],["2021-02-13",12838,10,2042],["2021-02-14",12838,2,2044],["2021-02-15",12838,354,2398],["2021-02-16",12838,16,2414],["2021-02-17",12838,28,2442],["2021-02-18",12838,67,2509],["2021-02-19",12838,51,2560],["2021-02-20",12838,3,2563],["2021-02-22",12838,388,2951],["2021-02-23",12838,13,2964],["2021-02-24",12838,38,3002],["2021-02-25",12838,64,3066],["2021-02-26",12838,38,3104],["2021-02-27",12838,4,3108],["2021-02-28",12838,4,3112],["2021-03-01",12838,148,3260],["2021-03-02",12838,10,3270],["2021-03-03",12838,33,3303],["2021-03-04",12838,28,3331],["2021-03-05",12838,25,3356],["2021-03-06",12838,5,3361],["2021-03-07",12838,6,3367],["2021-03-08",12838,105,3472],["2021-03-09",12838,18,3490],["2021-03-10",12838,39,3529],["2021-03-11",12838,28,3557],["2021-03-12",12838,24,3581],["2021-03-13",12838,10,3591],["2021-03-14",12838,8,3599],["2021-03-15",12838,157,3756],["2021-03-16",12838,23,3779],["2021-03-17",12838,38,3817],["2021-03-18",12838,61,3878],["2021-03-19",12838,55,3933],["2021-03-20",12838,13,3946],["2021-03-21",12838,2,3948],["2021-03-22",12838,38,3986],["2021-03-23",12838,20,4006],["2021-03-24",12838,38,4044],["2021-03-25",12838,60,4104],["2021-03-26",12838,35,4139],["2021-03-27",12838,8,4147],["2021-03-28",12838,11,4158],["2021-03-29",12838,38,4196],["2021-03-30",12838,55,4251],["2021-03-31",12838,67,4318],["2021-04-01",12838,101,4419],["2021-04-02",12838,42,4461],["2021-04-03",12838,16,4477],["2021-04-04",12838,10,4487],["2021-04-05",12838,36,4523],["2021-04-06",12838,37,4560],["2021-04-07",12838,43,4603],["2021-04-08",12838,113,4716],["2021-04-09",12838,58,4774],["2021-04-10",12838,19,4793],["2021-04-11",12838,13,4806],["2021-04-12",12838,58,4864],["2021-04-13",12838,51,4915],["2021-04-14",12838,31,4946],["2021-04-15",12838,97,5043],["2021-04-16",12838,62,5105],["2021-04-17",12838,18,5123],["2021-04-18",12838,4,5127],["2021-04-19",12838,41,5168],["2021-04-20",12838,23,5191],["2021-04-21",12838,37,5228],["2021-04-22",12838,90,5318],["2021-04-23",12838,34,5352],["2021-04-24",12838,7,5359],["2021-04-25",12838,11,5370],["2021-04-26",12838,22,5392],["2021-04-27",12838,38,5430],["2021-04-28",12838,55,5485],["2021-04-29",12838,108,5593],["2021-04-30",12838,48,5641],["2021-05-01",12838,15,5656],["2021-05-02",12838,7,5663],["2021-05-03",12838,23,5686],["2021-05-04",12838,23,5709],["2021-05-05",12838,37,5746],["2021-05-06",12838,80,5826],["2021-05-07",12838,51,5877],["2021-05-08",12838,17,5894],["2021-05-09",12838,14,5908],["2021-05-10",12838,6,5914],["2021-05-11",12838,26,5940],["2021-05-12",12838,17,5957],["2021-05-13",12838,54,6011],["2021-05-14",12838,19,6030],["2021-05-15",12838,14,6044],["2021-05-16",12838,5,6049],["2021-05-17",12838,24,6073],["2021-05-18",12838,22,6095],["2021-05-19",12838,10,6105],["2021-05-20",12838,53,6158],["2021-05-21",12838,25,6183],["2021-05-22",12838,8,6191],["2021-05-23",12838,11,6202],["2021-05-24",12838,10,6212],["2021-05-25",12838,7,6219],["2021-05-26",12838,24,6243],["2021-05-27",12838,41,6284],["2021-05-28",12838,10,6294],["2021-05-29",12838,6,6300],["2021-05-30",12838,5,6305],["2021-05-31",12838,5,6310],["2021-06-01",12838,23,6333],["2021-06-02",12838,22,6355],["2021-06-03",12838,19,6374],["2021-06-04",12838,23,6397],["2021-06-05",12838,6,6403],["2021-06-06",12838,5,6408],["2021-06-07",12838,13,6421],["2021-06-08",12838,14,6435],["2021-06-09",12838,13,6448],["2021-06-10",12838,15,6463],["2021-06-11",12838,16,6479],["2021-06-12",12838,3,6482],["2021-06-13",12838,4,6486],["2021-06-14",12838,12,6498],["2021-06-15",12838,15,6513],["2021-06-16",12838,9,6522],["2021-06-17",12838,18,6540],["2021-06-18",12838,7,6547],["2021-06-19",12838,5,6552],["2021-06-20",12838,4,6556],["2021-06-21",12838,8,6564],["2021-06-22",12838,5,6569],["2021-06-23",12838,16,6585],["2021-06-24",12838,9,6594],["2021-06-25",12838,8,6602],["2021-06-26",12838,10,6612],["2021-06-27",12838,3,6615],["2021-06-28",12838,15,6630],["2021-06-29",12838,12,6642],["2021-06-30",12838,15,6657],["2021-07-01",12838,9,6666],["2021-07-02",12838,15,6681],["2021-07-03",12838,6,6687],["2021-07-04",12838,1,6688],["2021-07-05",12838,5,6693],["2021-07-06",12838,9,6702],["2021-07-07",12838,17,6719],["2021-07-08",12838,14,6733],["2021-07-09",12838,4,6737],["2021-07-10",12838,4,6741],["2021-07-11",12838,3,6744],["2021-07-12",12838,7,6751],["2021-07-13",12838,13,6764],["2021-07-14",12838,8,6772],["2021-07-15",12838,11,6783],["2021-07-16",12838,15,6798],["2021-07-17",12838,8,6806],["2021-07-18",12838,4,6810],["2021-07-19",12838,18,6828],["2021-07-20",12838,15,6843],["2021-07-21",12838,11,6854],["2021-07-22",12838,11,6865],["2021-07-23",12838,15,6880],["2021-07-24",12838,11,6891],["2021-07-25",12838,10,6901],["2021-07-26",12838,22,6923],["2021-07-27",12838,18,6941],["2021-07-28",12838,40,6981],["2021-07-29",12838,31,7012],["2021-07-30",12838,29,7041],["2021-07-31",12838,20,7061],["2021-08-01",12838,11,7072],["2021-08-02",12838,23,7095],["2021-08-03",12838,26,7121],["2021-08-04",12838,29,7150],["2021-08-05",12838,32,7182],["2021-08-06",12838,39,7221],["2021-08-07",12838,22,7243],["2021-08-08",12838,11,7254],["2021-08-09",12838,41,7295],["2021-08-10",12838,35,7330],["2021-08-11",12838,31,7361],["2021-08-12",12838,18,7379],["2021-08-13",12838,45,7424],["2021-08-14",12838,18,7442],["2021-08-15",12838,9,7451],["2021-08-16",12838,43,7494],["2021-08-17",12838,43,7537],["2021-08-18",12838,54,7591],["2021-08-19",12838,40,7631],["2021-08-20",12838,57,7688],["2021-08-21",12838,19,7707],["2021-08-22",12838,18,7725],["2021-08-23",12838,39,7764],["2021-08-24",12838,38,7802],["2021-08-25",12838,50,7852],["2021-08-26",12838,39,7891],["2021-08-27",12838,41,7932],["2021-08-28",12838,31,7963],["2021-08-29",12838,17,7980],["2021-08-30",12838,48,8028],["2021-08-31",12838,34,8062],["2021-09-01",12838,42,8104],["2021-09-02",12838,46,8150],["2021-09-03",12838,33,8183],["2021-09-04",12838,22,8205],["2021-09-05",12838,11,8216],["2021-09-06",12838,18,8234],["2021-09-07",12838,34,8268],["2021-09-08",12838,44,8312],["2021-09-09",12838,40,8352],["2021-09-10",12838,43,8395],["2021-09-11",12838,31,8426],["2021-09-12",12838,9,8435],["2021-09-13",12838,28,8463],["2021-09-14",12838,27,8490],["2021-09-15",12838,36,8526],["2021-09-16",12838,42,8568],["2021-09-17",12838,59,8627],["2021-09-18",12838,14,8641],["2021-09-19",12838,13,8654],["2021-09-20",12838,27,8681],["2021-09-21",12838,17,8698],["2021-09-22",12838,23,8721],["2021-09-23",12838,43,8764],["2021-09-24",12838,23,8787],["2021-09-25",12838,9,8796],["2021-09-26",12838,7,8803],["2021-09-27",12838,24,8827],["2021-09-28",12838,19,8846],["2021-09-29",12838,33,8879],["2021-09-30",12838,34,8913],["2021-10-01",12838,16,8929],["2021-10-02",12838,7,8936],["2021-10-03",12838,5,8941],["2021-10-04",12838,15,8956],["2021-10-05",12838,10,8966],["2021-10-06",12838,22,8988],["2021-10-07",12838,20,9008],["2021-10-08",12838,30,9038],["2021-10-09",12838,5,9043],["2021-10-10",12838,4,9047],["2021-10-11",12838,13,9060],["2021-10-12",12838,15,9075],["2021-10-13",12838,14,9089],["2021-10-14",12838,10,9099],["2021-10-15",12838,19,9118],["2021-10-16",12838,3,9121],["2021-10-17",12838,4,9125],["2021-10-18",12838,17,9142],["2021-10-19",12838,12,9154],["2021-10-20",12838,11,9165],["2021-10-21",12838,19,9184],["2021-10-22",12838,12,9196],["2021-10-23",12838,7,9203],["2021-10-24",12838,4,9207],["2021-10-25",12838,39,9246],["2021-10-26",12838,26,9272],["2021-10-27",12838,75,9347],["2021-10-28",12838,64,9411],["2021-10-29",12838,20,9431],["2021-10-30",12838,5,9436],["2021-10-31",12838,5,9441],["2021-11-01",12838,20,9461],["2021-11-02",12838,19,9480],["2021-11-03",12838,100,9580],["2021-11-04",12838,67,9647],["2021-11-05",12838,59,9706],["2021-11-06",12838,5,9711],["2021-11-07",12838,6,9717],["2021-11-08",12838,33,9750],["2021-11-09",12838,28,9778],["2021-11-10",12838,50,9828],["2021-11-11",12838,19,9847],["2021-11-12",12838,68,9915],["2021-11-13",12838,3,9918],["2021-11-14",12838,4,9922],["2021-11-15",12838,29,9951],["2021-11-16",12838,19,9970],["2021-11-17",12838,75,10045],["2021-11-18",12838,58,10103],["2021-11-19",12838,26,10129],["2021-11-20",12838,5,10134],["2021-11-21",12838,9,10143],["2021-11-22",12838,29,10172],["2021-11-23",12838,13,10185],["2021-11-24",12838,19,10204],["2021-11-26",12838,8,10212],["2021-11-27",12838,14,10226],["2021-11-28",12838,4,10230],["2021-11-29",12838,24,10254],["2021-11-30",12838,30,10284],["2021-12-01",12838,52,10336],["2021-12-02",12838,77,10413],["2021-12-03",12838,32,10445],["2021-12-04",12838,8,10453],["2021-12-05",12838,6,10459],["2021-12-06",12838,30,10489],["2021-12-07",12838,14,10503],["2021-12-08",12838,49,10552],["2021-12-09",12838,27,10579],["2021-12-10",12838,53,10632],["2021-12-11",12838,5,10637],["2021-12-12",12838,7,10644],["2021-12-13",12838,24,10668],["2021-12-14",12838,10,10678],["2021-12-15",12838,35,10713],["2021-12-16",12838,36,10749],["2021-12-17",12838,27,10776],["2021-12-18",12838,10,10786],["2021-12-19",12838,8,10794],["2021-12-20",12838,21,10815],["2021-12-21",12838,21,10836],["2021-12-22",12838,27,10863],["2021-12-23",12838,13,10876],["2021-12-24",12838,2,10878],["2021-12-26",12838,10,10888],["2021-12-27",12838,18,10906],["2021-12-28",12838,21,10927],["2021-12-29",12838,61,10988],["2021-12-30",12838,30,11018],["2021-12-31",12838,11,11029],["2022-01-01",12838,4,11033],["2022-01-02",12838,10,11043],["2022-01-03",12838,14,11057]]} \ No newline at end of file diff --git a/public/data/overall/vaccinations/by-county/Brantley.json b/public/data/overall/vaccinations/by-county/Brantley.json new file mode 100644 index 000000000..634f81730 --- /dev/null +++ b/public/data/overall/vaccinations/by-county/Brantley.json @@ -0,0 +1 @@ +{"segment":{"county":"Brantley"},"headers":["report_date","population","vaccinations","total_vaccinations"],"rows":[["2020-12-15",19202,6,6],["2020-12-17",19202,14,20],["2020-12-18",19202,2,22],["2020-12-19",19202,1,23],["2020-12-21",19202,7,30],["2020-12-22",19202,7,37],["2020-12-23",19202,8,45],["2020-12-24",19202,3,48],["2020-12-27",19202,1,49],["2020-12-28",19202,6,55],["2020-12-29",19202,9,64],["2020-12-30",19202,13,77],["2020-12-31",19202,6,83],["2021-01-01",19202,2,85],["2021-01-03",19202,2,87],["2021-01-04",19202,14,101],["2021-01-05",19202,17,118],["2021-01-06",19202,19,137],["2021-01-07",19202,34,171],["2021-01-08",19202,30,201],["2021-01-09",19202,2,203],["2021-01-10",19202,2,205],["2021-01-11",19202,36,241],["2021-01-12",19202,30,271],["2021-01-13",19202,26,297],["2021-01-14",19202,26,323],["2021-01-15",19202,56,379],["2021-01-16",19202,37,416],["2021-01-17",19202,3,419],["2021-01-18",19202,35,454],["2021-01-19",19202,31,485],["2021-01-20",19202,52,537],["2021-01-21",19202,30,567],["2021-01-22",19202,38,605],["2021-01-23",19202,17,622],["2021-01-24",19202,4,626],["2021-01-25",19202,44,670],["2021-01-26",19202,34,704],["2021-01-27",19202,33,737],["2021-01-28",19202,63,800],["2021-01-29",19202,55,855],["2021-01-30",19202,27,882],["2021-01-31",19202,2,884],["2021-02-01",19202,60,944],["2021-02-02",19202,26,970],["2021-02-03",19202,54,1024],["2021-02-04",19202,46,1070],["2021-02-05",19202,39,1109],["2021-02-06",19202,12,1121],["2021-02-07",19202,3,1124],["2021-02-08",19202,64,1188],["2021-02-09",19202,26,1214],["2021-02-10",19202,53,1267],["2021-02-11",19202,35,1302],["2021-02-12",19202,78,1380],["2021-02-13",19202,61,1441],["2021-02-14",19202,3,1444],["2021-02-15",19202,66,1510],["2021-02-16",19202,34,1544],["2021-02-17",19202,105,1649],["2021-02-18",19202,31,1680],["2021-02-19",19202,84,1764],["2021-02-20",19202,33,1797],["2021-02-21",19202,1,1798],["2021-02-22",19202,62,1860],["2021-02-23",19202,24,1884],["2021-02-24",19202,44,1928],["2021-02-25",19202,39,1967],["2021-02-26",19202,87,2054],["2021-02-27",19202,22,2076],["2021-03-01",19202,77,2153],["2021-03-02",19202,25,2178],["2021-03-03",19202,83,2261],["2021-03-04",19202,46,2307],["2021-03-05",19202,72,2379],["2021-03-06",19202,12,2391],["2021-03-08",19202,56,2447],["2021-03-09",19202,17,2464],["2021-03-10",19202,85,2549],["2021-03-11",19202,44,2593],["2021-03-12",19202,76,2669],["2021-03-13",19202,39,2708],["2021-03-14",19202,1,2709],["2021-03-15",19202,86,2795],["2021-03-16",19202,74,2869],["2021-03-17",19202,141,3010],["2021-03-18",19202,54,3064],["2021-03-19",19202,98,3162],["2021-03-20",19202,56,3218],["2021-03-21",19202,2,3220],["2021-03-22",19202,70,3290],["2021-03-23",19202,41,3331],["2021-03-24",19202,110,3441],["2021-03-25",19202,82,3523],["2021-03-26",19202,119,3642],["2021-03-27",19202,49,3691],["2021-03-28",19202,4,3695],["2021-03-29",19202,36,3731],["2021-03-30",19202,72,3803],["2021-03-31",19202,151,3954],["2021-04-01",19202,78,4032],["2021-04-02",19202,54,4086],["2021-04-03",19202,39,4125],["2021-04-04",19202,1,4126],["2021-04-05",19202,35,4161],["2021-04-06",19202,61,4222],["2021-04-07",19202,84,4306],["2021-04-08",19202,71,4377],["2021-04-09",19202,52,4429],["2021-04-10",19202,52,4481],["2021-04-11",19202,3,4484],["2021-04-12",19202,34,4518],["2021-04-13",19202,69,4587],["2021-04-14",19202,79,4666],["2021-04-15",19202,59,4725],["2021-04-16",19202,74,4799],["2021-04-17",19202,41,4840],["2021-04-18",19202,1,4841],["2021-04-19",19202,38,4879],["2021-04-20",19202,89,4968],["2021-04-21",19202,122,5090],["2021-04-22",19202,79,5169],["2021-04-23",19202,87,5256],["2021-04-24",19202,44,5300],["2021-04-26",19202,30,5330],["2021-04-27",19202,44,5374],["2021-04-28",19202,70,5444],["2021-04-29",19202,38,5482],["2021-04-30",19202,50,5532],["2021-05-01",19202,34,5566],["2021-05-02",19202,4,5570],["2021-05-03",19202,18,5588],["2021-05-04",19202,29,5617],["2021-05-05",19202,59,5676],["2021-05-06",19202,18,5694],["2021-05-07",19202,19,5713],["2021-05-08",19202,15,5728],["2021-05-10",19202,10,5738],["2021-05-11",19202,32,5770],["2021-05-12",19202,53,5823],["2021-05-13",19202,27,5850],["2021-05-14",19202,30,5880],["2021-05-15",19202,31,5911],["2021-05-16",19202,3,5914],["2021-05-17",19202,10,5924],["2021-05-18",19202,21,5945],["2021-05-19",19202,59,6004],["2021-05-20",19202,22,6026],["2021-05-21",19202,31,6057],["2021-05-22",19202,8,6065],["2021-05-23",19202,3,6068],["2021-05-24",19202,11,6079],["2021-05-25",19202,28,6107],["2021-05-26",19202,53,6160],["2021-05-27",19202,14,6174],["2021-05-28",19202,9,6183],["2021-05-29",19202,21,6204],["2021-05-30",19202,1,6205],["2021-05-31",19202,1,6206],["2021-06-01",19202,16,6222],["2021-06-02",19202,31,6253],["2021-06-03",19202,17,6270],["2021-06-04",19202,17,6287],["2021-06-05",19202,13,6300],["2021-06-06",19202,1,6301],["2021-06-07",19202,4,6305],["2021-06-08",19202,9,6314],["2021-06-09",19202,30,6344],["2021-06-10",19202,17,6361],["2021-06-11",19202,12,6373],["2021-06-12",19202,11,6384],["2021-06-13",19202,2,6386],["2021-06-14",19202,4,6390],["2021-06-15",19202,8,6398],["2021-06-16",19202,20,6418],["2021-06-17",19202,14,6432],["2021-06-18",19202,15,6447],["2021-06-19",19202,9,6456],["2021-06-20",19202,4,6460],["2021-06-21",19202,5,6465],["2021-06-22",19202,10,6475],["2021-06-23",19202,36,6511],["2021-06-24",19202,9,6520],["2021-06-25",19202,6,6526],["2021-06-26",19202,9,6535],["2021-06-28",19202,8,6543],["2021-06-29",19202,12,6555],["2021-06-30",19202,18,6573],["2021-07-01",19202,5,6578],["2021-07-02",19202,8,6586],["2021-07-03",19202,3,6589],["2021-07-05",19202,1,6590],["2021-07-06",19202,9,6599],["2021-07-07",19202,14,6613],["2021-07-08",19202,7,6620],["2021-07-09",19202,4,6624],["2021-07-10",19202,1,6625],["2021-07-11",19202,1,6626],["2021-07-12",19202,6,6632],["2021-07-13",19202,14,6646],["2021-07-14",19202,21,6667],["2021-07-15",19202,7,6674],["2021-07-16",19202,10,6684],["2021-07-17",19202,4,6688],["2021-07-18",19202,1,6689],["2021-07-19",19202,9,6698],["2021-07-20",19202,8,6706],["2021-07-21",19202,40,6746],["2021-07-22",19202,22,6768],["2021-07-23",19202,22,6790],["2021-07-24",19202,9,6799],["2021-07-25",19202,5,6804],["2021-07-26",19202,23,6827],["2021-07-27",19202,34,6861],["2021-07-28",19202,39,6900],["2021-07-29",19202,33,6933],["2021-07-30",19202,42,6975],["2021-07-31",19202,20,6995],["2021-08-01",19202,10,7005],["2021-08-02",19202,30,7035],["2021-08-03",19202,53,7088],["2021-08-04",19202,48,7136],["2021-08-05",19202,45,7181],["2021-08-06",19202,54,7235],["2021-08-07",19202,27,7262],["2021-08-08",19202,15,7277],["2021-08-09",19202,44,7321],["2021-08-10",19202,43,7364],["2021-08-11",19202,65,7429],["2021-08-12",19202,72,7501],["2021-08-13",19202,53,7554],["2021-08-14",19202,20,7574],["2021-08-15",19202,16,7590],["2021-08-16",19202,36,7626],["2021-08-17",19202,60,7686],["2021-08-18",19202,56,7742],["2021-08-19",19202,51,7793],["2021-08-20",19202,71,7864],["2021-08-21",19202,22,7886],["2021-08-22",19202,9,7895],["2021-08-23",19202,40,7935],["2021-08-24",19202,66,8001],["2021-08-25",19202,57,8058],["2021-08-26",19202,62,8120],["2021-08-27",19202,67,8187],["2021-08-28",19202,27,8214],["2021-08-29",19202,13,8227],["2021-08-30",19202,55,8282],["2021-08-31",19202,52,8334],["2021-09-01",19202,57,8391],["2021-09-02",19202,76,8467],["2021-09-03",19202,69,8536],["2021-09-04",19202,16,8552],["2021-09-05",19202,14,8566],["2021-09-06",19202,11,8577],["2021-09-07",19202,82,8659],["2021-09-08",19202,54,8713],["2021-09-09",19202,62,8775],["2021-09-10",19202,64,8839],["2021-09-11",19202,19,8858],["2021-09-12",19202,17,8875],["2021-09-13",19202,59,8934],["2021-09-14",19202,56,8990],["2021-09-15",19202,40,9030],["2021-09-16",19202,37,9067],["2021-09-17",19202,78,9145],["2021-09-18",19202,17,9162],["2021-09-19",19202,3,9165],["2021-09-20",19202,37,9202],["2021-09-21",19202,34,9236],["2021-09-22",19202,19,9255],["2021-09-23",19202,41,9296],["2021-09-24",19202,34,9330],["2021-09-25",19202,7,9337],["2021-09-26",19202,3,9340],["2021-09-27",19202,15,9355],["2021-09-28",19202,43,9398],["2021-09-29",19202,34,9432],["2021-09-30",19202,31,9463],["2021-10-01",19202,37,9500],["2021-10-02",19202,6,9506],["2021-10-03",19202,9,9515],["2021-10-04",19202,30,9545],["2021-10-05",19202,40,9585],["2021-10-06",19202,27,9612],["2021-10-07",19202,21,9633],["2021-10-08",19202,34,9667],["2021-10-09",19202,9,9676],["2021-10-10",19202,2,9678],["2021-10-11",19202,9,9687],["2021-10-12",19202,20,9707],["2021-10-13",19202,20,9727],["2021-10-14",19202,19,9746],["2021-10-15",19202,19,9765],["2021-10-16",19202,1,9766],["2021-10-17",19202,1,9767],["2021-10-18",19202,39,9806],["2021-10-19",19202,26,9832],["2021-10-20",19202,13,9845],["2021-10-21",19202,17,9862],["2021-10-22",19202,21,9883],["2021-10-23",19202,13,9896],["2021-10-24",19202,1,9897],["2021-10-25",19202,22,9919],["2021-10-26",19202,33,9952],["2021-10-27",19202,49,10001],["2021-10-28",19202,33,10034],["2021-10-29",19202,32,10066],["2021-10-30",19202,7,10073],["2021-10-31",19202,1,10074],["2021-11-01",19202,32,10106],["2021-11-02",19202,30,10136],["2021-11-03",19202,47,10183],["2021-11-04",19202,27,10210],["2021-11-05",19202,20,10230],["2021-11-06",19202,9,10239],["2021-11-07",19202,3,10242],["2021-11-08",19202,38,10280],["2021-11-09",19202,26,10306],["2021-11-10",19202,25,10331],["2021-11-11",19202,18,10349],["2021-11-12",19202,23,10372],["2021-11-13",19202,6,10378],["2021-11-14",19202,7,10385],["2021-11-15",19202,17,10402],["2021-11-16",19202,31,10433],["2021-11-17",19202,16,10449],["2021-11-18",19202,33,10482],["2021-11-19",19202,24,10506],["2021-11-20",19202,12,10518],["2021-11-21",19202,2,10520],["2021-11-22",19202,29,10549],["2021-11-23",19202,31,10580],["2021-11-24",19202,21,10601],["2021-11-25",19202,1,10602],["2021-11-26",19202,9,10611],["2021-11-27",19202,3,10614],["2021-11-28",19202,5,10619],["2021-11-29",19202,61,10680],["2021-11-30",19202,62,10742],["2021-12-01",19202,46,10788],["2021-12-02",19202,50,10838],["2021-12-03",19202,39,10877],["2021-12-04",19202,6,10883],["2021-12-05",19202,3,10886],["2021-12-06",19202,37,10923],["2021-12-07",19202,25,10948],["2021-12-08",19202,33,10981],["2021-12-09",19202,26,11007],["2021-12-10",19202,47,11054],["2021-12-11",19202,10,11064],["2021-12-12",19202,3,11067],["2021-12-13",19202,23,11090],["2021-12-14",19202,28,11118],["2021-12-15",19202,10,11128],["2021-12-16",19202,18,11146],["2021-12-17",19202,34,11180],["2021-12-18",19202,5,11185],["2021-12-19",19202,3,11188],["2021-12-20",19202,29,11217],["2021-12-21",19202,29,11246],["2021-12-22",19202,22,11268],["2021-12-23",19202,12,11280],["2021-12-24",19202,4,11284],["2021-12-27",19202,27,11311],["2021-12-28",19202,29,11340],["2021-12-29",19202,22,11362],["2021-12-30",19202,21,11383],["2021-12-31",19202,10,11393],["2022-01-02",19202,6,11399],["2022-01-03",19202,6,11405]]} \ No newline at end of file diff --git a/public/data/overall/vaccinations/by-county/Brooks.json b/public/data/overall/vaccinations/by-county/Brooks.json new file mode 100644 index 000000000..85e15f374 --- /dev/null +++ b/public/data/overall/vaccinations/by-county/Brooks.json @@ -0,0 +1 @@ +{"segment":{"county":"Brooks"},"headers":["report_date","population","vaccinations","total_vaccinations"],"rows":[["2020-12-16",15727,1,1],["2020-12-17",15727,1,2],["2020-12-18",15727,5,7],["2020-12-19",15727,3,10],["2020-12-21",15727,15,25],["2020-12-22",15727,25,50],["2020-12-23",15727,19,69],["2020-12-24",15727,1,70],["2020-12-26",15727,1,71],["2020-12-28",15727,20,91],["2020-12-29",15727,13,104],["2020-12-30",15727,23,127],["2020-12-31",15727,22,149],["2021-01-01",15727,7,156],["2021-01-04",15727,28,184],["2021-01-05",15727,27,211],["2021-01-06",15727,26,237],["2021-01-07",15727,15,252],["2021-01-08",15727,18,270],["2021-01-11",15727,67,337],["2021-01-12",15727,72,409],["2021-01-13",15727,110,519],["2021-01-14",15727,133,652],["2021-01-15",15727,87,739],["2021-01-16",15727,5,744],["2021-01-17",15727,1,745],["2021-01-18",15727,47,792],["2021-01-19",15727,191,983],["2021-01-20",15727,157,1140],["2021-01-21",15727,108,1248],["2021-01-22",15727,94,1342],["2021-01-23",15727,2,1344],["2021-01-25",15727,82,1426],["2021-01-26",15727,71,1497],["2021-01-27",15727,72,1569],["2021-01-28",15727,52,1621],["2021-01-29",15727,92,1713],["2021-02-01",15727,82,1795],["2021-02-02",15727,134,1929],["2021-02-03",15727,143,2072],["2021-02-04",15727,130,2202],["2021-02-05",15727,73,2275],["2021-02-06",15727,1,2276],["2021-02-08",15727,85,2361],["2021-02-09",15727,174,2535],["2021-02-10",15727,174,2709],["2021-02-11",15727,178,2887],["2021-02-12",15727,179,3066],["2021-02-13",15727,21,3087],["2021-02-14",15727,3,3090],["2021-02-15",15727,91,3181],["2021-02-16",15727,64,3245],["2021-02-17",15727,139,3384],["2021-02-18",15727,140,3524],["2021-02-19",15727,95,3619],["2021-02-20",15727,3,3622],["2021-02-21",15727,2,3624],["2021-02-22",15727,76,3700],["2021-02-23",15727,74,3774],["2021-02-24",15727,113,3887],["2021-02-25",15727,125,4012],["2021-02-26",15727,74,4086],["2021-02-28",15727,3,4089],["2021-03-01",15727,85,4174],["2021-03-02",15727,130,4304],["2021-03-03",15727,148,4452],["2021-03-04",15727,127,4579],["2021-03-05",15727,69,4648],["2021-03-06",15727,3,4651],["2021-03-07",15727,6,4657],["2021-03-08",15727,66,4723],["2021-03-09",15727,121,4844],["2021-03-10",15727,57,4901],["2021-03-11",15727,75,4976],["2021-03-12",15727,110,5086],["2021-03-13",15727,25,5111],["2021-03-14",15727,6,5117],["2021-03-15",15727,100,5217],["2021-03-16",15727,107,5324],["2021-03-17",15727,111,5435],["2021-03-18",15727,121,5556],["2021-03-19",15727,123,5679],["2021-03-20",15727,22,5701],["2021-03-21",15727,5,5706],["2021-03-22",15727,142,5848],["2021-03-23",15727,76,5924],["2021-03-24",15727,137,6061],["2021-03-25",15727,145,6206],["2021-03-26",15727,117,6323],["2021-03-27",15727,8,6331],["2021-03-28",15727,6,6337],["2021-03-29",15727,112,6449],["2021-03-30",15727,96,6545],["2021-03-31",15727,98,6643],["2021-04-01",15727,119,6762],["2021-04-02",15727,80,6842],["2021-04-03",15727,13,6855],["2021-04-04",15727,6,6861],["2021-04-05",15727,131,6992],["2021-04-06",15727,126,7118],["2021-04-07",15727,88,7206],["2021-04-08",15727,132,7338],["2021-04-09",15727,105,7443],["2021-04-10",15727,14,7457],["2021-04-11",15727,8,7465],["2021-04-12",15727,119,7584],["2021-04-13",15727,80,7664],["2021-04-14",15727,100,7764],["2021-04-15",15727,61,7825],["2021-04-16",15727,111,7936],["2021-04-17",15727,6,7942],["2021-04-18",15727,2,7944],["2021-04-19",15727,49,7993],["2021-04-20",15727,53,8046],["2021-04-21",15727,94,8140],["2021-04-22",15727,104,8244],["2021-04-23",15727,122,8366],["2021-04-24",15727,10,8376],["2021-04-25",15727,3,8379],["2021-04-26",15727,77,8456],["2021-04-27",15727,87,8543],["2021-04-28",15727,68,8611],["2021-04-29",15727,79,8690],["2021-04-30",15727,49,8739],["2021-05-01",15727,18,8757],["2021-05-02",15727,2,8759],["2021-05-03",15727,32,8791],["2021-05-04",15727,38,8829],["2021-05-05",15727,64,8893],["2021-05-06",15727,75,8968],["2021-05-07",15727,50,9018],["2021-05-08",15727,6,9024],["2021-05-09",15727,5,9029],["2021-05-10",15727,22,9051],["2021-05-11",15727,28,9079],["2021-05-12",15727,51,9130],["2021-05-13",15727,49,9179],["2021-05-14",15727,31,9210],["2021-05-15",15727,16,9226],["2021-05-16",15727,7,9233],["2021-05-17",15727,26,9259],["2021-05-18",15727,37,9296],["2021-05-19",15727,60,9356],["2021-05-20",15727,68,9424],["2021-05-21",15727,46,9470],["2021-05-22",15727,11,9481],["2021-05-23",15727,5,9486],["2021-05-24",15727,21,9507],["2021-05-25",15727,27,9534],["2021-05-26",15727,38,9572],["2021-05-27",15727,34,9606],["2021-05-28",15727,23,9629],["2021-05-29",15727,5,9634],["2021-05-30",15727,4,9638],["2021-05-31",15727,4,9642],["2021-06-01",15727,36,9678],["2021-06-02",15727,38,9716],["2021-06-03",15727,30,9746],["2021-06-04",15727,26,9772],["2021-06-05",15727,15,9787],["2021-06-06",15727,8,9795],["2021-06-07",15727,24,9819],["2021-06-08",15727,21,9840],["2021-06-09",15727,14,9854],["2021-06-10",15727,47,9901],["2021-06-11",15727,21,9922],["2021-06-12",15727,18,9940],["2021-06-13",15727,6,9946],["2021-06-14",15727,15,9961],["2021-06-15",15727,21,9982],["2021-06-16",15727,36,10018],["2021-06-17",15727,32,10050],["2021-06-18",15727,25,10075],["2021-06-19",15727,2,10077],["2021-06-20",15727,3,10080],["2021-06-21",15727,17,10097],["2021-06-22",15727,30,10127],["2021-06-23",15727,32,10159],["2021-06-24",15727,16,10175],["2021-06-25",15727,15,10190],["2021-06-26",15727,11,10201],["2021-06-27",15727,8,10209],["2021-06-28",15727,30,10239],["2021-06-29",15727,22,10261],["2021-06-30",15727,17,10278],["2021-07-01",15727,19,10297],["2021-07-02",15727,20,10317],["2021-07-03",15727,7,10324],["2021-07-05",15727,9,10333],["2021-07-06",15727,13,10346],["2021-07-07",15727,23,10369],["2021-07-08",15727,23,10392],["2021-07-09",15727,12,10404],["2021-07-10",15727,8,10412],["2021-07-11",15727,4,10416],["2021-07-12",15727,21,10437],["2021-07-13",15727,16,10453],["2021-07-14",15727,23,10476],["2021-07-15",15727,17,10493],["2021-07-16",15727,12,10505],["2021-07-17",15727,12,10517],["2021-07-18",15727,4,10521],["2021-07-19",15727,24,10545],["2021-07-20",15727,26,10571],["2021-07-21",15727,30,10601],["2021-07-22",15727,45,10646],["2021-07-23",15727,27,10673],["2021-07-24",15727,17,10690],["2021-07-25",15727,6,10696],["2021-07-26",15727,58,10754],["2021-07-27",15727,27,10781],["2021-07-28",15727,58,10839],["2021-07-29",15727,79,10918],["2021-07-30",15727,61,10979],["2021-07-31",15727,16,10995],["2021-08-01",15727,18,11013],["2021-08-02",15727,75,11088],["2021-08-03",15727,44,11132],["2021-08-04",15727,55,11187],["2021-08-05",15727,52,11239],["2021-08-06",15727,66,11305],["2021-08-07",15727,42,11347],["2021-08-08",15727,11,11358],["2021-08-09",15727,67,11425],["2021-08-10",15727,60,11485],["2021-08-11",15727,54,11539],["2021-08-12",15727,57,11596],["2021-08-13",15727,58,11654],["2021-08-14",15727,34,11688],["2021-08-15",15727,13,11701],["2021-08-16",15727,49,11750],["2021-08-17",15727,40,11790],["2021-08-18",15727,90,11880],["2021-08-19",15727,71,11951],["2021-08-20",15727,76,12027],["2021-08-21",15727,25,12052],["2021-08-22",15727,10,12062],["2021-08-23",15727,54,12116],["2021-08-24",15727,52,12168],["2021-08-25",15727,109,12277],["2021-08-26",15727,58,12335],["2021-08-27",15727,96,12431],["2021-08-28",15727,77,12508],["2021-08-29",15727,11,12519],["2021-08-30",15727,78,12597],["2021-08-31",15727,68,12665],["2021-09-01",15727,71,12736],["2021-09-02",15727,72,12808],["2021-09-03",15727,76,12884],["2021-09-04",15727,28,12912],["2021-09-05",15727,13,12925],["2021-09-06",15727,4,12929],["2021-09-07",15727,53,12982],["2021-09-08",15727,46,13028],["2021-09-09",15727,63,13091],["2021-09-10",15727,107,13198],["2021-09-11",15727,21,13219],["2021-09-12",15727,12,13231],["2021-09-13",15727,62,13293],["2021-09-14",15727,38,13331],["2021-09-15",15727,54,13385],["2021-09-16",15727,52,13437],["2021-09-17",15727,61,13498],["2021-09-18",15727,31,13529],["2021-09-19",15727,3,13532],["2021-09-20",15727,19,13551],["2021-09-21",15727,34,13585],["2021-09-22",15727,57,13642],["2021-09-23",15727,37,13679],["2021-09-24",15727,40,13719],["2021-09-25",15727,7,13726],["2021-09-26",15727,3,13729],["2021-09-27",15727,33,13762],["2021-09-28",15727,31,13793],["2021-09-29",15727,35,13828],["2021-09-30",15727,42,13870],["2021-10-01",15727,32,13902],["2021-10-02",15727,13,13915],["2021-10-03",15727,5,13920],["2021-10-04",15727,23,13943],["2021-10-05",15727,28,13971],["2021-10-06",15727,44,14015],["2021-10-07",15727,50,14065],["2021-10-08",15727,27,14092],["2021-10-09",15727,5,14097],["2021-10-10",15727,3,14100],["2021-10-11",15727,15,14115],["2021-10-12",15727,18,14133],["2021-10-13",15727,55,14188],["2021-10-14",15727,33,14221],["2021-10-15",15727,16,14237],["2021-10-16",15727,4,14241],["2021-10-17",15727,1,14242],["2021-10-18",15727,15,14257],["2021-10-19",15727,14,14271],["2021-10-20",15727,17,14288],["2021-10-21",15727,32,14320],["2021-10-22",15727,38,14358],["2021-10-23",15727,11,14369],["2021-10-24",15727,3,14372],["2021-10-25",15727,46,14418],["2021-10-26",15727,48,14466],["2021-10-27",15727,64,14530],["2021-10-28",15727,51,14581],["2021-10-29",15727,51,14632],["2021-10-30",15727,7,14639],["2021-10-31",15727,1,14640],["2021-11-01",15727,31,14671],["2021-11-02",15727,46,14717],["2021-11-03",15727,41,14758],["2021-11-04",15727,51,14809],["2021-11-05",15727,40,14849],["2021-11-06",15727,12,14861],["2021-11-07",15727,1,14862],["2021-11-08",15727,43,14905],["2021-11-09",15727,47,14952],["2021-11-10",15727,42,14994],["2021-11-11",15727,29,15023],["2021-11-12",15727,125,15148],["2021-11-13",15727,17,15165],["2021-11-14",15727,2,15167],["2021-11-15",15727,41,15208],["2021-11-16",15727,75,15283],["2021-11-17",15727,45,15328],["2021-11-18",15727,54,15382],["2021-11-19",15727,71,15453],["2021-11-20",15727,11,15464],["2021-11-21",15727,2,15466],["2021-11-22",15727,54,15520],["2021-11-23",15727,77,15597],["2021-11-24",15727,35,15632],["2021-11-26",15727,7,15639],["2021-11-27",15727,8,15647],["2021-11-28",15727,2,15649],["2021-11-29",15727,57,15706],["2021-11-30",15727,66,15772],["2021-12-01",15727,61,15833],["2021-12-02",15727,46,15879],["2021-12-03",15727,64,15943],["2021-12-04",15727,24,15967],["2021-12-05",15727,1,15968],["2021-12-06",15727,66,16034],["2021-12-07",15727,56,16090],["2021-12-08",15727,51,16141],["2021-12-09",15727,54,16195],["2021-12-10",15727,47,16242],["2021-12-11",15727,11,16253],["2021-12-12",15727,11,16264],["2021-12-13",15727,34,16298],["2021-12-14",15727,41,16339],["2021-12-15",15727,24,16363],["2021-12-16",15727,38,16401],["2021-12-17",15727,74,16475],["2021-12-18",15727,17,16492],["2021-12-19",15727,4,16496],["2021-12-20",15727,59,16555],["2021-12-21",15727,60,16615],["2021-12-22",15727,61,16676],["2021-12-23",15727,41,16717],["2021-12-24",15727,7,16724],["2021-12-26",15727,10,16734],["2021-12-27",15727,55,16789],["2021-12-28",15727,45,16834],["2021-12-29",15727,58,16892],["2021-12-30",15727,47,16939],["2021-12-31",15727,18,16957],["2022-01-01",15727,2,16959],["2022-01-02",15727,8,16967],["2022-01-03",15727,31,16998]]} \ No newline at end of file diff --git a/public/data/overall/vaccinations/by-county/Bryan.json b/public/data/overall/vaccinations/by-county/Bryan.json new file mode 100644 index 000000000..cd5efcff1 --- /dev/null +++ b/public/data/overall/vaccinations/by-county/Bryan.json @@ -0,0 +1 @@ +{"segment":{"county":"Bryan"},"headers":["report_date","population","vaccinations","total_vaccinations"],"rows":[["2020-12-15",39137,5,5],["2020-12-16",39137,51,56],["2020-12-17",39137,11,67],["2020-12-18",39137,102,169],["2020-12-19",39137,8,177],["2020-12-20",39137,3,180],["2020-12-21",39137,44,224],["2020-12-22",39137,59,283],["2020-12-23",39137,46,329],["2020-12-24",39137,9,338],["2020-12-26",39137,1,339],["2020-12-28",39137,40,379],["2020-12-29",39137,77,456],["2020-12-30",39137,63,519],["2020-12-31",39137,35,554],["2021-01-01",39137,9,563],["2021-01-02",39137,10,573],["2021-01-04",39137,33,606],["2021-01-05",39137,55,661],["2021-01-06",39137,161,822],["2021-01-07",39137,99,921],["2021-01-08",39137,90,1011],["2021-01-09",39137,49,1060],["2021-01-10",39137,14,1074],["2021-01-11",39137,130,1204],["2021-01-12",39137,100,1304],["2021-01-13",39137,105,1409],["2021-01-14",39137,300,1709],["2021-01-15",39137,108,1817],["2021-01-16",39137,138,1955],["2021-01-17",39137,36,1991],["2021-01-18",39137,173,2164],["2021-01-19",39137,130,2294],["2021-01-20",39137,196,2490],["2021-01-21",39137,329,2819],["2021-01-22",39137,109,2928],["2021-01-23",39137,83,3011],["2021-01-24",39137,50,3061],["2021-01-25",39137,219,3280],["2021-01-26",39137,105,3385],["2021-01-27",39137,122,3507],["2021-01-28",39137,307,3814],["2021-01-29",39137,164,3978],["2021-01-30",39137,308,4286],["2021-01-31",39137,29,4315],["2021-02-01",39137,227,4542],["2021-02-02",39137,276,4818],["2021-02-03",39137,135,4953],["2021-02-04",39137,231,5184],["2021-02-05",39137,165,5349],["2021-02-06",39137,95,5444],["2021-02-07",39137,12,5456],["2021-02-08",39137,141,5597],["2021-02-09",39137,199,5796],["2021-02-10",39137,83,5879],["2021-02-11",39137,234,6113],["2021-02-12",39137,120,6233],["2021-02-13",39137,125,6358],["2021-02-14",39137,35,6393],["2021-02-15",39137,213,6606],["2021-02-16",39137,176,6782],["2021-02-17",39137,130,6912],["2021-02-18",39137,409,7321],["2021-02-19",39137,155,7476],["2021-02-20",39137,97,7573],["2021-02-21",39137,54,7627],["2021-02-22",39137,201,7828],["2021-02-23",39137,212,8040],["2021-02-24",39137,124,8164],["2021-02-25",39137,341,8505],["2021-02-26",39137,139,8644],["2021-02-27",39137,325,8969],["2021-02-28",39137,56,9025],["2021-03-01",39137,204,9229],["2021-03-02",39137,219,9448],["2021-03-03",39137,98,9546],["2021-03-04",39137,442,9988],["2021-03-05",39137,133,10121],["2021-03-06",39137,62,10183],["2021-03-07",39137,44,10227],["2021-03-08",39137,226,10453],["2021-03-09",39137,211,10664],["2021-03-10",39137,134,10798],["2021-03-11",39137,328,11126],["2021-03-12",39137,218,11344],["2021-03-13",39137,299,11643],["2021-03-14",39137,46,11689],["2021-03-15",39137,276,11965],["2021-03-16",39137,309,12274],["2021-03-17",39137,203,12477],["2021-03-18",39137,327,12804],["2021-03-19",39137,308,13112],["2021-03-20",39137,176,13288],["2021-03-21",39137,45,13333],["2021-03-22",39137,289,13622],["2021-03-23",39137,355,13977],["2021-03-24",39137,288,14265],["2021-03-25",39137,466,14731],["2021-03-26",39137,243,14974],["2021-03-27",39137,172,15146],["2021-03-28",39137,79,15225],["2021-03-29",39137,284,15509],["2021-03-30",39137,404,15913],["2021-03-31",39137,242,16155],["2021-04-01",39137,462,16617],["2021-04-02",39137,255,16872],["2021-04-03",39137,91,16963],["2021-04-04",39137,56,17019],["2021-04-05",39137,231,17250],["2021-04-06",39137,287,17537],["2021-04-07",39137,273,17810],["2021-04-08",39137,473,18283],["2021-04-09",39137,243,18526],["2021-04-10",39137,219,18745],["2021-04-11",39137,60,18805],["2021-04-12",39137,281,19086],["2021-04-13",39137,315,19401],["2021-04-14",39137,267,19668],["2021-04-15",39137,538,20206],["2021-04-16",39137,219,20425],["2021-04-17",39137,175,20600],["2021-04-18",39137,38,20638],["2021-04-19",39137,209,20847],["2021-04-20",39137,283,21130],["2021-04-21",39137,217,21347],["2021-04-22",39137,476,21823],["2021-04-23",39137,288,22111],["2021-04-24",39137,108,22219],["2021-04-25",39137,21,22240],["2021-04-26",39137,227,22467],["2021-04-27",39137,218,22685],["2021-04-28",39137,186,22871],["2021-04-29",39137,471,23342],["2021-04-30",39137,263,23605],["2021-05-01",39137,112,23717],["2021-05-02",39137,30,23747],["2021-05-03",39137,159,23906],["2021-05-04",39137,157,24063],["2021-05-05",39137,136,24199],["2021-05-06",39137,264,24463],["2021-05-07",39137,149,24612],["2021-05-08",39137,82,24694],["2021-05-09",39137,11,24705],["2021-05-10",39137,87,24792],["2021-05-11",39137,118,24910],["2021-05-12",39137,85,24995],["2021-05-13",39137,215,25210],["2021-05-14",39137,169,25379],["2021-05-15",39137,75,25454],["2021-05-16",39137,50,25504],["2021-05-17",39137,144,25648],["2021-05-18",39137,121,25769],["2021-05-19",39137,128,25897],["2021-05-20",39137,169,26066],["2021-05-21",39137,140,26206],["2021-05-22",39137,68,26274],["2021-05-23",39137,43,26317],["2021-05-24",39137,85,26402],["2021-05-25",39137,77,26479],["2021-05-26",39137,89,26568],["2021-05-27",39137,130,26698],["2021-05-28",39137,77,26775],["2021-05-29",39137,54,26829],["2021-05-30",39137,21,26850],["2021-05-31",39137,11,26861],["2021-06-01",39137,104,26965],["2021-06-02",39137,80,27045],["2021-06-03",39137,102,27147],["2021-06-04",39137,121,27268],["2021-06-05",39137,67,27335],["2021-06-06",39137,43,27378],["2021-06-07",39137,104,27482],["2021-06-08",39137,87,27569],["2021-06-09",39137,68,27637],["2021-06-10",39137,100,27737],["2021-06-11",39137,112,27849],["2021-06-12",39137,64,27913],["2021-06-13",39137,38,27951],["2021-06-14",39137,73,28024],["2021-06-15",39137,66,28090],["2021-06-16",39137,71,28161],["2021-06-17",39137,102,28263],["2021-06-18",39137,91,28354],["2021-06-19",39137,46,28400],["2021-06-20",39137,15,28415],["2021-06-21",39137,46,28461],["2021-06-22",39137,38,28499],["2021-06-23",39137,72,28571],["2021-06-24",39137,65,28636],["2021-06-25",39137,78,28714],["2021-06-26",39137,27,28741],["2021-06-27",39137,21,28762],["2021-06-28",39137,37,28799],["2021-06-29",39137,56,28855],["2021-06-30",39137,46,28901],["2021-07-01",39137,57,28958],["2021-07-02",39137,70,29028],["2021-07-03",39137,32,29060],["2021-07-04",39137,3,29063],["2021-07-05",39137,27,29090],["2021-07-06",39137,43,29133],["2021-07-07",39137,53,29186],["2021-07-08",39137,63,29249],["2021-07-09",39137,76,29325],["2021-07-10",39137,23,29348],["2021-07-11",39137,25,29373],["2021-07-12",39137,42,29415],["2021-07-13",39137,42,29457],["2021-07-14",39137,45,29502],["2021-07-15",39137,70,29572],["2021-07-16",39137,82,29654],["2021-07-17",39137,32,29686],["2021-07-18",39137,10,29696],["2021-07-19",39137,48,29744],["2021-07-20",39137,43,29787],["2021-07-21",39137,76,29863],["2021-07-22",39137,71,29934],["2021-07-23",39137,112,30046],["2021-07-24",39137,49,30095],["2021-07-25",39137,15,30110],["2021-07-26",39137,87,30197],["2021-07-27",39137,91,30288],["2021-07-28",39137,99,30387],["2021-07-29",39137,90,30477],["2021-07-30",39137,147,30624],["2021-07-31",39137,55,30679],["2021-08-01",39137,31,30710],["2021-08-02",39137,77,30787],["2021-08-03",39137,76,30863],["2021-08-04",39137,82,30945],["2021-08-05",39137,107,31052],["2021-08-06",39137,147,31199],["2021-08-07",39137,60,31259],["2021-08-08",39137,32,31291],["2021-08-09",39137,77,31368],["2021-08-10",39137,85,31453],["2021-08-11",39137,103,31556],["2021-08-12",39137,156,31712],["2021-08-13",39137,165,31877],["2021-08-14",39137,87,31964],["2021-08-15",39137,48,32012],["2021-08-16",39137,140,32152],["2021-08-17",39137,119,32271],["2021-08-18",39137,136,32407],["2021-08-19",39137,167,32574],["2021-08-20",39137,203,32777],["2021-08-21",39137,93,32870],["2021-08-22",39137,37,32907],["2021-08-23",39137,103,33010],["2021-08-24",39137,88,33098],["2021-08-25",39137,106,33204],["2021-08-26",39137,137,33341],["2021-08-27",39137,187,33528],["2021-08-28",39137,85,33613],["2021-08-29",39137,33,33646],["2021-08-30",39137,116,33762],["2021-08-31",39137,102,33864],["2021-09-01",39137,142,34006],["2021-09-02",39137,161,34167],["2021-09-03",39137,168,34335],["2021-09-04",39137,56,34391],["2021-09-05",39137,28,34419],["2021-09-06",39137,14,34433],["2021-09-07",39137,117,34550],["2021-09-08",39137,112,34662],["2021-09-09",39137,128,34790],["2021-09-10",39137,162,34952],["2021-09-11",39137,50,35002],["2021-09-12",39137,37,35039],["2021-09-13",39137,113,35152],["2021-09-14",39137,89,35241],["2021-09-15",39137,122,35363],["2021-09-16",39137,107,35470],["2021-09-17",39137,126,35596],["2021-09-18",39137,65,35661],["2021-09-19",39137,28,35689],["2021-09-20",39137,70,35759],["2021-09-21",39137,75,35834],["2021-09-22",39137,108,35942],["2021-09-23",39137,82,36024],["2021-09-24",39137,89,36113],["2021-09-25",39137,54,36167],["2021-09-26",39137,18,36185],["2021-09-27",39137,75,36260],["2021-09-28",39137,73,36333],["2021-09-29",39137,115,36448],["2021-09-30",39137,94,36542],["2021-10-01",39137,105,36647],["2021-10-02",39137,36,36683],["2021-10-03",39137,23,36706],["2021-10-04",39137,73,36779],["2021-10-05",39137,47,36826],["2021-10-06",39137,65,36891],["2021-10-07",39137,86,36977],["2021-10-08",39137,92,37069],["2021-10-09",39137,30,37099],["2021-10-10",39137,21,37120],["2021-10-11",39137,49,37169],["2021-10-12",39137,50,37219],["2021-10-13",39137,53,37272],["2021-10-14",39137,58,37330],["2021-10-15",39137,67,37397],["2021-10-16",39137,19,37416],["2021-10-17",39137,10,37426],["2021-10-18",39137,45,37471],["2021-10-19",39137,34,37505],["2021-10-20",39137,49,37554],["2021-10-21",39137,57,37611],["2021-10-22",39137,126,37737],["2021-10-23",39137,63,37800],["2021-10-24",39137,38,37838],["2021-10-25",39137,140,37978],["2021-10-26",39137,93,38071],["2021-10-27",39137,140,38211],["2021-10-28",39137,235,38446],["2021-10-29",39137,135,38581],["2021-10-30",39137,55,38636],["2021-10-31",39137,18,38654],["2021-11-01",39137,93,38747],["2021-11-02",39137,66,38813],["2021-11-03",39137,134,38947],["2021-11-04",39137,228,39175],["2021-11-05",39137,127,39302],["2021-11-06",39137,81,39383],["2021-11-07",39137,33,39416],["2021-11-08",39137,111,39527],["2021-11-09",39137,79,39606],["2021-11-10",39137,130,39736],["2021-11-11",39137,115,39851],["2021-11-12",39137,138,39989],["2021-11-13",39137,76,40065],["2021-11-14",39137,27,40092],["2021-11-15",39137,104,40196],["2021-11-16",39137,85,40281],["2021-11-17",39137,111,40392],["2021-11-18",39137,116,40508],["2021-11-19",39137,129,40637],["2021-11-20",39137,74,40711],["2021-11-21",39137,25,40736],["2021-11-22",39137,118,40854],["2021-11-23",39137,103,40957],["2021-11-24",39137,91,41048],["2021-11-26",39137,97,41145],["2021-11-27",39137,45,41190],["2021-11-28",39137,34,41224],["2021-11-29",39137,149,41373],["2021-11-30",39137,119,41492],["2021-12-01",39137,189,41681],["2021-12-02",39137,243,41924],["2021-12-03",39137,177,42101],["2021-12-04",39137,67,42168],["2021-12-05",39137,42,42210],["2021-12-06",39137,113,42323],["2021-12-07",39137,100,42423],["2021-12-08",39137,157,42580],["2021-12-09",39137,214,42794],["2021-12-10",39137,133,42927],["2021-12-11",39137,62,42989],["2021-12-12",39137,26,43015],["2021-12-13",39137,95,43110],["2021-12-14",39137,81,43191],["2021-12-15",39137,115,43306],["2021-12-16",39137,114,43420],["2021-12-17",39137,124,43544],["2021-12-18",39137,46,43590],["2021-12-19",39137,53,43643],["2021-12-20",39137,130,43773],["2021-12-21",39137,136,43909],["2021-12-22",39137,125,44034],["2021-12-23",39137,104,44138],["2021-12-24",39137,25,44163],["2021-12-26",39137,28,44191],["2021-12-27",39137,107,44298],["2021-12-28",39137,90,44388],["2021-12-29",39137,120,44508],["2021-12-30",39137,151,44659],["2021-12-31",39137,54,44713],["2022-01-01",39137,5,44718],["2022-01-02",39137,25,44743],["2022-01-03",39137,42,44785]]} \ No newline at end of file diff --git a/public/data/overall/vaccinations/by-county/Bulloch.json b/public/data/overall/vaccinations/by-county/Bulloch.json new file mode 100644 index 000000000..5f066b6bc --- /dev/null +++ b/public/data/overall/vaccinations/by-county/Bulloch.json @@ -0,0 +1 @@ +{"segment":{"county":"Bulloch"},"headers":["report_date","population","vaccinations","total_vaccinations"],"rows":[["2020-12-15",79467,2,2],["2020-12-16",79467,7,9],["2020-12-17",79467,2,11],["2020-12-18",79467,25,36],["2020-12-19",79467,6,42],["2020-12-20",79467,1,43],["2020-12-21",79467,17,60],["2020-12-22",79467,23,83],["2020-12-23",79467,117,200],["2020-12-24",79467,61,261],["2020-12-26",79467,2,263],["2020-12-27",79467,13,276],["2020-12-28",79467,116,392],["2020-12-29",79467,72,464],["2020-12-30",79467,107,571],["2020-12-31",79467,79,650],["2021-01-01",79467,47,697],["2021-01-02",79467,5,702],["2021-01-03",79467,3,705],["2021-01-04",79467,99,804],["2021-01-05",79467,103,907],["2021-01-06",79467,140,1047],["2021-01-07",79467,217,1264],["2021-01-08",79467,153,1417],["2021-01-09",79467,24,1441],["2021-01-10",79467,20,1461],["2021-01-11",79467,261,1722],["2021-01-12",79467,356,2078],["2021-01-13",79467,224,2302],["2021-01-14",79467,273,2575],["2021-01-15",79467,345,2920],["2021-01-16",79467,174,3094],["2021-01-17",79467,19,3113],["2021-01-18",79467,233,3346],["2021-01-19",79467,436,3782],["2021-01-20",79467,208,3990],["2021-01-21",79467,340,4330],["2021-01-22",79467,316,4646],["2021-01-23",79467,184,4830],["2021-01-24",79467,3,4833],["2021-01-25",79467,317,5150],["2021-01-26",79467,361,5511],["2021-01-27",79467,268,5779],["2021-01-28",79467,250,6029],["2021-01-29",79467,401,6430],["2021-01-30",79467,79,6509],["2021-01-31",79467,9,6518],["2021-02-01",79467,436,6954],["2021-02-02",79467,351,7305],["2021-02-03",79467,225,7530],["2021-02-04",79467,291,7821],["2021-02-05",79467,457,8278],["2021-02-06",79467,123,8401],["2021-02-07",79467,9,8410],["2021-02-08",79467,316,8726],["2021-02-09",79467,435,9161],["2021-02-10",79467,207,9368],["2021-02-11",79467,325,9693],["2021-02-12",79467,534,10227],["2021-02-13",79467,234,10461],["2021-02-14",79467,23,10484],["2021-02-15",79467,344,10828],["2021-02-16",79467,537,11365],["2021-02-17",79467,222,11587],["2021-02-18",79467,260,11847],["2021-02-19",79467,541,12388],["2021-02-20",79467,28,12416],["2021-02-21",79467,184,12600],["2021-02-22",79467,288,12888],["2021-02-23",79467,402,13290],["2021-02-24",79467,203,13493],["2021-02-25",79467,224,13717],["2021-02-26",79467,437,14154],["2021-02-27",79467,21,14175],["2021-02-28",79467,30,14205],["2021-03-01",79467,454,14659],["2021-03-02",79467,425,15084],["2021-03-03",79467,236,15320],["2021-03-04",79467,261,15581],["2021-03-05",79467,455,16036],["2021-03-06",79467,134,16170],["2021-03-07",79467,42,16212],["2021-03-08",79467,436,16648],["2021-03-09",79467,463,17111],["2021-03-10",79467,347,17458],["2021-03-11",79467,227,17685],["2021-03-12",79467,564,18249],["2021-03-13",79467,194,18443],["2021-03-14",79467,80,18523],["2021-03-15",79467,432,18955],["2021-03-16",79467,517,19472],["2021-03-17",79467,401,19873],["2021-03-18",79467,290,20163],["2021-03-19",79467,683,20846],["2021-03-20",79467,78,20924],["2021-03-21",79467,54,20978],["2021-03-22",79467,356,21334],["2021-03-23",79467,380,21714],["2021-03-24",79467,419,22133],["2021-03-25",79467,346,22479],["2021-03-26",79467,455,22934],["2021-03-27",79467,102,23036],["2021-03-28",79467,77,23113],["2021-03-29",79467,386,23499],["2021-03-30",79467,459,23958],["2021-03-31",79467,320,24278],["2021-04-01",79467,462,24740],["2021-04-02",79467,767,25507],["2021-04-03",79467,157,25664],["2021-04-04",79467,82,25746],["2021-04-05",79467,471,26217],["2021-04-06",79467,405,26622],["2021-04-07",79467,435,27057],["2021-04-08",79467,377,27434],["2021-04-09",79467,420,27854],["2021-04-10",79467,175,28029],["2021-04-11",79467,68,28097],["2021-04-12",79467,425,28522],["2021-04-13",79467,436,28958],["2021-04-14",79467,352,29310],["2021-04-15",79467,359,29669],["2021-04-16",79467,606,30275],["2021-04-17",79467,97,30372],["2021-04-18",79467,31,30403],["2021-04-19",79467,323,30726],["2021-04-20",79467,357,31083],["2021-04-21",79467,395,31478],["2021-04-22",79467,307,31785],["2021-04-23",79467,382,32167],["2021-04-24",79467,77,32244],["2021-04-25",79467,17,32261],["2021-04-26",79467,284,32545],["2021-04-27",79467,344,32889],["2021-04-28",79467,204,33093],["2021-04-29",79467,300,33393],["2021-04-30",79467,596,33989],["2021-05-01",79467,154,34143],["2021-05-02",79467,21,34164],["2021-05-03",79467,233,34397],["2021-05-04",79467,264,34661],["2021-05-05",79467,256,34917],["2021-05-06",79467,200,35117],["2021-05-07",79467,210,35327],["2021-05-08",79467,50,35377],["2021-05-09",79467,13,35390],["2021-05-10",79467,119,35509],["2021-05-11",79467,238,35747],["2021-05-12",79467,99,35846],["2021-05-13",79467,163,36009],["2021-05-14",79467,227,36236],["2021-05-15",79467,104,36340],["2021-05-16",79467,42,36382],["2021-05-17",79467,137,36519],["2021-05-18",79467,224,36743],["2021-05-19",79467,139,36882],["2021-05-20",79467,183,37065],["2021-05-21",79467,142,37207],["2021-05-22",79467,58,37265],["2021-05-23",79467,19,37284],["2021-05-24",79467,76,37360],["2021-05-25",79467,138,37498],["2021-05-26",79467,98,37596],["2021-05-27",79467,111,37707],["2021-05-28",79467,165,37872],["2021-05-29",79467,54,37926],["2021-05-30",79467,14,37940],["2021-05-31",79467,14,37954],["2021-06-01",79467,142,38096],["2021-06-02",79467,113,38209],["2021-06-03",79467,141,38350],["2021-06-04",79467,130,38480],["2021-06-05",79467,47,38527],["2021-06-06",79467,27,38554],["2021-06-07",79467,109,38663],["2021-06-08",79467,115,38778],["2021-06-09",79467,68,38846],["2021-06-10",79467,92,38938],["2021-06-11",79467,154,39092],["2021-06-12",79467,76,39168],["2021-06-13",79467,14,39182],["2021-06-14",79467,77,39259],["2021-06-15",79467,111,39370],["2021-06-16",79467,83,39453],["2021-06-17",79467,119,39572],["2021-06-18",79467,78,39650],["2021-06-19",79467,45,39695],["2021-06-20",79467,16,39711],["2021-06-21",79467,74,39785],["2021-06-22",79467,103,39888],["2021-06-23",79467,71,39959],["2021-06-24",79467,80,40039],["2021-06-25",79467,74,40113],["2021-06-26",79467,43,40156],["2021-06-27",79467,15,40171],["2021-06-28",79467,53,40224],["2021-06-29",79467,75,40299],["2021-06-30",79467,74,40373],["2021-07-01",79467,71,40444],["2021-07-02",79467,53,40497],["2021-07-03",79467,23,40520],["2021-07-04",79467,8,40528],["2021-07-05",79467,23,40551],["2021-07-06",79467,64,40615],["2021-07-07",79467,49,40664],["2021-07-08",79467,80,40744],["2021-07-09",79467,83,40827],["2021-07-10",79467,40,40867],["2021-07-11",79467,11,40878],["2021-07-12",79467,60,40938],["2021-07-13",79467,65,41003],["2021-07-14",79467,72,41075],["2021-07-15",79467,70,41145],["2021-07-16",79467,64,41209],["2021-07-17",79467,40,41249],["2021-07-18",79467,18,41267],["2021-07-19",79467,100,41367],["2021-07-20",79467,98,41465],["2021-07-21",79467,90,41555],["2021-07-22",79467,106,41661],["2021-07-23",79467,111,41772],["2021-07-24",79467,99,41871],["2021-07-25",79467,23,41894],["2021-07-26",79467,105,41999],["2021-07-27",79467,143,42142],["2021-07-28",79467,173,42315],["2021-07-29",79467,164,42479],["2021-07-30",79467,185,42664],["2021-07-31",79467,77,42741],["2021-08-01",79467,59,42800],["2021-08-02",79467,130,42930],["2021-08-03",79467,136,43066],["2021-08-04",79467,145,43211],["2021-08-05",79467,164,43375],["2021-08-06",79467,228,43603],["2021-08-07",79467,108,43711],["2021-08-08",79467,44,43755],["2021-08-09",79467,165,43920],["2021-08-10",79467,202,44122],["2021-08-11",79467,166,44288],["2021-08-12",79467,203,44491],["2021-08-13",79467,309,44800],["2021-08-14",79467,152,44952],["2021-08-15",79467,59,45011],["2021-08-16",79467,205,45216],["2021-08-17",79467,223,45439],["2021-08-18",79467,195,45634],["2021-08-19",79467,210,45844],["2021-08-20",79467,295,46139],["2021-08-21",79467,126,46265],["2021-08-22",79467,34,46299],["2021-08-23",79467,211,46510],["2021-08-24",79467,189,46699],["2021-08-25",79467,195,46894],["2021-08-26",79467,285,47179],["2021-08-27",79467,384,47563],["2021-08-28",79467,121,47684],["2021-08-29",79467,50,47734],["2021-08-30",79467,241,47975],["2021-08-31",79467,236,48211],["2021-09-01",79467,225,48436],["2021-09-02",79467,231,48667],["2021-09-03",79467,337,49004],["2021-09-04",79467,119,49123],["2021-09-05",79467,27,49150],["2021-09-06",79467,29,49179],["2021-09-07",79467,231,49410],["2021-09-08",79467,190,49600],["2021-09-09",79467,171,49771],["2021-09-10",79467,301,50072],["2021-09-11",79467,98,50170],["2021-09-12",79467,34,50204],["2021-09-13",79467,185,50389],["2021-09-14",79467,138,50527],["2021-09-15",79467,150,50677],["2021-09-16",79467,146,50823],["2021-09-17",79467,257,51080],["2021-09-18",79467,134,51214],["2021-09-19",79467,28,51242],["2021-09-20",79467,141,51383],["2021-09-21",79467,156,51539],["2021-09-22",79467,131,51670],["2021-09-23",79467,101,51771],["2021-09-24",79467,223,51994],["2021-09-25",79467,53,52047],["2021-09-26",79467,20,52067],["2021-09-27",79467,98,52165],["2021-09-28",79467,135,52300],["2021-09-29",79467,101,52401],["2021-09-30",79467,108,52509],["2021-10-01",79467,197,52706],["2021-10-02",79467,57,52763],["2021-10-03",79467,17,52780],["2021-10-04",79467,63,52843],["2021-10-05",79467,88,52931],["2021-10-06",79467,72,53003],["2021-10-07",79467,83,53086],["2021-10-08",79467,123,53209],["2021-10-09",79467,68,53277],["2021-10-10",79467,16,53293],["2021-10-11",79467,55,53348],["2021-10-12",79467,70,53418],["2021-10-13",79467,47,53465],["2021-10-14",79467,48,53513],["2021-10-15",79467,99,53612],["2021-10-16",79467,30,53642],["2021-10-17",79467,11,53653],["2021-10-18",79467,44,53697],["2021-10-19",79467,73,53770],["2021-10-20",79467,60,53830],["2021-10-21",79467,100,53930],["2021-10-22",79467,159,54089],["2021-10-23",79467,102,54191],["2021-10-24",79467,18,54209],["2021-10-25",79467,224,54433],["2021-10-26",79467,275,54708],["2021-10-27",79467,216,54924],["2021-10-28",79467,282,55206],["2021-10-29",79467,324,55530],["2021-10-30",79467,64,55594],["2021-10-31",79467,13,55607],["2021-11-01",79467,219,55826],["2021-11-02",79467,300,56126],["2021-11-03",79467,232,56358],["2021-11-04",79467,225,56583],["2021-11-05",79467,293,56876],["2021-11-06",79467,79,56955],["2021-11-07",79467,37,56992],["2021-11-08",79467,198,57190],["2021-11-09",79467,215,57405],["2021-11-10",79467,173,57578],["2021-11-11",79467,155,57733],["2021-11-12",79467,303,58036],["2021-11-13",79467,109,58145],["2021-11-14",79467,25,58170],["2021-11-15",79467,154,58324],["2021-11-16",79467,188,58512],["2021-11-17",79467,163,58675],["2021-11-18",79467,170,58845],["2021-11-19",79467,312,59157],["2021-11-20",79467,82,59239],["2021-11-21",79467,35,59274],["2021-11-22",79467,209,59483],["2021-11-23",79467,200,59683],["2021-11-24",79467,119,59802],["2021-11-26",79467,120,59922],["2021-11-27",79467,74,59996],["2021-11-28",79467,30,60026],["2021-11-29",79467,190,60216],["2021-11-30",79467,273,60489],["2021-12-01",79467,219,60708],["2021-12-02",79467,250,60958],["2021-12-03",79467,390,61348],["2021-12-04",79467,102,61450],["2021-12-05",79467,24,61474],["2021-12-06",79467,155,61629],["2021-12-07",79467,213,61842],["2021-12-08",79467,181,62023],["2021-12-09",79467,169,62192],["2021-12-10",79467,243,62435],["2021-12-11",79467,105,62540],["2021-12-12",79467,23,62563],["2021-12-13",79467,127,62690],["2021-12-14",79467,182,62872],["2021-12-15",79467,142,63014],["2021-12-16",79467,138,63152],["2021-12-17",79467,221,63373],["2021-12-18",79467,69,63442],["2021-12-19",79467,15,63457],["2021-12-20",79467,213,63670],["2021-12-21",79467,243,63913],["2021-12-22",79467,137,64050],["2021-12-23",79467,112,64162],["2021-12-24",79467,24,64186],["2021-12-26",79467,25,64211],["2021-12-27",79467,124,64335],["2021-12-28",79467,149,64484],["2021-12-29",79467,124,64608],["2021-12-30",79467,193,64801],["2021-12-31",79467,108,64909],["2022-01-01",79467,7,64916],["2022-01-02",79467,24,64940],["2022-01-03",79467,95,65035]]} \ No newline at end of file diff --git a/public/data/overall/vaccinations/by-county/Burke.json b/public/data/overall/vaccinations/by-county/Burke.json new file mode 100644 index 000000000..92ad552b2 --- /dev/null +++ b/public/data/overall/vaccinations/by-county/Burke.json @@ -0,0 +1 @@ +{"segment":{"county":"Burke"},"headers":["report_date","population","vaccinations","total_vaccinations"],"rows":[["2020-12-17",22342,2,2],["2020-12-18",22342,4,6],["2020-12-19",22342,2,8],["2020-12-20",22342,1,9],["2020-12-21",22342,1,10],["2020-12-22",22342,22,32],["2020-12-23",22342,23,55],["2020-12-24",22342,5,60],["2020-12-26",22342,4,64],["2020-12-27",22342,2,66],["2020-12-28",22342,48,114],["2020-12-29",22342,52,166],["2020-12-30",22342,46,212],["2020-12-31",22342,22,234],["2021-01-02",22342,1,235],["2021-01-03",22342,3,238],["2021-01-04",22342,47,285],["2021-01-05",22342,31,316],["2021-01-06",22342,56,372],["2021-01-07",22342,14,386],["2021-01-08",22342,16,402],["2021-01-09",22342,6,408],["2021-01-10",22342,3,411],["2021-01-11",22342,26,437],["2021-01-12",22342,64,501],["2021-01-13",22342,238,739],["2021-01-14",22342,139,878],["2021-01-15",22342,71,949],["2021-01-16",22342,3,952],["2021-01-17",22342,2,954],["2021-01-18",22342,42,996],["2021-01-19",22342,37,1033],["2021-01-20",22342,241,1274],["2021-01-21",22342,51,1325],["2021-01-22",22342,27,1352],["2021-01-23",22342,8,1360],["2021-01-24",22342,2,1362],["2021-01-25",22342,31,1393],["2021-01-26",22342,93,1486],["2021-01-27",22342,266,1752],["2021-01-28",22342,126,1878],["2021-01-29",22342,37,1915],["2021-01-30",22342,18,1933],["2021-01-31",22342,4,1937],["2021-02-01",22342,36,1973],["2021-02-02",22342,60,2033],["2021-02-03",22342,353,2386],["2021-02-04",22342,57,2443],["2021-02-05",22342,46,2489],["2021-02-06",22342,76,2565],["2021-02-07",22342,2,2567],["2021-02-08",22342,43,2610],["2021-02-09",22342,82,2692],["2021-02-10",22342,388,3080],["2021-02-11",22342,158,3238],["2021-02-12",22342,88,3326],["2021-02-13",22342,33,3359],["2021-02-14",22342,4,3363],["2021-02-15",22342,28,3391],["2021-02-16",22342,61,3452],["2021-02-17",22342,228,3680],["2021-02-18",22342,43,3723],["2021-02-19",22342,40,3763],["2021-02-20",22342,9,3772],["2021-02-21",22342,4,3776],["2021-02-22",22342,33,3809],["2021-02-23",22342,59,3868],["2021-02-24",22342,370,4238],["2021-02-25",22342,89,4327],["2021-02-26",22342,70,4397],["2021-02-27",22342,23,4420],["2021-02-28",22342,12,4432],["2021-03-01",22342,37,4469],["2021-03-02",22342,35,4504],["2021-03-03",22342,369,4873],["2021-03-04",22342,48,4921],["2021-03-05",22342,31,4952],["2021-03-06",22342,123,5075],["2021-03-07",22342,32,5107],["2021-03-08",22342,37,5144],["2021-03-09",22342,54,5198],["2021-03-10",22342,354,5552],["2021-03-11",22342,366,5918],["2021-03-12",22342,87,6005],["2021-03-13",22342,51,6056],["2021-03-14",22342,17,6073],["2021-03-15",22342,86,6159],["2021-03-16",22342,79,6238],["2021-03-17",22342,333,6571],["2021-03-18",22342,65,6636],["2021-03-19",22342,74,6710],["2021-03-20",22342,37,6747],["2021-03-21",22342,21,6768],["2021-03-22",22342,102,6870],["2021-03-23",22342,75,6945],["2021-03-24",22342,266,7211],["2021-03-25",22342,146,7357],["2021-03-26",22342,80,7437],["2021-03-27",22342,46,7483],["2021-03-28",22342,34,7517],["2021-03-29",22342,73,7590],["2021-03-30",22342,119,7709],["2021-03-31",22342,307,8016],["2021-04-01",22342,247,8263],["2021-04-02",22342,98,8361],["2021-04-03",22342,61,8422],["2021-04-04",22342,19,8441],["2021-04-05",22342,81,8522],["2021-04-06",22342,67,8589],["2021-04-07",22342,310,8899],["2021-04-08",22342,125,9024],["2021-04-09",22342,88,9112],["2021-04-10",22342,73,9185],["2021-04-11",22342,28,9213],["2021-04-12",22342,93,9306],["2021-04-13",22342,111,9417],["2021-04-14",22342,301,9718],["2021-04-15",22342,357,10075],["2021-04-16",22342,118,10193],["2021-04-17",22342,40,10233],["2021-04-18",22342,8,10241],["2021-04-19",22342,82,10323],["2021-04-20",22342,109,10432],["2021-04-21",22342,264,10696],["2021-04-22",22342,174,10870],["2021-04-23",22342,109,10979],["2021-04-24",22342,45,11024],["2021-04-25",22342,11,11035],["2021-04-26",22342,73,11108],["2021-04-27",22342,107,11215],["2021-04-28",22342,237,11452],["2021-04-29",22342,118,11570],["2021-04-30",22342,120,11690],["2021-05-01",22342,67,11757],["2021-05-02",22342,14,11771],["2021-05-03",22342,75,11846],["2021-05-04",22342,82,11928],["2021-05-05",22342,140,12068],["2021-05-06",22342,127,12195],["2021-05-07",22342,97,12292],["2021-05-08",22342,24,12316],["2021-05-09",22342,9,12325],["2021-05-10",22342,49,12374],["2021-05-11",22342,112,12486],["2021-05-12",22342,80,12566],["2021-05-13",22342,77,12643],["2021-05-14",22342,81,12724],["2021-05-15",22342,40,12764],["2021-05-16",22342,21,12785],["2021-05-17",22342,73,12858],["2021-05-18",22342,88,12946],["2021-05-19",22342,80,13026],["2021-05-20",22342,103,13129],["2021-05-21",22342,52,13181],["2021-05-22",22342,31,13212],["2021-05-23",22342,18,13230],["2021-05-24",22342,34,13264],["2021-05-25",22342,52,13316],["2021-05-26",22342,78,13394],["2021-05-27",22342,67,13461],["2021-05-28",22342,42,13503],["2021-05-29",22342,25,13528],["2021-05-30",22342,9,13537],["2021-05-31",22342,12,13549],["2021-06-01",22342,86,13635],["2021-06-02",22342,45,13680],["2021-06-03",22342,97,13777],["2021-06-04",22342,65,13842],["2021-06-05",22342,49,13891],["2021-06-06",22342,18,13909],["2021-06-07",22342,54,13963],["2021-06-08",22342,60,14023],["2021-06-09",22342,65,14088],["2021-06-10",22342,62,14150],["2021-06-11",22342,60,14210],["2021-06-12",22342,48,14258],["2021-06-13",22342,9,14267],["2021-06-14",22342,37,14304],["2021-06-15",22342,72,14376],["2021-06-16",22342,38,14414],["2021-06-17",22342,61,14475],["2021-06-18",22342,55,14530],["2021-06-19",22342,41,14571],["2021-06-20",22342,6,14577],["2021-06-21",22342,48,14625],["2021-06-22",22342,66,14691],["2021-06-23",22342,46,14737],["2021-06-24",22342,43,14780],["2021-06-25",22342,36,14816],["2021-06-26",22342,21,14837],["2021-06-27",22342,24,14861],["2021-06-28",22342,27,14888],["2021-06-29",22342,39,14927],["2021-06-30",22342,31,14958],["2021-07-01",22342,53,15011],["2021-07-02",22342,47,15058],["2021-07-03",22342,17,15075],["2021-07-04",22342,1,15076],["2021-07-05",22342,20,15096],["2021-07-06",22342,32,15128],["2021-07-07",22342,31,15159],["2021-07-08",22342,35,15194],["2021-07-09",22342,39,15233],["2021-07-10",22342,29,15262],["2021-07-11",22342,11,15273],["2021-07-12",22342,30,15303],["2021-07-13",22342,40,15343],["2021-07-14",22342,62,15405],["2021-07-15",22342,36,15441],["2021-07-16",22342,25,15466],["2021-07-17",22342,11,15477],["2021-07-18",22342,9,15486],["2021-07-19",22342,39,15525],["2021-07-20",22342,40,15565],["2021-07-21",22342,50,15615],["2021-07-22",22342,45,15660],["2021-07-23",22342,51,15711],["2021-07-24",22342,22,15733],["2021-07-25",22342,13,15746],["2021-07-26",22342,52,15798],["2021-07-27",22342,64,15862],["2021-07-28",22342,71,15933],["2021-07-29",22342,69,16002],["2021-07-30",22342,61,16063],["2021-07-31",22342,22,16085],["2021-08-01",22342,24,16109],["2021-08-02",22342,93,16202],["2021-08-03",22342,69,16271],["2021-08-04",22342,72,16343],["2021-08-05",22342,69,16412],["2021-08-06",22342,85,16497],["2021-08-07",22342,62,16559],["2021-08-08",22342,31,16590],["2021-08-09",22342,69,16659],["2021-08-10",22342,95,16754],["2021-08-11",22342,99,16853],["2021-08-12",22342,184,17037],["2021-08-13",22342,125,17162],["2021-08-14",22342,44,17206],["2021-08-15",22342,45,17251],["2021-08-16",22342,90,17341],["2021-08-17",22342,72,17413],["2021-08-18",22342,101,17514],["2021-08-19",22342,66,17580],["2021-08-20",22342,93,17673],["2021-08-21",22342,33,17706],["2021-08-22",22342,18,17724],["2021-08-23",22342,92,17816],["2021-08-24",22342,75,17891],["2021-08-25",22342,103,17994],["2021-08-26",22342,86,18080],["2021-08-27",22342,103,18183],["2021-08-28",22342,71,18254],["2021-08-29",22342,23,18277],["2021-08-30",22342,105,18382],["2021-08-31",22342,102,18484],["2021-09-01",22342,80,18564],["2021-09-02",22342,120,18684],["2021-09-03",22342,103,18787],["2021-09-04",22342,51,18838],["2021-09-05",22342,38,18876],["2021-09-06",22342,7,18883],["2021-09-07",22342,103,18986],["2021-09-08",22342,86,19072],["2021-09-09",22342,176,19248],["2021-09-10",22342,97,19345],["2021-09-11",22342,34,19379],["2021-09-12",22342,25,19404],["2021-09-13",22342,63,19467],["2021-09-14",22342,76,19543],["2021-09-15",22342,73,19616],["2021-09-16",22342,53,19669],["2021-09-17",22342,78,19747],["2021-09-18",22342,51,19798],["2021-09-19",22342,13,19811],["2021-09-20",22342,73,19884],["2021-09-21",22342,53,19937],["2021-09-22",22342,68,20005],["2021-09-23",22342,56,20061],["2021-09-24",22342,88,20149],["2021-09-25",22342,30,20179],["2021-09-26",22342,16,20195],["2021-09-27",22342,51,20246],["2021-09-28",22342,59,20305],["2021-09-29",22342,53,20358],["2021-09-30",22342,74,20432],["2021-10-01",22342,71,20503],["2021-10-02",22342,23,20526],["2021-10-03",22342,17,20543],["2021-10-04",22342,30,20573],["2021-10-05",22342,37,20610],["2021-10-06",22342,78,20688],["2021-10-07",22342,40,20728],["2021-10-08",22342,67,20795],["2021-10-09",22342,33,20828],["2021-10-10",22342,12,20840],["2021-10-11",22342,35,20875],["2021-10-12",22342,38,20913],["2021-10-13",22342,47,20960],["2021-10-14",22342,39,20999],["2021-10-15",22342,53,21052],["2021-10-16",22342,14,21066],["2021-10-17",22342,14,21080],["2021-10-18",22342,51,21131],["2021-10-19",22342,31,21162],["2021-10-20",22342,84,21246],["2021-10-21",22342,36,21282],["2021-10-22",22342,69,21351],["2021-10-23",22342,24,21375],["2021-10-24",22342,10,21385],["2021-10-25",22342,60,21445],["2021-10-26",22342,153,21598],["2021-10-27",22342,139,21737],["2021-10-28",22342,82,21819],["2021-10-29",22342,95,21914],["2021-10-30",22342,35,21949],["2021-10-31",22342,11,21960],["2021-11-01",22342,126,22086],["2021-11-02",22342,167,22253],["2021-11-03",22342,108,22361],["2021-11-04",22342,70,22431],["2021-11-05",22342,116,22547],["2021-11-06",22342,47,22594],["2021-11-07",22342,16,22610],["2021-11-08",22342,91,22701],["2021-11-09",22342,82,22783],["2021-11-10",22342,83,22866],["2021-11-11",22342,103,22969],["2021-11-12",22342,83,23052],["2021-11-13",22342,24,23076],["2021-11-14",22342,15,23091],["2021-11-15",22342,85,23176],["2021-11-16",22342,102,23278],["2021-11-17",22342,102,23380],["2021-11-18",22342,83,23463],["2021-11-19",22342,115,23578],["2021-11-20",22342,26,23604],["2021-11-21",22342,10,23614],["2021-11-22",22342,122,23736],["2021-11-23",22342,56,23792],["2021-11-24",22342,33,23825],["2021-11-25",22342,1,23826],["2021-11-26",22342,25,23851],["2021-11-27",22342,21,23872],["2021-11-28",22342,6,23878],["2021-11-29",22342,90,23968],["2021-11-30",22342,144,24112],["2021-12-01",22342,109,24221],["2021-12-02",22342,118,24339],["2021-12-03",22342,113,24452],["2021-12-04",22342,57,24509],["2021-12-05",22342,11,24520],["2021-12-06",22342,107,24627],["2021-12-07",22342,107,24734],["2021-12-08",22342,76,24810],["2021-12-09",22342,85,24895],["2021-12-10",22342,70,24965],["2021-12-11",22342,22,24987],["2021-12-12",22342,16,25003],["2021-12-13",22342,81,25084],["2021-12-14",22342,54,25138],["2021-12-15",22342,104,25242],["2021-12-16",22342,48,25290],["2021-12-17",22342,73,25363],["2021-12-18",22342,28,25391],["2021-12-19",22342,11,25402],["2021-12-20",22342,96,25498],["2021-12-21",22342,93,25591],["2021-12-22",22342,119,25710],["2021-12-23",22342,44,25754],["2021-12-24",22342,10,25764],["2021-12-26",22342,12,25776],["2021-12-27",22342,74,25850],["2021-12-28",22342,71,25921],["2021-12-29",22342,88,26009],["2021-12-30",22342,76,26085],["2021-12-31",22342,32,26117],["2022-01-01",22342,5,26122],["2022-01-02",22342,11,26133],["2022-01-03",22342,56,26189]]} \ No newline at end of file diff --git a/public/data/overall/vaccinations/by-county/Butts.json b/public/data/overall/vaccinations/by-county/Butts.json new file mode 100644 index 000000000..6b4ec0141 --- /dev/null +++ b/public/data/overall/vaccinations/by-county/Butts.json @@ -0,0 +1 @@ +{"segment":{"county":"Butts"},"headers":["report_date","population","vaccinations","total_vaccinations"],"rows":[["2020-12-17",25174,2,2],["2020-12-18",25174,4,6],["2020-12-19",25174,10,16],["2020-12-20",25174,2,18],["2020-12-21",25174,3,21],["2020-12-22",25174,10,31],["2020-12-23",25174,11,42],["2020-12-27",25174,2,44],["2020-12-28",25174,70,114],["2020-12-29",25174,23,137],["2020-12-30",25174,10,147],["2020-12-31",25174,14,161],["2021-01-01",25174,7,168],["2021-01-02",25174,3,171],["2021-01-03",25174,1,172],["2021-01-04",25174,17,189],["2021-01-05",25174,12,201],["2021-01-06",25174,49,250],["2021-01-07",25174,76,326],["2021-01-08",25174,81,407],["2021-01-09",25174,17,424],["2021-01-10",25174,4,428],["2021-01-11",25174,18,446],["2021-01-12",25174,28,474],["2021-01-13",25174,26,500],["2021-01-14",25174,23,523],["2021-01-15",25174,219,742],["2021-01-16",25174,22,764],["2021-01-17",25174,29,793],["2021-01-18",25174,97,890],["2021-01-19",25174,40,930],["2021-01-20",25174,39,969],["2021-01-21",25174,46,1015],["2021-01-22",25174,228,1243],["2021-01-23",25174,18,1261],["2021-01-24",25174,7,1268],["2021-01-25",25174,39,1307],["2021-01-26",25174,45,1352],["2021-01-27",25174,47,1399],["2021-01-28",25174,46,1445],["2021-01-29",25174,32,1477],["2021-01-30",25174,17,1494],["2021-01-31",25174,5,1499],["2021-02-01",25174,31,1530],["2021-02-02",25174,28,1558],["2021-02-03",25174,30,1588],["2021-02-04",25174,94,1682],["2021-02-05",25174,133,1815],["2021-02-06",25174,9,1824],["2021-02-07",25174,15,1839],["2021-02-08",25174,35,1874],["2021-02-09",25174,38,1912],["2021-02-10",25174,49,1961],["2021-02-11",25174,40,2001],["2021-02-12",25174,209,2210],["2021-02-13",25174,23,2233],["2021-02-14",25174,21,2254],["2021-02-15",25174,55,2309],["2021-02-16",25174,43,2352],["2021-02-17",25174,58,2410],["2021-02-18",25174,47,2457],["2021-02-19",25174,226,2683],["2021-02-20",25174,17,2700],["2021-02-21",25174,7,2707],["2021-02-22",25174,27,2734],["2021-02-23",25174,59,2793],["2021-02-24",25174,72,2865],["2021-02-25",25174,118,2983],["2021-02-26",25174,140,3123],["2021-02-27",25174,19,3142],["2021-02-28",25174,9,3151],["2021-03-01",25174,42,3193],["2021-03-02",25174,66,3259],["2021-03-03",25174,75,3334],["2021-03-04",25174,144,3478],["2021-03-05",25174,146,3624],["2021-03-06",25174,10,3634],["2021-03-07",25174,8,3642],["2021-03-08",25174,48,3690],["2021-03-09",25174,87,3777],["2021-03-10",25174,109,3886],["2021-03-11",25174,159,4045],["2021-03-12",25174,183,4228],["2021-03-13",25174,24,4252],["2021-03-14",25174,28,4280],["2021-03-15",25174,86,4366],["2021-03-16",25174,113,4479],["2021-03-17",25174,107,4586],["2021-03-18",25174,184,4770],["2021-03-19",25174,167,4937],["2021-03-20",25174,17,4954],["2021-03-21",25174,16,4970],["2021-03-22",25174,54,5024],["2021-03-23",25174,65,5089],["2021-03-24",25174,114,5203],["2021-03-25",25174,232,5435],["2021-03-26",25174,278,5713],["2021-03-27",25174,33,5746],["2021-03-28",25174,21,5767],["2021-03-29",25174,76,5843],["2021-03-30",25174,152,5995],["2021-03-31",25174,123,6118],["2021-04-01",25174,207,6325],["2021-04-02",25174,84,6409],["2021-04-03",25174,40,6449],["2021-04-04",25174,30,6479],["2021-04-05",25174,138,6617],["2021-04-06",25174,144,6761],["2021-04-07",25174,129,6890],["2021-04-08",25174,181,7071],["2021-04-09",25174,260,7331],["2021-04-10",25174,40,7371],["2021-04-11",25174,24,7395],["2021-04-12",25174,101,7496],["2021-04-13",25174,108,7604],["2021-04-14",25174,108,7712],["2021-04-15",25174,238,7950],["2021-04-16",25174,157,8107],["2021-04-17",25174,43,8150],["2021-04-18",25174,24,8174],["2021-04-19",25174,86,8260],["2021-04-20",25174,152,8412],["2021-04-21",25174,94,8506],["2021-04-22",25174,184,8690],["2021-04-23",25174,91,8781],["2021-04-24",25174,46,8827],["2021-04-25",25174,15,8842],["2021-04-26",25174,77,8919],["2021-04-27",25174,114,9033],["2021-04-28",25174,111,9144],["2021-04-29",25174,121,9265],["2021-04-30",25174,139,9404],["2021-05-01",25174,55,9459],["2021-05-02",25174,28,9487],["2021-05-03",25174,80,9567],["2021-05-04",25174,69,9636],["2021-05-05",25174,82,9718],["2021-05-06",25174,102,9820],["2021-05-07",25174,96,9916],["2021-05-08",25174,22,9938],["2021-05-09",25174,14,9952],["2021-05-10",25174,53,10005],["2021-05-11",25174,68,10073],["2021-05-12",25174,59,10132],["2021-05-13",25174,99,10231],["2021-05-14",25174,81,10312],["2021-05-15",25174,44,10356],["2021-05-16",25174,27,10383],["2021-05-17",25174,68,10451],["2021-05-18",25174,91,10542],["2021-05-19",25174,64,10606],["2021-05-20",25174,140,10746],["2021-05-21",25174,98,10844],["2021-05-22",25174,42,10886],["2021-05-23",25174,24,10910],["2021-05-24",25174,56,10966],["2021-05-25",25174,51,11017],["2021-05-26",25174,59,11076],["2021-05-27",25174,83,11159],["2021-05-28",25174,51,11210],["2021-05-29",25174,25,11235],["2021-05-30",25174,7,11242],["2021-05-31",25174,6,11248],["2021-06-01",25174,43,11291],["2021-06-02",25174,51,11342],["2021-06-03",25174,64,11406],["2021-06-04",25174,59,11465],["2021-06-05",25174,27,11492],["2021-06-06",25174,17,11509],["2021-06-07",25174,34,11543],["2021-06-08",25174,47,11590],["2021-06-09",25174,38,11628],["2021-06-10",25174,66,11694],["2021-06-11",25174,49,11743],["2021-06-12",25174,41,11784],["2021-06-13",25174,13,11797],["2021-06-14",25174,35,11832],["2021-06-15",25174,51,11883],["2021-06-16",25174,28,11911],["2021-06-17",25174,45,11956],["2021-06-18",25174,27,11983],["2021-06-19",25174,36,12019],["2021-06-20",25174,11,12030],["2021-06-21",25174,23,12053],["2021-06-22",25174,22,12075],["2021-06-23",25174,28,12103],["2021-06-24",25174,30,12133],["2021-06-25",25174,38,12171],["2021-06-26",25174,19,12190],["2021-06-27",25174,10,12200],["2021-06-28",25174,28,12228],["2021-06-29",25174,17,12245],["2021-06-30",25174,26,12271],["2021-07-01",25174,20,12291],["2021-07-02",25174,20,12311],["2021-07-03",25174,6,12317],["2021-07-04",25174,1,12318],["2021-07-05",25174,23,12341],["2021-07-06",25174,22,12363],["2021-07-07",25174,24,12387],["2021-07-08",25174,28,12415],["2021-07-09",25174,23,12438],["2021-07-10",25174,18,12456],["2021-07-11",25174,7,12463],["2021-07-12",25174,11,12474],["2021-07-13",25174,29,12503],["2021-07-14",25174,15,12518],["2021-07-15",25174,19,12537],["2021-07-16",25174,26,12563],["2021-07-17",25174,22,12585],["2021-07-18",25174,8,12593],["2021-07-19",25174,27,12620],["2021-07-20",25174,25,12645],["2021-07-21",25174,25,12670],["2021-07-22",25174,33,12703],["2021-07-23",25174,31,12734],["2021-07-24",25174,24,12758],["2021-07-25",25174,17,12775],["2021-07-26",25174,34,12809],["2021-07-27",25174,40,12849],["2021-07-28",25174,34,12883],["2021-07-29",25174,40,12923],["2021-07-30",25174,41,12964],["2021-07-31",25174,24,12988],["2021-08-01",25174,14,13002],["2021-08-02",25174,30,13032],["2021-08-03",25174,36,13068],["2021-08-04",25174,28,13096],["2021-08-05",25174,30,13126],["2021-08-06",25174,74,13200],["2021-08-07",25174,38,13238],["2021-08-08",25174,20,13258],["2021-08-09",25174,41,13299],["2021-08-10",25174,72,13371],["2021-08-11",25174,41,13412],["2021-08-12",25174,42,13454],["2021-08-13",25174,44,13498],["2021-08-14",25174,51,13549],["2021-08-15",25174,22,13571],["2021-08-16",25174,49,13620],["2021-08-17",25174,48,13668],["2021-08-18",25174,48,13716],["2021-08-19",25174,56,13772],["2021-08-20",25174,67,13839],["2021-08-21",25174,36,13875],["2021-08-22",25174,26,13901],["2021-08-23",25174,48,13949],["2021-08-24",25174,61,14010],["2021-08-25",25174,51,14061],["2021-08-26",25174,56,14117],["2021-08-27",25174,75,14192],["2021-08-28",25174,50,14242],["2021-08-29",25174,19,14261],["2021-08-30",25174,56,14317],["2021-08-31",25174,57,14374],["2021-09-01",25174,50,14424],["2021-09-02",25174,56,14480],["2021-09-03",25174,70,14550],["2021-09-04",25174,36,14586],["2021-09-05",25174,23,14609],["2021-09-06",25174,10,14619],["2021-09-07",25174,65,14684],["2021-09-08",25174,47,14731],["2021-09-09",25174,54,14785],["2021-09-10",25174,56,14841],["2021-09-11",25174,53,14894],["2021-09-12",25174,13,14907],["2021-09-13",25174,50,14957],["2021-09-14",25174,50,15007],["2021-09-15",25174,46,15053],["2021-09-16",25174,57,15110],["2021-09-17",25174,68,15178],["2021-09-18",25174,31,15209],["2021-09-19",25174,16,15225],["2021-09-20",25174,22,15247],["2021-09-21",25174,54,15301],["2021-09-22",25174,41,15342],["2021-09-23",25174,39,15381],["2021-09-24",25174,62,15443],["2021-09-25",25174,30,15473],["2021-09-26",25174,19,15492],["2021-09-27",25174,29,15521],["2021-09-28",25174,81,15602],["2021-09-29",25174,42,15644],["2021-09-30",25174,43,15687],["2021-10-01",25174,74,15761],["2021-10-02",25174,29,15790],["2021-10-03",25174,7,15797],["2021-10-04",25174,36,15833],["2021-10-05",25174,30,15863],["2021-10-06",25174,32,15895],["2021-10-07",25174,27,15922],["2021-10-08",25174,46,15968],["2021-10-09",25174,21,15989],["2021-10-10",25174,10,15999],["2021-10-11",25174,32,16031],["2021-10-12",25174,34,16065],["2021-10-13",25174,32,16097],["2021-10-14",25174,26,16123],["2021-10-15",25174,43,16166],["2021-10-16",25174,17,16183],["2021-10-17",25174,12,16195],["2021-10-18",25174,24,16219],["2021-10-19",25174,27,16246],["2021-10-20",25174,20,16266],["2021-10-21",25174,23,16289],["2021-10-22",25174,52,16341],["2021-10-23",25174,42,16383],["2021-10-24",25174,15,16398],["2021-10-25",25174,63,16461],["2021-10-26",25174,100,16561],["2021-10-27",25174,78,16639],["2021-10-28",25174,85,16724],["2021-10-29",25174,125,16849],["2021-10-30",25174,24,16873],["2021-10-31",25174,12,16885],["2021-11-01",25174,68,16953],["2021-11-02",25174,60,17013],["2021-11-03",25174,38,17051],["2021-11-04",25174,52,17103],["2021-11-05",25174,63,17166],["2021-11-06",25174,13,17179],["2021-11-07",25174,14,17193],["2021-11-08",25174,23,17216],["2021-11-09",25174,52,17268],["2021-11-10",25174,20,17288],["2021-11-11",25174,38,17326],["2021-11-12",25174,77,17403],["2021-11-13",25174,30,17433],["2021-11-14",25174,11,17444],["2021-11-15",25174,37,17481],["2021-11-16",25174,43,17524],["2021-11-17",25174,25,17549],["2021-11-18",25174,54,17603],["2021-11-19",25174,91,17694],["2021-11-20",25174,33,17727],["2021-11-21",25174,17,17744],["2021-11-22",25174,58,17802],["2021-11-23",25174,69,17871],["2021-11-24",25174,17,17888],["2021-11-25",25174,1,17889],["2021-11-26",25174,34,17923],["2021-11-27",25174,21,17944],["2021-11-28",25174,14,17958],["2021-11-29",25174,41,17999],["2021-11-30",25174,52,18051],["2021-12-01",25174,63,18114],["2021-12-02",25174,97,18211],["2021-12-03",25174,108,18319],["2021-12-04",25174,34,18353],["2021-12-05",25174,7,18360],["2021-12-06",25174,43,18403],["2021-12-07",25174,51,18454],["2021-12-08",25174,31,18485],["2021-12-09",25174,72,18557],["2021-12-10",25174,73,18630],["2021-12-11",25174,26,18656],["2021-12-12",25174,11,18667],["2021-12-13",25174,35,18702],["2021-12-14",25174,43,18745],["2021-12-15",25174,65,18810],["2021-12-16",25174,62,18872],["2021-12-17",25174,72,18944],["2021-12-18",25174,24,18968],["2021-12-19",25174,11,18979],["2021-12-20",25174,52,19031],["2021-12-21",25174,47,19078],["2021-12-22",25174,44,19122],["2021-12-23",25174,35,19157],["2021-12-24",25174,7,19164],["2021-12-26",25174,7,19171],["2021-12-27",25174,46,19217],["2021-12-28",25174,52,19269],["2021-12-29",25174,38,19307],["2021-12-30",25174,65,19372],["2021-12-31",25174,34,19406],["2022-01-01",25174,6,19412],["2022-01-02",25174,14,19426],["2022-01-03",25174,14,19440]]} \ No newline at end of file diff --git a/public/data/overall/vaccinations/by-county/Calhoun.json b/public/data/overall/vaccinations/by-county/Calhoun.json new file mode 100644 index 000000000..b7d32f1e2 --- /dev/null +++ b/public/data/overall/vaccinations/by-county/Calhoun.json @@ -0,0 +1 @@ +{"segment":{"county":"Calhoun"},"headers":["report_date","population","vaccinations","total_vaccinations"],"rows":[["2020-12-17",6317,4,4],["2020-12-18",6317,6,10],["2020-12-19",6317,1,11],["2020-12-20",6317,1,12],["2020-12-21",6317,1,13],["2020-12-22",6317,2,15],["2020-12-23",6317,14,29],["2020-12-24",6317,5,34],["2020-12-26",6317,1,35],["2020-12-28",6317,14,49],["2020-12-29",6317,40,89],["2020-12-30",6317,6,95],["2020-12-31",6317,27,122],["2021-01-01",6317,1,123],["2021-01-02",6317,1,124],["2021-01-03",6317,1,125],["2021-01-04",6317,10,135],["2021-01-05",6317,6,141],["2021-01-06",6317,18,159],["2021-01-07",6317,14,173],["2021-01-08",6317,18,191],["2021-01-10",6317,1,192],["2021-01-11",6317,44,236],["2021-01-12",6317,48,284],["2021-01-13",6317,119,403],["2021-01-14",6317,32,435],["2021-01-15",6317,18,453],["2021-01-16",6317,7,460],["2021-01-18",6317,34,494],["2021-01-19",6317,36,530],["2021-01-20",6317,44,574],["2021-01-21",6317,117,691],["2021-01-22",6317,17,708],["2021-01-23",6317,6,714],["2021-01-25",6317,33,747],["2021-01-26",6317,29,776],["2021-01-27",6317,63,839],["2021-01-28",6317,47,886],["2021-01-29",6317,38,924],["2021-01-30",6317,3,927],["2021-01-31",6317,2,929],["2021-02-01",6317,32,961],["2021-02-02",6317,29,990],["2021-02-03",6317,34,1024],["2021-02-04",6317,93,1117],["2021-02-05",6317,29,1146],["2021-02-06",6317,6,1152],["2021-02-08",6317,59,1211],["2021-02-09",6317,60,1271],["2021-02-10",6317,158,1429],["2021-02-11",6317,37,1466],["2021-02-12",6317,16,1482],["2021-02-13",6317,8,1490],["2021-02-14",6317,3,1493],["2021-02-15",6317,33,1526],["2021-02-16",6317,48,1574],["2021-02-17",6317,66,1640],["2021-02-18",6317,50,1690],["2021-02-19",6317,85,1775],["2021-02-20",6317,3,1778],["2021-02-21",6317,1,1779],["2021-02-22",6317,37,1816],["2021-02-23",6317,36,1852],["2021-02-24",6317,67,1919],["2021-02-25",6317,51,1970],["2021-02-26",6317,15,1985],["2021-02-27",6317,5,1990],["2021-03-01",6317,38,2028],["2021-03-02",6317,36,2064],["2021-03-03",6317,36,2100],["2021-03-04",6317,43,2143],["2021-03-05",6317,96,2239],["2021-03-06",6317,1,2240],["2021-03-07",6317,2,2242],["2021-03-08",6317,36,2278],["2021-03-09",6317,22,2300],["2021-03-10",6317,106,2406],["2021-03-11",6317,49,2455],["2021-03-12",6317,17,2472],["2021-03-13",6317,9,2481],["2021-03-14",6317,5,2486],["2021-03-15",6317,57,2543],["2021-03-16",6317,34,2577],["2021-03-17",6317,86,2663],["2021-03-18",6317,18,2681],["2021-03-19",6317,20,2701],["2021-03-20",6317,2,2703],["2021-03-21",6317,2,2705],["2021-03-22",6317,27,2732],["2021-03-23",6317,27,2759],["2021-03-24",6317,91,2850],["2021-03-25",6317,25,2875],["2021-03-26",6317,18,2893],["2021-03-28",6317,1,2894],["2021-03-29",6317,25,2919],["2021-03-30",6317,32,2951],["2021-03-31",6317,51,3002],["2021-04-01",6317,61,3063],["2021-04-02",6317,24,3087],["2021-04-03",6317,2,3089],["2021-04-04",6317,1,3090],["2021-04-05",6317,12,3102],["2021-04-06",6317,44,3146],["2021-04-07",6317,53,3199],["2021-04-08",6317,67,3266],["2021-04-09",6317,20,3286],["2021-04-10",6317,5,3291],["2021-04-11",6317,2,3293],["2021-04-12",6317,37,3330],["2021-04-13",6317,105,3435],["2021-04-14",6317,20,3455],["2021-04-15",6317,52,3507],["2021-04-16",6317,33,3540],["2021-04-18",6317,4,3544],["2021-04-19",6317,46,3590],["2021-04-20",6317,49,3639],["2021-04-21",6317,16,3655],["2021-04-22",6317,26,3681],["2021-04-23",6317,15,3696],["2021-04-24",6317,2,3698],["2021-04-25",6317,1,3699],["2021-04-26",6317,5,3704],["2021-04-27",6317,47,3751],["2021-04-28",6317,17,3768],["2021-04-29",6317,43,3811],["2021-04-30",6317,33,3844],["2021-05-01",6317,3,3847],["2021-05-02",6317,1,3848],["2021-05-03",6317,9,3857],["2021-05-04",6317,22,3879],["2021-05-05",6317,15,3894],["2021-05-06",6317,39,3933],["2021-05-07",6317,4,3937],["2021-05-08",6317,1,3938],["2021-05-10",6317,8,3946],["2021-05-11",6317,17,3963],["2021-05-12",6317,12,3975],["2021-05-13",6317,51,4026],["2021-05-14",6317,9,4035],["2021-05-15",6317,1,4036],["2021-05-16",6317,3,4039],["2021-05-17",6317,3,4042],["2021-05-18",6317,16,4058],["2021-05-19",6317,15,4073],["2021-05-20",6317,33,4106],["2021-05-21",6317,12,4118],["2021-05-22",6317,3,4121],["2021-05-23",6317,1,4122],["2021-05-24",6317,6,4128],["2021-05-25",6317,7,4135],["2021-05-26",6317,12,4147],["2021-05-27",6317,13,4160],["2021-05-28",6317,12,4172],["2021-05-29",6317,1,4173],["2021-05-30",6317,2,4175],["2021-06-01",6317,13,4188],["2021-06-02",6317,23,4211],["2021-06-03",6317,23,4234],["2021-06-04",6317,7,4241],["2021-06-05",6317,2,4243],["2021-06-06",6317,1,4244],["2021-06-07",6317,6,4250],["2021-06-08",6317,14,4264],["2021-06-09",6317,5,4269],["2021-06-10",6317,15,4284],["2021-06-11",6317,12,4296],["2021-06-12",6317,4,4300],["2021-06-14",6317,8,4308],["2021-06-15",6317,8,4316],["2021-06-16",6317,13,4329],["2021-06-17",6317,5,4334],["2021-06-18",6317,4,4338],["2021-06-19",6317,4,4342],["2021-06-20",6317,1,4343],["2021-06-21",6317,3,4346],["2021-06-22",6317,5,4351],["2021-06-23",6317,13,4364],["2021-06-24",6317,14,4378],["2021-06-25",6317,8,4386],["2021-06-26",6317,3,4389],["2021-06-27",6317,3,4392],["2021-06-28",6317,4,4396],["2021-06-29",6317,17,4413],["2021-06-30",6317,11,4424],["2021-07-01",6317,8,4432],["2021-07-02",6317,2,4434],["2021-07-03",6317,2,4436],["2021-07-06",6317,10,4446],["2021-07-07",6317,13,4459],["2021-07-08",6317,19,4478],["2021-07-09",6317,4,4482],["2021-07-10",6317,2,4484],["2021-07-11",6317,1,4485],["2021-07-12",6317,7,4492],["2021-07-13",6317,10,4502],["2021-07-14",6317,14,4516],["2021-07-15",6317,5,4521],["2021-07-16",6317,2,4523],["2021-07-17",6317,2,4525],["2021-07-18",6317,1,4526],["2021-07-19",6317,7,4533],["2021-07-20",6317,5,4538],["2021-07-21",6317,11,4549],["2021-07-22",6317,7,4556],["2021-07-23",6317,3,4559],["2021-07-24",6317,8,4567],["2021-07-25",6317,2,4569],["2021-07-26",6317,32,4601],["2021-07-27",6317,9,4610],["2021-07-28",6317,32,4642],["2021-07-29",6317,18,4660],["2021-07-30",6317,17,4677],["2021-07-31",6317,5,4682],["2021-08-01",6317,4,4686],["2021-08-02",6317,18,4704],["2021-08-03",6317,22,4726],["2021-08-04",6317,44,4770],["2021-08-05",6317,18,4788],["2021-08-06",6317,22,4810],["2021-08-07",6317,6,4816],["2021-08-08",6317,8,4824],["2021-08-09",6317,20,4844],["2021-08-10",6317,30,4874],["2021-08-11",6317,34,4908],["2021-08-12",6317,22,4930],["2021-08-13",6317,25,4955],["2021-08-14",6317,5,4960],["2021-08-15",6317,6,4966],["2021-08-16",6317,28,4994],["2021-08-17",6317,16,5010],["2021-08-18",6317,46,5056],["2021-08-19",6317,34,5090],["2021-08-20",6317,19,5109],["2021-08-21",6317,9,5118],["2021-08-22",6317,6,5124],["2021-08-23",6317,31,5155],["2021-08-24",6317,16,5171],["2021-08-25",6317,46,5217],["2021-08-26",6317,33,5250],["2021-08-27",6317,33,5283],["2021-08-28",6317,8,5291],["2021-08-29",6317,9,5300],["2021-08-30",6317,33,5333],["2021-08-31",6317,18,5351],["2021-09-01",6317,43,5394],["2021-09-02",6317,29,5423],["2021-09-03",6317,23,5446],["2021-09-04",6317,5,5451],["2021-09-05",6317,6,5457],["2021-09-06",6317,1,5458],["2021-09-07",6317,28,5486],["2021-09-08",6317,40,5526],["2021-09-09",6317,17,5543],["2021-09-10",6317,20,5563],["2021-09-11",6317,7,5570],["2021-09-12",6317,12,5582],["2021-09-13",6317,30,5612],["2021-09-14",6317,23,5635],["2021-09-15",6317,40,5675],["2021-09-16",6317,27,5702],["2021-09-17",6317,30,5732],["2021-09-18",6317,11,5743],["2021-09-19",6317,9,5752],["2021-09-20",6317,7,5759],["2021-09-21",6317,22,5781],["2021-09-22",6317,19,5800],["2021-09-23",6317,15,5815],["2021-09-24",6317,16,5831],["2021-09-25",6317,1,5832],["2021-09-26",6317,7,5839],["2021-09-27",6317,10,5849],["2021-09-28",6317,18,5867],["2021-09-29",6317,25,5892],["2021-09-30",6317,24,5916],["2021-10-01",6317,16,5932],["2021-10-02",6317,9,5941],["2021-10-03",6317,1,5942],["2021-10-04",6317,9,5951],["2021-10-05",6317,17,5968],["2021-10-06",6317,19,5987],["2021-10-07",6317,9,5996],["2021-10-08",6317,17,6013],["2021-10-09",6317,5,6018],["2021-10-10",6317,2,6020],["2021-10-11",6317,7,6027],["2021-10-12",6317,13,6040],["2021-10-13",6317,9,6049],["2021-10-14",6317,11,6060],["2021-10-15",6317,8,6068],["2021-10-16",6317,4,6072],["2021-10-17",6317,1,6073],["2021-10-18",6317,1,6074],["2021-10-19",6317,5,6079],["2021-10-20",6317,9,6088],["2021-10-21",6317,18,6106],["2021-10-22",6317,15,6121],["2021-10-23",6317,1,6122],["2021-10-24",6317,1,6123],["2021-10-25",6317,15,6138],["2021-10-26",6317,51,6189],["2021-10-27",6317,71,6260],["2021-10-28",6317,55,6315],["2021-10-29",6317,21,6336],["2021-10-30",6317,3,6339],["2021-11-01",6317,47,6386],["2021-11-02",6317,36,6422],["2021-11-03",6317,70,6492],["2021-11-04",6317,39,6531],["2021-11-05",6317,30,6561],["2021-11-06",6317,5,6566],["2021-11-07",6317,1,6567],["2021-11-08",6317,12,6579],["2021-11-09",6317,30,6609],["2021-11-10",6317,45,6654],["2021-11-11",6317,14,6668],["2021-11-12",6317,8,6676],["2021-11-13",6317,4,6680],["2021-11-15",6317,12,6692],["2021-11-16",6317,24,6716],["2021-11-17",6317,40,6756],["2021-11-18",6317,41,6797],["2021-11-19",6317,23,6820],["2021-11-20",6317,7,6827],["2021-11-21",6317,2,6829],["2021-11-22",6317,9,6838],["2021-11-23",6317,26,6864],["2021-11-24",6317,16,6880],["2021-11-26",6317,5,6885],["2021-11-27",6317,2,6887],["2021-11-29",6317,19,6906],["2021-11-30",6317,21,6927],["2021-12-01",6317,16,6943],["2021-12-02",6317,26,6969],["2021-12-03",6317,18,6987],["2021-12-04",6317,8,6995],["2021-12-05",6317,1,6996],["2021-12-06",6317,14,7010],["2021-12-07",6317,21,7031],["2021-12-08",6317,21,7052],["2021-12-09",6317,26,7078],["2021-12-10",6317,16,7094],["2021-12-11",6317,4,7098],["2021-12-12",6317,3,7101],["2021-12-13",6317,9,7110],["2021-12-14",6317,16,7126],["2021-12-15",6317,17,7143],["2021-12-16",6317,18,7161],["2021-12-17",6317,10,7171],["2021-12-20",6317,21,7192],["2021-12-21",6317,19,7211],["2021-12-22",6317,9,7220],["2021-12-23",6317,12,7232],["2021-12-26",6317,1,7233],["2021-12-27",6317,14,7247],["2021-12-28",6317,29,7276],["2021-12-29",6317,26,7302],["2021-12-30",6317,9,7311],["2021-12-31",6317,4,7315],["2022-01-01",6317,1,7316],["2022-01-03",6317,9,7325]]} \ No newline at end of file diff --git a/public/data/overall/vaccinations/by-county/Camden.json b/public/data/overall/vaccinations/by-county/Camden.json new file mode 100644 index 000000000..2e7cf902d --- /dev/null +++ b/public/data/overall/vaccinations/by-county/Camden.json @@ -0,0 +1 @@ +{"segment":{"county":"Camden"},"headers":["report_date","population","vaccinations","total_vaccinations"],"rows":[["2020-12-15",53924,2,2],["2020-12-16",53924,2,4],["2020-12-17",53924,12,16],["2020-12-18",53924,24,40],["2020-12-20",53924,1,41],["2020-12-21",53924,12,53],["2020-12-22",53924,80,133],["2020-12-23",53924,16,149],["2020-12-24",53924,5,154],["2020-12-27",53924,1,155],["2020-12-28",53924,23,178],["2020-12-29",53924,25,203],["2020-12-30",53924,24,227],["2020-12-31",53924,15,242],["2021-01-01",53924,1,243],["2021-01-02",53924,2,245],["2021-01-03",53924,1,246],["2021-01-04",53924,14,260],["2021-01-05",53924,66,326],["2021-01-06",53924,33,359],["2021-01-07",53924,54,413],["2021-01-08",53924,52,465],["2021-01-09",53924,2,467],["2021-01-10",53924,2,469],["2021-01-11",53924,284,753],["2021-01-12",53924,40,793],["2021-01-13",53924,43,836],["2021-01-14",53924,153,989],["2021-01-15",53924,201,1190],["2021-01-16",53924,184,1374],["2021-01-17",53924,5,1379],["2021-01-18",53924,686,2065],["2021-01-19",53924,40,2105],["2021-01-20",53924,55,2160],["2021-01-21",53924,284,2444],["2021-01-22",53924,562,3006],["2021-01-23",53924,19,3025],["2021-01-24",53924,4,3029],["2021-01-25",53924,216,3245],["2021-01-26",53924,485,3730],["2021-01-27",53924,76,3806],["2021-01-28",53924,182,3988],["2021-01-29",53924,344,4332],["2021-01-30",53924,18,4350],["2021-01-31",53924,12,4362],["2021-02-01",53924,376,4738],["2021-02-02",53924,124,4862],["2021-02-03",53924,46,4908],["2021-02-04",53924,218,5126],["2021-02-05",53924,34,5160],["2021-02-06",53924,76,5236],["2021-02-07",53924,1,5237],["2021-02-08",53924,176,5413],["2021-02-09",53924,155,5568],["2021-02-10",53924,94,5662],["2021-02-11",53924,274,5936],["2021-02-12",53924,225,6161],["2021-02-13",53924,124,6285],["2021-02-14",53924,6,6291],["2021-02-15",53924,747,7038],["2021-02-16",53924,219,7257],["2021-02-17",53924,124,7381],["2021-02-18",53924,285,7666],["2021-02-19",53924,583,8249],["2021-02-20",53924,149,8398],["2021-02-21",53924,28,8426],["2021-02-22",53924,164,8590],["2021-02-23",53924,231,8821],["2021-02-24",53924,59,8880],["2021-02-25",53924,386,9266],["2021-02-26",53924,754,10020],["2021-02-27",53924,44,10064],["2021-02-28",53924,17,10081],["2021-03-01",53924,327,10408],["2021-03-02",53924,230,10638],["2021-03-03",53924,102,10740],["2021-03-04",53924,334,11074],["2021-03-05",53924,350,11424],["2021-03-06",53924,28,11452],["2021-03-07",53924,13,11465],["2021-03-08",53924,338,11803],["2021-03-09",53924,223,12026],["2021-03-10",53924,100,12126],["2021-03-11",53924,354,12480],["2021-03-12",53924,202,12682],["2021-03-13",53924,251,12933],["2021-03-14",53924,37,12970],["2021-03-15",53924,435,13405],["2021-03-16",53924,253,13658],["2021-03-17",53924,105,13763],["2021-03-18",53924,390,14153],["2021-03-19",53924,259,14412],["2021-03-20",53924,180,14592],["2021-03-21",53924,18,14610],["2021-03-22",53924,317,14927],["2021-03-23",53924,246,15173],["2021-03-24",53924,132,15305],["2021-03-25",53924,501,15806],["2021-03-26",53924,260,16066],["2021-03-27",53924,51,16117],["2021-03-28",53924,58,16175],["2021-03-29",53924,409,16584],["2021-03-30",53924,278,16862],["2021-03-31",53924,177,17039],["2021-04-01",53924,509,17548],["2021-04-02",53924,573,18121],["2021-04-03",53924,62,18183],["2021-04-04",53924,45,18228],["2021-04-05",53924,587,18815],["2021-04-06",53924,243,19058],["2021-04-07",53924,121,19179],["2021-04-08",53924,486,19665],["2021-04-09",53924,577,20242],["2021-04-10",53924,67,20309],["2021-04-11",53924,47,20356],["2021-04-12",53924,354,20710],["2021-04-13",53924,152,20862],["2021-04-14",53924,139,21001],["2021-04-15",53924,425,21426],["2021-04-16",53924,337,21763],["2021-04-17",53924,42,21805],["2021-04-18",53924,17,21822],["2021-04-19",53924,315,22137],["2021-04-20",53924,160,22297],["2021-04-21",53924,145,22442],["2021-04-22",53924,412,22854],["2021-04-23",53924,129,22983],["2021-04-24",53924,134,23117],["2021-04-25",53924,17,23134],["2021-04-26",53924,403,23537],["2021-04-27",53924,136,23673],["2021-04-28",53924,112,23785],["2021-04-29",53924,421,24206],["2021-04-30",53924,146,24352],["2021-05-01",53924,62,24414],["2021-05-02",53924,13,24427],["2021-05-03",53924,265,24692],["2021-05-04",53924,113,24805],["2021-05-05",53924,116,24921],["2021-05-06",53924,321,25242],["2021-05-07",53924,88,25330],["2021-05-08",53924,49,25379],["2021-05-09",53924,24,25403],["2021-05-10",53924,180,25583],["2021-05-11",53924,103,25686],["2021-05-12",53924,76,25762],["2021-05-13",53924,198,25960],["2021-05-14",53924,84,26044],["2021-05-15",53924,70,26114],["2021-05-16",53924,43,26157],["2021-05-17",53924,202,26359],["2021-05-18",53924,122,26481],["2021-05-19",53924,98,26579],["2021-05-20",53924,165,26744],["2021-05-21",53924,92,26836],["2021-05-22",53924,61,26897],["2021-05-23",53924,35,26932],["2021-05-24",53924,69,27001],["2021-05-25",53924,67,27068],["2021-05-26",53924,107,27175],["2021-05-27",53924,189,27364],["2021-05-28",53924,49,27413],["2021-05-29",53924,32,27445],["2021-05-30",53924,30,27475],["2021-05-31",53924,7,27482],["2021-06-01",53924,81,27563],["2021-06-02",53924,65,27628],["2021-06-03",53924,159,27787],["2021-06-04",53924,85,27872],["2021-06-05",53924,55,27927],["2021-06-06",53924,49,27976],["2021-06-07",53924,164,28140],["2021-06-08",53924,72,28212],["2021-06-09",53924,67,28279],["2021-06-10",53924,99,28378],["2021-06-11",53924,86,28464],["2021-06-12",53924,78,28542],["2021-06-13",53924,22,28564],["2021-06-14",53924,108,28672],["2021-06-15",53924,52,28724],["2021-06-16",53924,96,28820],["2021-06-17",53924,112,28932],["2021-06-18",53924,64,28996],["2021-06-19",53924,21,29017],["2021-06-20",53924,16,29033],["2021-06-21",53924,63,29096],["2021-06-22",53924,51,29147],["2021-06-23",53924,54,29201],["2021-06-24",53924,74,29275],["2021-06-25",53924,62,29337],["2021-06-26",53924,41,29378],["2021-06-27",53924,31,29409],["2021-06-28",53924,107,29516],["2021-06-29",53924,68,29584],["2021-06-30",53924,71,29655],["2021-07-01",53924,71,29726],["2021-07-02",53924,45,29771],["2021-07-03",53924,32,29803],["2021-07-04",53924,2,29805],["2021-07-05",53924,49,29854],["2021-07-06",53924,51,29905],["2021-07-07",53924,28,29933],["2021-07-08",53924,58,29991],["2021-07-09",53924,61,30052],["2021-07-10",53924,36,30088],["2021-07-11",53924,27,30115],["2021-07-12",53924,84,30199],["2021-07-13",53924,51,30250],["2021-07-14",53924,62,30312],["2021-07-15",53924,108,30420],["2021-07-16",53924,121,30541],["2021-07-17",53924,66,30607],["2021-07-18",53924,36,30643],["2021-07-19",53924,162,30805],["2021-07-20",53924,100,30905],["2021-07-21",53924,103,31008],["2021-07-22",53924,138,31146],["2021-07-23",53924,105,31251],["2021-07-24",53924,75,31326],["2021-07-25",53924,52,31378],["2021-07-26",53924,181,31559],["2021-07-27",53924,142,31701],["2021-07-28",53924,156,31857],["2021-07-29",53924,175,32032],["2021-07-30",53924,149,32181],["2021-07-31",53924,85,32266],["2021-08-01",53924,64,32330],["2021-08-02",53924,165,32495],["2021-08-03",53924,128,32623],["2021-08-04",53924,157,32780],["2021-08-05",53924,179,32959],["2021-08-06",53924,188,33147],["2021-08-07",53924,95,33242],["2021-08-08",53924,81,33323],["2021-08-09",53924,218,33541],["2021-08-10",53924,154,33695],["2021-08-11",53924,141,33836],["2021-08-12",53924,242,34078],["2021-08-13",53924,161,34239],["2021-08-14",53924,110,34349],["2021-08-15",53924,63,34412],["2021-08-16",53924,255,34667],["2021-08-17",53924,148,34815],["2021-08-18",53924,162,34977],["2021-08-19",53924,216,35193],["2021-08-20",53924,193,35386],["2021-08-21",53924,103,35489],["2021-08-22",53924,60,35549],["2021-08-23",53924,192,35741],["2021-08-24",53924,136,35877],["2021-08-25",53924,164,36041],["2021-08-26",53924,291,36332],["2021-08-27",53924,168,36500],["2021-08-28",53924,94,36594],["2021-08-29",53924,53,36647],["2021-08-30",53924,156,36803],["2021-08-31",53924,118,36921],["2021-09-01",53924,162,37083],["2021-09-02",53924,170,37253],["2021-09-03",53924,170,37423],["2021-09-04",53924,87,37510],["2021-09-05",53924,58,37568],["2021-09-06",53924,20,37588],["2021-09-07",53924,142,37730],["2021-09-08",53924,107,37837],["2021-09-09",53924,144,37981],["2021-09-10",53924,145,38126],["2021-09-11",53924,51,38177],["2021-09-12",53924,49,38226],["2021-09-13",53924,170,38396],["2021-09-14",53924,114,38510],["2021-09-15",53924,82,38592],["2021-09-16",53924,141,38733],["2021-09-17",53924,115,38848],["2021-09-18",53924,45,38893],["2021-09-19",53924,29,38922],["2021-09-20",53924,95,39017],["2021-09-21",53924,104,39121],["2021-09-22",53924,77,39198],["2021-09-23",53924,100,39298],["2021-09-24",53924,91,39389],["2021-09-25",53924,52,39441],["2021-09-26",53924,40,39481],["2021-09-27",53924,89,39570],["2021-09-28",53924,80,39650],["2021-09-29",53924,84,39734],["2021-09-30",53924,83,39817],["2021-10-01",53924,100,39917],["2021-10-02",53924,37,39954],["2021-10-03",53924,31,39985],["2021-10-04",53924,82,40067],["2021-10-05",53924,78,40145],["2021-10-06",53924,95,40240],["2021-10-07",53924,80,40320],["2021-10-08",53924,77,40397],["2021-10-09",53924,28,40425],["2021-10-10",53924,17,40442],["2021-10-11",53924,76,40518],["2021-10-12",53924,75,40593],["2021-10-13",53924,82,40675],["2021-10-14",53924,85,40760],["2021-10-15",53924,68,40828],["2021-10-16",53924,15,40843],["2021-10-17",53924,19,40862],["2021-10-18",53924,103,40965],["2021-10-19",53924,70,41035],["2021-10-20",53924,46,41081],["2021-10-21",53924,66,41147],["2021-10-22",53924,95,41242],["2021-10-23",53924,67,41309],["2021-10-24",53924,38,41347],["2021-10-25",53924,173,41520],["2021-10-26",53924,147,41667],["2021-10-27",53924,185,41852],["2021-10-28",53924,122,41974],["2021-10-29",53924,147,42121],["2021-10-30",53924,59,42180],["2021-10-31",53924,41,42221],["2021-11-01",53924,355,42576],["2021-11-02",53924,168,42744],["2021-11-03",53924,147,42891],["2021-11-04",53924,220,43111],["2021-11-05",53924,123,43234],["2021-11-06",53924,67,43301],["2021-11-07",53924,49,43350],["2021-11-08",53924,284,43634],["2021-11-09",53924,150,43784],["2021-11-10",53924,122,43906],["2021-11-11",53924,73,43979],["2021-11-12",53924,151,44130],["2021-11-13",53924,54,44184],["2021-11-14",53924,28,44212],["2021-11-15",53924,241,44453],["2021-11-16",53924,136,44589],["2021-11-17",53924,101,44690],["2021-11-18",53924,138,44828],["2021-11-19",53924,118,44946],["2021-11-20",53924,58,45004],["2021-11-21",53924,58,45062],["2021-11-22",53924,235,45297],["2021-11-23",53924,117,45414],["2021-11-24",53924,63,45477],["2021-11-26",53924,51,45528],["2021-11-27",53924,69,45597],["2021-11-28",53924,42,45639],["2021-11-29",53924,247,45886],["2021-11-30",53924,123,46009],["2021-12-01",53924,174,46183],["2021-12-02",53924,223,46406],["2021-12-03",53924,203,46609],["2021-12-04",53924,71,46680],["2021-12-05",53924,38,46718],["2021-12-06",53924,206,46924],["2021-12-07",53924,115,47039],["2021-12-08",53924,71,47110],["2021-12-09",53924,157,47267],["2021-12-10",53924,133,47400],["2021-12-11",53924,53,47453],["2021-12-12",53924,28,47481],["2021-12-13",53924,172,47653],["2021-12-14",53924,80,47733],["2021-12-15",53924,75,47808],["2021-12-16",53924,118,47926],["2021-12-17",53924,106,48032],["2021-12-18",53924,48,48080],["2021-12-19",53924,32,48112],["2021-12-20",53924,152,48264],["2021-12-21",53924,119,48383],["2021-12-22",53924,112,48495],["2021-12-23",53924,68,48563],["2021-12-24",53924,23,48586],["2021-12-26",53924,32,48618],["2021-12-27",53924,128,48746],["2021-12-28",53924,104,48850],["2021-12-29",53924,85,48935],["2021-12-30",53924,74,49009],["2021-12-31",53924,29,49038],["2022-01-01",53924,12,49050],["2022-01-02",53924,25,49075],["2022-01-03",53924,28,49103]]} \ No newline at end of file diff --git a/public/data/overall/vaccinations/by-county/Candler.json b/public/data/overall/vaccinations/by-county/Candler.json new file mode 100644 index 000000000..046a224dc --- /dev/null +++ b/public/data/overall/vaccinations/by-county/Candler.json @@ -0,0 +1 @@ +{"segment":{"county":"Candler"},"headers":["report_date","population","vaccinations","total_vaccinations"],"rows":[["2020-12-17",10837,1,1],["2020-12-18",10837,1,2],["2020-12-21",10837,1,3],["2020-12-22",10837,6,9],["2020-12-23",10837,8,17],["2020-12-24",10837,2,19],["2020-12-27",10837,28,47],["2020-12-28",10837,12,59],["2020-12-29",10837,13,72],["2020-12-30",10837,11,83],["2020-12-31",10837,6,89],["2021-01-01",10837,3,92],["2021-01-03",10837,1,93],["2021-01-04",10837,35,128],["2021-01-05",10837,17,145],["2021-01-06",10837,36,181],["2021-01-07",10837,19,200],["2021-01-08",10837,25,225],["2021-01-09",10837,2,227],["2021-01-10",10837,2,229],["2021-01-11",10837,69,298],["2021-01-12",10837,100,398],["2021-01-13",10837,42,440],["2021-01-14",10837,55,495],["2021-01-15",10837,38,533],["2021-01-16",10837,15,548],["2021-01-17",10837,34,582],["2021-01-18",10837,42,624],["2021-01-19",10837,51,675],["2021-01-20",10837,64,739],["2021-01-21",10837,135,874],["2021-01-22",10837,84,958],["2021-01-23",10837,14,972],["2021-01-25",10837,44,1016],["2021-01-26",10837,37,1053],["2021-01-27",10837,26,1079],["2021-01-28",10837,60,1139],["2021-01-29",10837,49,1188],["2021-01-30",10837,6,1194],["2021-01-31",10837,2,1196],["2021-02-01",10837,71,1267],["2021-02-02",10837,102,1369],["2021-02-03",10837,39,1408],["2021-02-04",10837,20,1428],["2021-02-05",10837,130,1558],["2021-02-06",10837,4,1562],["2021-02-07",10837,14,1576],["2021-02-08",10837,73,1649],["2021-02-09",10837,81,1730],["2021-02-10",10837,95,1825],["2021-02-11",10837,52,1877],["2021-02-12",10837,59,1936],["2021-02-13",10837,27,1963],["2021-02-14",10837,1,1964],["2021-02-15",10837,64,2028],["2021-02-16",10837,56,2084],["2021-02-17",10837,52,2136],["2021-02-18",10837,59,2195],["2021-02-19",10837,198,2393],["2021-02-20",10837,5,2398],["2021-02-21",10837,12,2410],["2021-02-22",10837,54,2464],["2021-02-23",10837,31,2495],["2021-02-24",10837,25,2520],["2021-02-25",10837,88,2608],["2021-02-26",10837,62,2670],["2021-02-27",10837,8,2678],["2021-02-28",10837,1,2679],["2021-03-01",10837,49,2728],["2021-03-02",10837,42,2770],["2021-03-03",10837,19,2789],["2021-03-04",10837,27,2816],["2021-03-05",10837,128,2944],["2021-03-06",10837,4,2948],["2021-03-07",10837,2,2950],["2021-03-08",10837,24,2974],["2021-03-09",10837,87,3061],["2021-03-10",10837,64,3125],["2021-03-11",10837,53,3178],["2021-03-12",10837,93,3271],["2021-03-13",10837,33,3304],["2021-03-14",10837,3,3307],["2021-03-15",10837,83,3390],["2021-03-16",10837,75,3465],["2021-03-17",10837,68,3533],["2021-03-18",10837,55,3588],["2021-03-19",10837,116,3704],["2021-03-20",10837,7,3711],["2021-03-21",10837,7,3718],["2021-03-22",10837,42,3760],["2021-03-23",10837,37,3797],["2021-03-24",10837,33,3830],["2021-03-25",10837,69,3899],["2021-03-26",10837,124,4023],["2021-03-27",10837,50,4073],["2021-03-28",10837,9,4082],["2021-03-29",10837,66,4148],["2021-03-30",10837,30,4178],["2021-03-31",10837,51,4229],["2021-04-01",10837,48,4277],["2021-04-02",10837,69,4346],["2021-04-03",10837,10,4356],["2021-04-04",10837,3,4359],["2021-04-05",10837,103,4462],["2021-04-06",10837,64,4526],["2021-04-07",10837,65,4591],["2021-04-08",10837,55,4646],["2021-04-09",10837,114,4760],["2021-04-10",10837,11,4771],["2021-04-11",10837,5,4776],["2021-04-12",10837,57,4833],["2021-04-13",10837,53,4886],["2021-04-14",10837,43,4929],["2021-04-15",10837,45,4974],["2021-04-16",10837,106,5080],["2021-04-17",10837,18,5098],["2021-04-18",10837,7,5105],["2021-04-19",10837,27,5132],["2021-04-20",10837,109,5241],["2021-04-21",10837,46,5287],["2021-04-22",10837,48,5335],["2021-04-23",10837,68,5403],["2021-04-24",10837,11,5414],["2021-04-25",10837,9,5423],["2021-04-26",10837,30,5453],["2021-04-27",10837,44,5497],["2021-04-28",10837,31,5528],["2021-04-29",10837,34,5562],["2021-04-30",10837,73,5635],["2021-05-01",10837,40,5675],["2021-05-02",10837,9,5684],["2021-05-03",10837,22,5706],["2021-05-04",10837,31,5737],["2021-05-05",10837,27,5764],["2021-05-06",10837,42,5806],["2021-05-07",10837,49,5855],["2021-05-08",10837,2,5857],["2021-05-09",10837,6,5863],["2021-05-10",10837,23,5886],["2021-05-11",10837,43,5929],["2021-05-12",10837,15,5944],["2021-05-13",10837,33,5977],["2021-05-14",10837,44,6021],["2021-05-15",10837,13,6034],["2021-05-16",10837,2,6036],["2021-05-17",10837,15,6051],["2021-05-18",10837,92,6143],["2021-05-19",10837,14,6157],["2021-05-20",10837,29,6186],["2021-05-21",10837,45,6231],["2021-05-22",10837,7,6238],["2021-05-23",10837,2,6240],["2021-05-24",10837,10,6250],["2021-05-25",10837,12,6262],["2021-05-26",10837,26,6288],["2021-05-27",10837,18,6306],["2021-05-28",10837,37,6343],["2021-05-29",10837,12,6355],["2021-05-30",10837,3,6358],["2021-05-31",10837,2,6360],["2021-06-01",10837,40,6400],["2021-06-02",10837,13,6413],["2021-06-03",10837,21,6434],["2021-06-04",10837,22,6456],["2021-06-05",10837,2,6458],["2021-06-06",10837,6,6464],["2021-06-07",10837,12,6476],["2021-06-08",10837,31,6507],["2021-06-09",10837,11,6518],["2021-06-10",10837,21,6539],["2021-06-11",10837,20,6559],["2021-06-12",10837,11,6570],["2021-06-14",10837,12,6582],["2021-06-15",10837,20,6602],["2021-06-16",10837,10,6612],["2021-06-17",10837,32,6644],["2021-06-18",10837,18,6662],["2021-06-19",10837,12,6674],["2021-06-20",10837,3,6677],["2021-06-21",10837,12,6689],["2021-06-22",10837,8,6697],["2021-06-23",10837,24,6721],["2021-06-24",10837,11,6732],["2021-06-25",10837,15,6747],["2021-06-26",10837,3,6750],["2021-06-27",10837,3,6753],["2021-06-28",10837,25,6778],["2021-06-29",10837,10,6788],["2021-06-30",10837,7,6795],["2021-07-01",10837,19,6814],["2021-07-02",10837,10,6824],["2021-07-03",10837,10,6834],["2021-07-04",10837,1,6835],["2021-07-05",10837,5,6840],["2021-07-06",10837,1,6841],["2021-07-07",10837,9,6850],["2021-07-08",10837,11,6861],["2021-07-09",10837,16,6877],["2021-07-10",10837,4,6881],["2021-07-11",10837,3,6884],["2021-07-12",10837,6,6890],["2021-07-13",10837,6,6896],["2021-07-14",10837,6,6902],["2021-07-15",10837,15,6917],["2021-07-16",10837,15,6932],["2021-07-17",10837,3,6935],["2021-07-18",10837,2,6937],["2021-07-19",10837,24,6961],["2021-07-20",10837,18,6979],["2021-07-21",10837,7,6986],["2021-07-22",10837,14,7000],["2021-07-23",10837,31,7031],["2021-07-24",10837,10,7041],["2021-07-25",10837,7,7048],["2021-07-26",10837,19,7067],["2021-07-27",10837,10,7077],["2021-07-28",10837,19,7096],["2021-07-29",10837,54,7150],["2021-07-30",10837,50,7200],["2021-07-31",10837,13,7213],["2021-08-01",10837,4,7217],["2021-08-02",10837,13,7230],["2021-08-03",10837,19,7249],["2021-08-04",10837,15,7264],["2021-08-05",10837,23,7287],["2021-08-06",10837,46,7333],["2021-08-07",10837,14,7347],["2021-08-08",10837,8,7355],["2021-08-09",10837,23,7378],["2021-08-10",10837,24,7402],["2021-08-11",10837,34,7436],["2021-08-12",10837,39,7475],["2021-08-13",10837,65,7540],["2021-08-14",10837,17,7557],["2021-08-15",10837,10,7567],["2021-08-16",10837,38,7605],["2021-08-17",10837,43,7648],["2021-08-18",10837,38,7686],["2021-08-19",10837,32,7718],["2021-08-20",10837,73,7791],["2021-08-21",10837,10,7801],["2021-08-22",10837,6,7807],["2021-08-23",10837,18,7825],["2021-08-24",10837,23,7848],["2021-08-25",10837,29,7877],["2021-08-26",10837,41,7918],["2021-08-27",10837,97,8015],["2021-08-28",10837,32,8047],["2021-08-29",10837,4,8051],["2021-08-30",10837,25,8076],["2021-08-31",10837,40,8116],["2021-09-01",10837,37,8153],["2021-09-02",10837,28,8181],["2021-09-03",10837,69,8250],["2021-09-04",10837,19,8269],["2021-09-05",10837,8,8277],["2021-09-06",10837,1,8278],["2021-09-07",10837,45,8323],["2021-09-08",10837,34,8357],["2021-09-09",10837,16,8373],["2021-09-10",10837,50,8423],["2021-09-11",10837,14,8437],["2021-09-12",10837,9,8446],["2021-09-13",10837,26,8472],["2021-09-14",10837,28,8500],["2021-09-15",10837,34,8534],["2021-09-16",10837,30,8564],["2021-09-17",10837,61,8625],["2021-09-18",10837,7,8632],["2021-09-19",10837,5,8637],["2021-09-20",10837,27,8664],["2021-09-21",10837,28,8692],["2021-09-22",10837,18,8710],["2021-09-23",10837,26,8736],["2021-09-24",10837,41,8777],["2021-09-25",10837,16,8793],["2021-09-26",10837,8,8801],["2021-09-27",10837,15,8816],["2021-09-28",10837,17,8833],["2021-09-29",10837,21,8854],["2021-09-30",10837,18,8872],["2021-10-01",10837,25,8897],["2021-10-02",10837,3,8900],["2021-10-03",10837,6,8906],["2021-10-04",10837,10,8916],["2021-10-05",10837,23,8939],["2021-10-06",10837,16,8955],["2021-10-07",10837,17,8972],["2021-10-08",10837,24,8996],["2021-10-09",10837,7,9003],["2021-10-11",10837,8,9011],["2021-10-12",10837,14,9025],["2021-10-13",10837,13,9038],["2021-10-14",10837,16,9054],["2021-10-15",10837,18,9072],["2021-10-16",10837,1,9073],["2021-10-17",10837,2,9075],["2021-10-18",10837,15,9090],["2021-10-19",10837,9,9099],["2021-10-20",10837,5,9104],["2021-10-21",10837,14,9118],["2021-10-22",10837,33,9151],["2021-10-23",10837,11,9162],["2021-10-24",10837,3,9165],["2021-10-25",10837,34,9199],["2021-10-26",10837,81,9280],["2021-10-27",10837,25,9305],["2021-10-28",10837,25,9330],["2021-10-29",10837,55,9385],["2021-10-30",10837,11,9396],["2021-10-31",10837,7,9403],["2021-11-01",10837,23,9426],["2021-11-02",10837,67,9493],["2021-11-03",10837,61,9554],["2021-11-04",10837,22,9576],["2021-11-05",10837,48,9624],["2021-11-06",10837,4,9628],["2021-11-07",10837,3,9631],["2021-11-08",10837,19,9650],["2021-11-09",10837,51,9701],["2021-11-10",10837,28,9729],["2021-11-11",10837,15,9744],["2021-11-12",10837,68,9812],["2021-11-13",10837,5,9817],["2021-11-14",10837,2,9819],["2021-11-15",10837,20,9839],["2021-11-16",10837,46,9885],["2021-11-17",10837,21,9906],["2021-11-18",10837,27,9933],["2021-11-19",10837,43,9976],["2021-11-20",10837,2,9978],["2021-11-21",10837,3,9981],["2021-11-22",10837,17,9998],["2021-11-23",10837,45,10043],["2021-11-24",10837,11,10054],["2021-11-26",10837,20,10074],["2021-11-27",10837,9,10083],["2021-11-28",10837,7,10090],["2021-11-29",10837,25,10115],["2021-11-30",10837,62,10177],["2021-12-01",10837,15,10192],["2021-12-02",10837,40,10232],["2021-12-03",10837,43,10275],["2021-12-04",10837,8,10283],["2021-12-05",10837,2,10285],["2021-12-06",10837,23,10308],["2021-12-07",10837,38,10346],["2021-12-08",10837,19,10365],["2021-12-09",10837,27,10392],["2021-12-10",10837,54,10446],["2021-12-11",10837,5,10451],["2021-12-12",10837,2,10453],["2021-12-13",10837,20,10473],["2021-12-14",10837,27,10500],["2021-12-15",10837,16,10516],["2021-12-16",10837,17,10533],["2021-12-17",10837,28,10561],["2021-12-18",10837,9,10570],["2021-12-19",10837,4,10574],["2021-12-20",10837,24,10598],["2021-12-21",10837,48,10646],["2021-12-22",10837,18,10664],["2021-12-23",10837,16,10680],["2021-12-24",10837,3,10683],["2021-12-27",10837,12,10695],["2021-12-28",10837,49,10744],["2021-12-29",10837,30,10774],["2021-12-30",10837,16,10790],["2021-12-31",10837,17,10807],["2022-01-01",10837,1,10808],["2022-01-02",10837,3,10811],["2022-01-03",10837,11,10822]]} \ No newline at end of file diff --git a/public/data/overall/vaccinations/by-county/Carroll.json b/public/data/overall/vaccinations/by-county/Carroll.json new file mode 100644 index 000000000..1c37c3405 --- /dev/null +++ b/public/data/overall/vaccinations/by-county/Carroll.json @@ -0,0 +1 @@ +{"segment":{"county":"Carroll"},"headers":["report_date","population","vaccinations","total_vaccinations"],"rows":[["2020-12-16",120119,1,1],["2020-12-18",120119,8,9],["2020-12-19",120119,3,12],["2020-12-20",120119,4,16],["2020-12-21",120119,19,35],["2020-12-22",120119,166,201],["2020-12-23",120119,274,475],["2020-12-24",120119,46,521],["2020-12-26",120119,6,527],["2020-12-27",120119,10,537],["2020-12-28",120119,152,689],["2020-12-29",120119,156,845],["2020-12-30",120119,72,917],["2020-12-31",120119,135,1052],["2021-01-01",120119,9,1061],["2021-01-02",120119,7,1068],["2021-01-03",120119,72,1140],["2021-01-04",120119,216,1356],["2021-01-05",120119,129,1485],["2021-01-06",120119,88,1573],["2021-01-07",120119,249,1822],["2021-01-08",120119,84,1906],["2021-01-09",120119,24,1930],["2021-01-10",120119,72,2002],["2021-01-11",120119,109,2111],["2021-01-12",120119,1160,3271],["2021-01-13",120119,426,3697],["2021-01-14",120119,421,4118],["2021-01-15",120119,296,4414],["2021-01-16",120119,145,4559],["2021-01-17",120119,43,4602],["2021-01-18",120119,607,5209],["2021-01-19",120119,622,5831],["2021-01-20",120119,894,6725],["2021-01-21",120119,402,7127],["2021-01-22",120119,210,7337],["2021-01-23",120119,117,7454],["2021-01-24",120119,109,7563],["2021-01-25",120119,254,7817],["2021-01-26",120119,261,8078],["2021-01-27",120119,1180,9258],["2021-01-28",120119,356,9614],["2021-01-29",120119,168,9782],["2021-01-30",120119,45,9827],["2021-01-31",120119,88,9915],["2021-02-01",120119,160,10075],["2021-02-02",120119,328,10403],["2021-02-03",120119,357,10760],["2021-02-04",120119,609,11369],["2021-02-05",120119,190,11559],["2021-02-06",120119,39,11598],["2021-02-07",120119,9,11607],["2021-02-08",120119,430,12037],["2021-02-09",120119,1129,13166],["2021-02-10",120119,391,13557],["2021-02-11",120119,254,13811],["2021-02-12",120119,531,14342],["2021-02-13",120119,195,14537],["2021-02-14",120119,56,14593],["2021-02-15",120119,270,14863],["2021-02-16",120119,356,15219],["2021-02-17",120119,1736,16955],["2021-02-18",120119,352,17307],["2021-02-19",120119,281,17588],["2021-02-20",120119,72,17660],["2021-02-21",120119,34,17694],["2021-02-22",120119,199,17893],["2021-02-23",120119,634,18527],["2021-02-24",120119,347,18874],["2021-02-25",120119,281,19155],["2021-02-26",120119,281,19436],["2021-02-27",120119,81,19517],["2021-02-28",120119,104,19621],["2021-03-01",120119,231,19852],["2021-03-02",120119,512,20364],["2021-03-03",120119,377,20741],["2021-03-04",120119,312,21053],["2021-03-05",120119,327,21380],["2021-03-06",120119,107,21487],["2021-03-07",120119,85,21572],["2021-03-08",120119,255,21827],["2021-03-09",120119,351,22178],["2021-03-10",120119,1487,23665],["2021-03-11",120119,267,23932],["2021-03-12",120119,351,24283],["2021-03-13",120119,165,24448],["2021-03-14",120119,75,24523],["2021-03-15",120119,379,24902],["2021-03-16",120119,876,25778],["2021-03-17",120119,904,26682],["2021-03-18",120119,397,27079],["2021-03-19",120119,457,27536],["2021-03-20",120119,178,27714],["2021-03-21",120119,125,27839],["2021-03-22",120119,345,28184],["2021-03-23",120119,776,28960],["2021-03-24",120119,461,29421],["2021-03-25",120119,513,29934],["2021-03-26",120119,539,30473],["2021-03-27",120119,221,30694],["2021-03-28",120119,210,30904],["2021-03-29",120119,385,31289],["2021-03-30",120119,1754,33043],["2021-03-31",120119,2002,35045],["2021-04-01",120119,823,35868],["2021-04-02",120119,421,36289],["2021-04-03",120119,200,36489],["2021-04-04",120119,202,36691],["2021-04-05",120119,496,37187],["2021-04-06",120119,689,37876],["2021-04-07",120119,743,38619],["2021-04-08",120119,643,39262],["2021-04-09",120119,476,39738],["2021-04-10",120119,312,40050],["2021-04-11",120119,192,40242],["2021-04-12",120119,642,40884],["2021-04-13",120119,882,41766],["2021-04-14",120119,1208,42974],["2021-04-15",120119,646,43620],["2021-04-16",120119,721,44341],["2021-04-17",120119,437,44778],["2021-04-18",120119,164,44942],["2021-04-19",120119,545,45487],["2021-04-20",120119,580,46067],["2021-04-21",120119,1926,47993],["2021-04-22",120119,748,48741],["2021-04-23",120119,592,49333],["2021-04-24",120119,239,49572],["2021-04-25",120119,103,49675],["2021-04-26",120119,497,50172],["2021-04-27",120119,773,50945],["2021-04-28",120119,1123,52068],["2021-04-29",120119,486,52554],["2021-04-30",120119,545,53099],["2021-05-01",120119,273,53372],["2021-05-02",120119,120,53492],["2021-05-03",120119,408,53900],["2021-05-04",120119,404,54304],["2021-05-05",120119,644,54948],["2021-05-06",120119,431,55379],["2021-05-07",120119,555,55934],["2021-05-08",120119,205,56139],["2021-05-09",120119,109,56248],["2021-05-10",120119,289,56537],["2021-05-11",120119,391,56928],["2021-05-12",120119,476,57404],["2021-05-13",120119,344,57748],["2021-05-14",120119,368,58116],["2021-05-15",120119,525,58641],["2021-05-16",120119,144,58785],["2021-05-17",120119,287,59072],["2021-05-18",120119,481,59553],["2021-05-19",120119,745,60298],["2021-05-20",120119,375,60673],["2021-05-21",120119,400,61073],["2021-05-22",120119,173,61246],["2021-05-23",120119,95,61341],["2021-05-24",120119,258,61599],["2021-05-25",120119,248,61847],["2021-05-26",120119,235,62082],["2021-05-27",120119,241,62323],["2021-05-28",120119,269,62592],["2021-05-29",120119,171,62763],["2021-05-30",120119,74,62837],["2021-05-31",120119,53,62890],["2021-06-01",120119,213,63103],["2021-06-02",120119,230,63333],["2021-06-03",120119,234,63567],["2021-06-04",120119,305,63872],["2021-06-05",120119,179,64051],["2021-06-06",120119,98,64149],["2021-06-07",120119,179,64328],["2021-06-08",120119,192,64520],["2021-06-09",120119,263,64783],["2021-06-10",120119,215,64998],["2021-06-11",120119,249,65247],["2021-06-12",120119,151,65398],["2021-06-13",120119,72,65470],["2021-06-14",120119,175,65645],["2021-06-15",120119,171,65816],["2021-06-16",120119,173,65989],["2021-06-17",120119,189,66178],["2021-06-18",120119,279,66457],["2021-06-19",120119,130,66587],["2021-06-20",120119,45,66632],["2021-06-21",120119,134,66766],["2021-06-22",120119,153,66919],["2021-06-23",120119,133,67052],["2021-06-24",120119,115,67167],["2021-06-25",120119,188,67355],["2021-06-26",120119,109,67464],["2021-06-27",120119,46,67510],["2021-06-28",120119,112,67622],["2021-06-29",120119,115,67737],["2021-06-30",120119,100,67837],["2021-07-01",120119,104,67941],["2021-07-02",120119,136,68077],["2021-07-03",120119,71,68148],["2021-07-04",120119,6,68154],["2021-07-05",120119,86,68240],["2021-07-06",120119,108,68348],["2021-07-07",120119,173,68521],["2021-07-08",120119,132,68653],["2021-07-09",120119,152,68805],["2021-07-10",120119,75,68880],["2021-07-11",120119,30,68910],["2021-07-12",120119,103,69013],["2021-07-13",120119,119,69132],["2021-07-14",120119,115,69247],["2021-07-15",120119,156,69403],["2021-07-16",120119,146,69549],["2021-07-17",120119,103,69652],["2021-07-18",120119,57,69709],["2021-07-19",120119,152,69861],["2021-07-20",120119,130,69991],["2021-07-21",120119,131,70122],["2021-07-22",120119,156,70278],["2021-07-23",120119,208,70486],["2021-07-24",120119,138,70624],["2021-07-25",120119,105,70729],["2021-07-26",120119,178,70907],["2021-07-27",120119,203,71110],["2021-07-28",120119,220,71330],["2021-07-29",120119,217,71547],["2021-07-30",120119,343,71890],["2021-07-31",120119,158,72048],["2021-08-01",120119,109,72157],["2021-08-02",120119,209,72366],["2021-08-03",120119,250,72616],["2021-08-04",120119,245,72861],["2021-08-05",120119,218,73079],["2021-08-06",120119,288,73367],["2021-08-07",120119,187,73554],["2021-08-08",120119,106,73660],["2021-08-09",120119,248,73908],["2021-08-10",120119,283,74191],["2021-08-11",120119,211,74402],["2021-08-12",120119,273,74675],["2021-08-13",120119,340,75015],["2021-08-14",120119,197,75212],["2021-08-15",120119,147,75359],["2021-08-16",120119,267,75626],["2021-08-17",120119,228,75854],["2021-08-18",120119,256,76110],["2021-08-19",120119,283,76393],["2021-08-20",120119,382,76775],["2021-08-21",120119,246,77021],["2021-08-22",120119,141,77162],["2021-08-23",120119,327,77489],["2021-08-24",120119,298,77787],["2021-08-25",120119,303,78090],["2021-08-26",120119,403,78493],["2021-08-27",120119,428,78921],["2021-08-28",120119,239,79160],["2021-08-29",120119,148,79308],["2021-08-30",120119,325,79633],["2021-08-31",120119,265,79898],["2021-09-01",120119,440,80338],["2021-09-02",120119,271,80609],["2021-09-03",120119,383,80992],["2021-09-04",120119,213,81205],["2021-09-05",120119,151,81356],["2021-09-06",120119,61,81417],["2021-09-07",120119,282,81699],["2021-09-08",120119,304,82003],["2021-09-09",120119,283,82286],["2021-09-10",120119,410,82696],["2021-09-11",120119,193,82889],["2021-09-12",120119,129,83018],["2021-09-13",120119,252,83270],["2021-09-14",120119,217,83487],["2021-09-15",120119,224,83711],["2021-09-16",120119,332,84043],["2021-09-17",120119,325,84368],["2021-09-18",120119,154,84522],["2021-09-19",120119,125,84647],["2021-09-20",120119,234,84881],["2021-09-21",120119,197,85078],["2021-09-22",120119,202,85280],["2021-09-23",120119,165,85445],["2021-09-24",120119,298,85743],["2021-09-25",120119,140,85883],["2021-09-26",120119,118,86001],["2021-09-27",120119,317,86318],["2021-09-28",120119,385,86703],["2021-09-29",120119,266,86969],["2021-09-30",120119,199,87168],["2021-10-01",120119,305,87473],["2021-10-02",120119,125,87598],["2021-10-03",120119,94,87692],["2021-10-04",120119,197,87889],["2021-10-05",120119,571,88460],["2021-10-06",120119,482,88942],["2021-10-07",120119,217,89159],["2021-10-08",120119,257,89416],["2021-10-09",120119,136,89552],["2021-10-10",120119,62,89614],["2021-10-11",120119,120,89734],["2021-10-12",120119,150,89884],["2021-10-13",120119,130,90014],["2021-10-14",120119,122,90136],["2021-10-15",120119,200,90336],["2021-10-16",120119,86,90422],["2021-10-17",120119,49,90471],["2021-10-18",120119,153,90624],["2021-10-19",120119,164,90788],["2021-10-20",120119,125,90913],["2021-10-21",120119,212,91125],["2021-10-22",120119,302,91427],["2021-10-23",120119,203,91630],["2021-10-24",120119,142,91772],["2021-10-25",120119,304,92076],["2021-10-26",120119,286,92362],["2021-10-27",120119,619,92981],["2021-10-28",120119,273,93254],["2021-10-29",120119,384,93638],["2021-10-30",120119,143,93781],["2021-10-31",120119,78,93859],["2021-11-01",120119,247,94106],["2021-11-02",120119,271,94377],["2021-11-03",120119,270,94647],["2021-11-04",120119,276,94923],["2021-11-05",120119,255,95178],["2021-11-06",120119,118,95296],["2021-11-07",120119,72,95368],["2021-11-08",120119,219,95587],["2021-11-09",120119,233,95820],["2021-11-10",120119,265,96085],["2021-11-11",120119,213,96298],["2021-11-12",120119,345,96643],["2021-11-13",120119,135,96778],["2021-11-14",120119,83,96861],["2021-11-15",120119,228,97089],["2021-11-16",120119,201,97290],["2021-11-17",120119,334,97624],["2021-11-18",120119,246,97870],["2021-11-19",120119,352,98222],["2021-11-20",120119,187,98409],["2021-11-21",120119,104,98513],["2021-11-22",120119,226,98739],["2021-11-23",120119,198,98937],["2021-11-24",120119,129,99066],["2021-11-25",120119,1,99067],["2021-11-26",120119,156,99223],["2021-11-27",120119,143,99366],["2021-11-28",120119,110,99476],["2021-11-29",120119,274,99750],["2021-11-30",120119,357,100107],["2021-12-01",120119,318,100425],["2021-12-02",120119,372,100797],["2021-12-03",120119,422,101219],["2021-12-04",120119,219,101438],["2021-12-05",120119,114,101552],["2021-12-06",120119,257,101809],["2021-12-07",120119,263,102072],["2021-12-08",120119,212,102284],["2021-12-09",120119,258,102542],["2021-12-10",120119,281,102823],["2021-12-11",120119,149,102972],["2021-12-12",120119,74,103046],["2021-12-13",120119,184,103230],["2021-12-14",120119,211,103441],["2021-12-15",120119,167,103608],["2021-12-16",120119,191,103799],["2021-12-17",120119,271,104070],["2021-12-18",120119,153,104223],["2021-12-19",120119,82,104305],["2021-12-20",120119,214,104519],["2021-12-21",120119,305,104824],["2021-12-22",120119,247,105071],["2021-12-23",120119,214,105285],["2021-12-24",120119,55,105340],["2021-12-26",120119,76,105416],["2021-12-27",120119,269,105685],["2021-12-28",120119,235,105920],["2021-12-29",120119,248,106168],["2021-12-30",120119,227,106395],["2021-12-31",120119,114,106509],["2022-01-01",120119,24,106533],["2022-01-02",120119,85,106618],["2022-01-03",120119,56,106674]]} \ No newline at end of file diff --git a/public/data/overall/vaccinations/by-county/Catoosa.json b/public/data/overall/vaccinations/by-county/Catoosa.json new file mode 100644 index 000000000..676671756 --- /dev/null +++ b/public/data/overall/vaccinations/by-county/Catoosa.json @@ -0,0 +1 @@ +{"segment":{"county":"Catoosa"},"headers":["report_date","population","vaccinations","total_vaccinations"],"rows":[["2020-12-12",68771,1,1],["2020-12-17",68771,1,2],["2020-12-18",68771,39,41],["2020-12-19",68771,2,43],["2020-12-20",68771,7,50],["2020-12-21",68771,42,92],["2020-12-22",68771,39,131],["2020-12-23",68771,25,156],["2020-12-24",68771,3,159],["2020-12-26",68771,1,160],["2020-12-27",68771,3,163],["2020-12-28",68771,59,222],["2020-12-29",68771,36,258],["2020-12-30",68771,37,295],["2020-12-31",68771,15,310],["2021-01-01",68771,7,317],["2021-01-03",68771,38,355],["2021-01-04",68771,43,398],["2021-01-05",68771,49,447],["2021-01-06",68771,52,499],["2021-01-07",68771,48,547],["2021-01-08",68771,111,658],["2021-01-09",68771,22,680],["2021-01-10",68771,5,685],["2021-01-11",68771,132,817],["2021-01-12",68771,231,1048],["2021-01-13",68771,385,1433],["2021-01-14",68771,437,1870],["2021-01-15",68771,329,2199],["2021-01-16",68771,52,2251],["2021-01-17",68771,12,2263],["2021-01-18",68771,494,2757],["2021-01-19",68771,378,3135],["2021-01-20",68771,447,3582],["2021-01-21",68771,282,3864],["2021-01-22",68771,47,3911],["2021-01-23",68771,11,3922],["2021-01-24",68771,28,3950],["2021-01-25",68771,75,4025],["2021-01-26",68771,337,4362],["2021-01-27",68771,713,5075],["2021-01-28",68771,885,5960],["2021-01-29",68771,102,6062],["2021-01-30",68771,7,6069],["2021-01-31",68771,4,6073],["2021-02-01",68771,253,6326],["2021-02-02",68771,173,6499],["2021-02-03",68771,873,7372],["2021-02-04",68771,183,7555],["2021-02-05",68771,160,7715],["2021-02-06",68771,6,7721],["2021-02-07",68771,8,7729],["2021-02-08",68771,295,8024],["2021-02-09",68771,353,8377],["2021-02-10",68771,946,9323],["2021-02-11",68771,308,9631],["2021-02-12",68771,176,9807],["2021-02-13",68771,20,9827],["2021-02-14",68771,12,9839],["2021-02-15",68771,277,10116],["2021-02-16",68771,92,10208],["2021-02-17",68771,63,10271],["2021-02-18",68771,73,10344],["2021-02-19",68771,82,10426],["2021-02-20",68771,11,10437],["2021-02-21",68771,2,10439],["2021-02-22",68771,59,10498],["2021-02-23",68771,43,10541],["2021-02-24",68771,1179,11720],["2021-02-25",68771,1010,12730],["2021-02-26",68771,1454,14184],["2021-02-27",68771,17,14201],["2021-02-28",68771,14,14215],["2021-03-01",68771,80,14295],["2021-03-02",68771,492,14787],["2021-03-03",68771,615,15402],["2021-03-04",68771,321,15723],["2021-03-05",68771,162,15885],["2021-03-06",68771,15,15900],["2021-03-07",68771,20,15920],["2021-03-08",68771,312,16232],["2021-03-09",68771,357,16589],["2021-03-10",68771,973,17562],["2021-03-11",68771,338,17900],["2021-03-12",68771,336,18236],["2021-03-13",68771,25,18261],["2021-03-14",68771,22,18283],["2021-03-15",68771,135,18418],["2021-03-16",68771,141,18559],["2021-03-17",68771,746,19305],["2021-03-18",68771,733,20038],["2021-03-19",68771,124,20162],["2021-03-20",68771,41,20203],["2021-03-21",68771,28,20231],["2021-03-22",68771,124,20355],["2021-03-23",68771,118,20473],["2021-03-24",68771,1075,21548],["2021-03-25",68771,534,22082],["2021-03-26",68771,641,22723],["2021-03-27",68771,43,22766],["2021-03-28",68771,68,22834],["2021-03-29",68771,215,23049],["2021-03-30",68771,286,23335],["2021-03-31",68771,589,23924],["2021-04-01",68771,1347,25271],["2021-04-02",68771,187,25458],["2021-04-03",68771,39,25497],["2021-04-04",68771,65,25562],["2021-04-05",68771,210,25772],["2021-04-06",68771,194,25966],["2021-04-07",68771,438,26404],["2021-04-08",68771,797,27201],["2021-04-09",68771,238,27439],["2021-04-10",68771,391,27830],["2021-04-11",68771,59,27889],["2021-04-12",68771,228,28117],["2021-04-13",68771,378,28495],["2021-04-14",68771,454,28949],["2021-04-15",68771,186,29135],["2021-04-16",68771,257,29392],["2021-04-17",68771,28,29420],["2021-04-18",68771,41,29461],["2021-04-19",68771,160,29621],["2021-04-20",68771,298,29919],["2021-04-21",68771,994,30913],["2021-04-22",68771,703,31616],["2021-04-23",68771,297,31913],["2021-04-24",68771,68,31981],["2021-04-25",68771,28,32009],["2021-04-26",68771,198,32207],["2021-04-27",68771,195,32402],["2021-04-28",68771,375,32777],["2021-04-29",68771,422,33199],["2021-04-30",68771,234,33433],["2021-05-01",68771,89,33522],["2021-05-02",68771,47,33569],["2021-05-03",68771,128,33697],["2021-05-04",68771,223,33920],["2021-05-05",68771,161,34081],["2021-05-06",68771,422,34503],["2021-05-07",68771,188,34691],["2021-05-08",68771,72,34763],["2021-05-09",68771,18,34781],["2021-05-10",68771,87,34868],["2021-05-11",68771,124,34992],["2021-05-12",68771,109,35101],["2021-05-13",68771,468,35569],["2021-05-14",68771,142,35711],["2021-05-15",68771,73,35784],["2021-05-16",68771,54,35838],["2021-05-17",68771,101,35939],["2021-05-18",68771,163,36102],["2021-05-19",68771,111,36213],["2021-05-20",68771,141,36354],["2021-05-21",68771,134,36488],["2021-05-22",68771,367,36855],["2021-05-23",68771,55,36910],["2021-05-24",68771,89,36999],["2021-05-25",68771,155,37154],["2021-05-26",68771,80,37234],["2021-05-27",68771,89,37323],["2021-05-28",68771,84,37407],["2021-05-29",68771,55,37462],["2021-05-30",68771,21,37483],["2021-05-31",68771,17,37500],["2021-06-01",68771,147,37647],["2021-06-02",68771,71,37718],["2021-06-03",68771,205,37923],["2021-06-04",68771,113,38036],["2021-06-05",68771,62,38098],["2021-06-06",68771,28,38126],["2021-06-07",68771,66,38192],["2021-06-08",68771,62,38254],["2021-06-09",68771,70,38324],["2021-06-10",68771,127,38451],["2021-06-11",68771,104,38555],["2021-06-12",68771,75,38630],["2021-06-13",68771,29,38659],["2021-06-14",68771,235,38894],["2021-06-15",68771,133,39027],["2021-06-16",68771,80,39107],["2021-06-17",68771,99,39206],["2021-06-18",68771,92,39298],["2021-06-19",68771,53,39351],["2021-06-20",68771,26,39377],["2021-06-21",68771,45,39422],["2021-06-22",68771,77,39499],["2021-06-23",68771,49,39548],["2021-06-24",68771,138,39686],["2021-06-25",68771,67,39753],["2021-06-26",68771,43,39796],["2021-06-27",68771,26,39822],["2021-06-28",68771,40,39862],["2021-06-29",68771,42,39904],["2021-06-30",68771,49,39953],["2021-07-01",68771,105,40058],["2021-07-02",68771,68,40126],["2021-07-03",68771,26,40152],["2021-07-04",68771,6,40158],["2021-07-05",68771,23,40181],["2021-07-06",68771,67,40248],["2021-07-07",68771,35,40283],["2021-07-08",68771,78,40361],["2021-07-09",68771,65,40426],["2021-07-10",68771,38,40464],["2021-07-11",68771,19,40483],["2021-07-12",68771,32,40515],["2021-07-13",68771,35,40550],["2021-07-14",68771,60,40610],["2021-07-15",68771,93,40703],["2021-07-16",68771,68,40771],["2021-07-17",68771,36,40807],["2021-07-18",68771,27,40834],["2021-07-19",68771,53,40887],["2021-07-20",68771,78,40965],["2021-07-21",68771,58,41023],["2021-07-22",68771,189,41212],["2021-07-23",68771,98,41310],["2021-07-24",68771,81,41391],["2021-07-25",68771,35,41426],["2021-07-26",68771,67,41493],["2021-07-27",68771,97,41590],["2021-07-28",68771,77,41667],["2021-07-29",68771,181,41848],["2021-07-30",68771,124,41972],["2021-07-31",68771,72,42044],["2021-08-01",68771,54,42098],["2021-08-02",68771,94,42192],["2021-08-03",68771,82,42274],["2021-08-04",68771,109,42383],["2021-08-05",68771,222,42605],["2021-08-06",68771,123,42728],["2021-08-07",68771,92,42820],["2021-08-08",68771,63,42883],["2021-08-09",68771,98,42981],["2021-08-10",68771,131,43112],["2021-08-11",68771,129,43241],["2021-08-12",68771,273,43514],["2021-08-13",68771,175,43689],["2021-08-14",68771,125,43814],["2021-08-15",68771,83,43897],["2021-08-16",68771,112,44009],["2021-08-17",68771,145,44154],["2021-08-18",68771,136,44290],["2021-08-19",68771,281,44571],["2021-08-20",68771,186,44757],["2021-08-21",68771,118,44875],["2021-08-22",68771,64,44939],["2021-08-23",68771,132,45071],["2021-08-24",68771,160,45231],["2021-08-25",68771,152,45383],["2021-08-26",68771,254,45637],["2021-08-27",68771,175,45812],["2021-08-28",68771,144,45956],["2021-08-29",68771,90,46046],["2021-08-30",68771,153,46199],["2021-08-31",68771,136,46335],["2021-09-01",68771,160,46495],["2021-09-02",68771,224,46719],["2021-09-03",68771,200,46919],["2021-09-04",68771,97,47016],["2021-09-05",68771,91,47107],["2021-09-06",68771,29,47136],["2021-09-07",68771,159,47295],["2021-09-08",68771,105,47400],["2021-09-09",68771,255,47655],["2021-09-10",68771,182,47837],["2021-09-11",68771,91,47928],["2021-09-12",68771,66,47994],["2021-09-13",68771,135,48129],["2021-09-14",68771,121,48250],["2021-09-15",68771,107,48357],["2021-09-16",68771,187,48544],["2021-09-17",68771,124,48668],["2021-09-18",68771,86,48754],["2021-09-19",68771,56,48810],["2021-09-20",68771,85,48895],["2021-09-21",68771,77,48972],["2021-09-22",68771,72,49044],["2021-09-23",68771,104,49148],["2021-09-24",68771,97,49245],["2021-09-25",68771,60,49305],["2021-09-26",68771,38,49343],["2021-09-27",68771,98,49441],["2021-09-28",68771,109,49550],["2021-09-29",68771,122,49672],["2021-09-30",68771,192,49864],["2021-10-01",68771,151,50015],["2021-10-02",68771,50,50065],["2021-10-03",68771,47,50112],["2021-10-04",68771,80,50192],["2021-10-05",68771,52,50244],["2021-10-06",68771,100,50344],["2021-10-07",68771,166,50510],["2021-10-08",68771,82,50592],["2021-10-09",68771,43,50635],["2021-10-10",68771,28,50663],["2021-10-11",68771,67,50730],["2021-10-12",68771,46,50776],["2021-10-13",68771,83,50859],["2021-10-14",68771,104,50963],["2021-10-15",68771,79,51042],["2021-10-16",68771,28,51070],["2021-10-17",68771,21,51091],["2021-10-18",68771,62,51153],["2021-10-19",68771,50,51203],["2021-10-20",68771,64,51267],["2021-10-21",68771,106,51373],["2021-10-22",68771,104,51477],["2021-10-23",68771,72,51549],["2021-10-24",68771,49,51598],["2021-10-25",68771,183,51781],["2021-10-26",68771,216,51997],["2021-10-27",68771,237,52234],["2021-10-28",68771,216,52450],["2021-10-29",68771,138,52588],["2021-10-30",68771,49,52637],["2021-10-31",68771,27,52664],["2021-11-01",68771,215,52879],["2021-11-02",68771,234,53113],["2021-11-03",68771,228,53341],["2021-11-04",68771,202,53543],["2021-11-05",68771,108,53651],["2021-11-06",68771,53,53704],["2021-11-07",68771,41,53745],["2021-11-08",68771,162,53907],["2021-11-09",68771,176,54083],["2021-11-10",68771,147,54230],["2021-11-11",68771,54,54284],["2021-11-12",68771,135,54419],["2021-11-13",68771,56,54475],["2021-11-14",68771,31,54506],["2021-11-15",68771,116,54622],["2021-11-16",68771,129,54751],["2021-11-17",68771,113,54864],["2021-11-18",68771,196,55060],["2021-11-19",68771,174,55234],["2021-11-20",68771,76,55310],["2021-11-21",68771,52,55362],["2021-11-22",68771,182,55544],["2021-11-23",68771,154,55698],["2021-11-24",68771,90,55788],["2021-11-25",68771,1,55789],["2021-11-26",68771,85,55874],["2021-11-27",68771,67,55941],["2021-11-28",68771,61,56002],["2021-11-29",68771,178,56180],["2021-11-30",68771,207,56387],["2021-12-01",68771,221,56608],["2021-12-02",68771,232,56840],["2021-12-03",68771,240,57080],["2021-12-04",68771,97,57177],["2021-12-05",68771,62,57239],["2021-12-06",68771,135,57374],["2021-12-07",68771,130,57504],["2021-12-08",68771,110,57614],["2021-12-09",68771,156,57770],["2021-12-10",68771,126,57896],["2021-12-11",68771,83,57979],["2021-12-12",68771,49,58028],["2021-12-13",68771,107,58135],["2021-12-14",68771,119,58254],["2021-12-15",68771,101,58355],["2021-12-16",68771,132,58487],["2021-12-17",68771,151,58638],["2021-12-18",68771,75,58713],["2021-12-19",68771,60,58773],["2021-12-20",68771,179,58952],["2021-12-21",68771,167,59119],["2021-12-22",68771,180,59299],["2021-12-23",68771,82,59381],["2021-12-24",68771,18,59399],["2021-12-26",68771,38,59437],["2021-12-27",68771,145,59582],["2021-12-28",68771,146,59728],["2021-12-29",68771,153,59881],["2021-12-30",68771,148,60029],["2021-12-31",68771,96,60125],["2022-01-01",68771,9,60134],["2022-01-02",68771,49,60183],["2022-01-03",68771,26,60209]]} \ No newline at end of file diff --git a/public/data/overall/vaccinations/by-county/Charlton.json b/public/data/overall/vaccinations/by-county/Charlton.json new file mode 100644 index 000000000..51dd2ae1e --- /dev/null +++ b/public/data/overall/vaccinations/by-county/Charlton.json @@ -0,0 +1 @@ +{"segment":{"county":"Charlton"},"headers":["report_date","population","vaccinations","total_vaccinations"],"rows":[["2020-12-16",13251,1,1],["2020-12-18",13251,1,2],["2020-12-20",13251,1,3],["2020-12-22",13251,6,9],["2020-12-23",13251,1,10],["2020-12-24",13251,1,11],["2020-12-28",13251,2,13],["2020-12-29",13251,1,14],["2020-12-30",13251,2,16],["2020-12-31",13251,1,17],["2021-01-03",13251,1,18],["2021-01-04",13251,1,19],["2021-01-05",13251,5,24],["2021-01-06",13251,6,30],["2021-01-07",13251,20,50],["2021-01-08",13251,5,55],["2021-01-09",13251,1,56],["2021-01-10",13251,2,58],["2021-01-11",13251,15,73],["2021-01-12",13251,7,80],["2021-01-13",13251,23,103],["2021-01-14",13251,5,108],["2021-01-15",13251,14,122],["2021-01-16",13251,28,150],["2021-01-18",13251,30,180],["2021-01-19",13251,3,183],["2021-01-20",13251,25,208],["2021-01-21",13251,33,241],["2021-01-22",13251,33,274],["2021-01-23",13251,1,275],["2021-01-24",13251,2,277],["2021-01-25",13251,12,289],["2021-01-26",13251,11,300],["2021-01-27",13251,22,322],["2021-01-28",13251,8,330],["2021-01-29",13251,19,349],["2021-01-30",13251,16,365],["2021-01-31",13251,1,366],["2021-02-01",13251,21,387],["2021-02-02",13251,5,392],["2021-02-03",13251,33,425],["2021-02-04",13251,16,441],["2021-02-05",13251,14,455],["2021-02-06",13251,7,462],["2021-02-08",13251,31,493],["2021-02-09",13251,10,503],["2021-02-10",13251,44,547],["2021-02-11",13251,8,555],["2021-02-12",13251,37,592],["2021-02-13",13251,44,636],["2021-02-15",13251,64,700],["2021-02-16",13251,11,711],["2021-02-17",13251,53,764],["2021-02-18",13251,24,788],["2021-02-19",13251,64,852],["2021-02-20",13251,16,868],["2021-02-21",13251,2,870],["2021-02-22",13251,28,898],["2021-02-23",13251,24,922],["2021-02-24",13251,39,961],["2021-02-25",13251,26,987],["2021-02-26",13251,30,1017],["2021-02-27",13251,5,1022],["2021-03-01",13251,36,1058],["2021-03-02",13251,36,1094],["2021-03-03",13251,9,1103],["2021-03-04",13251,44,1147],["2021-03-05",13251,51,1198],["2021-03-06",13251,5,1203],["2021-03-07",13251,3,1206],["2021-03-08",13251,42,1248],["2021-03-09",13251,14,1262],["2021-03-10",13251,26,1288],["2021-03-11",13251,74,1362],["2021-03-12",13251,88,1450],["2021-03-13",13251,5,1455],["2021-03-14",13251,7,1462],["2021-03-15",13251,75,1537],["2021-03-16",13251,42,1579],["2021-03-17",13251,36,1615],["2021-03-18",13251,68,1683],["2021-03-19",13251,29,1712],["2021-03-20",13251,16,1728],["2021-03-21",13251,4,1732],["2021-03-22",13251,40,1772],["2021-03-23",13251,32,1804],["2021-03-24",13251,47,1851],["2021-03-25",13251,97,1948],["2021-03-26",13251,33,1981],["2021-03-27",13251,8,1989],["2021-03-28",13251,4,1993],["2021-03-29",13251,45,2038],["2021-03-30",13251,50,2088],["2021-03-31",13251,29,2117],["2021-04-01",13251,84,2201],["2021-04-02",13251,48,2249],["2021-04-03",13251,8,2257],["2021-04-04",13251,4,2261],["2021-04-05",13251,36,2297],["2021-04-06",13251,35,2332],["2021-04-07",13251,28,2360],["2021-04-08",13251,82,2442],["2021-04-09",13251,45,2487],["2021-04-10",13251,13,2500],["2021-04-11",13251,12,2512],["2021-04-12",13251,30,2542],["2021-04-13",13251,67,2609],["2021-04-14",13251,30,2639],["2021-04-15",13251,94,2733],["2021-04-16",13251,22,2755],["2021-04-17",13251,4,2759],["2021-04-19",13251,22,2781],["2021-04-20",13251,44,2825],["2021-04-21",13251,32,2857],["2021-04-22",13251,78,2935],["2021-04-23",13251,28,2963],["2021-04-24",13251,15,2978],["2021-04-25",13251,1,2979],["2021-04-26",13251,33,3012],["2021-04-27",13251,33,3045],["2021-04-28",13251,21,3066],["2021-04-29",13251,63,3129],["2021-04-30",13251,33,3162],["2021-05-01",13251,10,3172],["2021-05-02",13251,1,3173],["2021-05-03",13251,24,3197],["2021-05-04",13251,26,3223],["2021-05-05",13251,17,3240],["2021-05-06",13251,46,3286],["2021-05-07",13251,14,3300],["2021-05-08",13251,3,3303],["2021-05-10",13251,14,3317],["2021-05-11",13251,40,3357],["2021-05-12",13251,17,3374],["2021-05-13",13251,47,3421],["2021-05-14",13251,8,3429],["2021-05-15",13251,4,3433],["2021-05-17",13251,10,3443],["2021-05-18",13251,37,3480],["2021-05-19",13251,13,3493],["2021-05-20",13251,43,3536],["2021-05-21",13251,12,3548],["2021-05-22",13251,6,3554],["2021-05-23",13251,2,3556],["2021-05-24",13251,9,3565],["2021-05-25",13251,18,3583],["2021-05-26",13251,9,3592],["2021-05-27",13251,27,3619],["2021-05-28",13251,6,3625],["2021-05-29",13251,3,3628],["2021-05-30",13251,3,3631],["2021-05-31",13251,5,3636],["2021-06-01",13251,23,3659],["2021-06-02",13251,12,3671],["2021-06-03",13251,24,3695],["2021-06-04",13251,8,3703],["2021-06-05",13251,3,3706],["2021-06-07",13251,14,3720],["2021-06-08",13251,23,3743],["2021-06-09",13251,10,3753],["2021-06-10",13251,15,3768],["2021-06-11",13251,8,3776],["2021-06-12",13251,5,3781],["2021-06-13",13251,1,3782],["2021-06-14",13251,4,3786],["2021-06-15",13251,9,3795],["2021-06-16",13251,2,3797],["2021-06-17",13251,17,3814],["2021-06-18",13251,8,3822],["2021-06-19",13251,4,3826],["2021-06-20",13251,5,3831],["2021-06-21",13251,6,3837],["2021-06-22",13251,9,3846],["2021-06-23",13251,6,3852],["2021-06-24",13251,13,3865],["2021-06-25",13251,8,3873],["2021-06-26",13251,2,3875],["2021-06-27",13251,1,3876],["2021-06-28",13251,11,3887],["2021-06-29",13251,15,3902],["2021-06-30",13251,12,3914],["2021-07-01",13251,4,3918],["2021-07-02",13251,5,3923],["2021-07-03",13251,2,3925],["2021-07-05",13251,4,3929],["2021-07-06",13251,3,3932],["2021-07-07",13251,3,3935],["2021-07-08",13251,7,3942],["2021-07-09",13251,7,3949],["2021-07-10",13251,2,3951],["2021-07-11",13251,2,3953],["2021-07-12",13251,11,3964],["2021-07-13",13251,11,3975],["2021-07-14",13251,15,3990],["2021-07-15",13251,16,4006],["2021-07-16",13251,11,4017],["2021-07-17",13251,2,4019],["2021-07-18",13251,2,4021],["2021-07-19",13251,15,4036],["2021-07-20",13251,29,4065],["2021-07-21",13251,22,4087],["2021-07-22",13251,33,4120],["2021-07-23",13251,14,4134],["2021-07-24",13251,2,4136],["2021-07-25",13251,3,4139],["2021-07-26",13251,29,4168],["2021-07-27",13251,58,4226],["2021-07-28",13251,39,4265],["2021-07-29",13251,48,4313],["2021-07-30",13251,42,4355],["2021-07-31",13251,3,4358],["2021-08-01",13251,3,4361],["2021-08-02",13251,40,4401],["2021-08-03",13251,49,4450],["2021-08-04",13251,29,4479],["2021-08-05",13251,20,4499],["2021-08-06",13251,33,4532],["2021-08-07",13251,11,4543],["2021-08-08",13251,10,4553],["2021-08-09",13251,28,4581],["2021-08-10",13251,28,4609],["2021-08-11",13251,29,4638],["2021-08-12",13251,50,4688],["2021-08-13",13251,51,4739],["2021-08-14",13251,12,4751],["2021-08-15",13251,5,4756],["2021-08-16",13251,47,4803],["2021-08-17",13251,48,4851],["2021-08-18",13251,42,4893],["2021-08-19",13251,54,4947],["2021-08-20",13251,48,4995],["2021-08-21",13251,6,5001],["2021-08-22",13251,7,5008],["2021-08-23",13251,52,5060],["2021-08-24",13251,61,5121],["2021-08-25",13251,43,5164],["2021-08-26",13251,41,5205],["2021-08-27",13251,48,5253],["2021-08-28",13251,18,5271],["2021-08-29",13251,6,5277],["2021-08-30",13251,35,5312],["2021-08-31",13251,28,5340],["2021-09-01",13251,35,5375],["2021-09-02",13251,27,5402],["2021-09-03",13251,39,5441],["2021-09-04",13251,1,5442],["2021-09-05",13251,2,5444],["2021-09-06",13251,16,5460],["2021-09-07",13251,30,5490],["2021-09-08",13251,13,5503],["2021-09-09",13251,30,5533],["2021-09-10",13251,42,5575],["2021-09-11",13251,10,5585],["2021-09-12",13251,2,5587],["2021-09-13",13251,35,5622],["2021-09-14",13251,17,5639],["2021-09-15",13251,16,5655],["2021-09-16",13251,19,5674],["2021-09-17",13251,37,5711],["2021-09-18",13251,4,5715],["2021-09-19",13251,3,5718],["2021-09-20",13251,15,5733],["2021-09-21",13251,8,5741],["2021-09-22",13251,10,5751],["2021-09-23",13251,13,5764],["2021-09-24",13251,27,5791],["2021-09-25",13251,10,5801],["2021-09-26",13251,4,5805],["2021-09-27",13251,9,5814],["2021-09-28",13251,8,5822],["2021-09-29",13251,13,5835],["2021-09-30",13251,11,5846],["2021-10-01",13251,15,5861],["2021-10-02",13251,4,5865],["2021-10-03",13251,1,5866],["2021-10-04",13251,14,5880],["2021-10-05",13251,11,5891],["2021-10-06",13251,10,5901],["2021-10-07",13251,15,5916],["2021-10-08",13251,11,5927],["2021-10-12",13251,9,5936],["2021-10-13",13251,18,5954],["2021-10-14",13251,9,5963],["2021-10-15",13251,14,5977],["2021-10-16",13251,1,5978],["2021-10-17",13251,1,5979],["2021-10-18",13251,10,5989],["2021-10-19",13251,12,6001],["2021-10-20",13251,12,6013],["2021-10-21",13251,4,6017],["2021-10-22",13251,17,6034],["2021-10-23",13251,3,6037],["2021-10-24",13251,1,6038],["2021-10-25",13251,15,6053],["2021-10-26",13251,26,6079],["2021-10-27",13251,36,6115],["2021-10-28",13251,32,6147],["2021-10-29",13251,31,6178],["2021-10-30",13251,2,6180],["2021-10-31",13251,4,6184],["2021-11-01",13251,38,6222],["2021-11-02",13251,29,6251],["2021-11-03",13251,40,6291],["2021-11-04",13251,25,6316],["2021-11-05",13251,15,6331],["2021-11-06",13251,5,6336],["2021-11-08",13251,22,6358],["2021-11-09",13251,27,6385],["2021-11-10",13251,14,6399],["2021-11-11",13251,11,6410],["2021-11-12",13251,29,6439],["2021-11-13",13251,3,6442],["2021-11-14",13251,1,6443],["2021-11-15",13251,20,6463],["2021-11-16",13251,15,6478],["2021-11-17",13251,17,6495],["2021-11-18",13251,25,6520],["2021-11-19",13251,24,6544],["2021-11-20",13251,4,6548],["2021-11-21",13251,5,6553],["2021-11-22",13251,20,6573],["2021-11-23",13251,13,6586],["2021-11-24",13251,18,6604],["2021-11-26",13251,13,6617],["2021-11-27",13251,3,6620],["2021-11-28",13251,3,6623],["2021-11-29",13251,24,6647],["2021-11-30",13251,31,6678],["2021-12-01",13251,38,6716],["2021-12-02",13251,38,6754],["2021-12-03",13251,34,6788],["2021-12-04",13251,5,6793],["2021-12-05",13251,4,6797],["2021-12-06",13251,23,6820],["2021-12-07",13251,19,6839],["2021-12-08",13251,19,6858],["2021-12-09",13251,32,6890],["2021-12-10",13251,19,6909],["2021-12-11",13251,5,6914],["2021-12-12",13251,2,6916],["2021-12-13",13251,12,6928],["2021-12-14",13251,16,6944],["2021-12-15",13251,16,6960],["2021-12-16",13251,14,6974],["2021-12-17",13251,20,6994],["2021-12-18",13251,4,6998],["2021-12-19",13251,3,7001],["2021-12-20",13251,14,7015],["2021-12-21",13251,15,7030],["2021-12-22",13251,29,7059],["2021-12-23",13251,12,7071],["2021-12-24",13251,3,7074],["2021-12-26",13251,1,7075],["2021-12-27",13251,18,7093],["2021-12-28",13251,9,7102],["2021-12-29",13251,5,7107],["2021-12-30",13251,11,7118],["2021-12-31",13251,11,7129],["2022-01-02",13251,1,7130],["2022-01-03",13251,2,7132]]} \ No newline at end of file diff --git a/public/data/overall/vaccinations/by-county/Chatham.json b/public/data/overall/vaccinations/by-county/Chatham.json new file mode 100644 index 000000000..83a75a016 --- /dev/null +++ b/public/data/overall/vaccinations/by-county/Chatham.json @@ -0,0 +1 @@ +{"segment":{"county":"Chatham"},"headers":["report_date","population","vaccinations","total_vaccinations"],"rows":[["2020-12-12",292176,1,1],["2020-12-14",292176,4,5],["2020-12-15",292176,78,83],["2020-12-16",292176,367,450],["2020-12-17",292176,228,678],["2020-12-18",292176,903,1581],["2020-12-19",292176,173,1754],["2020-12-20",292176,38,1792],["2020-12-21",292176,397,2189],["2020-12-22",292176,421,2610],["2020-12-23",292176,416,3026],["2020-12-24",292176,55,3081],["2020-12-26",292176,8,3089],["2020-12-27",292176,33,3122],["2020-12-28",292176,247,3369],["2020-12-29",292176,349,3718],["2020-12-30",292176,576,4294],["2020-12-31",292176,178,4472],["2021-01-01",292176,74,4546],["2021-01-02",292176,34,4580],["2021-01-03",292176,27,4607],["2021-01-04",292176,324,4931],["2021-01-05",292176,437,5368],["2021-01-06",292176,1377,6745],["2021-01-07",292176,1066,7811],["2021-01-08",292176,792,8603],["2021-01-09",292176,592,9195],["2021-01-10",292176,155,9350],["2021-01-11",292176,1601,10951],["2021-01-12",292176,1380,12331],["2021-01-13",292176,1409,13740],["2021-01-14",292176,2046,15786],["2021-01-15",292176,1281,17067],["2021-01-16",292176,612,17679],["2021-01-17",292176,524,18203],["2021-01-18",292176,1478,19681],["2021-01-19",292176,1843,21524],["2021-01-20",292176,1958,23482],["2021-01-21",292176,2069,25551],["2021-01-22",292176,1224,26775],["2021-01-23",292176,568,27343],["2021-01-24",292176,410,27753],["2021-01-25",292176,1334,29087],["2021-01-26",292176,1322,30409],["2021-01-27",292176,1620,32029],["2021-01-28",292176,2153,34182],["2021-01-29",292176,2280,36462],["2021-01-30",292176,1081,37543],["2021-01-31",292176,473,38016],["2021-02-01",292176,2817,40833],["2021-02-02",292176,2084,42917],["2021-02-03",292176,1396,44313],["2021-02-04",292176,2564,46877],["2021-02-05",292176,2058,48935],["2021-02-06",292176,889,49824],["2021-02-07",292176,271,50095],["2021-02-08",292176,2036,52131],["2021-02-09",292176,2086,54217],["2021-02-10",292176,1339,55556],["2021-02-11",292176,2250,57806],["2021-02-12",292176,1983,59789],["2021-02-13",292176,853,60642],["2021-02-14",292176,351,60993],["2021-02-15",292176,1967,62960],["2021-02-16",292176,2128,65088],["2021-02-17",292176,2095,67183],["2021-02-18",292176,2995,70178],["2021-02-19",292176,1600,71778],["2021-02-20",292176,901,72679],["2021-02-21",292176,389,73068],["2021-02-22",292176,1459,74527],["2021-02-23",292176,2027,76554],["2021-02-24",292176,1943,78497],["2021-02-25",292176,2518,81015],["2021-02-26",292176,1539,82554],["2021-02-27",292176,1031,83585],["2021-02-28",292176,473,84058],["2021-03-01",292176,1455,85513],["2021-03-02",292176,1966,87479],["2021-03-03",292176,1134,88613],["2021-03-04",292176,1787,90400],["2021-03-05",292176,1497,91897],["2021-03-06",292176,900,92797],["2021-03-07",292176,263,93060],["2021-03-08",292176,1709,94769],["2021-03-09",292176,2028,96797],["2021-03-10",292176,1691,98488],["2021-03-11",292176,2580,101068],["2021-03-12",292176,1780,102848],["2021-03-13",292176,2473,105321],["2021-03-14",292176,355,105676],["2021-03-15",292176,2155,107831],["2021-03-16",292176,2852,110683],["2021-03-17",292176,2066,112749],["2021-03-18",292176,2712,115461],["2021-03-19",292176,2395,117856],["2021-03-20",292176,1271,119127],["2021-03-21",292176,515,119642],["2021-03-22",292176,2161,121803],["2021-03-23",292176,3462,125265],["2021-03-24",292176,2820,128085],["2021-03-25",292176,3710,131795],["2021-03-26",292176,2197,133992],["2021-03-27",292176,1411,135403],["2021-03-28",292176,492,135895],["2021-03-29",292176,2132,138027],["2021-03-30",292176,3297,141324],["2021-03-31",292176,2683,144007],["2021-04-01",292176,3179,147186],["2021-04-02",292176,1591,148777],["2021-04-03",292176,692,149469],["2021-04-04",292176,398,149867],["2021-04-05",292176,2238,152105],["2021-04-06",292176,3114,155219],["2021-04-07",292176,2695,157914],["2021-04-08",292176,3376,161290],["2021-04-09",292176,2355,163645],["2021-04-10",292176,1881,165526],["2021-04-11",292176,447,165973],["2021-04-12",292176,2094,168067],["2021-04-13",292176,2677,170744],["2021-04-14",292176,2670,173414],["2021-04-15",292176,3464,176878],["2021-04-16",292176,2045,178923],["2021-04-17",292176,1566,180489],["2021-04-18",292176,381,180870],["2021-04-19",292176,1862,182732],["2021-04-20",292176,2685,185417],["2021-04-21",292176,2146,187563],["2021-04-22",292176,2709,190272],["2021-04-23",292176,2061,192333],["2021-04-24",292176,1081,193414],["2021-04-25",292176,271,193685],["2021-04-26",292176,1570,195255],["2021-04-27",292176,1960,197215],["2021-04-28",292176,1660,198875],["2021-04-29",292176,2323,201198],["2021-04-30",292176,1738,202936],["2021-05-01",292176,1025,203961],["2021-05-02",292176,284,204245],["2021-05-03",292176,1017,205262],["2021-05-04",292176,1430,206692],["2021-05-05",292176,1194,207886],["2021-05-06",292176,1871,209757],["2021-05-07",292176,1231,210988],["2021-05-08",292176,647,211635],["2021-05-09",292176,162,211797],["2021-05-10",292176,648,212445],["2021-05-11",292176,1031,213476],["2021-05-12",292176,804,214280],["2021-05-13",292176,1311,215591],["2021-05-14",292176,1167,216758],["2021-05-15",292176,825,217583],["2021-05-16",292176,274,217857],["2021-05-17",292176,917,218774],["2021-05-18",292176,1055,219829],["2021-05-19",292176,953,220782],["2021-05-20",292176,1135,221917],["2021-05-21",292176,977,222894],["2021-05-22",292176,512,223406],["2021-05-23",292176,264,223670],["2021-05-24",292176,697,224367],["2021-05-25",292176,720,225087],["2021-05-26",292176,661,225748],["2021-05-27",292176,856,226604],["2021-05-28",292176,637,227241],["2021-05-29",292176,384,227625],["2021-05-30",292176,170,227795],["2021-05-31",292176,86,227881],["2021-06-01",292176,1042,228923],["2021-06-02",292176,707,229630],["2021-06-03",292176,783,230413],["2021-06-04",292176,820,231233],["2021-06-05",292176,548,231781],["2021-06-06",292176,292,232073],["2021-06-07",292176,718,232791],["2021-06-08",292176,690,233481],["2021-06-09",292176,548,234029],["2021-06-10",292176,706,234735],["2021-06-11",292176,673,235408],["2021-06-12",292176,518,235926],["2021-06-13",292176,173,236099],["2021-06-14",292176,570,236669],["2021-06-15",292176,589,237258],["2021-06-16",292176,519,237777],["2021-06-17",292176,782,238559],["2021-06-18",292176,514,239073],["2021-06-19",292176,301,239374],["2021-06-20",292176,163,239537],["2021-06-21",292176,435,239972],["2021-06-22",292176,513,240485],["2021-06-23",292176,579,241064],["2021-06-24",292176,501,241565],["2021-06-25",292176,490,242055],["2021-06-26",292176,242,242297],["2021-06-27",292176,169,242466],["2021-06-28",292176,436,242902],["2021-06-29",292176,410,243312],["2021-06-30",292176,396,243708],["2021-07-01",292176,457,244165],["2021-07-02",292176,406,244571],["2021-07-03",292176,240,244811],["2021-07-04",292176,14,244825],["2021-07-05",292176,299,245124],["2021-07-06",292176,383,245507],["2021-07-07",292176,389,245896],["2021-07-08",292176,455,246351],["2021-07-09",292176,468,246819],["2021-07-10",292176,280,247099],["2021-07-11",292176,186,247285],["2021-07-12",292176,416,247701],["2021-07-13",292176,342,248043],["2021-07-14",292176,413,248456],["2021-07-15",292176,508,248964],["2021-07-16",292176,462,249426],["2021-07-17",292176,285,249711],["2021-07-18",292176,194,249905],["2021-07-19",292176,517,250422],["2021-07-20",292176,512,250934],["2021-07-21",292176,511,251445],["2021-07-22",292176,553,251998],["2021-07-23",292176,695,252693],["2021-07-24",292176,587,253280],["2021-07-25",292176,226,253506],["2021-07-26",292176,679,254185],["2021-07-27",292176,779,254964],["2021-07-28",292176,795,255759],["2021-07-29",292176,702,256461],["2021-07-30",292176,802,257263],["2021-07-31",292176,507,257770],["2021-08-01",292176,285,258055],["2021-08-02",292176,649,258704],["2021-08-03",292176,666,259370],["2021-08-04",292176,634,260004],["2021-08-05",292176,764,260768],["2021-08-06",292176,891,261659],["2021-08-07",292176,627,262286],["2021-08-08",292176,353,262639],["2021-08-09",292176,729,263368],["2021-08-10",292176,841,264209],["2021-08-11",292176,871,265080],["2021-08-12",292176,901,265981],["2021-08-13",292176,969,266950],["2021-08-14",292176,750,267700],["2021-08-15",292176,440,268140],["2021-08-16",292176,976,269116],["2021-08-17",292176,972,270088],["2021-08-18",292176,1210,271298],["2021-08-19",292176,1224,272522],["2021-08-20",292176,1274,273796],["2021-08-21",292176,787,274583],["2021-08-22",292176,365,274948],["2021-08-23",292176,1086,276034],["2021-08-24",292176,962,276996],["2021-08-25",292176,1077,278073],["2021-08-26",292176,1100,279173],["2021-08-27",292176,1311,280484],["2021-08-28",292176,609,281093],["2021-08-29",292176,449,281542],["2021-08-30",292176,1117,282659],["2021-08-31",292176,1008,283667],["2021-09-01",292176,1202,284869],["2021-09-02",292176,1102,285971],["2021-09-03",292176,1275,287246],["2021-09-04",292176,550,287796],["2021-09-05",292176,313,288109],["2021-09-06",292176,189,288298],["2021-09-07",292176,857,289155],["2021-09-08",292176,830,289985],["2021-09-09",292176,1011,290996],["2021-09-10",292176,1101,292097],["2021-09-11",292176,652,292749],["2021-09-12",292176,363,293112],["2021-09-13",292176,855,293967],["2021-09-14",292176,835,294802],["2021-09-15",292176,706,295508],["2021-09-16",292176,752,296260],["2021-09-17",292176,812,297072],["2021-09-18",292176,358,297430],["2021-09-19",292176,267,297697],["2021-09-20",292176,654,298351],["2021-09-21",292176,548,298899],["2021-09-22",292176,636,299535],["2021-09-23",292176,650,300185],["2021-09-24",292176,850,301035],["2021-09-25",292176,457,301492],["2021-09-26",292176,288,301780],["2021-09-27",292176,959,302739],["2021-09-28",292176,1092,303831],["2021-09-29",292176,957,304788],["2021-09-30",292176,1168,305956],["2021-10-01",292176,1217,307173],["2021-10-02",292176,411,307584],["2021-10-03",292176,254,307838],["2021-10-04",292176,906,308744],["2021-10-05",292176,836,309580],["2021-10-06",292176,777,310357],["2021-10-07",292176,749,311106],["2021-10-08",292176,966,312072],["2021-10-09",292176,325,312397],["2021-10-10",292176,245,312642],["2021-10-11",292176,481,313123],["2021-10-12",292176,675,313798],["2021-10-13",292176,591,314389],["2021-10-14",292176,674,315063],["2021-10-15",292176,771,315834],["2021-10-16",292176,213,316047],["2021-10-17",292176,143,316190],["2021-10-18",292176,577,316767],["2021-10-19",292176,468,317235],["2021-10-20",292176,633,317868],["2021-10-21",292176,624,318492],["2021-10-22",292176,854,319346],["2021-10-23",292176,431,319777],["2021-10-24",292176,331,320108],["2021-10-25",292176,946,321054],["2021-10-26",292176,772,321826],["2021-10-27",292176,814,322640],["2021-10-28",292176,805,323445],["2021-10-29",292176,1120,324565],["2021-10-30",292176,351,324916],["2021-10-31",292176,226,325142],["2021-11-01",292176,734,325876],["2021-11-02",292176,771,326647],["2021-11-03",292176,656,327303],["2021-11-04",292176,834,328137],["2021-11-05",292176,839,328976],["2021-11-06",292176,365,329341],["2021-11-07",292176,294,329635],["2021-11-08",292176,672,330307],["2021-11-09",292176,711,331018],["2021-11-10",292176,848,331866],["2021-11-11",292176,619,332485],["2021-11-12",292176,1049,333534],["2021-11-13",292176,950,334484],["2021-11-14",292176,240,334724],["2021-11-15",292176,746,335470],["2021-11-16",292176,881,336351],["2021-11-17",292176,773,337124],["2021-11-18",292176,830,337954],["2021-11-19",292176,975,338929],["2021-11-20",292176,537,339466],["2021-11-21",292176,375,339841],["2021-11-22",292176,1001,340842],["2021-11-23",292176,988,341830],["2021-11-24",292176,553,342383],["2021-11-25",292176,1,342384],["2021-11-26",292176,535,342919],["2021-11-27",292176,441,343360],["2021-11-28",292176,327,343687],["2021-11-29",292176,1019,344706],["2021-11-30",292176,1073,345779],["2021-12-01",292176,1218,346997],["2021-12-02",292176,1494,348491],["2021-12-03",292176,1367,349858],["2021-12-04",292176,960,350818],["2021-12-05",292176,329,351147],["2021-12-06",292176,951,352098],["2021-12-07",292176,891,352989],["2021-12-08",292176,1010,353999],["2021-12-09",292176,1012,355011],["2021-12-10",292176,1015,356026],["2021-12-11",292176,495,356521],["2021-12-12",292176,301,356822],["2021-12-13",292176,778,357600],["2021-12-14",292176,756,358356],["2021-12-15",292176,765,359121],["2021-12-16",292176,783,359904],["2021-12-17",292176,949,360853],["2021-12-18",292176,513,361366],["2021-12-19",292176,371,361737],["2021-12-20",292176,1111,362848],["2021-12-21",292176,997,363845],["2021-12-22",292176,1019,364864],["2021-12-23",292176,696,365560],["2021-12-24",292176,220,365780],["2021-12-26",292176,279,366059],["2021-12-27",292176,834,366893],["2021-12-28",292176,809,367702],["2021-12-29",292176,836,368538],["2021-12-30",292176,856,369394],["2021-12-31",292176,330,369724],["2022-01-01",292176,47,369771],["2022-01-02",292176,307,370078],["2022-01-03",292176,272,370350]]} \ No newline at end of file diff --git a/public/data/overall/vaccinations/by-county/Chattahoochee.json b/public/data/overall/vaccinations/by-county/Chattahoochee.json new file mode 100644 index 000000000..da35e4974 --- /dev/null +++ b/public/data/overall/vaccinations/by-county/Chattahoochee.json @@ -0,0 +1 @@ +{"segment":{"county":"Chattahoochee"},"headers":["report_date","population","vaccinations","total_vaccinations"],"rows":[["2020-12-21",10749,1,1],["2020-12-22",10749,1,2],["2020-12-23",10749,3,5],["2020-12-24",10749,1,6],["2020-12-26",10749,2,8],["2020-12-28",10749,1,9],["2020-12-29",10749,10,19],["2020-12-30",10749,8,27],["2020-12-31",10749,3,30],["2021-01-04",10749,9,39],["2021-01-05",10749,4,43],["2021-01-06",10749,3,46],["2021-01-07",10749,7,53],["2021-01-08",10749,3,56],["2021-01-09",10749,1,57],["2021-01-11",10749,5,62],["2021-01-12",10749,27,89],["2021-01-13",10749,4,93],["2021-01-14",10749,5,98],["2021-01-15",10749,6,104],["2021-01-16",10749,5,109],["2021-01-17",10749,1,110],["2021-01-18",10749,6,116],["2021-01-19",10749,31,147],["2021-01-20",10749,7,154],["2021-01-21",10749,13,167],["2021-01-22",10749,2,169],["2021-01-23",10749,4,173],["2021-01-25",10749,9,182],["2021-01-26",10749,36,218],["2021-01-27",10749,4,222],["2021-01-28",10749,6,228],["2021-01-29",10749,6,234],["2021-02-01",10749,8,242],["2021-02-02",10749,4,246],["2021-02-03",10749,3,249],["2021-02-04",10749,8,257],["2021-02-05",10749,7,264],["2021-02-06",10749,1,265],["2021-02-07",10749,1,266],["2021-02-08",10749,6,272],["2021-02-09",10749,21,293],["2021-02-10",10749,2,295],["2021-02-11",10749,12,307],["2021-02-12",10749,7,314],["2021-02-13",10749,2,316],["2021-02-15",10749,13,329],["2021-02-16",10749,35,364],["2021-02-17",10749,5,369],["2021-02-18",10749,6,375],["2021-02-19",10749,5,380],["2021-02-21",10749,1,381],["2021-02-22",10749,8,389],["2021-02-23",10749,129,518],["2021-02-24",10749,12,530],["2021-02-25",10749,2,532],["2021-02-26",10749,18,550],["2021-02-27",10749,1,551],["2021-03-01",10749,3,554],["2021-03-02",10749,3,557],["2021-03-03",10749,10,567],["2021-03-04",10749,7,574],["2021-03-05",10749,11,585],["2021-03-06",10749,1,586],["2021-03-08",10749,2,588],["2021-03-09",10749,10,598],["2021-03-10",10749,5,603],["2021-03-11",10749,33,636],["2021-03-12",10749,14,650],["2021-03-13",10749,4,654],["2021-03-14",10749,3,657],["2021-03-15",10749,13,670],["2021-03-16",10749,47,717],["2021-03-17",10749,21,738],["2021-03-18",10749,13,751],["2021-03-19",10749,19,770],["2021-03-20",10749,8,778],["2021-03-21",10749,4,782],["2021-03-22",10749,14,796],["2021-03-23",10749,116,912],["2021-03-24",10749,14,926],["2021-03-25",10749,42,968],["2021-03-26",10749,40,1008],["2021-03-27",10749,6,1014],["2021-03-28",10749,3,1017],["2021-03-29",10749,26,1043],["2021-03-30",10749,33,1076],["2021-03-31",10749,25,1101],["2021-04-01",10749,28,1129],["2021-04-02",10749,46,1175],["2021-04-03",10749,7,1182],["2021-04-04",10749,3,1185],["2021-04-05",10749,24,1209],["2021-04-06",10749,89,1298],["2021-04-07",10749,25,1323],["2021-04-08",10749,34,1357],["2021-04-09",10749,53,1410],["2021-04-10",10749,7,1417],["2021-04-11",10749,8,1425],["2021-04-12",10749,31,1456],["2021-04-13",10749,53,1509],["2021-04-14",10749,28,1537],["2021-04-15",10749,28,1565],["2021-04-16",10749,31,1596],["2021-04-17",10749,6,1602],["2021-04-18",10749,7,1609],["2021-04-19",10749,45,1654],["2021-04-20",10749,48,1702],["2021-04-21",10749,20,1722],["2021-04-22",10749,26,1748],["2021-04-23",10749,27,1775],["2021-04-24",10749,8,1783],["2021-04-25",10749,5,1788],["2021-04-26",10749,34,1822],["2021-04-27",10749,23,1845],["2021-04-28",10749,32,1877],["2021-04-29",10749,25,1902],["2021-04-30",10749,42,1944],["2021-05-01",10749,11,1955],["2021-05-02",10749,1,1956],["2021-05-03",10749,18,1974],["2021-05-04",10749,79,2053],["2021-05-05",10749,18,2071],["2021-05-06",10749,19,2090],["2021-05-07",10749,22,2112],["2021-05-08",10749,32,2144],["2021-05-09",10749,1,2145],["2021-05-10",10749,13,2158],["2021-05-11",10749,23,2181],["2021-05-12",10749,160,2341],["2021-05-13",10749,33,2374],["2021-05-14",10749,20,2394],["2021-05-15",10749,10,2404],["2021-05-16",10749,15,2419],["2021-05-17",10749,27,2446],["2021-05-18",10749,35,2481],["2021-05-19",10749,13,2494],["2021-05-20",10749,19,2513],["2021-05-21",10749,19,2532],["2021-05-22",10749,13,2545],["2021-05-23",10749,7,2552],["2021-05-24",10749,4,2556],["2021-05-25",10749,16,2572],["2021-05-26",10749,7,2579],["2021-05-27",10749,10,2589],["2021-05-28",10749,10,2599],["2021-05-29",10749,2,2601],["2021-05-30",10749,5,2606],["2021-05-31",10749,2,2608],["2021-06-01",10749,11,2619],["2021-06-02",10749,9,2628],["2021-06-03",10749,7,2635],["2021-06-04",10749,9,2644],["2021-06-05",10749,11,2655],["2021-06-06",10749,11,2666],["2021-06-07",10749,14,2680],["2021-06-08",10749,25,2705],["2021-06-09",10749,7,2712],["2021-06-10",10749,13,2725],["2021-06-11",10749,8,2733],["2021-06-12",10749,9,2742],["2021-06-13",10749,3,2745],["2021-06-14",10749,11,2756],["2021-06-15",10749,10,2766],["2021-06-16",10749,8,2774],["2021-06-17",10749,5,2779],["2021-06-18",10749,7,2786],["2021-06-19",10749,6,2792],["2021-06-20",10749,5,2797],["2021-06-21",10749,6,2803],["2021-06-22",10749,15,2818],["2021-06-23",10749,9,2827],["2021-06-24",10749,7,2834],["2021-06-25",10749,5,2839],["2021-06-26",10749,12,2851],["2021-06-27",10749,2,2853],["2021-06-28",10749,5,2858],["2021-06-29",10749,9,2867],["2021-06-30",10749,10,2877],["2021-07-01",10749,10,2887],["2021-07-02",10749,1,2888],["2021-07-03",10749,2,2890],["2021-07-05",10749,9,2899],["2021-07-06",10749,15,2914],["2021-07-07",10749,4,2918],["2021-07-08",10749,5,2923],["2021-07-09",10749,155,3078],["2021-07-10",10749,4,3082],["2021-07-11",10749,2,3084],["2021-07-12",10749,5,3089],["2021-07-13",10749,21,3110],["2021-07-14",10749,4,3114],["2021-07-15",10749,4,3118],["2021-07-16",10749,13,3131],["2021-07-17",10749,4,3135],["2021-07-18",10749,2,3137],["2021-07-19",10749,14,3151],["2021-07-20",10749,7,3158],["2021-07-21",10749,15,3173],["2021-07-22",10749,15,3188],["2021-07-23",10749,4,3192],["2021-07-24",10749,2,3194],["2021-07-25",10749,1,3195],["2021-07-26",10749,10,3205],["2021-07-27",10749,13,3218],["2021-07-28",10749,13,3231],["2021-07-29",10749,14,3245],["2021-07-30",10749,11,3256],["2021-07-31",10749,4,3260],["2021-08-01",10749,4,3264],["2021-08-02",10749,6,3270],["2021-08-03",10749,16,3286],["2021-08-04",10749,9,3295],["2021-08-05",10749,9,3304],["2021-08-06",10749,15,3319],["2021-08-07",10749,3,3322],["2021-08-08",10749,6,3328],["2021-08-09",10749,11,3339],["2021-08-10",10749,7,3346],["2021-08-11",10749,11,3357],["2021-08-12",10749,17,3374],["2021-08-13",10749,8,3382],["2021-08-14",10749,12,3394],["2021-08-15",10749,5,3399],["2021-08-16",10749,17,3416],["2021-08-17",10749,9,3425],["2021-08-18",10749,8,3433],["2021-08-19",10749,16,3449],["2021-08-20",10749,19,3468],["2021-08-21",10749,7,3475],["2021-08-22",10749,6,3481],["2021-08-23",10749,10,3491],["2021-08-24",10749,13,3504],["2021-08-25",10749,12,3516],["2021-08-26",10749,12,3528],["2021-08-27",10749,18,3546],["2021-08-28",10749,7,3553],["2021-08-29",10749,8,3561],["2021-08-30",10749,11,3572],["2021-08-31",10749,17,3589],["2021-09-01",10749,12,3601],["2021-09-02",10749,16,3617],["2021-09-03",10749,7,3624],["2021-09-04",10749,11,3635],["2021-09-05",10749,2,3637],["2021-09-06",10749,1,3638],["2021-09-07",10749,16,3654],["2021-09-08",10749,10,3664],["2021-09-09",10749,14,3678],["2021-09-10",10749,15,3693],["2021-09-11",10749,7,3700],["2021-09-12",10749,2,3702],["2021-09-13",10749,19,3721],["2021-09-14",10749,19,3740],["2021-09-15",10749,11,3751],["2021-09-16",10749,7,3758],["2021-09-17",10749,12,3770],["2021-09-18",10749,7,3777],["2021-09-19",10749,3,3780],["2021-09-20",10749,8,3788],["2021-09-21",10749,9,3797],["2021-09-22",10749,4,3801],["2021-09-23",10749,7,3808],["2021-09-24",10749,10,3818],["2021-09-25",10749,9,3827],["2021-09-26",10749,5,3832],["2021-09-27",10749,5,3837],["2021-09-28",10749,9,3846],["2021-09-29",10749,7,3853],["2021-09-30",10749,3,3856],["2021-10-01",10749,7,3863],["2021-10-02",10749,3,3866],["2021-10-03",10749,1,3867],["2021-10-04",10749,10,3877],["2021-10-05",10749,8,3885],["2021-10-06",10749,5,3890],["2021-10-07",10749,7,3897],["2021-10-08",10749,8,3905],["2021-10-09",10749,3,3908],["2021-10-10",10749,1,3909],["2021-10-11",10749,9,3918],["2021-10-12",10749,6,3924],["2021-10-13",10749,1,3925],["2021-10-14",10749,6,3931],["2021-10-15",10749,12,3943],["2021-10-16",10749,4,3947],["2021-10-17",10749,1,3948],["2021-10-18",10749,3,3951],["2021-10-19",10749,6,3957],["2021-10-20",10749,3,3960],["2021-10-21",10749,1,3961],["2021-10-22",10749,13,3974],["2021-10-23",10749,3,3977],["2021-10-24",10749,6,3983],["2021-10-25",10749,13,3996],["2021-10-26",10749,17,4013],["2021-10-27",10749,7,4020],["2021-10-28",10749,6,4026],["2021-10-29",10749,42,4068],["2021-10-30",10749,7,4075],["2021-10-31",10749,1,4076],["2021-11-01",10749,12,4088],["2021-11-02",10749,18,4106],["2021-11-03",10749,6,4112],["2021-11-04",10749,6,4118],["2021-11-05",10749,33,4151],["2021-11-06",10749,5,4156],["2021-11-07",10749,6,4162],["2021-11-08",10749,9,4171],["2021-11-09",10749,19,4190],["2021-11-10",10749,12,4202],["2021-11-11",10749,4,4206],["2021-11-12",10749,15,4221],["2021-11-13",10749,1,4222],["2021-11-14",10749,4,4226],["2021-11-15",10749,4,4230],["2021-11-16",10749,30,4260],["2021-11-17",10749,7,4267],["2021-11-18",10749,11,4278],["2021-11-19",10749,16,4294],["2021-11-20",10749,7,4301],["2021-11-21",10749,4,4305],["2021-11-22",10749,19,4324],["2021-11-23",10749,17,4341],["2021-11-24",10749,7,4348],["2021-11-26",10749,3,4351],["2021-11-27",10749,6,4357],["2021-11-28",10749,7,4364],["2021-11-29",10749,14,4378],["2021-11-30",10749,11,4389],["2021-12-01",10749,12,4401],["2021-12-02",10749,11,4412],["2021-12-03",10749,28,4440],["2021-12-04",10749,11,4451],["2021-12-05",10749,5,4456],["2021-12-06",10749,11,4467],["2021-12-07",10749,31,4498],["2021-12-08",10749,8,4506],["2021-12-09",10749,10,4516],["2021-12-10",10749,20,4536],["2021-12-11",10749,8,4544],["2021-12-12",10749,7,4551],["2021-12-13",10749,7,4558],["2021-12-14",10749,12,4570],["2021-12-15",10749,6,4576],["2021-12-16",10749,9,4585],["2021-12-17",10749,12,4597],["2021-12-18",10749,6,4603],["2021-12-19",10749,3,4606],["2021-12-20",10749,3,4609],["2021-12-21",10749,24,4633],["2021-12-22",10749,8,4641],["2021-12-23",10749,2,4643],["2021-12-24",10749,1,4644],["2021-12-26",10749,6,4650],["2021-12-27",10749,9,4659],["2021-12-28",10749,18,4677],["2021-12-29",10749,10,4687],["2021-12-30",10749,6,4693],["2021-12-31",10749,5,4698],["2022-01-01",10749,2,4700],["2022-01-02",10749,2,4702],["2022-01-03",10749,5,4707]]} \ No newline at end of file diff --git a/public/data/overall/vaccinations/by-county/Chattooga.json b/public/data/overall/vaccinations/by-county/Chattooga.json new file mode 100644 index 000000000..e121d7c2a --- /dev/null +++ b/public/data/overall/vaccinations/by-county/Chattooga.json @@ -0,0 +1 @@ +{"segment":{"county":"Chattooga"},"headers":["report_date","population","vaccinations","total_vaccinations"],"rows":[["2020-12-18",24766,4,4],["2020-12-20",24766,4,8],["2020-12-21",24766,17,25],["2020-12-22",24766,11,36],["2020-12-23",24766,24,60],["2020-12-26",24766,2,62],["2020-12-27",24766,2,64],["2020-12-28",24766,31,95],["2020-12-29",24766,30,125],["2020-12-30",24766,41,166],["2020-12-31",24766,55,221],["2021-01-01",24766,1,222],["2021-01-02",24766,6,228],["2021-01-03",24766,12,240],["2021-01-04",24766,88,328],["2021-01-05",24766,65,393],["2021-01-06",24766,58,451],["2021-01-07",24766,83,534],["2021-01-08",24766,58,592],["2021-01-09",24766,2,594],["2021-01-10",24766,9,603],["2021-01-11",24766,217,820],["2021-01-12",24766,218,1038],["2021-01-13",24766,159,1197],["2021-01-14",24766,271,1468],["2021-01-15",24766,132,1600],["2021-01-16",24766,6,1606],["2021-01-18",24766,59,1665],["2021-01-19",24766,174,1839],["2021-01-20",24766,171,2010],["2021-01-21",24766,193,2203],["2021-01-22",24766,84,2287],["2021-01-23",24766,1,2288],["2021-01-24",24766,3,2291],["2021-01-25",24766,152,2443],["2021-01-26",24766,130,2573],["2021-01-27",24766,122,2695],["2021-01-28",24766,131,2826],["2021-01-29",24766,86,2912],["2021-01-30",24766,2,2914],["2021-01-31",24766,1,2915],["2021-02-01",24766,223,3138],["2021-02-02",24766,112,3250],["2021-02-03",24766,201,3451],["2021-02-04",24766,179,3630],["2021-02-05",24766,127,3757],["2021-02-06",24766,24,3781],["2021-02-07",24766,1,3782],["2021-02-08",24766,173,3955],["2021-02-09",24766,161,4116],["2021-02-10",24766,160,4276],["2021-02-11",24766,184,4460],["2021-02-12",24766,153,4613],["2021-02-13",24766,23,4636],["2021-02-14",24766,3,4639],["2021-02-15",24766,176,4815],["2021-02-16",24766,20,4835],["2021-02-17",24766,172,5007],["2021-02-18",24766,211,5218],["2021-02-19",24766,160,5378],["2021-02-20",24766,2,5380],["2021-02-21",24766,1,5381],["2021-02-22",24766,155,5536],["2021-02-23",24766,170,5706],["2021-02-24",24766,134,5840],["2021-02-25",24766,196,6036],["2021-02-26",24766,96,6132],["2021-02-27",24766,6,6138],["2021-02-28",24766,5,6143],["2021-03-01",24766,134,6277],["2021-03-02",24766,87,6364],["2021-03-03",24766,88,6452],["2021-03-04",24766,119,6571],["2021-03-05",24766,83,6654],["2021-03-06",24766,19,6673],["2021-03-07",24766,4,6677],["2021-03-08",24766,181,6858],["2021-03-09",24766,72,6930],["2021-03-10",24766,91,7021],["2021-03-11",24766,97,7118],["2021-03-12",24766,113,7231],["2021-03-13",24766,13,7244],["2021-03-14",24766,11,7255],["2021-03-15",24766,150,7405],["2021-03-16",24766,144,7549],["2021-03-17",24766,67,7616],["2021-03-18",24766,173,7789],["2021-03-19",24766,153,7942],["2021-03-20",24766,10,7952],["2021-03-21",24766,2,7954],["2021-03-22",24766,64,8018],["2021-03-23",24766,65,8083],["2021-03-24",24766,88,8171],["2021-03-25",24766,78,8249],["2021-03-26",24766,177,8426],["2021-03-27",24766,15,8441],["2021-03-28",24766,4,8445],["2021-03-29",24766,99,8544],["2021-03-30",24766,111,8655],["2021-03-31",24766,133,8788],["2021-04-01",24766,184,8972],["2021-04-02",24766,172,9144],["2021-04-03",24766,20,9164],["2021-04-04",24766,7,9171],["2021-04-05",24766,79,9250],["2021-04-06",24766,116,9366],["2021-04-07",24766,104,9470],["2021-04-08",24766,83,9553],["2021-04-09",24766,139,9692],["2021-04-10",24766,12,9704],["2021-04-11",24766,15,9719],["2021-04-12",24766,70,9789],["2021-04-13",24766,118,9907],["2021-04-14",24766,175,10082],["2021-04-15",24766,197,10279],["2021-04-16",24766,222,10501],["2021-04-17",24766,9,10510],["2021-04-18",24766,2,10512],["2021-04-19",24766,68,10580],["2021-04-20",24766,80,10660],["2021-04-21",24766,122,10782],["2021-04-22",24766,155,10937],["2021-04-23",24766,139,11076],["2021-04-24",24766,18,11094],["2021-04-25",24766,10,11104],["2021-04-26",24766,139,11243],["2021-04-27",24766,71,11314],["2021-04-28",24766,180,11494],["2021-04-29",24766,108,11602],["2021-04-30",24766,121,11723],["2021-05-01",24766,16,11739],["2021-05-02",24766,9,11748],["2021-05-03",24766,46,11794],["2021-05-04",24766,104,11898],["2021-05-05",24766,123,12021],["2021-05-06",24766,57,12078],["2021-05-07",24766,127,12205],["2021-05-08",24766,14,12219],["2021-05-09",24766,7,12226],["2021-05-10",24766,33,12259],["2021-05-11",24766,56,12315],["2021-05-12",24766,84,12399],["2021-05-13",24766,120,12519],["2021-05-14",24766,55,12574],["2021-05-15",24766,12,12586],["2021-05-16",24766,14,12600],["2021-05-17",24766,37,12637],["2021-05-18",24766,45,12682],["2021-05-19",24766,67,12749],["2021-05-20",24766,123,12872],["2021-05-21",24766,107,12979],["2021-05-22",24766,19,12998],["2021-05-23",24766,11,13009],["2021-05-24",24766,41,13050],["2021-05-25",24766,43,13093],["2021-05-26",24766,55,13148],["2021-05-27",24766,84,13232],["2021-05-28",24766,46,13278],["2021-05-29",24766,16,13294],["2021-05-30",24766,7,13301],["2021-05-31",24766,8,13309],["2021-06-01",24766,46,13355],["2021-06-02",24766,34,13389],["2021-06-03",24766,58,13447],["2021-06-04",24766,37,13484],["2021-06-05",24766,9,13493],["2021-06-06",24766,12,13505],["2021-06-07",24766,16,13521],["2021-06-08",24766,15,13536],["2021-06-09",24766,31,13567],["2021-06-10",24766,102,13669],["2021-06-11",24766,40,13709],["2021-06-12",24766,19,13728],["2021-06-13",24766,6,13734],["2021-06-14",24766,26,13760],["2021-06-15",24766,36,13796],["2021-06-16",24766,33,13829],["2021-06-17",24766,29,13858],["2021-06-18",24766,83,13941],["2021-06-19",24766,13,13954],["2021-06-20",24766,6,13960],["2021-06-21",24766,13,13973],["2021-06-22",24766,16,13989],["2021-06-23",24766,22,14011],["2021-06-24",24766,41,14052],["2021-06-25",24766,54,14106],["2021-06-26",24766,10,14116],["2021-06-27",24766,4,14120],["2021-06-28",24766,16,14136],["2021-06-29",24766,29,14165],["2021-06-30",24766,16,14181],["2021-07-01",24766,25,14206],["2021-07-02",24766,31,14237],["2021-07-03",24766,5,14242],["2021-07-04",24766,2,14244],["2021-07-05",24766,7,14251],["2021-07-06",24766,23,14274],["2021-07-07",24766,19,14293],["2021-07-08",24766,26,14319],["2021-07-09",24766,23,14342],["2021-07-10",24766,15,14357],["2021-07-11",24766,2,14359],["2021-07-12",24766,8,14367],["2021-07-13",24766,13,14380],["2021-07-14",24766,34,14414],["2021-07-15",24766,20,14434],["2021-07-16",24766,15,14449],["2021-07-17",24766,9,14458],["2021-07-18",24766,9,14467],["2021-07-19",24766,15,14482],["2021-07-20",24766,18,14500],["2021-07-21",24766,29,14529],["2021-07-22",24766,56,14585],["2021-07-23",24766,49,14634],["2021-07-24",24766,30,14664],["2021-07-25",24766,4,14668],["2021-07-26",24766,20,14688],["2021-07-27",24766,32,14720],["2021-07-28",24766,36,14756],["2021-07-29",24766,55,14811],["2021-07-30",24766,55,14866],["2021-07-31",24766,26,14892],["2021-08-01",24766,15,14907],["2021-08-02",24766,29,14936],["2021-08-03",24766,42,14978],["2021-08-04",24766,40,15018],["2021-08-05",24766,56,15074],["2021-08-06",24766,58,15132],["2021-08-07",24766,17,15149],["2021-08-08",24766,3,15152],["2021-08-09",24766,32,15184],["2021-08-10",24766,49,15233],["2021-08-11",24766,44,15277],["2021-08-12",24766,56,15333],["2021-08-13",24766,61,15394],["2021-08-14",24766,22,15416],["2021-08-15",24766,14,15430],["2021-08-16",24766,33,15463],["2021-08-17",24766,36,15499],["2021-08-18",24766,56,15555],["2021-08-19",24766,77,15632],["2021-08-20",24766,81,15713],["2021-08-21",24766,50,15763],["2021-08-22",24766,23,15786],["2021-08-23",24766,36,15822],["2021-08-24",24766,57,15879],["2021-08-25",24766,62,15941],["2021-08-26",24766,62,16003],["2021-08-27",24766,113,16116],["2021-08-28",24766,39,16155],["2021-08-29",24766,29,16184],["2021-08-30",24766,54,16238],["2021-08-31",24766,63,16301],["2021-09-01",24766,75,16376],["2021-09-02",24766,120,16496],["2021-09-03",24766,94,16590],["2021-09-04",24766,33,16623],["2021-09-05",24766,26,16649],["2021-09-06",24766,48,16697],["2021-09-07",24766,85,16782],["2021-09-08",24766,67,16849],["2021-09-09",24766,104,16953],["2021-09-10",24766,114,17067],["2021-09-11",24766,31,17098],["2021-09-12",24766,30,17128],["2021-09-13",24766,52,17180],["2021-09-14",24766,42,17222],["2021-09-15",24766,54,17276],["2021-09-16",24766,96,17372],["2021-09-17",24766,111,17483],["2021-09-18",24766,46,17529],["2021-09-19",24766,22,17551],["2021-09-20",24766,42,17593],["2021-09-21",24766,52,17645],["2021-09-22",24766,57,17702],["2021-09-23",24766,60,17762],["2021-09-24",24766,81,17843],["2021-09-25",24766,21,17864],["2021-09-26",24766,15,17879],["2021-09-27",24766,43,17922],["2021-09-28",24766,51,17973],["2021-09-29",24766,40,18013],["2021-09-30",24766,92,18105],["2021-10-01",24766,79,18184],["2021-10-02",24766,32,18216],["2021-10-03",24766,17,18233],["2021-10-04",24766,37,18270],["2021-10-05",24766,62,18332],["2021-10-06",24766,36,18368],["2021-10-07",24766,61,18429],["2021-10-08",24766,50,18479],["2021-10-09",24766,12,18491],["2021-10-10",24766,9,18500],["2021-10-11",24766,23,18523],["2021-10-12",24766,23,18546],["2021-10-13",24766,39,18585],["2021-10-14",24766,40,18625],["2021-10-15",24766,38,18663],["2021-10-16",24766,9,18672],["2021-10-17",24766,7,18679],["2021-10-18",24766,20,18699],["2021-10-19",24766,24,18723],["2021-10-20",24766,12,18735],["2021-10-21",24766,30,18765],["2021-10-22",24766,54,18819],["2021-10-23",24766,33,18852],["2021-10-24",24766,17,18869],["2021-10-25",24766,37,18906],["2021-10-26",24766,103,19009],["2021-10-27",24766,133,19142],["2021-10-28",24766,82,19224],["2021-10-29",24766,170,19394],["2021-10-30",24766,16,19410],["2021-10-31",24766,3,19413],["2021-11-01",24766,97,19510],["2021-11-02",24766,148,19658],["2021-11-03",24766,116,19774],["2021-11-04",24766,60,19834],["2021-11-05",24766,108,19942],["2021-11-06",24766,20,19962],["2021-11-07",24766,7,19969],["2021-11-08",24766,98,20067],["2021-11-09",24766,57,20124],["2021-11-10",24766,104,20228],["2021-11-11",24766,17,20245],["2021-11-12",24766,103,20348],["2021-11-13",24766,11,20359],["2021-11-14",24766,11,20370],["2021-11-15",24766,57,20427],["2021-11-16",24766,37,20464],["2021-11-17",24766,80,20544],["2021-11-18",24766,63,20607],["2021-11-19",24766,132,20739],["2021-11-20",24766,19,20758],["2021-11-21",24766,7,20765],["2021-11-22",24766,72,20837],["2021-11-23",24766,57,20894],["2021-11-24",24766,55,20949],["2021-11-26",24766,15,20964],["2021-11-27",24766,15,20979],["2021-11-28",24766,7,20986],["2021-11-29",24766,67,21053],["2021-11-30",24766,56,21109],["2021-12-01",24766,89,21198],["2021-12-02",24766,78,21276],["2021-12-03",24766,133,21409],["2021-12-04",24766,21,21430],["2021-12-05",24766,7,21437],["2021-12-06",24766,64,21501],["2021-12-07",24766,37,21538],["2021-12-08",24766,42,21580],["2021-12-09",24766,88,21668],["2021-12-10",24766,103,21771],["2021-12-11",24766,15,21786],["2021-12-12",24766,3,21789],["2021-12-13",24766,39,21828],["2021-12-14",24766,34,21862],["2021-12-15",24766,80,21942],["2021-12-16",24766,52,21994],["2021-12-17",24766,71,22065],["2021-12-18",24766,16,22081],["2021-12-19",24766,12,22093],["2021-12-20",24766,48,22141],["2021-12-21",24766,53,22194],["2021-12-22",24766,41,22235],["2021-12-23",24766,25,22260],["2021-12-24",24766,4,22264],["2021-12-26",24766,4,22268],["2021-12-27",24766,56,22324],["2021-12-28",24766,46,22370],["2021-12-29",24766,55,22425],["2021-12-30",24766,48,22473],["2021-12-31",24766,15,22488],["2022-01-01",24766,8,22496],["2022-01-02",24766,11,22507],["2022-01-03",24766,10,22517]]} \ No newline at end of file diff --git a/public/data/overall/vaccinations/by-county/Cherokee.json b/public/data/overall/vaccinations/by-county/Cherokee.json new file mode 100644 index 000000000..51f8c6db8 --- /dev/null +++ b/public/data/overall/vaccinations/by-county/Cherokee.json @@ -0,0 +1 @@ +{"segment":{"county":"Cherokee"},"headers":["report_date","population","vaccinations","total_vaccinations"],"rows":[["2020-12-12",266617,1,1],["2020-12-13",266617,1,2],["2020-12-16",266617,5,7],["2020-12-17",266617,22,29],["2020-12-18",266617,110,139],["2020-12-19",266617,34,173],["2020-12-20",266617,79,252],["2020-12-21",266617,109,361],["2020-12-22",266617,252,613],["2020-12-23",266617,260,873],["2020-12-24",266617,30,903],["2020-12-26",266617,26,929],["2020-12-27",266617,45,974],["2020-12-28",266617,362,1336],["2020-12-29",266617,482,1818],["2020-12-30",266617,440,2258],["2020-12-31",266617,177,2435],["2021-01-01",266617,225,2660],["2021-01-02",266617,59,2719],["2021-01-03",266617,65,2784],["2021-01-04",266617,336,3120],["2021-01-05",266617,541,3661],["2021-01-06",266617,462,4123],["2021-01-07",266617,457,4580],["2021-01-08",266617,456,5036],["2021-01-09",266617,118,5154],["2021-01-10",266617,211,5365],["2021-01-11",266617,979,6344],["2021-01-12",266617,1073,7417],["2021-01-13",266617,968,8385],["2021-01-14",266617,948,9333],["2021-01-15",266617,921,10254],["2021-01-16",266617,540,10794],["2021-01-17",266617,255,11049],["2021-01-18",266617,1492,12541],["2021-01-19",266617,1680,14221],["2021-01-20",266617,1556,15777],["2021-01-21",266617,1416,17193],["2021-01-22",266617,1087,18280],["2021-01-23",266617,194,18474],["2021-01-24",266617,143,18617],["2021-01-25",266617,1256,19873],["2021-01-26",266617,1266,21139],["2021-01-27",266617,1249,22388],["2021-01-28",266617,1806,24194],["2021-01-29",266617,1244,25438],["2021-01-30",266617,256,25694],["2021-01-31",266617,216,25910],["2021-02-01",266617,1594,27504],["2021-02-02",266617,1284,28788],["2021-02-03",266617,1101,29889],["2021-02-04",266617,1201,31090],["2021-02-05",266617,1052,32142],["2021-02-06",266617,220,32362],["2021-02-07",266617,89,32451],["2021-02-08",266617,1196,33647],["2021-02-09",266617,1861,35508],["2021-02-10",266617,1498,37006],["2021-02-11",266617,1570,38576],["2021-02-12",266617,1446,40022],["2021-02-13",266617,624,40646],["2021-02-14",266617,309,40955],["2021-02-15",266617,1458,42413],["2021-02-16",266617,1540,43953],["2021-02-17",266617,1554,45507],["2021-02-18",266617,1292,46799],["2021-02-19",266617,1095,47894],["2021-02-20",266617,319,48213],["2021-02-21",266617,170,48383],["2021-02-22",266617,1015,49398],["2021-02-23",266617,1444,50842],["2021-02-24",266617,1499,52341],["2021-02-25",266617,2389,54730],["2021-02-26",266617,2260,56990],["2021-02-27",266617,343,57333],["2021-02-28",266617,307,57640],["2021-03-01",266617,1949,59589],["2021-03-02",266617,1710,61299],["2021-03-03",266617,1448,62747],["2021-03-04",266617,1422,64169],["2021-03-05",266617,2004,66173],["2021-03-06",266617,269,66442],["2021-03-07",266617,261,66703],["2021-03-08",266617,1414,68117],["2021-03-09",266617,1790,69907],["2021-03-10",266617,1480,71387],["2021-03-11",266617,2204,73591],["2021-03-12",266617,2273,75864],["2021-03-13",266617,367,76231],["2021-03-14",266617,336,76567],["2021-03-15",266617,2051,78618],["2021-03-16",266617,2063,80681],["2021-03-17",266617,2041,82722],["2021-03-18",266617,1933,84655],["2021-03-19",266617,2808,87463],["2021-03-20",266617,487,87950],["2021-03-21",266617,439,88389],["2021-03-22",266617,1561,89950],["2021-03-23",266617,2480,92430],["2021-03-24",266617,2055,94485],["2021-03-25",266617,2544,97029],["2021-03-26",266617,2106,99135],["2021-03-27",266617,674,99809],["2021-03-28",266617,551,100360],["2021-03-29",266617,2232,102592],["2021-03-30",266617,3109,105701],["2021-03-31",266617,2702,108403],["2021-04-01",266617,3456,111859],["2021-04-02",266617,1660,113519],["2021-04-03",266617,747,114266],["2021-04-04",266617,473,114739],["2021-04-05",266617,2172,116911],["2021-04-06",266617,3346,120257],["2021-04-07",266617,2424,122681],["2021-04-08",266617,3003,125684],["2021-04-09",266617,2740,128424],["2021-04-10",266617,1130,129554],["2021-04-11",266617,653,130207],["2021-04-12",266617,2913,133120],["2021-04-13",266617,2452,135572],["2021-04-14",266617,2297,137869],["2021-04-15",266617,2187,140056],["2021-04-16",266617,2581,142637],["2021-04-17",266617,539,143176],["2021-04-18",266617,635,143811],["2021-04-19",266617,2289,146100],["2021-04-20",266617,2224,148324],["2021-04-21",266617,2632,150956],["2021-04-22",266617,2462,153418],["2021-04-23",266617,2512,155930],["2021-04-24",266617,773,156703],["2021-04-25",266617,407,157110],["2021-04-26",266617,1876,158986],["2021-04-27",266617,1891,160877],["2021-04-28",266617,2284,163161],["2021-04-29",266617,2066,165227],["2021-04-30",266617,2302,167529],["2021-05-01",266617,1103,168632],["2021-05-02",266617,469,169101],["2021-05-03",266617,1440,170541],["2021-05-04",266617,1763,172304],["2021-05-05",266617,1786,174090],["2021-05-06",266617,1500,175590],["2021-05-07",266617,1784,177374],["2021-05-08",266617,546,177920],["2021-05-09",266617,277,178197],["2021-05-10",266617,901,179098],["2021-05-11",266617,1004,180102],["2021-05-12",266617,1213,181315],["2021-05-13",266617,1034,182349],["2021-05-14",266617,1289,183638],["2021-05-15",266617,762,184400],["2021-05-16",266617,440,184840],["2021-05-17",266617,997,185837],["2021-05-18",266617,1143,186980],["2021-05-19",266617,1177,188157],["2021-05-20",266617,975,189132],["2021-05-21",266617,1077,190209],["2021-05-22",266617,576,190785],["2021-05-23",266617,334,191119],["2021-05-24",266617,634,191753],["2021-05-25",266617,778,192531],["2021-05-26",266617,905,193436],["2021-05-27",266617,649,194085],["2021-05-28",266617,748,194833],["2021-05-29",266617,308,195141],["2021-05-30",266617,248,195389],["2021-05-31",266617,92,195481],["2021-06-01",266617,944,196425],["2021-06-02",266617,658,197083],["2021-06-03",266617,646,197729],["2021-06-04",266617,827,198556],["2021-06-05",266617,513,199069],["2021-06-06",266617,348,199417],["2021-06-07",266617,572,199989],["2021-06-08",266617,717,200706],["2021-06-09",266617,549,201255],["2021-06-10",266617,530,201785],["2021-06-11",266617,653,202438],["2021-06-12",266617,413,202851],["2021-06-13",266617,180,203031],["2021-06-14",266617,447,203478],["2021-06-15",266617,517,203995],["2021-06-16",266617,454,204449],["2021-06-17",266617,407,204856],["2021-06-18",266617,517,205373],["2021-06-19",266617,308,205681],["2021-06-20",266617,180,205861],["2021-06-21",266617,281,206142],["2021-06-22",266617,489,206631],["2021-06-23",266617,410,207041],["2021-06-24",266617,342,207383],["2021-06-25",266617,413,207796],["2021-06-26",266617,228,208024],["2021-06-27",266617,179,208203],["2021-06-28",266617,340,208543],["2021-06-29",266617,345,208888],["2021-06-30",266617,293,209181],["2021-07-01",266617,348,209529],["2021-07-02",266617,379,209908],["2021-07-03",266617,177,210085],["2021-07-04",266617,40,210125],["2021-07-05",266617,210,210335],["2021-07-06",266617,284,210619],["2021-07-07",266617,314,210933],["2021-07-08",266617,296,211229],["2021-07-09",266617,360,211589],["2021-07-10",266617,231,211820],["2021-07-11",266617,180,212000],["2021-07-12",266617,289,212289],["2021-07-13",266617,291,212580],["2021-07-14",266617,250,212830],["2021-07-15",266617,253,213083],["2021-07-16",266617,366,213449],["2021-07-17",266617,251,213700],["2021-07-18",266617,167,213867],["2021-07-19",266617,338,214205],["2021-07-20",266617,346,214551],["2021-07-21",266617,377,214928],["2021-07-22",266617,342,215270],["2021-07-23",266617,482,215752],["2021-07-24",266617,334,216086],["2021-07-25",266617,243,216329],["2021-07-26",266617,403,216732],["2021-07-27",266617,423,217155],["2021-07-28",266617,467,217622],["2021-07-29",266617,430,218052],["2021-07-30",266617,628,218680],["2021-07-31",266617,410,219090],["2021-08-01",266617,337,219427],["2021-08-02",266617,485,219912],["2021-08-03",266617,490,220402],["2021-08-04",266617,481,220883],["2021-08-05",266617,482,221365],["2021-08-06",266617,709,222074],["2021-08-07",266617,431,222505],["2021-08-08",266617,352,222857],["2021-08-09",266617,599,223456],["2021-08-10",266617,607,224063],["2021-08-11",266617,584,224647],["2021-08-12",266617,556,225203],["2021-08-13",266617,716,225919],["2021-08-14",266617,543,226462],["2021-08-15",266617,415,226877],["2021-08-16",266617,621,227498],["2021-08-17",266617,579,228077],["2021-08-18",266617,666,228743],["2021-08-19",266617,646,229389],["2021-08-20",266617,790,230179],["2021-08-21",266617,550,230729],["2021-08-22",266617,346,231075],["2021-08-23",266617,630,231705],["2021-08-24",266617,622,232327],["2021-08-25",266617,608,232935],["2021-08-26",266617,666,233601],["2021-08-27",266617,802,234403],["2021-08-28",266617,568,234971],["2021-08-29",266617,339,235310],["2021-08-30",266617,644,235954],["2021-08-31",266617,655,236609],["2021-09-01",266617,706,237315],["2021-09-02",266617,624,237939],["2021-09-03",266617,781,238720],["2021-09-04",266617,401,239121],["2021-09-05",266617,373,239494],["2021-09-06",266617,81,239575],["2021-09-07",266617,694,240269],["2021-09-08",266617,563,240832],["2021-09-09",266617,584,241416],["2021-09-10",266617,778,242194],["2021-09-11",266617,406,242600],["2021-09-12",266617,305,242905],["2021-09-13",266617,587,243492],["2021-09-14",266617,485,243977],["2021-09-15",266617,416,244393],["2021-09-16",266617,442,244835],["2021-09-17",266617,575,245410],["2021-09-18",266617,344,245754],["2021-09-19",266617,209,245963],["2021-09-20",266617,396,246359],["2021-09-21",266617,358,246717],["2021-09-22",266617,328,247045],["2021-09-23",266617,333,247378],["2021-09-24",266617,473,247851],["2021-09-25",266617,364,248215],["2021-09-26",266617,270,248485],["2021-09-27",266617,557,249042],["2021-09-28",266617,590,249632],["2021-09-29",266617,546,250178],["2021-09-30",266617,551,250729],["2021-10-01",266617,727,251456],["2021-10-02",266617,302,251758],["2021-10-03",266617,227,251985],["2021-10-04",266617,509,252494],["2021-10-05",266617,528,253022],["2021-10-06",266617,427,253449],["2021-10-07",266617,456,253905],["2021-10-08",266617,522,254427],["2021-10-09",266617,283,254710],["2021-10-10",266617,205,254915],["2021-10-11",266617,451,255366],["2021-10-12",266617,433,255799],["2021-10-13",266617,352,256151],["2021-10-14",266617,371,256522],["2021-10-15",266617,482,257004],["2021-10-16",266617,239,257243],["2021-10-17",266617,136,257379],["2021-10-18",266617,388,257767],["2021-10-19",266617,322,258089],["2021-10-20",266617,339,258428],["2021-10-21",266617,385,258813],["2021-10-22",266617,686,259499],["2021-10-23",266617,524,260023],["2021-10-24",266617,312,260335],["2021-10-25",266617,883,261218],["2021-10-26",266617,707,261925],["2021-10-27",266617,857,262782],["2021-10-28",266617,741,263523],["2021-10-29",266617,950,264473],["2021-10-30",266617,474,264947],["2021-10-31",266617,255,265202],["2021-11-01",266617,893,266095],["2021-11-02",266617,766,266861],["2021-11-03",266617,755,267616],["2021-11-04",266617,660,268276],["2021-11-05",266617,906,269182],["2021-11-06",266617,582,269764],["2021-11-07",266617,334,270098],["2021-11-08",266617,659,270757],["2021-11-09",266617,683,271440],["2021-11-10",266617,652,272092],["2021-11-11",266617,666,272758],["2021-11-12",266617,971,273729],["2021-11-13",266617,528,274257],["2021-11-14",266617,321,274578],["2021-11-15",266617,656,275234],["2021-11-16",266617,675,275909],["2021-11-17",266617,636,276545],["2021-11-18",266617,937,277482],["2021-11-19",266617,1455,278937],["2021-11-20",266617,667,279604],["2021-11-21",266617,420,280024],["2021-11-22",266617,875,280899],["2021-11-23",266617,783,281682],["2021-11-24",266617,585,282267],["2021-11-25",266617,6,282273],["2021-11-26",266617,767,283040],["2021-11-27",266617,514,283554],["2021-11-28",266617,345,283899],["2021-11-29",266617,924,284823],["2021-11-30",266617,1001,285824],["2021-12-01",266617,1072,286896],["2021-12-02",266617,967,287863],["2021-12-03",266617,1184,289047],["2021-12-04",266617,732,289779],["2021-12-05",266617,417,290196],["2021-12-06",266617,887,291083],["2021-12-07",266617,853,291936],["2021-12-08",266617,850,292786],["2021-12-09",266617,827,293613],["2021-12-10",266617,975,294588],["2021-12-11",266617,632,295220],["2021-12-12",266617,368,295588],["2021-12-13",266617,737,296325],["2021-12-14",266617,743,297068],["2021-12-15",266617,680,297748],["2021-12-16",266617,687,298435],["2021-12-17",266617,839,299274],["2021-12-18",266617,593,299867],["2021-12-19",266617,338,300205],["2021-12-20",266617,781,300986],["2021-12-21",266617,825,301811],["2021-12-22",266617,861,302672],["2021-12-23",266617,673,303345],["2021-12-24",266617,271,303616],["2021-12-25",266617,2,303618],["2021-12-26",266617,237,303855],["2021-12-27",266617,736,304591],["2021-12-28",266617,743,305334],["2021-12-29",266617,762,306096],["2021-12-30",266617,596,306692],["2021-12-31",266617,311,307003],["2022-01-01",266617,50,307053],["2022-01-02",266617,183,307236],["2022-01-03",266617,192,307428]]} \ No newline at end of file diff --git a/public/data/overall/vaccinations/by-county/Clarke.json b/public/data/overall/vaccinations/by-county/Clarke.json new file mode 100644 index 000000000..703c0cedd --- /dev/null +++ b/public/data/overall/vaccinations/by-county/Clarke.json @@ -0,0 +1 @@ +{"segment":{"county":"Clarke"},"headers":["report_date","population","vaccinations","total_vaccinations"],"rows":[["2020-12-14",129779,1,1],["2020-12-15",129779,1,2],["2020-12-16",129779,2,4],["2020-12-17",129779,4,8],["2020-12-18",129779,63,71],["2020-12-19",129779,32,103],["2020-12-20",129779,11,114],["2020-12-21",129779,89,203],["2020-12-22",129779,190,393],["2020-12-23",129779,233,626],["2020-12-24",129779,75,701],["2020-12-26",129779,39,740],["2020-12-27",129779,9,749],["2020-12-28",129779,281,1030],["2020-12-29",129779,298,1328],["2020-12-30",129779,204,1532],["2020-12-31",129779,101,1633],["2021-01-01",129779,11,1644],["2021-01-02",129779,62,1706],["2021-01-03",129779,36,1742],["2021-01-04",129779,241,1983],["2021-01-05",129779,163,2146],["2021-01-06",129779,308,2454],["2021-01-07",129779,186,2640],["2021-01-08",129779,335,2975],["2021-01-09",129779,74,3049],["2021-01-10",129779,74,3123],["2021-01-11",129779,549,3672],["2021-01-12",129779,747,4419],["2021-01-13",129779,634,5053],["2021-01-14",129779,591,5644],["2021-01-15",129779,648,6292],["2021-01-16",129779,384,6676],["2021-01-17",129779,106,6782],["2021-01-18",129779,448,7230],["2021-01-19",129779,526,7756],["2021-01-20",129779,468,8224],["2021-01-21",129779,507,8731],["2021-01-22",129779,381,9112],["2021-01-23",129779,439,9551],["2021-01-24",129779,54,9605],["2021-01-25",129779,498,10103],["2021-01-26",129779,429,10532],["2021-01-27",129779,386,10918],["2021-01-28",129779,500,11418],["2021-01-29",129779,536,11954],["2021-01-30",129779,154,12108],["2021-01-31",129779,87,12195],["2021-02-01",129779,637,12832],["2021-02-02",129779,538,13370],["2021-02-03",129779,596,13966],["2021-02-04",129779,557,14523],["2021-02-05",129779,514,15037],["2021-02-06",129779,355,15392],["2021-02-07",129779,91,15483],["2021-02-08",129779,350,15833],["2021-02-09",129779,754,16587],["2021-02-10",129779,417,17004],["2021-02-11",129779,527,17531],["2021-02-12",129779,535,18066],["2021-02-13",129779,490,18556],["2021-02-14",129779,100,18656],["2021-02-15",129779,473,19129],["2021-02-16",129779,546,19675],["2021-02-17",129779,464,20139],["2021-02-18",129779,473,20612],["2021-02-19",129779,452,21064],["2021-02-20",129779,212,21276],["2021-02-21",129779,27,21303],["2021-02-22",129779,447,21750],["2021-02-23",129779,534,22284],["2021-02-24",129779,514,22798],["2021-02-25",129779,686,23484],["2021-02-26",129779,601,24085],["2021-02-27",129779,214,24299],["2021-02-28",129779,94,24393],["2021-03-01",129779,646,25039],["2021-03-02",129779,607,25646],["2021-03-03",129779,631,26277],["2021-03-04",129779,499,26776],["2021-03-05",129779,496,27272],["2021-03-06",129779,203,27475],["2021-03-07",129779,172,27647],["2021-03-08",129779,832,28479],["2021-03-09",129779,667,29146],["2021-03-10",129779,1532,30678],["2021-03-11",129779,797,31475],["2021-03-12",129779,706,32181],["2021-03-13",129779,682,32863],["2021-03-14",129779,251,33114],["2021-03-15",129779,891,34005],["2021-03-16",129779,947,34952],["2021-03-17",129779,1338,36290],["2021-03-18",129779,1112,37402],["2021-03-19",129779,1115,38517],["2021-03-20",129779,335,38852],["2021-03-21",129779,187,39039],["2021-03-22",129779,1310,40349],["2021-03-23",129779,1281,41630],["2021-03-24",129779,1715,43345],["2021-03-25",129779,1495,44840],["2021-03-26",129779,1147,45987],["2021-03-27",129779,327,46314],["2021-03-28",129779,227,46541],["2021-03-29",129779,1357,47898],["2021-03-30",129779,1473,49371],["2021-03-31",129779,2408,51779],["2021-04-01",129779,1484,53263],["2021-04-02",129779,1156,54419],["2021-04-03",129779,669,55088],["2021-04-04",129779,252,55340],["2021-04-05",129779,1228,56568],["2021-04-06",129779,1323,57891],["2021-04-07",129779,1472,59363],["2021-04-08",129779,1398,60761],["2021-04-09",129779,1412,62173],["2021-04-10",129779,450,62623],["2021-04-11",129779,263,62886],["2021-04-12",129779,1291,64177],["2021-04-13",129779,1246,65423],["2021-04-14",129779,1709,67132],["2021-04-15",129779,1319,68451],["2021-04-16",129779,1238,69689],["2021-04-17",129779,577,70266],["2021-04-18",129779,143,70409],["2021-04-19",129779,1162,71571],["2021-04-20",129779,1322,72893],["2021-04-21",129779,1519,74412],["2021-04-22",129779,1327,75739],["2021-04-23",129779,1283,77022],["2021-04-24",129779,323,77345],["2021-04-25",129779,136,77481],["2021-04-26",129779,920,78401],["2021-04-27",129779,1097,79498],["2021-04-28",129779,1003,80501],["2021-04-29",129779,828,81329],["2021-04-30",129779,832,82161],["2021-05-01",129779,320,82481],["2021-05-02",129779,102,82583],["2021-05-03",129779,548,83131],["2021-05-04",129779,582,83713],["2021-05-05",129779,577,84290],["2021-05-06",129779,574,84864],["2021-05-07",129779,599,85463],["2021-05-08",129779,395,85858],["2021-05-09",129779,75,85933],["2021-05-10",129779,379,86312],["2021-05-11",129779,452,86764],["2021-05-12",129779,493,87257],["2021-05-13",129779,554,87811],["2021-05-14",129779,635,88446],["2021-05-15",129779,240,88686],["2021-05-16",129779,126,88812],["2021-05-17",129779,433,89245],["2021-05-18",129779,383,89628],["2021-05-19",129779,405,90033],["2021-05-20",129779,412,90445],["2021-05-21",129779,457,90902],["2021-05-22",129779,165,91067],["2021-05-23",129779,100,91167],["2021-05-24",129779,285,91452],["2021-05-25",129779,296,91748],["2021-05-26",129779,343,92091],["2021-05-27",129779,311,92402],["2021-05-28",129779,308,92710],["2021-05-29",129779,96,92806],["2021-05-30",129779,62,92868],["2021-05-31",129779,25,92893],["2021-06-01",129779,333,93226],["2021-06-02",129779,309,93535],["2021-06-03",129779,344,93879],["2021-06-04",129779,421,94300],["2021-06-05",129779,163,94463],["2021-06-06",129779,82,94545],["2021-06-07",129779,322,94867],["2021-06-08",129779,230,95097],["2021-06-09",129779,248,95345],["2021-06-10",129779,230,95575],["2021-06-11",129779,308,95883],["2021-06-12",129779,144,96027],["2021-06-13",129779,60,96087],["2021-06-14",129779,216,96303],["2021-06-15",129779,207,96510],["2021-06-16",129779,211,96721],["2021-06-17",129779,203,96924],["2021-06-18",129779,216,97140],["2021-06-19",129779,106,97246],["2021-06-20",129779,56,97302],["2021-06-21",129779,118,97420],["2021-06-22",129779,162,97582],["2021-06-23",129779,180,97762],["2021-06-24",129779,142,97904],["2021-06-25",129779,170,98074],["2021-06-26",129779,102,98176],["2021-06-27",129779,47,98223],["2021-06-28",129779,130,98353],["2021-06-29",129779,129,98482],["2021-06-30",129779,130,98612],["2021-07-01",129779,127,98739],["2021-07-02",129779,156,98895],["2021-07-03",129779,49,98944],["2021-07-04",129779,4,98948],["2021-07-05",129779,66,99014],["2021-07-06",129779,126,99140],["2021-07-07",129779,145,99285],["2021-07-08",129779,120,99405],["2021-07-09",129779,181,99586],["2021-07-10",129779,91,99677],["2021-07-11",129779,40,99717],["2021-07-12",129779,124,99841],["2021-07-13",129779,130,99971],["2021-07-14",129779,116,100087],["2021-07-15",129779,122,100209],["2021-07-16",129779,170,100379],["2021-07-17",129779,121,100500],["2021-07-18",129779,40,100540],["2021-07-19",129779,139,100679],["2021-07-20",129779,140,100819],["2021-07-21",129779,170,100989],["2021-07-22",129779,174,101163],["2021-07-23",129779,204,101367],["2021-07-24",129779,139,101506],["2021-07-25",129779,53,101559],["2021-07-26",129779,140,101699],["2021-07-27",129779,189,101888],["2021-07-28",129779,173,102061],["2021-07-29",129779,184,102245],["2021-07-30",129779,248,102493],["2021-07-31",129779,118,102611],["2021-08-01",129779,84,102695],["2021-08-02",129779,205,102900],["2021-08-03",129779,222,103122],["2021-08-04",129779,184,103306],["2021-08-05",129779,174,103480],["2021-08-06",129779,280,103760],["2021-08-07",129779,142,103902],["2021-08-08",129779,97,103999],["2021-08-09",129779,206,104205],["2021-08-10",129779,239,104444],["2021-08-11",129779,183,104627],["2021-08-12",129779,219,104846],["2021-08-13",129779,321,105167],["2021-08-14",129779,162,105329],["2021-08-15",129779,128,105457],["2021-08-16",129779,273,105730],["2021-08-17",129779,242,105972],["2021-08-18",129779,271,106243],["2021-08-19",129779,285,106528],["2021-08-20",129779,332,106860],["2021-08-21",129779,170,107030],["2021-08-22",129779,90,107120],["2021-08-23",129779,275,107395],["2021-08-24",129779,304,107699],["2021-08-25",129779,241,107940],["2021-08-26",129779,280,108220],["2021-08-27",129779,335,108555],["2021-08-28",129779,209,108764],["2021-08-29",129779,109,108873],["2021-08-30",129779,262,109135],["2021-08-31",129779,291,109426],["2021-09-01",129779,249,109675],["2021-09-02",129779,235,109910],["2021-09-03",129779,471,110381],["2021-09-04",129779,126,110507],["2021-09-05",129779,92,110599],["2021-09-06",129779,26,110625],["2021-09-07",129779,313,110938],["2021-09-08",129779,214,111152],["2021-09-09",129779,283,111435],["2021-09-10",129779,324,111759],["2021-09-11",129779,102,111861],["2021-09-12",129779,73,111934],["2021-09-13",129779,255,112189],["2021-09-14",129779,231,112420],["2021-09-15",129779,228,112648],["2021-09-16",129779,279,112927],["2021-09-17",129779,246,113173],["2021-09-18",129779,132,113305],["2021-09-19",129779,60,113365],["2021-09-20",129779,223,113588],["2021-09-21",129779,246,113834],["2021-09-22",129779,196,114030],["2021-09-23",129779,177,114207],["2021-09-24",129779,353,114560],["2021-09-25",129779,245,114805],["2021-09-26",129779,118,114923],["2021-09-27",129779,415,115338],["2021-09-28",129779,457,115795],["2021-09-29",129779,406,116201],["2021-09-30",129779,396,116597],["2021-10-01",129779,432,117029],["2021-10-02",129779,153,117182],["2021-10-03",129779,92,117274],["2021-10-04",129779,420,117694],["2021-10-05",129779,334,118028],["2021-10-06",129779,309,118337],["2021-10-07",129779,325,118662],["2021-10-08",129779,416,119078],["2021-10-09",129779,119,119197],["2021-10-10",129779,74,119271],["2021-10-11",129779,262,119533],["2021-10-12",129779,354,119887],["2021-10-13",129779,216,120103],["2021-10-14",129779,313,120416],["2021-10-15",129779,353,120769],["2021-10-16",129779,104,120873],["2021-10-17",129779,66,120939],["2021-10-18",129779,247,121186],["2021-10-19",129779,254,121440],["2021-10-20",129779,244,121684],["2021-10-21",129779,259,121943],["2021-10-22",129779,544,122487],["2021-10-23",129779,222,122709],["2021-10-24",129779,128,122837],["2021-10-25",129779,460,123297],["2021-10-26",129779,408,123705],["2021-10-27",129779,414,124119],["2021-10-28",129779,392,124511],["2021-10-29",129779,547,125058],["2021-10-30",129779,156,125214],["2021-10-31",129779,75,125289],["2021-11-01",129779,413,125702],["2021-11-02",129779,421,126123],["2021-11-03",129779,414,126537],["2021-11-04",129779,365,126902],["2021-11-05",129779,646,127548],["2021-11-06",129779,220,127768],["2021-11-07",129779,148,127916],["2021-11-08",129779,401,128317],["2021-11-09",129779,468,128785],["2021-11-10",129779,471,129256],["2021-11-11",129779,399,129655],["2021-11-12",129779,677,130332],["2021-11-13",129779,300,130632],["2021-11-14",129779,116,130748],["2021-11-15",129779,364,131112],["2021-11-16",129779,413,131525],["2021-11-17",129779,346,131871],["2021-11-18",129779,430,132301],["2021-11-19",129779,537,132838],["2021-11-20",129779,324,133162],["2021-11-21",129779,160,133322],["2021-11-22",129779,424,133746],["2021-11-23",129779,388,134134],["2021-11-24",129779,288,134422],["2021-11-25",129779,1,134423],["2021-11-26",129779,273,134696],["2021-11-27",129779,228,134924],["2021-11-28",129779,186,135110],["2021-11-29",129779,504,135614],["2021-11-30",129779,515,136129],["2021-12-01",129779,546,136675],["2021-12-02",129779,598,137273],["2021-12-03",129779,795,138068],["2021-12-04",129779,378,138446],["2021-12-05",129779,149,138595],["2021-12-06",129779,482,139077],["2021-12-07",129779,437,139514],["2021-12-08",129779,411,139925],["2021-12-09",129779,513,140438],["2021-12-10",129779,547,140985],["2021-12-11",129779,212,141197],["2021-12-12",129779,129,141326],["2021-12-13",129779,339,141665],["2021-12-14",129779,355,142020],["2021-12-15",129779,352,142372],["2021-12-16",129779,376,142748],["2021-12-17",129779,480,143228],["2021-12-18",129779,268,143496],["2021-12-19",129779,172,143668],["2021-12-20",129779,489,144157],["2021-12-21",129779,524,144681],["2021-12-22",129779,424,145105],["2021-12-23",129779,344,145449],["2021-12-24",129779,119,145568],["2021-12-26",129779,111,145679],["2021-12-27",129779,371,146050],["2021-12-28",129779,383,146433],["2021-12-29",129779,315,146748],["2021-12-30",129779,332,147080],["2021-12-31",129779,155,147235],["2022-01-01",129779,19,147254],["2022-01-02",129779,92,147346],["2022-01-03",129779,91,147437]]} \ No newline at end of file diff --git a/public/data/overall/vaccinations/by-county/Clay.json b/public/data/overall/vaccinations/by-county/Clay.json new file mode 100644 index 000000000..262a0e844 --- /dev/null +++ b/public/data/overall/vaccinations/by-county/Clay.json @@ -0,0 +1 @@ +{"segment":{"county":"Clay"},"headers":["report_date","population","vaccinations","total_vaccinations"],"rows":[["2020-12-19",2855,1,1],["2020-12-21",2855,1,2],["2020-12-22",2855,1,3],["2020-12-23",2855,1,4],["2020-12-24",2855,12,16],["2020-12-26",2855,11,27],["2020-12-28",2855,7,34],["2020-12-29",2855,5,39],["2020-12-30",2855,6,45],["2020-12-31",2855,5,50],["2021-01-01",2855,17,67],["2021-01-02",2855,17,84],["2021-01-04",2855,3,87],["2021-01-05",2855,51,138],["2021-01-06",2855,11,149],["2021-01-07",2855,20,169],["2021-01-08",2855,14,183],["2021-01-09",2855,2,185],["2021-01-10",2855,1,186],["2021-01-11",2855,10,196],["2021-01-12",2855,29,225],["2021-01-13",2855,47,272],["2021-01-14",2855,37,309],["2021-01-15",2855,60,369],["2021-01-16",2855,2,371],["2021-01-17",2855,1,372],["2021-01-18",2855,15,387],["2021-01-19",2855,25,412],["2021-01-20",2855,17,429],["2021-01-21",2855,57,486],["2021-01-22",2855,16,502],["2021-01-23",2855,1,503],["2021-01-24",2855,2,505],["2021-01-25",2855,15,520],["2021-01-26",2855,65,585],["2021-01-27",2855,19,604],["2021-01-28",2855,35,639],["2021-01-29",2855,14,653],["2021-01-30",2855,3,656],["2021-01-31",2855,1,657],["2021-02-01",2855,84,741],["2021-02-02",2855,12,753],["2021-02-03",2855,21,774],["2021-02-04",2855,37,811],["2021-02-05",2855,22,833],["2021-02-07",2855,1,834],["2021-02-08",2855,15,849],["2021-02-09",2855,39,888],["2021-02-10",2855,28,916],["2021-02-11",2855,28,944],["2021-02-12",2855,110,1054],["2021-02-13",2855,2,1056],["2021-02-14",2855,5,1061],["2021-02-15",2855,26,1087],["2021-02-16",2855,30,1117],["2021-02-17",2855,27,1144],["2021-02-18",2855,62,1206],["2021-02-19",2855,16,1222],["2021-02-20",2855,6,1228],["2021-02-21",2855,5,1233],["2021-02-22",2855,9,1242],["2021-02-23",2855,16,1258],["2021-02-24",2855,45,1303],["2021-02-25",2855,34,1337],["2021-02-26",2855,66,1403],["2021-02-27",2855,6,1409],["2021-02-28",2855,15,1424],["2021-03-01",2855,98,1522],["2021-03-02",2855,29,1551],["2021-03-03",2855,22,1573],["2021-03-04",2855,13,1586],["2021-03-05",2855,45,1631],["2021-03-06",2855,3,1634],["2021-03-07",2855,2,1636],["2021-03-08",2855,25,1661],["2021-03-09",2855,20,1681],["2021-03-10",2855,40,1721],["2021-03-11",2855,16,1737],["2021-03-12",2855,55,1792],["2021-03-13",2855,3,1795],["2021-03-14",2855,4,1799],["2021-03-15",2855,47,1846],["2021-03-16",2855,19,1865],["2021-03-17",2855,39,1904],["2021-03-18",2855,23,1927],["2021-03-19",2855,17,1944],["2021-03-20",2855,2,1946],["2021-03-21",2855,3,1949],["2021-03-22",2855,12,1961],["2021-03-23",2855,16,1977],["2021-03-24",2855,53,2030],["2021-03-25",2855,29,2059],["2021-03-26",2855,30,2089],["2021-03-27",2855,4,2093],["2021-03-28",2855,10,2103],["2021-03-29",2855,43,2146],["2021-03-30",2855,24,2170],["2021-03-31",2855,38,2208],["2021-04-01",2855,83,2291],["2021-04-02",2855,21,2312],["2021-04-03",2855,4,2316],["2021-04-04",2855,4,2320],["2021-04-05",2855,13,2333],["2021-04-06",2855,14,2347],["2021-04-07",2855,34,2381],["2021-04-08",2855,33,2414],["2021-04-09",2855,18,2432],["2021-04-10",2855,19,2451],["2021-04-11",2855,2,2453],["2021-04-12",2855,13,2466],["2021-04-13",2855,26,2492],["2021-04-14",2855,39,2531],["2021-04-15",2855,56,2587],["2021-04-16",2855,35,2622],["2021-04-18",2855,3,2625],["2021-04-19",2855,23,2648],["2021-04-20",2855,15,2663],["2021-04-21",2855,15,2678],["2021-04-22",2855,30,2708],["2021-04-23",2855,19,2727],["2021-04-24",2855,4,2731],["2021-04-26",2855,8,2739],["2021-04-27",2855,22,2761],["2021-04-28",2855,26,2787],["2021-04-29",2855,8,2795],["2021-04-30",2855,20,2815],["2021-05-01",2855,22,2837],["2021-05-03",2855,16,2853],["2021-05-04",2855,12,2865],["2021-05-05",2855,27,2892],["2021-05-06",2855,20,2912],["2021-05-07",2855,5,2917],["2021-05-08",2855,5,2922],["2021-05-09",2855,2,2924],["2021-05-10",2855,7,2931],["2021-05-11",2855,11,2942],["2021-05-12",2855,20,2962],["2021-05-13",2855,9,2971],["2021-05-14",2855,7,2978],["2021-05-15",2855,16,2994],["2021-05-16",2855,1,2995],["2021-05-17",2855,12,3007],["2021-05-18",2855,9,3016],["2021-05-19",2855,14,3030],["2021-05-20",2855,12,3042],["2021-05-21",2855,6,3048],["2021-05-22",2855,5,3053],["2021-05-24",2855,5,3058],["2021-05-25",2855,6,3064],["2021-05-26",2855,12,3076],["2021-05-27",2855,10,3086],["2021-05-28",2855,10,3096],["2021-05-29",2855,2,3098],["2021-05-30",2855,4,3102],["2021-05-31",2855,2,3104],["2021-06-01",2855,18,3122],["2021-06-02",2855,11,3133],["2021-06-03",2855,6,3139],["2021-06-04",2855,5,3144],["2021-06-05",2855,2,3146],["2021-06-06",2855,1,3147],["2021-06-07",2855,4,3151],["2021-06-08",2855,8,3159],["2021-06-09",2855,11,3170],["2021-06-10",2855,11,3181],["2021-06-11",2855,3,3184],["2021-06-12",2855,4,3188],["2021-06-13",2855,1,3189],["2021-06-14",2855,6,3195],["2021-06-15",2855,17,3212],["2021-06-16",2855,3,3215],["2021-06-17",2855,7,3222],["2021-06-18",2855,3,3225],["2021-06-19",2855,3,3228],["2021-06-20",2855,1,3229],["2021-06-21",2855,3,3232],["2021-06-22",2855,10,3242],["2021-06-23",2855,6,3248],["2021-06-24",2855,9,3257],["2021-06-25",2855,5,3262],["2021-06-26",2855,1,3263],["2021-06-27",2855,1,3264],["2021-06-28",2855,2,3266],["2021-06-29",2855,2,3268],["2021-06-30",2855,8,3276],["2021-07-01",2855,4,3280],["2021-07-02",2855,3,3283],["2021-07-05",2855,1,3284],["2021-07-06",2855,2,3286],["2021-07-07",2855,9,3295],["2021-07-08",2855,3,3298],["2021-07-09",2855,2,3300],["2021-07-10",2855,4,3304],["2021-07-12",2855,6,3310],["2021-07-13",2855,15,3325],["2021-07-14",2855,6,3331],["2021-07-15",2855,14,3345],["2021-07-16",2855,10,3355],["2021-07-18",2855,2,3357],["2021-07-19",2855,4,3361],["2021-07-20",2855,1,3362],["2021-07-21",2855,10,3372],["2021-07-22",2855,3,3375],["2021-07-23",2855,7,3382],["2021-07-26",2855,3,3385],["2021-07-27",2855,2,3387],["2021-07-28",2855,17,3404],["2021-07-29",2855,7,3411],["2021-07-30",2855,7,3418],["2021-07-31",2855,1,3419],["2021-08-01",2855,7,3426],["2021-08-02",2855,15,3441],["2021-08-03",2855,4,3445],["2021-08-04",2855,11,3456],["2021-08-05",2855,5,3461],["2021-08-06",2855,19,3480],["2021-08-07",2855,4,3484],["2021-08-08",2855,4,3488],["2021-08-09",2855,8,3496],["2021-08-10",2855,13,3509],["2021-08-11",2855,13,3522],["2021-08-12",2855,21,3543],["2021-08-13",2855,16,3559],["2021-08-14",2855,3,3562],["2021-08-15",2855,7,3569],["2021-08-16",2855,8,3577],["2021-08-17",2855,2,3579],["2021-08-18",2855,12,3591],["2021-08-19",2855,10,3601],["2021-08-20",2855,19,3620],["2021-08-21",2855,4,3624],["2021-08-22",2855,3,3627],["2021-08-23",2855,12,3639],["2021-08-24",2855,2,3641],["2021-08-25",2855,16,3657],["2021-08-26",2855,19,3676],["2021-08-27",2855,11,3687],["2021-08-28",2855,5,3692],["2021-08-29",2855,3,3695],["2021-08-30",2855,9,3704],["2021-08-31",2855,9,3713],["2021-09-01",2855,24,3737],["2021-09-02",2855,16,3753],["2021-09-03",2855,11,3764],["2021-09-04",2855,4,3768],["2021-09-05",2855,5,3773],["2021-09-06",2855,2,3775],["2021-09-07",2855,14,3789],["2021-09-08",2855,20,3809],["2021-09-09",2855,9,3818],["2021-09-10",2855,9,3827],["2021-09-11",2855,3,3830],["2021-09-12",2855,5,3835],["2021-09-13",2855,8,3843],["2021-09-14",2855,7,3850],["2021-09-15",2855,18,3868],["2021-09-16",2855,12,3880],["2021-09-17",2855,13,3893],["2021-09-18",2855,3,3896],["2021-09-19",2855,4,3900],["2021-09-20",2855,13,3913],["2021-09-21",2855,11,3924],["2021-09-22",2855,10,3934],["2021-09-23",2855,6,3940],["2021-09-24",2855,5,3945],["2021-09-25",2855,5,3950],["2021-09-26",2855,2,3952],["2021-09-27",2855,7,3959],["2021-09-28",2855,7,3966],["2021-09-29",2855,8,3974],["2021-09-30",2855,5,3979],["2021-10-01",2855,9,3988],["2021-10-02",2855,1,3989],["2021-10-04",2855,3,3992],["2021-10-05",2855,10,4002],["2021-10-06",2855,5,4007],["2021-10-07",2855,10,4017],["2021-10-08",2855,19,4036],["2021-10-09",2855,2,4038],["2021-10-10",2855,1,4039],["2021-10-11",2855,2,4041],["2021-10-12",2855,2,4043],["2021-10-13",2855,2,4045],["2021-10-14",2855,12,4057],["2021-10-15",2855,8,4065],["2021-10-17",2855,1,4066],["2021-10-18",2855,5,4071],["2021-10-19",2855,4,4075],["2021-10-20",2855,3,4078],["2021-10-21",2855,5,4083],["2021-10-22",2855,2,4085],["2021-10-23",2855,1,4086],["2021-10-24",2855,3,4089],["2021-10-25",2855,11,4100],["2021-10-26",2855,35,4135],["2021-10-27",2855,20,4155],["2021-10-28",2855,27,4182],["2021-10-29",2855,17,4199],["2021-10-30",2855,1,4200],["2021-11-01",2855,20,4220],["2021-11-02",2855,22,4242],["2021-11-03",2855,41,4283],["2021-11-04",2855,26,4309],["2021-11-05",2855,23,4332],["2021-11-06",2855,1,4333],["2021-11-07",2855,4,4337],["2021-11-08",2855,20,4357],["2021-11-09",2855,18,4375],["2021-11-10",2855,32,4407],["2021-11-11",2855,11,4418],["2021-11-12",2855,12,4430],["2021-11-13",2855,2,4432],["2021-11-14",2855,2,4434],["2021-11-15",2855,19,4453],["2021-11-16",2855,7,4460],["2021-11-17",2855,50,4510],["2021-11-18",2855,16,4526],["2021-11-19",2855,13,4539],["2021-11-20",2855,1,4540],["2021-11-22",2855,7,4547],["2021-11-23",2855,18,4565],["2021-11-24",2855,3,4568],["2021-11-26",2855,5,4573],["2021-11-27",2855,3,4576],["2021-11-29",2855,20,4596],["2021-11-30",2855,16,4612],["2021-12-01",2855,14,4626],["2021-12-02",2855,9,4635],["2021-12-03",2855,7,4642],["2021-12-04",2855,2,4644],["2021-12-05",2855,1,4645],["2021-12-06",2855,8,4653],["2021-12-07",2855,10,4663],["2021-12-08",2855,17,4680],["2021-12-09",2855,11,4691],["2021-12-10",2855,3,4694],["2021-12-11",2855,2,4696],["2021-12-12",2855,1,4697],["2021-12-13",2855,16,4713],["2021-12-14",2855,12,4725],["2021-12-15",2855,4,4729],["2021-12-16",2855,5,4734],["2021-12-17",2855,2,4736],["2021-12-20",2855,6,4742],["2021-12-21",2855,4,4746],["2021-12-22",2855,3,4749],["2021-12-23",2855,1,4750],["2021-12-24",2855,1,4751],["2021-12-27",2855,5,4756],["2021-12-28",2855,6,4762],["2021-12-29",2855,4,4766],["2021-12-30",2855,5,4771],["2022-01-03",2855,6,4777]]} \ No newline at end of file diff --git a/public/data/overall/vaccinations/by-county/Clayton.json b/public/data/overall/vaccinations/by-county/Clayton.json new file mode 100644 index 000000000..f55d990dc --- /dev/null +++ b/public/data/overall/vaccinations/by-county/Clayton.json @@ -0,0 +1 @@ +{"segment":{"county":"Clayton"},"headers":["report_date","population","vaccinations","total_vaccinations"],"rows":[["2020-12-16",304838,3,3],["2020-12-17",304838,11,14],["2020-12-18",304838,37,51],["2020-12-19",304838,31,82],["2020-12-20",304838,21,103],["2020-12-21",304838,51,154],["2020-12-22",304838,73,227],["2020-12-23",304838,124,351],["2020-12-24",304838,15,366],["2020-12-26",304838,16,382],["2020-12-27",304838,98,480],["2020-12-28",304838,175,655],["2020-12-29",304838,328,983],["2020-12-30",304838,219,1202],["2020-12-31",304838,128,1330],["2021-01-01",304838,40,1370],["2021-01-02",304838,23,1393],["2021-01-03",304838,26,1419],["2021-01-04",304838,155,1574],["2021-01-05",304838,176,1750],["2021-01-06",304838,354,2104],["2021-01-07",304838,168,2272],["2021-01-08",304838,211,2483],["2021-01-09",304838,105,2588],["2021-01-10",304838,57,2645],["2021-01-11",304838,346,2991],["2021-01-12",304838,282,3273],["2021-01-13",304838,341,3614],["2021-01-14",304838,330,3944],["2021-01-15",304838,727,4671],["2021-01-16",304838,338,5009],["2021-01-17",304838,191,5200],["2021-01-18",304838,339,5539],["2021-01-19",304838,448,5987],["2021-01-20",304838,557,6544],["2021-01-21",304838,469,7013],["2021-01-22",304838,441,7454],["2021-01-23",304838,677,8131],["2021-01-24",304838,65,8196],["2021-01-25",304838,456,8652],["2021-01-26",304838,539,9191],["2021-01-27",304838,545,9736],["2021-01-28",304838,524,10260],["2021-01-29",304838,1017,11277],["2021-01-30",304838,226,11503],["2021-01-31",304838,148,11651],["2021-02-01",304838,582,12233],["2021-02-02",304838,430,12663],["2021-02-03",304838,426,13089],["2021-02-04",304838,594,13683],["2021-02-05",304838,495,14178],["2021-02-06",304838,623,14801],["2021-02-07",304838,97,14898],["2021-02-08",304838,321,15219],["2021-02-09",304838,624,15843],["2021-02-10",304838,824,16667],["2021-02-11",304838,602,17269],["2021-02-12",304838,942,18211],["2021-02-13",304838,378,18589],["2021-02-14",304838,133,18722],["2021-02-15",304838,535,19257],["2021-02-16",304838,838,20095],["2021-02-17",304838,777,20872],["2021-02-18",304838,639,21511],["2021-02-19",304838,735,22246],["2021-02-20",304838,765,23011],["2021-02-21",304838,89,23100],["2021-02-22",304838,423,23523],["2021-02-23",304838,919,24442],["2021-02-24",304838,762,25204],["2021-02-25",304838,1071,26275],["2021-02-26",304838,1309,27584],["2021-02-27",304838,344,27928],["2021-02-28",304838,192,28120],["2021-03-01",304838,648,28768],["2021-03-02",304838,1096,29864],["2021-03-03",304838,1210,31074],["2021-03-04",304838,1083,32157],["2021-03-05",304838,1194,33351],["2021-03-06",304838,979,34330],["2021-03-07",304838,277,34607],["2021-03-08",304838,859,35466],["2021-03-09",304838,1417,36883],["2021-03-10",304838,1331,38214],["2021-03-11",304838,1443,39657],["2021-03-12",304838,1481,41138],["2021-03-13",304838,706,41844],["2021-03-14",304838,454,42298],["2021-03-15",304838,1240,43538],["2021-03-16",304838,1583,45121],["2021-03-17",304838,1499,46620],["2021-03-18",304838,1346,47966],["2021-03-19",304838,1647,49613],["2021-03-20",304838,779,50392],["2021-03-21",304838,530,50922],["2021-03-22",304838,1198,52120],["2021-03-23",304838,1844,53964],["2021-03-24",304838,2026,55990],["2021-03-25",304838,2320,58310],["2021-03-26",304838,1994,60304],["2021-03-27",304838,1136,61440],["2021-03-28",304838,665,62105],["2021-03-29",304838,1672,63777],["2021-03-30",304838,2514,66291],["2021-03-31",304838,2485,68776],["2021-04-01",304838,2596,71372],["2021-04-02",304838,2251,73623],["2021-04-03",304838,1303,74926],["2021-04-04",304838,521,75447],["2021-04-05",304838,1842,77289],["2021-04-06",304838,2846,80135],["2021-04-07",304838,2813,82948],["2021-04-08",304838,2542,85490],["2021-04-09",304838,2605,88095],["2021-04-10",304838,1875,89970],["2021-04-11",304838,735,90705],["2021-04-12",304838,1860,92565],["2021-04-13",304838,2183,94748],["2021-04-14",304838,2685,97433],["2021-04-15",304838,2460,99893],["2021-04-16",304838,2181,102074],["2021-04-17",304838,1090,103164],["2021-04-18",304838,820,103984],["2021-04-19",304838,1684,105668],["2021-04-20",304838,2522,108190],["2021-04-21",304838,2247,110437],["2021-04-22",304838,2130,112567],["2021-04-23",304838,2281,114848],["2021-04-24",304838,1367,116215],["2021-04-25",304838,500,116715],["2021-04-26",304838,1571,118286],["2021-04-27",304838,2101,120387],["2021-04-28",304838,2033,122420],["2021-04-29",304838,2027,124447],["2021-04-30",304838,2264,126711],["2021-05-01",304838,1831,128542],["2021-05-02",304838,574,129116],["2021-05-03",304838,1501,130617],["2021-05-04",304838,1820,132437],["2021-05-05",304838,2044,134481],["2021-05-06",304838,1546,136027],["2021-05-07",304838,1779,137806],["2021-05-08",304838,1032,138838],["2021-05-09",304838,402,139240],["2021-05-10",304838,1155,140395],["2021-05-11",304838,1547,141942],["2021-05-12",304838,1237,143179],["2021-05-13",304838,1158,144337],["2021-05-14",304838,1560,145897],["2021-05-15",304838,1186,147083],["2021-05-16",304838,687,147770],["2021-05-17",304838,1285,149055],["2021-05-18",304838,1426,150481],["2021-05-19",304838,1176,151657],["2021-05-20",304838,1213,152870],["2021-05-21",304838,1206,154076],["2021-05-22",304838,959,155035],["2021-05-23",304838,505,155540],["2021-05-24",304838,886,156426],["2021-05-25",304838,1101,157527],["2021-05-26",304838,916,158443],["2021-05-27",304838,845,159288],["2021-05-28",304838,811,160099],["2021-05-29",304838,571,160670],["2021-05-30",304838,430,161100],["2021-05-31",304838,186,161286],["2021-06-01",304838,1161,162447],["2021-06-02",304838,877,163324],["2021-06-03",304838,803,164127],["2021-06-04",304838,933,165060],["2021-06-05",304838,883,165943],["2021-06-06",304838,629,166572],["2021-06-07",304838,950,167522],["2021-06-08",304838,920,168442],["2021-06-09",304838,731,169173],["2021-06-10",304838,767,169940],["2021-06-11",304838,829,170769],["2021-06-12",304838,691,171460],["2021-06-13",304838,309,171769],["2021-06-14",304838,761,172530],["2021-06-15",304838,690,173220],["2021-06-16",304838,653,173873],["2021-06-17",304838,597,174470],["2021-06-18",304838,698,175168],["2021-06-19",304838,474,175642],["2021-06-20",304838,368,176010],["2021-06-21",304838,477,176487],["2021-06-22",304838,670,177157],["2021-06-23",304838,660,177817],["2021-06-24",304838,563,178380],["2021-06-25",304838,611,178991],["2021-06-26",304838,447,179438],["2021-06-27",304838,345,179783],["2021-06-28",304838,533,180316],["2021-06-29",304838,485,180801],["2021-06-30",304838,489,181290],["2021-07-01",304838,489,181779],["2021-07-02",304838,515,182294],["2021-07-03",304838,337,182631],["2021-07-04",304838,46,182677],["2021-07-05",304838,439,183116],["2021-07-06",304838,500,183616],["2021-07-07",304838,467,184083],["2021-07-08",304838,506,184589],["2021-07-09",304838,551,185140],["2021-07-10",304838,459,185599],["2021-07-11",304838,342,185941],["2021-07-12",304838,437,186378],["2021-07-13",304838,509,186887],["2021-07-14",304838,485,187372],["2021-07-15",304838,475,187847],["2021-07-16",304838,544,188391],["2021-07-17",304838,380,188771],["2021-07-18",304838,260,189031],["2021-07-19",304838,545,189576],["2021-07-20",304838,555,190131],["2021-07-21",304838,554,190685],["2021-07-22",304838,581,191266],["2021-07-23",304838,597,191863],["2021-07-24",304838,473,192336],["2021-07-25",304838,320,192656],["2021-07-26",304838,647,193303],["2021-07-27",304838,644,193947],["2021-07-28",304838,739,194686],["2021-07-29",304838,665,195351],["2021-07-30",304838,747,196098],["2021-07-31",304838,617,196715],["2021-08-01",304838,502,197217],["2021-08-02",304838,637,197854],["2021-08-03",304838,646,198500],["2021-08-04",304838,716,199216],["2021-08-05",304838,687,199903],["2021-08-06",304838,797,200700],["2021-08-07",304838,667,201367],["2021-08-08",304838,410,201777],["2021-08-09",304838,777,202554],["2021-08-10",304838,860,203414],["2021-08-11",304838,777,204191],["2021-08-12",304838,785,204976],["2021-08-13",304838,802,205778],["2021-08-14",304838,668,206446],["2021-08-15",304838,456,206902],["2021-08-16",304838,670,207572],["2021-08-17",304838,687,208259],["2021-08-18",304838,717,208976],["2021-08-19",304838,693,209669],["2021-08-20",304838,748,210417],["2021-08-21",304838,765,211182],["2021-08-22",304838,373,211555],["2021-08-23",304838,781,212336],["2021-08-24",304838,766,213102],["2021-08-25",304838,780,213882],["2021-08-26",304838,836,214718],["2021-08-27",304838,878,215596],["2021-08-28",304838,934,216530],["2021-08-29",304838,521,217051],["2021-08-30",304838,774,217825],["2021-08-31",304838,725,218550],["2021-09-01",304838,789,219339],["2021-09-02",304838,712,220051],["2021-09-03",304838,1044,221095],["2021-09-04",304838,497,221592],["2021-09-05",304838,399,221991],["2021-09-06",304838,136,222127],["2021-09-07",304838,808,222935],["2021-09-08",304838,694,223629],["2021-09-09",304838,755,224384],["2021-09-10",304838,746,225130],["2021-09-11",304838,740,225870],["2021-09-12",304838,347,226217],["2021-09-13",304838,688,226905],["2021-09-14",304838,632,227537],["2021-09-15",304838,646,228183],["2021-09-16",304838,577,228760],["2021-09-17",304838,725,229485],["2021-09-18",304838,540,230025],["2021-09-19",304838,313,230338],["2021-09-20",304838,603,230941],["2021-09-21",304838,529,231470],["2021-09-22",304838,490,231960],["2021-09-23",304838,481,232441],["2021-09-24",304838,674,233115],["2021-09-25",304838,450,233565],["2021-09-26",304838,297,233862],["2021-09-27",304838,511,234373],["2021-09-28",304838,688,235061],["2021-09-29",304838,587,235648],["2021-09-30",304838,735,236383],["2021-10-01",304838,670,237053],["2021-10-02",304838,491,237544],["2021-10-03",304838,254,237798],["2021-10-04",304838,566,238364],["2021-10-05",304838,582,238946],["2021-10-06",304838,558,239504],["2021-10-07",304838,549,240053],["2021-10-08",304838,605,240658],["2021-10-09",304838,461,241119],["2021-10-10",304838,239,241358],["2021-10-11",304838,497,241855],["2021-10-12",304838,513,242368],["2021-10-13",304838,471,242839],["2021-10-14",304838,503,243342],["2021-10-15",304838,549,243891],["2021-10-16",304838,394,244285],["2021-10-17",304838,179,244464],["2021-10-18",304838,482,244946],["2021-10-19",304838,484,245430],["2021-10-20",304838,453,245883],["2021-10-21",304838,472,246355],["2021-10-22",304838,708,247063],["2021-10-23",304838,592,247655],["2021-10-24",304838,284,247939],["2021-10-25",304838,774,248713],["2021-10-26",304838,768,249481],["2021-10-27",304838,716,250197],["2021-10-28",304838,706,250903],["2021-10-29",304838,733,251636],["2021-10-30",304838,504,252140],["2021-10-31",304838,203,252343],["2021-11-01",304838,689,253032],["2021-11-02",304838,710,253742],["2021-11-03",304838,688,254430],["2021-11-04",304838,603,255033],["2021-11-05",304838,674,255707],["2021-11-06",304838,439,256146],["2021-11-07",304838,276,256422],["2021-11-08",304838,569,256991],["2021-11-09",304838,677,257668],["2021-11-10",304838,654,258322],["2021-11-11",304838,618,258940],["2021-11-12",304838,718,259658],["2021-11-13",304838,444,260102],["2021-11-14",304838,263,260365],["2021-11-15",304838,679,261044],["2021-11-16",304838,697,261741],["2021-11-17",304838,690,262431],["2021-11-18",304838,679,263110],["2021-11-19",304838,773,263883],["2021-11-20",304838,554,264437],["2021-11-21",304838,320,264757],["2021-11-22",304838,837,265594],["2021-11-23",304838,721,266315],["2021-11-24",304838,525,266840],["2021-11-25",304838,7,266847],["2021-11-26",304838,623,267470],["2021-11-27",304838,447,267917],["2021-11-28",304838,279,268196],["2021-11-29",304838,727,268923],["2021-11-30",304838,861,269784],["2021-12-01",304838,949,270733],["2021-12-02",304838,959,271692],["2021-12-03",304838,1078,272770],["2021-12-04",304838,852,273622],["2021-12-05",304838,352,273974],["2021-12-06",304838,892,274866],["2021-12-07",304838,892,275758],["2021-12-08",304838,820,276578],["2021-12-09",304838,827,277405],["2021-12-10",304838,899,278304],["2021-12-11",304838,643,278947],["2021-12-12",304838,322,279269],["2021-12-13",304838,749,280018],["2021-12-14",304838,701,280719],["2021-12-15",304838,627,281346],["2021-12-16",304838,690,282036],["2021-12-17",304838,720,282756],["2021-12-18",304838,698,283454],["2021-12-19",304838,335,283789],["2021-12-20",304838,803,284592],["2021-12-21",304838,848,285440],["2021-12-22",304838,910,286350],["2021-12-23",304838,818,287168],["2021-12-24",304838,247,287415],["2021-12-26",304838,245,287660],["2021-12-27",304838,793,288453],["2021-12-28",304838,876,289329],["2021-12-29",304838,892,290221],["2021-12-30",304838,680,290901],["2021-12-31",304838,354,291255],["2022-01-01",304838,51,291306],["2022-01-02",304838,204,291510],["2022-01-03",304838,301,291811],["2022-01-04",304838,1,291812]]} \ No newline at end of file diff --git a/public/data/overall/vaccinations/by-county/Clinch.json b/public/data/overall/vaccinations/by-county/Clinch.json new file mode 100644 index 000000000..12cf7a793 --- /dev/null +++ b/public/data/overall/vaccinations/by-county/Clinch.json @@ -0,0 +1 @@ +{"segment":{"county":"Clinch"},"headers":["report_date","population","vaccinations","total_vaccinations"],"rows":[["2020-12-22",6656,5,5],["2020-12-23",6656,5,10],["2020-12-24",6656,2,12],["2020-12-26",6656,1,13],["2020-12-28",6656,6,19],["2020-12-29",6656,4,23],["2020-12-30",6656,16,39],["2020-12-31",6656,16,55],["2021-01-04",6656,4,59],["2021-01-05",6656,6,65],["2021-01-06",6656,4,69],["2021-01-07",6656,16,85],["2021-01-08",6656,5,90],["2021-01-09",6656,1,91],["2021-01-10",6656,1,92],["2021-01-11",6656,18,110],["2021-01-12",6656,101,211],["2021-01-13",6656,70,281],["2021-01-14",6656,53,334],["2021-01-15",6656,7,341],["2021-01-16",6656,3,344],["2021-01-18",6656,2,346],["2021-01-19",6656,48,394],["2021-01-20",6656,100,494],["2021-01-21",6656,8,502],["2021-01-22",6656,12,514],["2021-01-23",6656,1,515],["2021-01-25",6656,12,527],["2021-01-26",6656,7,534],["2021-01-27",6656,26,560],["2021-01-28",6656,10,570],["2021-01-29",6656,40,610],["2021-01-30",6656,1,611],["2021-01-31",6656,1,612],["2021-02-01",6656,17,629],["2021-02-02",6656,69,698],["2021-02-03",6656,19,717],["2021-02-04",6656,10,727],["2021-02-05",6656,34,761],["2021-02-06",6656,1,762],["2021-02-07",6656,1,763],["2021-02-08",6656,14,777],["2021-02-09",6656,6,783],["2021-02-10",6656,112,895],["2021-02-11",6656,55,950],["2021-02-12",6656,12,962],["2021-02-13",6656,3,965],["2021-02-15",6656,6,971],["2021-02-16",6656,56,1027],["2021-02-17",6656,39,1066],["2021-02-18",6656,86,1152],["2021-02-19",6656,13,1165],["2021-02-22",6656,12,1177],["2021-02-23",6656,9,1186],["2021-02-24",6656,55,1241],["2021-02-25",6656,7,1248],["2021-02-26",6656,96,1344],["2021-02-27",6656,1,1345],["2021-02-28",6656,1,1346],["2021-03-01",6656,7,1353],["2021-03-02",6656,2,1355],["2021-03-03",6656,27,1382],["2021-03-04",6656,11,1393],["2021-03-05",6656,46,1439],["2021-03-06",6656,2,1441],["2021-03-07",6656,1,1442],["2021-03-08",6656,8,1450],["2021-03-09",6656,7,1457],["2021-03-10",6656,40,1497],["2021-03-11",6656,77,1574],["2021-03-12",6656,9,1583],["2021-03-13",6656,1,1584],["2021-03-15",6656,4,1588],["2021-03-16",6656,10,1598],["2021-03-17",6656,39,1637],["2021-03-18",6656,27,1664],["2021-03-19",6656,113,1777],["2021-03-20",6656,5,1782],["2021-03-22",6656,8,1790],["2021-03-23",6656,10,1800],["2021-03-24",6656,58,1858],["2021-03-25",6656,13,1871],["2021-03-26",6656,135,2006],["2021-03-27",6656,7,2013],["2021-03-28",6656,10,2023],["2021-03-29",6656,7,2030],["2021-03-30",6656,8,2038],["2021-03-31",6656,90,2128],["2021-04-01",6656,14,2142],["2021-04-02",6656,88,2230],["2021-04-03",6656,7,2237],["2021-04-04",6656,1,2238],["2021-04-05",6656,11,2249],["2021-04-06",6656,13,2262],["2021-04-07",6656,58,2320],["2021-04-08",6656,12,2332],["2021-04-09",6656,97,2429],["2021-04-10",6656,6,2435],["2021-04-11",6656,1,2436],["2021-04-12",6656,9,2445],["2021-04-13",6656,12,2457],["2021-04-14",6656,66,2523],["2021-04-15",6656,33,2556],["2021-04-16",6656,99,2655],["2021-04-17",6656,7,2662],["2021-04-18",6656,1,2663],["2021-04-19",6656,3,2666],["2021-04-20",6656,16,2682],["2021-04-21",6656,31,2713],["2021-04-22",6656,31,2744],["2021-04-23",6656,101,2845],["2021-04-24",6656,6,2851],["2021-04-25",6656,8,2859],["2021-04-26",6656,8,2867],["2021-04-27",6656,15,2882],["2021-04-28",6656,34,2916],["2021-04-29",6656,18,2934],["2021-04-30",6656,62,2996],["2021-05-01",6656,6,3002],["2021-05-02",6656,3,3005],["2021-05-03",6656,7,3012],["2021-05-04",6656,4,3016],["2021-05-05",6656,32,3048],["2021-05-06",6656,32,3080],["2021-05-07",6656,86,3166],["2021-05-08",6656,1,3167],["2021-05-10",6656,1,3168],["2021-05-11",6656,9,3177],["2021-05-12",6656,21,3198],["2021-05-13",6656,26,3224],["2021-05-14",6656,8,3232],["2021-05-15",6656,6,3238],["2021-05-16",6656,1,3239],["2021-05-17",6656,9,3248],["2021-05-18",6656,6,3254],["2021-05-19",6656,27,3281],["2021-05-20",6656,6,3287],["2021-05-21",6656,36,3323],["2021-05-22",6656,3,3326],["2021-05-24",6656,8,3334],["2021-05-25",6656,9,3343],["2021-05-26",6656,21,3364],["2021-05-27",6656,11,3375],["2021-05-28",6656,9,3384],["2021-05-29",6656,4,3388],["2021-05-30",6656,1,3389],["2021-06-01",6656,10,3399],["2021-06-02",6656,21,3420],["2021-06-03",6656,7,3427],["2021-06-04",6656,15,3442],["2021-06-05",6656,4,3446],["2021-06-06",6656,1,3447],["2021-06-07",6656,10,3457],["2021-06-08",6656,3,3460],["2021-06-09",6656,8,3468],["2021-06-10",6656,9,3477],["2021-06-11",6656,18,3495],["2021-06-12",6656,7,3502],["2021-06-14",6656,6,3508],["2021-06-15",6656,3,3511],["2021-06-16",6656,20,3531],["2021-06-17",6656,5,3536],["2021-06-18",6656,8,3544],["2021-06-19",6656,9,3553],["2021-06-21",6656,6,3559],["2021-06-22",6656,5,3564],["2021-06-23",6656,9,3573],["2021-06-24",6656,11,3584],["2021-06-25",6656,16,3600],["2021-06-26",6656,1,3601],["2021-06-27",6656,2,3603],["2021-06-28",6656,10,3613],["2021-06-29",6656,2,3615],["2021-06-30",6656,9,3624],["2021-07-01",6656,8,3632],["2021-07-02",6656,7,3639],["2021-07-03",6656,1,3640],["2021-07-05",6656,5,3645],["2021-07-06",6656,3,3648],["2021-07-07",6656,7,3655],["2021-07-08",6656,5,3660],["2021-07-09",6656,12,3672],["2021-07-10",6656,7,3679],["2021-07-12",6656,5,3684],["2021-07-13",6656,6,3690],["2021-07-14",6656,12,3702],["2021-07-15",6656,8,3710],["2021-07-16",6656,11,3721],["2021-07-17",6656,1,3722],["2021-07-19",6656,10,3732],["2021-07-20",6656,4,3736],["2021-07-21",6656,13,3749],["2021-07-22",6656,12,3761],["2021-07-23",6656,14,3775],["2021-07-24",6656,6,3781],["2021-07-25",6656,4,3785],["2021-07-26",6656,17,3802],["2021-07-27",6656,26,3828],["2021-07-28",6656,44,3872],["2021-07-29",6656,32,3904],["2021-07-30",6656,42,3946],["2021-07-31",6656,7,3953],["2021-08-01",6656,2,3955],["2021-08-02",6656,29,3984],["2021-08-03",6656,24,4008],["2021-08-04",6656,26,4034],["2021-08-05",6656,32,4066],["2021-08-06",6656,47,4113],["2021-08-07",6656,11,4124],["2021-08-08",6656,1,4125],["2021-08-09",6656,45,4170],["2021-08-10",6656,21,4191],["2021-08-11",6656,47,4238],["2021-08-12",6656,35,4273],["2021-08-13",6656,45,4318],["2021-08-14",6656,7,4325],["2021-08-15",6656,5,4330],["2021-08-16",6656,30,4360],["2021-08-17",6656,22,4382],["2021-08-18",6656,42,4424],["2021-08-19",6656,30,4454],["2021-08-20",6656,31,4485],["2021-08-21",6656,9,4494],["2021-08-22",6656,5,4499],["2021-08-23",6656,26,4525],["2021-08-24",6656,28,4553],["2021-08-25",6656,56,4609],["2021-08-26",6656,36,4645],["2021-08-27",6656,49,4694],["2021-08-28",6656,14,4708],["2021-08-29",6656,6,4714],["2021-08-30",6656,26,4740],["2021-08-31",6656,27,4767],["2021-09-01",6656,27,4794],["2021-09-02",6656,40,4834],["2021-09-03",6656,36,4870],["2021-09-04",6656,2,4872],["2021-09-05",6656,1,4873],["2021-09-06",6656,10,4883],["2021-09-07",6656,38,4921],["2021-09-08",6656,22,4943],["2021-09-09",6656,27,4970],["2021-09-10",6656,38,5008],["2021-09-11",6656,2,5010],["2021-09-13",6656,18,5028],["2021-09-14",6656,11,5039],["2021-09-15",6656,19,5058],["2021-09-16",6656,24,5082],["2021-09-17",6656,22,5104],["2021-09-18",6656,3,5107],["2021-09-19",6656,2,5109],["2021-09-20",6656,18,5127],["2021-09-21",6656,6,5133],["2021-09-22",6656,35,5168],["2021-09-23",6656,8,5176],["2021-09-24",6656,6,5182],["2021-09-25",6656,2,5184],["2021-09-26",6656,1,5185],["2021-09-27",6656,5,5190],["2021-09-28",6656,13,5203],["2021-09-29",6656,5,5208],["2021-09-30",6656,7,5215],["2021-10-01",6656,2,5217],["2021-10-02",6656,2,5219],["2021-10-03",6656,1,5220],["2021-10-04",6656,9,5229],["2021-10-05",6656,4,5233],["2021-10-06",6656,6,5239],["2021-10-07",6656,11,5250],["2021-10-08",6656,6,5256],["2021-10-10",6656,1,5257],["2021-10-11",6656,3,5260],["2021-10-12",6656,4,5264],["2021-10-13",6656,5,5269],["2021-10-14",6656,5,5274],["2021-10-15",6656,11,5285],["2021-10-18",6656,4,5289],["2021-10-19",6656,6,5295],["2021-10-20",6656,2,5297],["2021-10-21",6656,3,5300],["2021-10-22",6656,6,5306],["2021-10-23",6656,3,5309],["2021-10-25",6656,4,5313],["2021-10-26",6656,17,5330],["2021-10-27",6656,17,5347],["2021-10-28",6656,11,5358],["2021-10-29",6656,12,5370],["2021-10-30",6656,4,5374],["2021-10-31",6656,1,5375],["2021-11-01",6656,18,5393],["2021-11-02",6656,15,5408],["2021-11-03",6656,11,5419],["2021-11-04",6656,18,5437],["2021-11-05",6656,22,5459],["2021-11-06",6656,3,5462],["2021-11-07",6656,2,5464],["2021-11-08",6656,15,5479],["2021-11-09",6656,14,5493],["2021-11-10",6656,22,5515],["2021-11-11",6656,15,5530],["2021-11-12",6656,10,5540],["2021-11-13",6656,1,5541],["2021-11-15",6656,10,5551],["2021-11-16",6656,15,5566],["2021-11-17",6656,12,5578],["2021-11-18",6656,7,5585],["2021-11-19",6656,16,5601],["2021-11-20",6656,2,5603],["2021-11-22",6656,14,5617],["2021-11-23",6656,17,5634],["2021-11-24",6656,11,5645],["2021-11-25",6656,1,5646],["2021-11-26",6656,1,5647],["2021-11-27",6656,5,5652],["2021-11-28",6656,1,5653],["2021-11-29",6656,22,5675],["2021-11-30",6656,22,5697],["2021-12-01",6656,30,5727],["2021-12-02",6656,24,5751],["2021-12-03",6656,35,5786],["2021-12-04",6656,7,5793],["2021-12-05",6656,2,5795],["2021-12-06",6656,17,5812],["2021-12-07",6656,9,5821],["2021-12-08",6656,10,5831],["2021-12-09",6656,17,5848],["2021-12-10",6656,10,5858],["2021-12-11",6656,1,5859],["2021-12-13",6656,11,5870],["2021-12-14",6656,10,5880],["2021-12-15",6656,13,5893],["2021-12-16",6656,10,5903],["2021-12-17",6656,9,5912],["2021-12-18",6656,2,5914],["2021-12-19",6656,2,5916],["2021-12-20",6656,11,5927],["2021-12-21",6656,22,5949],["2021-12-22",6656,22,5971],["2021-12-23",6656,8,5979],["2021-12-24",6656,2,5981],["2021-12-26",6656,1,5982],["2021-12-27",6656,15,5997],["2021-12-28",6656,15,6012],["2021-12-29",6656,22,6034],["2021-12-30",6656,29,6063],["2021-12-31",6656,9,6072],["2022-01-01",6656,1,6073],["2022-01-02",6656,2,6075],["2022-01-03",6656,2,6077]]} \ No newline at end of file diff --git a/public/data/overall/vaccinations/by-county/Cobb.json b/public/data/overall/vaccinations/by-county/Cobb.json new file mode 100644 index 000000000..1485b9fb8 --- /dev/null +++ b/public/data/overall/vaccinations/by-county/Cobb.json @@ -0,0 +1 @@ +{"segment":{"county":"Cobb"},"headers":["report_date","population","vaccinations","total_vaccinations"],"rows":[["2020-12-12",790588,1,1],["2020-12-15",790588,1,2],["2020-12-16",790588,6,8],["2020-12-17",790588,122,130],["2020-12-18",790588,407,537],["2020-12-19",790588,254,791],["2020-12-20",790588,267,1058],["2020-12-21",790588,585,1643],["2020-12-22",790588,937,2580],["2020-12-23",790588,1018,3598],["2020-12-24",790588,390,3988],["2020-12-25",790588,14,4002],["2020-12-26",790588,159,4161],["2020-12-27",790588,173,4334],["2020-12-28",790588,1406,5740],["2020-12-29",790588,1166,6906],["2020-12-30",790588,1440,8346],["2020-12-31",790588,562,8908],["2021-01-01",790588,268,9176],["2021-01-02",790588,165,9341],["2021-01-03",790588,194,9535],["2021-01-04",790588,1194,10729],["2021-01-05",790588,1385,12114],["2021-01-06",790588,1046,13160],["2021-01-07",790588,1263,14423],["2021-01-08",790588,1616,16039],["2021-01-09",790588,757,16796],["2021-01-10",790588,400,17196],["2021-01-11",790588,2786,19982],["2021-01-12",790588,3065,23047],["2021-01-13",790588,3612,26659],["2021-01-14",790588,3374,30033],["2021-01-15",790588,3372,33405],["2021-01-16",790588,2138,35543],["2021-01-17",790588,702,36245],["2021-01-18",790588,3348,39593],["2021-01-19",790588,3796,43389],["2021-01-20",790588,4054,47443],["2021-01-21",790588,3788,51231],["2021-01-22",790588,3168,54399],["2021-01-23",790588,954,55353],["2021-01-24",790588,538,55891],["2021-01-25",790588,4068,59959],["2021-01-26",790588,3618,63577],["2021-01-27",790588,3772,67349],["2021-01-28",790588,3817,71166],["2021-01-29",790588,3580,74746],["2021-01-30",790588,991,75737],["2021-01-31",790588,265,76002],["2021-02-01",790588,3639,79641],["2021-02-02",790588,3147,82788],["2021-02-03",790588,3280,86068],["2021-02-04",790588,3632,89700],["2021-02-05",790588,3205,92905],["2021-02-06",790588,1154,94059],["2021-02-07",790588,362,94421],["2021-02-08",790588,2913,97334],["2021-02-09",790588,3760,101094],["2021-02-10",790588,3772,104866],["2021-02-11",790588,4076,108942],["2021-02-12",790588,3350,112292],["2021-02-13",790588,2412,114704],["2021-02-14",790588,885,115589],["2021-02-15",790588,4348,119937],["2021-02-16",790588,3359,123296],["2021-02-17",790588,4577,127873],["2021-02-18",790588,4417,132290],["2021-02-19",790588,4102,136392],["2021-02-20",790588,1130,137522],["2021-02-21",790588,387,137909],["2021-02-22",790588,2283,140192],["2021-02-23",790588,3323,143515],["2021-02-24",790588,3829,147344],["2021-02-25",790588,5010,152354],["2021-02-26",790588,4546,156900],["2021-02-27",790588,1388,158288],["2021-02-28",790588,1015,159303],["2021-03-01",790588,3984,163287],["2021-03-02",790588,4187,167474],["2021-03-03",790588,4222,171696],["2021-03-04",790588,4538,176234],["2021-03-05",790588,4405,180639],["2021-03-06",790588,1370,182009],["2021-03-07",790588,1068,183077],["2021-03-08",790588,5097,188174],["2021-03-09",790588,5270,193444],["2021-03-10",790588,5289,198733],["2021-03-11",790588,5763,204496],["2021-03-12",790588,5181,209677],["2021-03-13",790588,1791,211468],["2021-03-14",790588,1416,212884],["2021-03-15",790588,5231,218115],["2021-03-16",790588,6549,224664],["2021-03-17",790588,7071,231735],["2021-03-18",790588,7504,239239],["2021-03-19",790588,8873,248112],["2021-03-20",790588,2783,250895],["2021-03-21",790588,1751,252646],["2021-03-22",790588,6607,259253],["2021-03-23",790588,7162,266415],["2021-03-24",790588,8337,274752],["2021-03-25",790588,8972,283724],["2021-03-26",790588,8712,292436],["2021-03-27",790588,3577,296013],["2021-03-28",790588,2632,298645],["2021-03-29",790588,7986,306631],["2021-03-30",790588,10298,316929],["2021-03-31",790588,10499,327428],["2021-04-01",790588,10730,338158],["2021-04-02",790588,7396,345554],["2021-04-03",790588,3501,349055],["2021-04-04",790588,2214,351269],["2021-04-05",790588,8724,359993],["2021-04-06",790588,10907,370900],["2021-04-07",790588,10244,381144],["2021-04-08",790588,9966,391110],["2021-04-09",790588,10981,402091],["2021-04-10",790588,5189,407280],["2021-04-11",790588,2575,409855],["2021-04-12",790588,9382,419237],["2021-04-13",790588,9914,429151],["2021-04-14",790588,9962,439113],["2021-04-15",790588,9962,449075],["2021-04-16",790588,11267,460342],["2021-04-17",790588,3143,463485],["2021-04-18",790588,3620,467105],["2021-04-19",790588,8957,476062],["2021-04-20",790588,9075,485137],["2021-04-21",790588,9370,494507],["2021-04-22",790588,8945,503452],["2021-04-23",790588,9600,513052],["2021-04-24",790588,3842,516894],["2021-04-25",790588,1774,518668],["2021-04-26",790588,7050,525718],["2021-04-27",790588,6788,532506],["2021-04-28",790588,8942,541448],["2021-04-29",790588,7550,548998],["2021-04-30",790588,8587,557585],["2021-05-01",790588,5127,562712],["2021-05-02",790588,1668,564380],["2021-05-03",790588,5385,569765],["2021-05-04",790588,6137,575902],["2021-05-05",790588,6250,582152],["2021-05-06",790588,5324,587476],["2021-05-07",790588,6709,594185],["2021-05-08",790588,2572,596757],["2021-05-09",790588,1052,597809],["2021-05-10",790588,3940,601749],["2021-05-11",790588,4696,606445],["2021-05-12",790588,4755,611200],["2021-05-13",790588,4144,615344],["2021-05-14",790588,4968,620312],["2021-05-15",790588,3218,623530],["2021-05-16",790588,1875,625405],["2021-05-17",790588,3819,629224],["2021-05-18",790588,4008,633232],["2021-05-19",790588,4678,637910],["2021-05-20",790588,3490,641400],["2021-05-21",790588,4024,645424],["2021-05-22",790588,2790,648214],["2021-05-23",790588,1397,649611],["2021-05-24",790588,2166,651777],["2021-05-25",790588,2617,654394],["2021-05-26",790588,3283,657677],["2021-05-27",790588,2631,660308],["2021-05-28",790588,2704,663012],["2021-05-29",790588,1272,664284],["2021-05-30",790588,912,665196],["2021-05-31",790588,276,665472],["2021-06-01",790588,2741,668213],["2021-06-02",790588,2801,671014],["2021-06-03",790588,2873,673887],["2021-06-04",790588,3039,676926],["2021-06-05",790588,2239,679165],["2021-06-06",790588,1360,680525],["2021-06-07",790588,2349,682874],["2021-06-08",790588,2470,685344],["2021-06-09",790588,2510,687854],["2021-06-10",790588,2292,690146],["2021-06-11",790588,2525,692671],["2021-06-12",790588,1747,694418],["2021-06-13",790588,845,695263],["2021-06-14",790588,1871,697134],["2021-06-15",790588,1905,699039],["2021-06-16",790588,1862,700901],["2021-06-17",790588,1772,702673],["2021-06-18",790588,1949,704622],["2021-06-19",790588,1234,705856],["2021-06-20",790588,765,706621],["2021-06-21",790588,1156,707777],["2021-06-22",790588,1463,709240],["2021-06-23",790588,1487,710727],["2021-06-24",790588,1425,712152],["2021-06-25",790588,1589,713741],["2021-06-26",790588,1124,714865],["2021-06-27",790588,725,715590],["2021-06-28",790588,1269,716859],["2021-06-29",790588,1359,718218],["2021-06-30",790588,1263,719481],["2021-07-01",790588,1169,720650],["2021-07-02",790588,1289,721939],["2021-07-03",790588,977,722916],["2021-07-04",790588,89,723005],["2021-07-05",790588,948,723953],["2021-07-06",790588,1192,725145],["2021-07-07",790588,1125,726270],["2021-07-08",790588,1101,727371],["2021-07-09",790588,1291,728662],["2021-07-10",790588,984,729646],["2021-07-11",790588,616,730262],["2021-07-12",790588,1175,731437],["2021-07-13",790588,1042,732479],["2021-07-14",790588,1040,733519],["2021-07-15",790588,992,734511],["2021-07-16",790588,1272,735783],["2021-07-17",790588,1056,736839],["2021-07-18",790588,688,737527],["2021-07-19",790588,1293,738820],["2021-07-20",790588,1328,740148],["2021-07-21",790588,1306,741454],["2021-07-22",790588,1397,742851],["2021-07-23",790588,1703,744554],["2021-07-24",790588,1318,745872],["2021-07-25",790588,785,746657],["2021-07-26",790588,1473,748130],["2021-07-27",790588,1528,749658],["2021-07-28",790588,1697,751355],["2021-07-29",790588,1597,752952],["2021-07-30",790588,1964,754916],["2021-07-31",790588,1464,756380],["2021-08-01",790588,1029,757409],["2021-08-02",790588,1648,759057],["2021-08-03",790588,1652,760709],["2021-08-04",790588,1556,762265],["2021-08-05",790588,1661,763926],["2021-08-06",790588,2007,765933],["2021-08-07",790588,1622,767555],["2021-08-08",790588,1135,768690],["2021-08-09",790588,1803,770493],["2021-08-10",790588,1886,772379],["2021-08-11",790588,1641,774020],["2021-08-12",790588,1697,775717],["2021-08-13",790588,2069,777786],["2021-08-14",790588,1744,779530],["2021-08-15",790588,1160,780690],["2021-08-16",790588,1818,782508],["2021-08-17",790588,1832,784340],["2021-08-18",790588,1911,786251],["2021-08-19",790588,1836,788087],["2021-08-20",790588,2344,790431],["2021-08-21",790588,1796,792227],["2021-08-22",790588,1142,793369],["2021-08-23",790588,2060,795429],["2021-08-24",790588,1873,797302],["2021-08-25",790588,1904,799206],["2021-08-26",790588,1917,801123],["2021-08-27",790588,2432,803555],["2021-08-28",790588,1725,805280],["2021-08-29",790588,1095,806375],["2021-08-30",790588,1971,808346],["2021-08-31",790588,1819,810165],["2021-09-01",790588,1924,812089],["2021-09-02",790588,1750,813839],["2021-09-03",790588,2178,816017],["2021-09-04",790588,1468,817485],["2021-09-05",790588,978,818463],["2021-09-06",790588,289,818752],["2021-09-07",790588,1868,820620],["2021-09-08",790588,1730,822350],["2021-09-09",790588,1630,823980],["2021-09-10",790588,2032,826012],["2021-09-11",790588,1371,827383],["2021-09-12",790588,890,828273],["2021-09-13",790588,1502,829775],["2021-09-14",790588,1367,831142],["2021-09-15",790588,1296,832438],["2021-09-16",790588,1218,833656],["2021-09-17",790588,1628,835284],["2021-09-18",790588,1089,836373],["2021-09-19",790588,675,837048],["2021-09-20",790588,1329,838377],["2021-09-21",790588,1189,839566],["2021-09-22",790588,1033,840599],["2021-09-23",790588,1035,841634],["2021-09-24",790588,1664,843298],["2021-09-25",790588,1222,844520],["2021-09-26",790588,850,845370],["2021-09-27",790588,1808,847178],["2021-09-28",790588,1818,848996],["2021-09-29",790588,1745,850741],["2021-09-30",790588,1729,852470],["2021-10-01",790588,2072,854542],["2021-10-02",790588,1141,855683],["2021-10-03",790588,772,856455],["2021-10-04",790588,1603,858058],["2021-10-05",790588,1560,859618],["2021-10-06",790588,1446,861064],["2021-10-07",790588,1547,862611],["2021-10-08",790588,1850,864461],["2021-10-09",790588,992,865453],["2021-10-10",790588,752,866205],["2021-10-11",790588,1397,867602],["2021-10-12",790588,1368,868970],["2021-10-13",790588,1210,870180],["2021-10-14",790588,1401,871581],["2021-10-15",790588,1513,873094],["2021-10-16",790588,951,874045],["2021-10-17",790588,594,874639],["2021-10-18",790588,1362,876001],["2021-10-19",790588,1288,877289],["2021-10-20",790588,1161,878450],["2021-10-21",790588,1277,879727],["2021-10-22",790588,2496,882223],["2021-10-23",790588,1850,884073],["2021-10-24",790588,1078,885151],["2021-10-25",790588,2766,887917],["2021-10-26",790588,2411,890328],["2021-10-27",790588,2501,892829],["2021-10-28",790588,2257,895086],["2021-10-29",790588,2898,897984],["2021-10-30",790588,1782,899766],["2021-10-31",790588,995,900761],["2021-11-01",790588,2428,903189],["2021-11-02",790588,2350,905539],["2021-11-03",790588,2483,908022],["2021-11-04",790588,2344,910366],["2021-11-05",790588,3374,913740],["2021-11-06",790588,2099,915839],["2021-11-07",790588,1253,917092],["2021-11-08",790588,2408,919500],["2021-11-09",790588,2427,921927],["2021-11-10",790588,2409,924336],["2021-11-11",790588,2391,926727],["2021-11-12",790588,3441,930168],["2021-11-13",790588,2544,932712],["2021-11-14",790588,1190,933902],["2021-11-15",790588,2560,936462],["2021-11-16",790588,2539,939001],["2021-11-17",790588,2473,941474],["2021-11-18",790588,2621,944095],["2021-11-19",790588,3604,947699],["2021-11-20",790588,2548,950247],["2021-11-21",790588,1564,951811],["2021-11-22",790588,3403,955214],["2021-11-23",790588,3021,958235],["2021-11-24",790588,2277,960512],["2021-11-25",790588,6,960518],["2021-11-26",790588,2851,963369],["2021-11-27",790588,2162,965531],["2021-11-28",790588,1466,966997],["2021-11-29",790588,3184,970181],["2021-11-30",790588,3274,973455],["2021-12-01",790588,3649,977104],["2021-12-02",790588,3711,980815],["2021-12-03",790588,4431,985246],["2021-12-04",790588,3382,988628],["2021-12-05",790588,1609,990237],["2021-12-06",790588,3399,993636],["2021-12-07",790588,3332,996968],["2021-12-08",790588,3230,1000198],["2021-12-09",790588,3442,1003640],["2021-12-10",790588,3990,1007630],["2021-12-11",790588,2680,1010310],["2021-12-12",790588,1470,1011780],["2021-12-13",790588,2922,1014702],["2021-12-14",790588,2945,1017647],["2021-12-15",790588,2772,1020419],["2021-12-16",790588,2760,1023179],["2021-12-17",790588,3382,1026561],["2021-12-18",790588,2556,1029117],["2021-12-19",790588,1496,1030613],["2021-12-20",790588,3498,1034111],["2021-12-21",790588,3654,1037765],["2021-12-22",790588,3357,1041122],["2021-12-23",790588,2923,1044045],["2021-12-24",790588,1077,1045122],["2021-12-25",790588,3,1045125],["2021-12-26",790588,1055,1046180],["2021-12-27",790588,3156,1049336],["2021-12-28",790588,3076,1052412],["2021-12-29",790588,2899,1055311],["2021-12-30",790588,2349,1057660],["2021-12-31",790588,1209,1058869],["2022-01-01",790588,181,1059050],["2022-01-02",790588,763,1059813],["2022-01-03",790588,765,1060578]]} \ No newline at end of file diff --git a/public/data/overall/vaccinations/by-county/Coffee.json b/public/data/overall/vaccinations/by-county/Coffee.json new file mode 100644 index 000000000..9464f8b62 --- /dev/null +++ b/public/data/overall/vaccinations/by-county/Coffee.json @@ -0,0 +1 @@ +{"segment":{"county":"Coffee"},"headers":["report_date","population","vaccinations","total_vaccinations"],"rows":[["2020-12-18",43042,1,1],["2020-12-19",43042,2,3],["2020-12-21",43042,3,6],["2020-12-22",43042,9,15],["2020-12-23",43042,67,82],["2020-12-24",43042,40,122],["2020-12-26",43042,1,123],["2020-12-27",43042,2,125],["2020-12-28",43042,49,174],["2020-12-29",43042,19,193],["2020-12-30",43042,93,286],["2020-12-31",43042,26,312],["2021-01-01",43042,41,353],["2021-01-03",43042,2,355],["2021-01-04",43042,64,419],["2021-01-05",43042,48,467],["2021-01-06",43042,78,545],["2021-01-07",43042,114,659],["2021-01-08",43042,180,839],["2021-01-09",43042,20,859],["2021-01-10",43042,92,951],["2021-01-11",43042,197,1148],["2021-01-12",43042,263,1411],["2021-01-13",43042,261,1672],["2021-01-14",43042,301,1973],["2021-01-15",43042,129,2102],["2021-01-16",43042,4,2106],["2021-01-17",43042,7,2113],["2021-01-18",43042,167,2280],["2021-01-19",43042,261,2541],["2021-01-20",43042,234,2775],["2021-01-21",43042,241,3016],["2021-01-22",43042,192,3208],["2021-01-23",43042,48,3256],["2021-01-24",43042,9,3265],["2021-01-25",43042,207,3472],["2021-01-26",43042,207,3679],["2021-01-27",43042,235,3914],["2021-01-28",43042,228,4142],["2021-01-29",43042,108,4250],["2021-01-30",43042,5,4255],["2021-01-31",43042,77,4332],["2021-02-01",43042,188,4520],["2021-02-02",43042,55,4575],["2021-02-03",43042,99,4674],["2021-02-04",43042,248,4922],["2021-02-05",43042,111,5033],["2021-02-06",43042,7,5040],["2021-02-07",43042,15,5055],["2021-02-08",43042,223,5278],["2021-02-09",43042,246,5524],["2021-02-10",43042,314,5838],["2021-02-11",43042,357,6195],["2021-02-12",43042,201,6396],["2021-02-13",43042,20,6416],["2021-02-14",43042,13,6429],["2021-02-15",43042,193,6622],["2021-02-16",43042,345,6967],["2021-02-17",43042,309,7276],["2021-02-18",43042,48,7324],["2021-02-19",43042,218,7542],["2021-02-20",43042,74,7616],["2021-02-21",43042,2,7618],["2021-02-22",43042,214,7832],["2021-02-23",43042,46,7878],["2021-02-24",43042,353,8231],["2021-02-25",43042,230,8461],["2021-02-26",43042,93,8554],["2021-02-27",43042,14,8568],["2021-02-28",43042,3,8571],["2021-03-01",43042,236,8807],["2021-03-02",43042,38,8845],["2021-03-03",43042,391,9236],["2021-03-04",43042,26,9262],["2021-03-05",43042,115,9377],["2021-03-06",43042,14,9391],["2021-03-07",43042,1,9392],["2021-03-08",43042,113,9505],["2021-03-09",43042,69,9574],["2021-03-10",43042,278,9852],["2021-03-11",43042,131,9983],["2021-03-12",43042,303,10286],["2021-03-13",43042,18,10304],["2021-03-14",43042,19,10323],["2021-03-15",43042,179,10502],["2021-03-16",43042,189,10691],["2021-03-17",43042,337,11028],["2021-03-18",43042,60,11088],["2021-03-19",43042,217,11305],["2021-03-20",43042,29,11334],["2021-03-21",43042,7,11341],["2021-03-22",43042,158,11499],["2021-03-23",43042,166,11665],["2021-03-24",43042,282,11947],["2021-03-25",43042,123,12070],["2021-03-26",43042,326,12396],["2021-03-27",43042,21,12417],["2021-03-28",43042,7,12424],["2021-03-29",43042,152,12576],["2021-03-30",43042,188,12764],["2021-03-31",43042,479,13243],["2021-04-01",43042,268,13511],["2021-04-02",43042,316,13827],["2021-04-03",43042,68,13895],["2021-04-04",43042,11,13906],["2021-04-05",43042,136,14042],["2021-04-06",43042,229,14271],["2021-04-07",43042,361,14632],["2021-04-08",43042,218,14850],["2021-04-09",43042,192,15042],["2021-04-10",43042,17,15059],["2021-04-11",43042,19,15078],["2021-04-12",43042,151,15229],["2021-04-13",43042,205,15434],["2021-04-14",43042,276,15710],["2021-04-15",43042,85,15795],["2021-04-16",43042,339,16134],["2021-04-17",43042,47,16181],["2021-04-18",43042,4,16185],["2021-04-19",43042,132,16317],["2021-04-20",43042,190,16507],["2021-04-21",43042,281,16788],["2021-04-22",43042,101,16889],["2021-04-23",43042,182,17071],["2021-04-24",43042,31,17102],["2021-04-25",43042,3,17105],["2021-04-26",43042,98,17203],["2021-04-27",43042,182,17385],["2021-04-28",43042,268,17653],["2021-04-29",43042,111,17764],["2021-04-30",43042,171,17935],["2021-05-01",43042,55,17990],["2021-05-02",43042,1,17991],["2021-05-03",43042,53,18044],["2021-05-04",43042,141,18185],["2021-05-05",43042,196,18381],["2021-05-06",43042,72,18453],["2021-05-07",43042,160,18613],["2021-05-08",43042,30,18643],["2021-05-09",43042,12,18655],["2021-05-10",43042,32,18687],["2021-05-11",43042,116,18803],["2021-05-12",43042,209,19012],["2021-05-13",43042,87,19099],["2021-05-14",43042,111,19210],["2021-05-15",43042,39,19249],["2021-05-16",43042,8,19257],["2021-05-17",43042,43,19300],["2021-05-18",43042,96,19396],["2021-05-19",43042,160,19556],["2021-05-20",43042,89,19645],["2021-05-21",43042,71,19716],["2021-05-22",43042,46,19762],["2021-05-24",43042,19,19781],["2021-05-25",43042,78,19859],["2021-05-26",43042,153,20012],["2021-05-27",43042,103,20115],["2021-05-28",43042,82,20197],["2021-05-29",43042,38,20235],["2021-05-30",43042,6,20241],["2021-05-31",43042,8,20249],["2021-06-01",43042,72,20321],["2021-06-02",43042,124,20445],["2021-06-03",43042,67,20512],["2021-06-04",43042,70,20582],["2021-06-05",43042,22,20604],["2021-06-06",43042,12,20616],["2021-06-07",43042,34,20650],["2021-06-08",43042,62,20712],["2021-06-09",43042,68,20780],["2021-06-10",43042,68,20848],["2021-06-11",43042,77,20925],["2021-06-12",43042,21,20946],["2021-06-13",43042,8,20954],["2021-06-14",43042,27,20981],["2021-06-15",43042,193,21174],["2021-06-16",43042,75,21249],["2021-06-17",43042,42,21291],["2021-06-18",43042,58,21349],["2021-06-19",43042,46,21395],["2021-06-20",43042,3,21398],["2021-06-21",43042,17,21415],["2021-06-22",43042,55,21470],["2021-06-23",43042,72,21542],["2021-06-24",43042,42,21584],["2021-06-25",43042,46,21630],["2021-06-26",43042,30,21660],["2021-06-27",43042,9,21669],["2021-06-28",43042,25,21694],["2021-06-29",43042,155,21849],["2021-06-30",43042,85,21934],["2021-07-01",43042,44,21978],["2021-07-02",43042,36,22014],["2021-07-03",43042,22,22036],["2021-07-04",43042,2,22038],["2021-07-05",43042,26,22064],["2021-07-06",43042,57,22121],["2021-07-07",43042,68,22189],["2021-07-08",43042,32,22221],["2021-07-09",43042,56,22277],["2021-07-10",43042,11,22288],["2021-07-11",43042,3,22291],["2021-07-12",43042,26,22317],["2021-07-13",43042,82,22399],["2021-07-14",43042,89,22488],["2021-07-15",43042,47,22535],["2021-07-16",43042,82,22617],["2021-07-17",43042,36,22653],["2021-07-18",43042,8,22661],["2021-07-19",43042,73,22734],["2021-07-20",43042,139,22873],["2021-07-21",43042,88,22961],["2021-07-22",43042,59,23020],["2021-07-23",43042,91,23111],["2021-07-24",43042,49,23160],["2021-07-25",43042,15,23175],["2021-07-26",43042,84,23259],["2021-07-27",43042,157,23416],["2021-07-28",43042,161,23577],["2021-07-29",43042,104,23681],["2021-07-30",43042,224,23905],["2021-07-31",43042,33,23938],["2021-08-01",43042,101,24039],["2021-08-02",43042,111,24150],["2021-08-03",43042,250,24400],["2021-08-04",43042,192,24592],["2021-08-05",43042,143,24735],["2021-08-06",43042,195,24930],["2021-08-07",43042,78,25008],["2021-08-08",43042,23,25031],["2021-08-09",43042,127,25158],["2021-08-10",43042,256,25414],["2021-08-11",43042,236,25650],["2021-08-12",43042,141,25791],["2021-08-13",43042,322,26113],["2021-08-14",43042,86,26199],["2021-08-15",43042,28,26227],["2021-08-16",43042,176,26403],["2021-08-17",43042,253,26656],["2021-08-18",43042,231,26887],["2021-08-19",43042,150,27037],["2021-08-20",43042,219,27256],["2021-08-21",43042,74,27330],["2021-08-22",43042,25,27355],["2021-08-23",43042,150,27505],["2021-08-24",43042,233,27738],["2021-08-25",43042,168,27906],["2021-08-26",43042,128,28034],["2021-08-27",43042,197,28231],["2021-08-28",43042,78,28309],["2021-08-29",43042,121,28430],["2021-08-30",43042,132,28562],["2021-08-31",43042,210,28772],["2021-09-01",43042,168,28940],["2021-09-02",43042,165,29105],["2021-09-03",43042,221,29326],["2021-09-04",43042,46,29372],["2021-09-05",43042,27,29399],["2021-09-06",43042,27,29426],["2021-09-07",43042,155,29581],["2021-09-08",43042,168,29749],["2021-09-09",43042,108,29857],["2021-09-10",43042,243,30100],["2021-09-11",43042,77,30177],["2021-09-12",43042,27,30204],["2021-09-13",43042,121,30325],["2021-09-14",43042,139,30464],["2021-09-15",43042,134,30598],["2021-09-16",43042,98,30696],["2021-09-17",43042,185,30881],["2021-09-18",43042,46,30927],["2021-09-19",43042,14,30941],["2021-09-20",43042,72,31013],["2021-09-21",43042,101,31114],["2021-09-22",43042,92,31206],["2021-09-23",43042,51,31257],["2021-09-24",43042,107,31364],["2021-09-25",43042,38,31402],["2021-09-26",43042,43,31445],["2021-09-27",43042,73,31518],["2021-09-28",43042,87,31605],["2021-09-29",43042,69,31674],["2021-09-30",43042,57,31731],["2021-10-01",43042,87,31818],["2021-10-02",43042,27,31845],["2021-10-03",43042,6,31851],["2021-10-04",43042,72,31923],["2021-10-05",43042,51,31974],["2021-10-06",43042,51,32025],["2021-10-07",43042,35,32060],["2021-10-08",43042,66,32126],["2021-10-09",43042,13,32139],["2021-10-10",43042,7,32146],["2021-10-11",43042,34,32180],["2021-10-12",43042,34,32214],["2021-10-13",43042,45,32259],["2021-10-14",43042,51,32310],["2021-10-15",43042,37,32347],["2021-10-16",43042,20,32367],["2021-10-17",43042,7,32374],["2021-10-18",43042,30,32404],["2021-10-19",43042,37,32441],["2021-10-20",43042,25,32466],["2021-10-21",43042,22,32488],["2021-10-22",43042,107,32595],["2021-10-23",43042,30,32625],["2021-10-24",43042,8,32633],["2021-10-25",43042,59,32692],["2021-10-26",43042,104,32796],["2021-10-27",43042,190,32986],["2021-10-28",43042,65,33051],["2021-10-29",43042,142,33193],["2021-10-30",43042,23,33216],["2021-10-31",43042,10,33226],["2021-11-01",43042,62,33288],["2021-11-02",43042,100,33388],["2021-11-03",43042,186,33574],["2021-11-04",43042,76,33650],["2021-11-05",43042,106,33756],["2021-11-06",43042,18,33774],["2021-11-07",43042,5,33779],["2021-11-08",43042,96,33875],["2021-11-09",43042,89,33964],["2021-11-10",43042,142,34106],["2021-11-11",43042,34,34140],["2021-11-12",43042,111,34251],["2021-11-13",43042,31,34282],["2021-11-14",43042,7,34289],["2021-11-15",43042,72,34361],["2021-11-16",43042,97,34458],["2021-11-17",43042,158,34616],["2021-11-18",43042,53,34669],["2021-11-19",43042,112,34781],["2021-11-20",43042,15,34796],["2021-11-21",43042,17,34813],["2021-11-22",43042,106,34919],["2021-11-23",43042,106,35025],["2021-11-24",43042,88,35113],["2021-11-26",43042,21,35134],["2021-11-27",43042,24,35158],["2021-11-28",43042,12,35170],["2021-11-29",43042,104,35274],["2021-11-30",43042,152,35426],["2021-12-01",43042,163,35589],["2021-12-02",43042,91,35680],["2021-12-03",43042,163,35843],["2021-12-04",43042,35,35878],["2021-12-05",43042,18,35896],["2021-12-06",43042,101,35997],["2021-12-07",43042,126,36123],["2021-12-08",43042,161,36284],["2021-12-09",43042,48,36332],["2021-12-10",43042,69,36401],["2021-12-11",43042,22,36423],["2021-12-12",43042,9,36432],["2021-12-13",43042,43,36475],["2021-12-14",43042,81,36556],["2021-12-15",43042,120,36676],["2021-12-16",43042,51,36727],["2021-12-17",43042,102,36829],["2021-12-18",43042,22,36851],["2021-12-19",43042,11,36862],["2021-12-20",43042,90,36952],["2021-12-21",43042,120,37072],["2021-12-22",43042,129,37201],["2021-12-23",43042,26,37227],["2021-12-24",43042,14,37241],["2021-12-26",43042,7,37248],["2021-12-27",43042,89,37337],["2021-12-28",43042,86,37423],["2021-12-29",43042,143,37566],["2021-12-30",43042,82,37648],["2021-12-31",43042,65,37713],["2022-01-01",43042,6,37719],["2022-01-02",43042,10,37729],["2022-01-03",43042,38,37767]]} \ No newline at end of file diff --git a/public/data/overall/vaccinations/by-county/Colquitt.json b/public/data/overall/vaccinations/by-county/Colquitt.json new file mode 100644 index 000000000..34202639e --- /dev/null +++ b/public/data/overall/vaccinations/by-county/Colquitt.json @@ -0,0 +1 @@ +{"segment":{"county":"Colquitt"},"headers":["report_date","population","vaccinations","total_vaccinations"],"rows":[["2020-12-16",45393,1,1],["2020-12-17",45393,61,62],["2020-12-18",45393,99,161],["2020-12-19",45393,4,165],["2020-12-20",45393,1,166],["2020-12-21",45393,41,207],["2020-12-22",45393,47,254],["2020-12-23",45393,58,312],["2020-12-24",45393,6,318],["2020-12-26",45393,1,319],["2020-12-27",45393,1,320],["2020-12-28",45393,30,350],["2020-12-29",45393,86,436],["2020-12-30",45393,89,525],["2020-12-31",45393,35,560],["2021-01-01",45393,15,575],["2021-01-02",45393,3,578],["2021-01-03",45393,1,579],["2021-01-04",45393,83,662],["2021-01-05",45393,88,750],["2021-01-06",45393,124,874],["2021-01-07",45393,144,1018],["2021-01-08",45393,280,1298],["2021-01-09",45393,6,1304],["2021-01-10",45393,7,1311],["2021-01-11",45393,129,1440],["2021-01-12",45393,167,1607],["2021-01-13",45393,385,1992],["2021-01-14",45393,115,2107],["2021-01-15",45393,349,2456],["2021-01-16",45393,92,2548],["2021-01-17",45393,1,2549],["2021-01-18",45393,112,2661],["2021-01-19",45393,183,2844],["2021-01-20",45393,763,3607],["2021-01-21",45393,229,3836],["2021-01-22",45393,371,4207],["2021-01-23",45393,19,4226],["2021-01-24",45393,1,4227],["2021-01-25",45393,135,4362],["2021-01-26",45393,160,4522],["2021-01-27",45393,177,4699],["2021-01-28",45393,108,4807],["2021-01-29",45393,112,4919],["2021-01-30",45393,8,4927],["2021-01-31",45393,7,4934],["2021-02-01",45393,120,5054],["2021-02-02",45393,121,5175],["2021-02-03",45393,380,5555],["2021-02-04",45393,162,5717],["2021-02-05",45393,426,6143],["2021-02-06",45393,5,6148],["2021-02-07",45393,2,6150],["2021-02-08",45393,134,6284],["2021-02-09",45393,183,6467],["2021-02-10",45393,393,6860],["2021-02-11",45393,130,6990],["2021-02-12",45393,609,7599],["2021-02-13",45393,53,7652],["2021-02-14",45393,11,7663],["2021-02-15",45393,140,7803],["2021-02-16",45393,175,7978],["2021-02-17",45393,572,8550],["2021-02-18",45393,182,8732],["2021-02-19",45393,150,8882],["2021-02-20",45393,22,8904],["2021-02-21",45393,6,8910],["2021-02-22",45393,106,9016],["2021-02-23",45393,153,9169],["2021-02-24",45393,181,9350],["2021-02-25",45393,124,9474],["2021-02-26",45393,261,9735],["2021-02-27",45393,8,9743],["2021-02-28",45393,4,9747],["2021-03-01",45393,145,9892],["2021-03-02",45393,134,10026],["2021-03-03",45393,262,10288],["2021-03-04",45393,109,10397],["2021-03-05",45393,211,10608],["2021-03-06",45393,13,10621],["2021-03-07",45393,12,10633],["2021-03-08",45393,134,10767],["2021-03-09",45393,138,10905],["2021-03-10",45393,120,11025],["2021-03-11",45393,112,11137],["2021-03-12",45393,255,11392],["2021-03-13",45393,138,11530],["2021-03-14",45393,26,11556],["2021-03-15",45393,124,11680],["2021-03-16",45393,130,11810],["2021-03-17",45393,168,11978],["2021-03-18",45393,126,12104],["2021-03-19",45393,526,12630],["2021-03-20",45393,106,12736],["2021-03-21",45393,17,12753],["2021-03-22",45393,107,12860],["2021-03-23",45393,131,12991],["2021-03-24",45393,140,13131],["2021-03-25",45393,281,13412],["2021-03-26",45393,470,13882],["2021-03-27",45393,11,13893],["2021-03-28",45393,22,13915],["2021-03-29",45393,103,14018],["2021-03-30",45393,196,14214],["2021-03-31",45393,688,14902],["2021-04-01",45393,172,15074],["2021-04-02",45393,488,15562],["2021-04-03",45393,17,15579],["2021-04-04",45393,26,15605],["2021-04-05",45393,197,15802],["2021-04-06",45393,268,16070],["2021-04-07",45393,173,16243],["2021-04-08",45393,283,16526],["2021-04-09",45393,430,16956],["2021-04-10",45393,113,17069],["2021-04-11",45393,26,17095],["2021-04-12",45393,139,17234],["2021-04-13",45393,249,17483],["2021-04-14",45393,180,17663],["2021-04-15",45393,245,17908],["2021-04-16",45393,462,18370],["2021-04-17",45393,96,18466],["2021-04-18",45393,12,18478],["2021-04-19",45393,95,18573],["2021-04-20",45393,275,18848],["2021-04-21",45393,145,18993],["2021-04-22",45393,205,19198],["2021-04-23",45393,537,19735],["2021-04-24",45393,22,19757],["2021-04-25",45393,21,19778],["2021-04-26",45393,59,19837],["2021-04-27",45393,705,20542],["2021-04-28",45393,167,20709],["2021-04-29",45393,194,20903],["2021-04-30",45393,231,21134],["2021-05-01",45393,127,21261],["2021-05-02",45393,17,21278],["2021-05-03",45393,83,21361],["2021-05-04",45393,156,21517],["2021-05-05",45393,108,21625],["2021-05-06",45393,124,21749],["2021-05-07",45393,159,21908],["2021-05-08",45393,27,21935],["2021-05-09",45393,12,21947],["2021-05-10",45393,137,22084],["2021-05-11",45393,168,22252],["2021-05-12",45393,146,22398],["2021-05-13",45393,317,22715],["2021-05-14",45393,169,22884],["2021-05-15",45393,34,22918],["2021-05-16",45393,12,22930],["2021-05-17",45393,54,22984],["2021-05-18",45393,249,23233],["2021-05-19",45393,136,23369],["2021-05-20",45393,193,23562],["2021-05-21",45393,88,23650],["2021-05-22",45393,33,23683],["2021-05-23",45393,10,23693],["2021-05-24",45393,85,23778],["2021-05-25",45393,144,23922],["2021-05-26",45393,86,24008],["2021-05-27",45393,77,24085],["2021-05-28",45393,64,24149],["2021-05-29",45393,11,24160],["2021-05-30",45393,11,24171],["2021-05-31",45393,4,24175],["2021-06-01",45393,123,24298],["2021-06-02",45393,63,24361],["2021-06-03",45393,285,24646],["2021-06-04",45393,60,24706],["2021-06-05",45393,27,24733],["2021-06-06",45393,14,24747],["2021-06-07",45393,69,24816],["2021-06-08",45393,112,24928],["2021-06-09",45393,107,25035],["2021-06-10",45393,168,25203],["2021-06-11",45393,63,25266],["2021-06-12",45393,41,25307],["2021-06-13",45393,6,25313],["2021-06-14",45393,67,25380],["2021-06-15",45393,133,25513],["2021-06-16",45393,65,25578],["2021-06-17",45393,70,25648],["2021-06-18",45393,56,25704],["2021-06-19",45393,21,25725],["2021-06-20",45393,5,25730],["2021-06-21",45393,36,25766],["2021-06-22",45393,82,25848],["2021-06-23",45393,45,25893],["2021-06-24",45393,58,25951],["2021-06-25",45393,64,26015],["2021-06-26",45393,23,26038],["2021-06-27",45393,5,26043],["2021-06-28",45393,38,26081],["2021-06-29",45393,75,26156],["2021-06-30",45393,47,26203],["2021-07-01",45393,69,26272],["2021-07-02",45393,75,26347],["2021-07-03",45393,23,26370],["2021-07-04",45393,5,26375],["2021-07-05",45393,25,26400],["2021-07-06",45393,85,26485],["2021-07-07",45393,46,26531],["2021-07-08",45393,109,26640],["2021-07-09",45393,55,26695],["2021-07-10",45393,22,26717],["2021-07-11",45393,6,26723],["2021-07-12",45393,36,26759],["2021-07-13",45393,69,26828],["2021-07-14",45393,56,26884],["2021-07-15",45393,82,26966],["2021-07-16",45393,58,27024],["2021-07-17",45393,36,27060],["2021-07-18",45393,7,27067],["2021-07-19",45393,74,27141],["2021-07-20",45393,121,27262],["2021-07-21",45393,79,27341],["2021-07-22",45393,103,27444],["2021-07-23",45393,107,27551],["2021-07-24",45393,52,27603],["2021-07-25",45393,17,27620],["2021-07-26",45393,74,27694],["2021-07-27",45393,190,27884],["2021-07-28",45393,128,28012],["2021-07-29",45393,198,28210],["2021-07-30",45393,126,28336],["2021-07-31",45393,110,28446],["2021-08-01",45393,20,28466],["2021-08-02",45393,115,28581],["2021-08-03",45393,189,28770],["2021-08-04",45393,176,28946],["2021-08-05",45393,199,29145],["2021-08-06",45393,183,29328],["2021-08-07",45393,107,29435],["2021-08-08",45393,20,29455],["2021-08-09",45393,111,29566],["2021-08-10",45393,215,29781],["2021-08-11",45393,123,29904],["2021-08-12",45393,224,30128],["2021-08-13",45393,172,30300],["2021-08-14",45393,122,30422],["2021-08-15",45393,22,30444],["2021-08-16",45393,114,30558],["2021-08-17",45393,215,30773],["2021-08-18",45393,252,31025],["2021-08-19",45393,249,31274],["2021-08-20",45393,172,31446],["2021-08-21",45393,138,31584],["2021-08-22",45393,27,31611],["2021-08-23",45393,130,31741],["2021-08-24",45393,236,31977],["2021-08-25",45393,236,32213],["2021-08-26",45393,240,32453],["2021-08-27",45393,168,32621],["2021-08-28",45393,157,32778],["2021-08-29",45393,33,32811],["2021-08-30",45393,129,32940],["2021-08-31",45393,202,33142],["2021-09-01",45393,161,33303],["2021-09-02",45393,286,33589],["2021-09-03",45393,187,33776],["2021-09-04",45393,44,33820],["2021-09-05",45393,13,33833],["2021-09-06",45393,11,33844],["2021-09-07",45393,169,34013],["2021-09-08",45393,164,34177],["2021-09-09",45393,185,34362],["2021-09-10",45393,141,34503],["2021-09-11",45393,113,34616],["2021-09-12",45393,14,34630],["2021-09-13",45393,105,34735],["2021-09-14",45393,127,34862],["2021-09-15",45393,100,34962],["2021-09-16",45393,212,35174],["2021-09-17",45393,127,35301],["2021-09-18",45393,47,35348],["2021-09-19",45393,15,35363],["2021-09-20",45393,97,35460],["2021-09-21",45393,87,35547],["2021-09-22",45393,111,35658],["2021-09-23",45393,168,35826],["2021-09-24",45393,68,35894],["2021-09-25",45393,32,35926],["2021-09-26",45393,21,35947],["2021-09-27",45393,53,36000],["2021-09-28",45393,71,36071],["2021-09-29",45393,64,36135],["2021-09-30",45393,123,36258],["2021-10-01",45393,102,36360],["2021-10-02",45393,23,36383],["2021-10-03",45393,8,36391],["2021-10-04",45393,57,36448],["2021-10-05",45393,86,36534],["2021-10-06",45393,71,36605],["2021-10-07",45393,114,36719],["2021-10-08",45393,55,36774],["2021-10-09",45393,20,36794],["2021-10-10",45393,9,36803],["2021-10-11",45393,40,36843],["2021-10-12",45393,77,36920],["2021-10-13",45393,55,36975],["2021-10-14",45393,114,37089],["2021-10-15",45393,45,37134],["2021-10-16",45393,15,37149],["2021-10-17",45393,3,37152],["2021-10-18",45393,41,37193],["2021-10-19",45393,88,37281],["2021-10-20",45393,45,37326],["2021-10-21",45393,92,37418],["2021-10-22",45393,48,37466],["2021-10-23",45393,21,37487],["2021-10-24",45393,17,37504],["2021-10-25",45393,93,37597],["2021-10-26",45393,82,37679],["2021-10-27",45393,65,37744],["2021-10-28",45393,208,37952],["2021-10-29",45393,81,38033],["2021-10-30",45393,24,38057],["2021-10-31",45393,10,38067],["2021-11-01",45393,63,38130],["2021-11-02",45393,66,38196],["2021-11-03",45393,64,38260],["2021-11-04",45393,123,38383],["2021-11-05",45393,49,38432],["2021-11-06",45393,22,38454],["2021-11-07",45393,9,38463],["2021-11-08",45393,76,38539],["2021-11-09",45393,123,38662],["2021-11-10",45393,86,38748],["2021-11-11",45393,56,38804],["2021-11-12",45393,67,38871],["2021-11-13",45393,27,38898],["2021-11-14",45393,14,38912],["2021-11-15",45393,75,38987],["2021-11-16",45393,138,39125],["2021-11-17",45393,79,39204],["2021-11-18",45393,125,39329],["2021-11-19",45393,113,39442],["2021-11-20",45393,32,39474],["2021-11-21",45393,17,39491],["2021-11-22",45393,83,39574],["2021-11-23",45393,122,39696],["2021-11-24",45393,42,39738],["2021-11-26",45393,45,39783],["2021-11-27",45393,37,39820],["2021-11-28",45393,19,39839],["2021-11-29",45393,122,39961],["2021-11-30",45393,182,40143],["2021-12-01",45393,136,40279],["2021-12-02",45393,125,40404],["2021-12-03",45393,117,40521],["2021-12-04",45393,64,40585],["2021-12-05",45393,16,40601],["2021-12-06",45393,83,40684],["2021-12-07",45393,461,41145],["2021-12-08",45393,78,41223],["2021-12-09",45393,88,41311],["2021-12-10",45393,104,41415],["2021-12-11",45393,39,41454],["2021-12-12",45393,12,41466],["2021-12-13",45393,80,41546],["2021-12-14",45393,99,41645],["2021-12-15",45393,96,41741],["2021-12-16",45393,92,41833],["2021-12-17",45393,84,41917],["2021-12-18",45393,31,41948],["2021-12-19",45393,24,41972],["2021-12-20",45393,118,42090],["2021-12-21",45393,144,42234],["2021-12-22",45393,107,42341],["2021-12-23",45393,71,42412],["2021-12-24",45393,24,42436],["2021-12-26",45393,18,42454],["2021-12-27",45393,100,42554],["2021-12-28",45393,133,42687],["2021-12-29",45393,91,42778],["2021-12-30",45393,121,42899],["2021-12-31",45393,46,42945],["2022-01-01",45393,7,42952],["2022-01-02",45393,14,42966],["2022-01-03",45393,19,42985]]} \ No newline at end of file diff --git a/public/data/overall/vaccinations/by-county/Columbia.json b/public/data/overall/vaccinations/by-county/Columbia.json new file mode 100644 index 000000000..2fd324e7a --- /dev/null +++ b/public/data/overall/vaccinations/by-county/Columbia.json @@ -0,0 +1 @@ +{"segment":{"county":"Columbia"},"headers":["report_date","population","vaccinations","total_vaccinations"],"rows":[["2020-12-14",158631,1,1],["2020-12-15",158631,1,2],["2020-12-16",158631,5,7],["2020-12-17",158631,125,132],["2020-12-18",158631,291,423],["2020-12-19",158631,101,524],["2020-12-20",158631,7,531],["2020-12-21",158631,59,590],["2020-12-22",158631,752,1342],["2020-12-23",158631,721,2063],["2020-12-24",158631,149,2212],["2020-12-26",158631,69,2281],["2020-12-27",158631,28,2309],["2020-12-28",158631,196,2505],["2020-12-29",158631,427,2932],["2020-12-30",158631,458,3390],["2020-12-31",158631,261,3651],["2021-01-01",158631,57,3708],["2021-01-02",158631,87,3795],["2021-01-03",158631,3,3798],["2021-01-04",158631,503,4301],["2021-01-05",158631,579,4880],["2021-01-06",158631,288,5168],["2021-01-07",158631,405,5573],["2021-01-08",158631,483,6056],["2021-01-09",158631,600,6656],["2021-01-10",158631,113,6769],["2021-01-11",158631,431,7200],["2021-01-12",158631,1055,8255],["2021-01-13",158631,840,9095],["2021-01-14",158631,747,9842],["2021-01-15",158631,849,10691],["2021-01-16",158631,308,10999],["2021-01-17",158631,57,11056],["2021-01-18",158631,368,11424],["2021-01-19",158631,602,12026],["2021-01-20",158631,771,12797],["2021-01-21",158631,1239,14036],["2021-01-22",158631,709,14745],["2021-01-23",158631,101,14846],["2021-01-24",158631,36,14882],["2021-01-25",158631,733,15615],["2021-01-26",158631,771,16386],["2021-01-27",158631,730,17116],["2021-01-28",158631,1199,18315],["2021-01-29",158631,465,18780],["2021-01-30",158631,553,19333],["2021-01-31",158631,13,19346],["2021-02-01",158631,523,19869],["2021-02-02",158631,947,20816],["2021-02-03",158631,504,21320],["2021-02-04",158631,1029,22349],["2021-02-05",158631,477,22826],["2021-02-06",158631,334,23160],["2021-02-07",158631,10,23170],["2021-02-08",158631,399,23569],["2021-02-09",158631,518,24087],["2021-02-10",158631,954,25041],["2021-02-11",158631,1041,26082],["2021-02-12",158631,740,26822],["2021-02-13",158631,1253,28075],["2021-02-14",158631,101,28176],["2021-02-15",158631,461,28637],["2021-02-16",158631,699,29336],["2021-02-17",158631,919,30255],["2021-02-18",158631,1038,31293],["2021-02-19",158631,841,32134],["2021-02-20",158631,559,32693],["2021-02-21",158631,61,32754],["2021-02-22",158631,344,33098],["2021-02-23",158631,845,33943],["2021-02-24",158631,289,34232],["2021-02-25",158631,1763,35995],["2021-02-26",158631,888,36883],["2021-02-27",158631,167,37050],["2021-02-28",158631,65,37115],["2021-03-01",158631,425,37540],["2021-03-02",158631,555,38095],["2021-03-03",158631,848,38943],["2021-03-04",158631,1039,39982],["2021-03-05",158631,430,40412],["2021-03-06",158631,692,41104],["2021-03-07",158631,130,41234],["2021-03-08",158631,572,41806],["2021-03-09",158631,588,42394],["2021-03-10",158631,1168,43562],["2021-03-11",158631,2071,45633],["2021-03-12",158631,1400,47033],["2021-03-13",158631,693,47726],["2021-03-14",158631,124,47850],["2021-03-15",158631,552,48402],["2021-03-16",158631,1036,49438],["2021-03-17",158631,1100,50538],["2021-03-18",158631,817,51355],["2021-03-19",158631,537,51892],["2021-03-20",158631,527,52419],["2021-03-21",158631,170,52589],["2021-03-22",158631,1104,53693],["2021-03-23",158631,961,54654],["2021-03-24",158631,634,55288],["2021-03-25",158631,1901,57189],["2021-03-26",158631,527,57716],["2021-03-27",158631,1040,58756],["2021-03-28",158631,295,59051],["2021-03-29",158631,709,59760],["2021-03-30",158631,1630,61390],["2021-03-31",158631,962,62352],["2021-04-01",158631,2538,64890],["2021-04-02",158631,1560,66450],["2021-04-03",158631,722,67172],["2021-04-04",158631,271,67443],["2021-04-05",158631,898,68341],["2021-04-06",158631,970,69311],["2021-04-07",158631,1260,70571],["2021-04-08",158631,989,71560],["2021-04-09",158631,638,72198],["2021-04-10",158631,358,72556],["2021-04-11",158631,268,72824],["2021-04-12",158631,1298,74122],["2021-04-13",158631,1765,75887],["2021-04-14",158631,711,76598],["2021-04-15",158631,1878,78476],["2021-04-16",158631,752,79228],["2021-04-17",158631,834,80062],["2021-04-18",158631,197,80259],["2021-04-19",158631,758,81017],["2021-04-20",158631,1398,82415],["2021-04-21",158631,874,83289],["2021-04-22",158631,1526,84815],["2021-04-23",158631,842,85657],["2021-04-24",158631,540,86197],["2021-04-25",158631,240,86437],["2021-04-26",158631,655,87092],["2021-04-27",158631,1423,88515],["2021-04-28",158631,834,89349],["2021-04-29",158631,1246,90595],["2021-04-30",158631,712,91307],["2021-05-01",158631,426,91733],["2021-05-02",158631,157,91890],["2021-05-03",158631,415,92305],["2021-05-04",158631,913,93218],["2021-05-05",158631,548,93766],["2021-05-06",158631,966,94732],["2021-05-07",158631,560,95292],["2021-05-08",158631,273,95565],["2021-05-09",158631,148,95713],["2021-05-10",158631,256,95969],["2021-05-11",158631,640,96609],["2021-05-12",158631,376,96985],["2021-05-13",158631,640,97625],["2021-05-14",158631,506,98131],["2021-05-15",158631,319,98450],["2021-05-16",158631,233,98683],["2021-05-17",158631,479,99162],["2021-05-18",158631,713,99875],["2021-05-19",158631,533,100408],["2021-05-20",158631,715,101123],["2021-05-21",158631,447,101570],["2021-05-22",158631,445,102015],["2021-05-23",158631,153,102168],["2021-05-24",158631,321,102489],["2021-05-25",158631,419,102908],["2021-05-26",158631,440,103348],["2021-05-27",158631,427,103775],["2021-05-28",158631,366,104141],["2021-05-29",158631,175,104316],["2021-05-30",158631,123,104439],["2021-05-31",158631,50,104489],["2021-06-01",158631,374,104863],["2021-06-02",158631,364,105227],["2021-06-03",158631,347,105574],["2021-06-04",158631,377,105951],["2021-06-05",158631,248,106199],["2021-06-06",158631,148,106347],["2021-06-07",158631,364,106711],["2021-06-08",158631,366,107077],["2021-06-09",158631,339,107416],["2021-06-10",158631,390,107806],["2021-06-11",158631,360,108166],["2021-06-12",158631,318,108484],["2021-06-13",158631,102,108586],["2021-06-14",158631,285,108871],["2021-06-15",158631,280,109151],["2021-06-16",158631,326,109477],["2021-06-17",158631,313,109790],["2021-06-18",158631,303,110093],["2021-06-19",158631,134,110227],["2021-06-20",158631,99,110326],["2021-06-21",158631,168,110494],["2021-06-22",158631,219,110713],["2021-06-23",158631,274,110987],["2021-06-24",158631,270,111257],["2021-06-25",158631,227,111484],["2021-06-26",158631,171,111655],["2021-06-27",158631,84,111739],["2021-06-28",158631,154,111893],["2021-06-29",158631,181,112074],["2021-06-30",158631,201,112275],["2021-07-01",158631,227,112502],["2021-07-02",158631,173,112675],["2021-07-03",158631,138,112813],["2021-07-04",158631,8,112821],["2021-07-05",158631,146,112967],["2021-07-06",158631,208,113175],["2021-07-07",158631,176,113351],["2021-07-08",158631,166,113517],["2021-07-09",158631,191,113708],["2021-07-10",158631,107,113815],["2021-07-11",158631,86,113901],["2021-07-12",158631,184,114085],["2021-07-13",158631,173,114258],["2021-07-14",158631,181,114439],["2021-07-15",158631,184,114623],["2021-07-16",158631,158,114781],["2021-07-17",158631,138,114919],["2021-07-18",158631,90,115009],["2021-07-19",158631,166,115175],["2021-07-20",158631,210,115385],["2021-07-21",158631,216,115601],["2021-07-22",158631,216,115817],["2021-07-23",158631,263,116080],["2021-07-24",158631,214,116294],["2021-07-25",158631,117,116411],["2021-07-26",158631,241,116652],["2021-07-27",158631,275,116927],["2021-07-28",158631,328,117255],["2021-07-29",158631,307,117562],["2021-07-30",158631,358,117920],["2021-07-31",158631,214,118134],["2021-08-01",158631,161,118295],["2021-08-02",158631,325,118620],["2021-08-03",158631,320,118940],["2021-08-04",158631,328,119268],["2021-08-05",158631,336,119604],["2021-08-06",158631,382,119986],["2021-08-07",158631,277,120263],["2021-08-08",158631,159,120422],["2021-08-09",158631,338,120760],["2021-08-10",158631,370,121130],["2021-08-11",158631,345,121475],["2021-08-12",158631,339,121814],["2021-08-13",158631,375,122189],["2021-08-14",158631,306,122495],["2021-08-15",158631,218,122713],["2021-08-16",158631,349,123062],["2021-08-17",158631,330,123392],["2021-08-18",158631,350,123742],["2021-08-19",158631,364,124106],["2021-08-20",158631,400,124506],["2021-08-21",158631,264,124770],["2021-08-22",158631,122,124892],["2021-08-23",158631,321,125213],["2021-08-24",158631,353,125566],["2021-08-25",158631,397,125963],["2021-08-26",158631,397,126360],["2021-08-27",158631,446,126806],["2021-08-28",158631,287,127093],["2021-08-29",158631,173,127266],["2021-08-30",158631,363,127629],["2021-08-31",158631,383,128012],["2021-09-01",158631,415,128427],["2021-09-02",158631,417,128844],["2021-09-03",158631,431,129275],["2021-09-04",158631,287,129562],["2021-09-05",158631,173,129735],["2021-09-06",158631,56,129791],["2021-09-07",158631,373,130164],["2021-09-08",158631,356,130520],["2021-09-09",158631,342,130862],["2021-09-10",158631,438,131300],["2021-09-11",158631,232,131532],["2021-09-12",158631,167,131699],["2021-09-13",158631,295,131994],["2021-09-14",158631,276,132270],["2021-09-15",158631,329,132599],["2021-09-16",158631,299,132898],["2021-09-17",158631,310,133208],["2021-09-18",158631,174,133382],["2021-09-19",158631,105,133487],["2021-09-20",158631,217,133704],["2021-09-21",158631,242,133946],["2021-09-22",158631,256,134202],["2021-09-23",158631,239,134441],["2021-09-24",158631,293,134734],["2021-09-25",158631,186,134920],["2021-09-26",158631,132,135052],["2021-09-27",158631,250,135302],["2021-09-28",158631,349,135651],["2021-09-29",158631,327,135978],["2021-09-30",158631,488,136466],["2021-10-01",158631,460,136926],["2021-10-02",158631,157,137083],["2021-10-03",158631,106,137189],["2021-10-04",158631,275,137464],["2021-10-05",158631,279,137743],["2021-10-06",158631,249,137992],["2021-10-07",158631,279,138271],["2021-10-08",158631,362,138633],["2021-10-09",158631,141,138774],["2021-10-10",158631,78,138852],["2021-10-11",158631,207,139059],["2021-10-12",158631,235,139294],["2021-10-13",158631,226,139520],["2021-10-14",158631,184,139704],["2021-10-15",158631,273,139977],["2021-10-16",158631,123,140100],["2021-10-17",158631,67,140167],["2021-10-18",158631,179,140346],["2021-10-19",158631,170,140516],["2021-10-20",158631,170,140686],["2021-10-21",158631,176,140862],["2021-10-22",158631,430,141292],["2021-10-23",158631,298,141590],["2021-10-24",158631,193,141783],["2021-10-25",158631,510,142293],["2021-10-26",158631,442,142735],["2021-10-27",158631,618,143353],["2021-10-28",158631,502,143855],["2021-10-29",158631,638,144493],["2021-10-30",158631,253,144746],["2021-10-31",158631,129,144875],["2021-11-01",158631,519,145394],["2021-11-02",158631,444,145838],["2021-11-03",158631,475,146313],["2021-11-04",158631,331,146644],["2021-11-05",158631,472,147116],["2021-11-06",158631,248,147364],["2021-11-07",158631,149,147513],["2021-11-08",158631,389,147902],["2021-11-09",158631,399,148301],["2021-11-10",158631,387,148688],["2021-11-11",158631,388,149076],["2021-11-12",158631,493,149569],["2021-11-13",158631,225,149794],["2021-11-14",158631,121,149915],["2021-11-15",158631,355,150270],["2021-11-16",158631,359,150629],["2021-11-17",158631,404,151033],["2021-11-18",158631,400,151433],["2021-11-19",158631,511,151944],["2021-11-20",158631,288,152232],["2021-11-21",158631,217,152449],["2021-11-22",158631,548,152997],["2021-11-23",158631,404,153401],["2021-11-24",158631,318,153719],["2021-11-25",158631,2,153721],["2021-11-26",158631,357,154078],["2021-11-27",158631,268,154346],["2021-11-28",158631,201,154547],["2021-11-29",158631,457,155004],["2021-11-30",158631,460,155464],["2021-12-01",158631,621,156085],["2021-12-02",158631,605,156690],["2021-12-03",158631,706,157396],["2021-12-04",158631,343,157739],["2021-12-05",158631,166,157905],["2021-12-06",158631,525,158430],["2021-12-07",158631,454,158884],["2021-12-08",158631,517,159401],["2021-12-09",158631,436,159837],["2021-12-10",158631,538,160375],["2021-12-11",158631,283,160658],["2021-12-12",158631,149,160807],["2021-12-13",158631,436,161243],["2021-12-14",158631,331,161574],["2021-12-15",158631,379,161953],["2021-12-16",158631,376,162329],["2021-12-17",158631,498,162827],["2021-12-18",158631,274,163101],["2021-12-19",158631,177,163278],["2021-12-20",158631,484,163762],["2021-12-21",158631,503,164265],["2021-12-22",158631,455,164720],["2021-12-23",158631,375,165095],["2021-12-24",158631,108,165203],["2021-12-26",158631,171,165374],["2021-12-27",158631,442,165816],["2021-12-28",158631,438,166254],["2021-12-29",158631,572,166826],["2021-12-30",158631,413,167239],["2021-12-31",158631,249,167488],["2022-01-01",158631,42,167530],["2022-01-02",158631,147,167677],["2022-01-03",158631,92,167769]]} \ No newline at end of file diff --git a/public/data/overall/vaccinations/by-county/Cook.json b/public/data/overall/vaccinations/by-county/Cook.json new file mode 100644 index 000000000..e9a77978d --- /dev/null +++ b/public/data/overall/vaccinations/by-county/Cook.json @@ -0,0 +1 @@ +{"segment":{"county":"Cook"},"headers":["report_date","population","vaccinations","total_vaccinations"],"rows":[["2020-12-16",17437,1,1],["2020-12-17",17437,1,2],["2020-12-18",17437,7,9],["2020-12-19",17437,1,10],["2020-12-21",17437,14,24],["2020-12-22",17437,4,28],["2020-12-23",17437,22,50],["2020-12-24",17437,3,53],["2020-12-26",17437,1,54],["2020-12-28",17437,22,76],["2020-12-29",17437,36,112],["2020-12-30",17437,30,142],["2020-12-31",17437,16,158],["2021-01-01",17437,5,163],["2021-01-03",17437,6,169],["2021-01-04",17437,25,194],["2021-01-05",17437,25,219],["2021-01-06",17437,47,266],["2021-01-07",17437,60,326],["2021-01-08",17437,34,360],["2021-01-09",17437,1,361],["2021-01-11",17437,61,422],["2021-01-12",17437,46,468],["2021-01-13",17437,139,607],["2021-01-14",17437,107,714],["2021-01-15",17437,102,816],["2021-01-16",17437,2,818],["2021-01-17",17437,1,819],["2021-01-18",17437,67,886],["2021-01-19",17437,87,973],["2021-01-20",17437,218,1191],["2021-01-21",17437,116,1307],["2021-01-22",17437,79,1386],["2021-01-24",17437,6,1392],["2021-01-25",17437,81,1473],["2021-01-26",17437,61,1534],["2021-01-27",17437,225,1759],["2021-01-28",17437,53,1812],["2021-01-29",17437,62,1874],["2021-01-30",17437,6,1880],["2021-01-31",17437,5,1885],["2021-02-01",17437,114,1999],["2021-02-02",17437,90,2089],["2021-02-03",17437,242,2331],["2021-02-04",17437,54,2385],["2021-02-05",17437,86,2471],["2021-02-06",17437,1,2472],["2021-02-07",17437,1,2473],["2021-02-08",17437,61,2534],["2021-02-09",17437,97,2631],["2021-02-10",17437,165,2796],["2021-02-11",17437,107,2903],["2021-02-12",17437,118,3021],["2021-02-13",17437,2,3023],["2021-02-14",17437,4,3027],["2021-02-15",17437,104,3131],["2021-02-16",17437,99,3230],["2021-02-17",17437,222,3452],["2021-02-18",17437,124,3576],["2021-02-19",17437,94,3670],["2021-02-20",17437,3,3673],["2021-02-22",17437,68,3741],["2021-02-23",17437,70,3811],["2021-02-24",17437,279,4090],["2021-02-25",17437,63,4153],["2021-02-26",17437,63,4216],["2021-02-27",17437,9,4225],["2021-02-28",17437,11,4236],["2021-03-01",17437,89,4325],["2021-03-02",17437,68,4393],["2021-03-03",17437,241,4634],["2021-03-04",17437,47,4681],["2021-03-05",17437,79,4760],["2021-03-06",17437,10,4770],["2021-03-07",17437,10,4780],["2021-03-08",17437,76,4856],["2021-03-09",17437,74,4930],["2021-03-10",17437,139,5069],["2021-03-11",17437,140,5209],["2021-03-12",17437,55,5264],["2021-03-13",17437,22,5286],["2021-03-14",17437,10,5296],["2021-03-15",17437,76,5372],["2021-03-16",17437,69,5441],["2021-03-17",17437,144,5585],["2021-03-18",17437,87,5672],["2021-03-19",17437,72,5744],["2021-03-20",17437,21,5765],["2021-03-21",17437,11,5776],["2021-03-22",17437,92,5868],["2021-03-23",17437,55,5923],["2021-03-24",17437,132,6055],["2021-03-25",17437,104,6159],["2021-03-26",17437,69,6228],["2021-03-27",17437,10,6238],["2021-03-28",17437,15,6253],["2021-03-29",17437,91,6344],["2021-03-30",17437,85,6429],["2021-03-31",17437,176,6605],["2021-04-01",17437,73,6678],["2021-04-02",17437,67,6745],["2021-04-03",17437,16,6761],["2021-04-04",17437,13,6774],["2021-04-05",17437,100,6874],["2021-04-06",17437,74,6948],["2021-04-07",17437,105,7053],["2021-04-08",17437,54,7107],["2021-04-09",17437,68,7175],["2021-04-10",17437,11,7186],["2021-04-11",17437,14,7200],["2021-04-12",17437,83,7283],["2021-04-13",17437,57,7340],["2021-04-14",17437,138,7478],["2021-04-15",17437,82,7560],["2021-04-16",17437,127,7687],["2021-04-17",17437,12,7699],["2021-04-18",17437,3,7702],["2021-04-19",17437,80,7782],["2021-04-20",17437,52,7834],["2021-04-21",17437,150,7984],["2021-04-22",17437,71,8055],["2021-04-23",17437,90,8145],["2021-04-24",17437,10,8155],["2021-04-25",17437,2,8157],["2021-04-26",17437,69,8226],["2021-04-27",17437,43,8269],["2021-04-28",17437,88,8357],["2021-04-29",17437,51,8408],["2021-04-30",17437,71,8479],["2021-05-01",17437,12,8491],["2021-05-02",17437,1,8492],["2021-05-03",17437,37,8529],["2021-05-04",17437,20,8549],["2021-05-05",17437,53,8602],["2021-05-06",17437,54,8656],["2021-05-07",17437,60,8716],["2021-05-08",17437,15,8731],["2021-05-09",17437,7,8738],["2021-05-10",17437,48,8786],["2021-05-11",17437,30,8816],["2021-05-12",17437,58,8874],["2021-05-13",17437,33,8907],["2021-05-14",17437,45,8952],["2021-05-15",17437,19,8971],["2021-05-16",17437,2,8973],["2021-05-17",17437,41,9014],["2021-05-18",17437,44,9058],["2021-05-19",17437,59,9117],["2021-05-20",17437,45,9162],["2021-05-21",17437,41,9203],["2021-05-22",17437,26,9229],["2021-05-23",17437,7,9236],["2021-05-24",17437,30,9266],["2021-05-25",17437,17,9283],["2021-05-26",17437,49,9332],["2021-05-27",17437,28,9360],["2021-05-28",17437,44,9404],["2021-05-29",17437,11,9415],["2021-05-30",17437,5,9420],["2021-05-31",17437,4,9424],["2021-06-01",17437,29,9453],["2021-06-02",17437,35,9488],["2021-06-03",17437,22,9510],["2021-06-04",17437,21,9531],["2021-06-05",17437,13,9544],["2021-06-06",17437,8,9552],["2021-06-07",17437,38,9590],["2021-06-08",17437,17,9607],["2021-06-09",17437,15,9622],["2021-06-10",17437,35,9657],["2021-06-11",17437,43,9700],["2021-06-12",17437,11,9711],["2021-06-13",17437,14,9725],["2021-06-14",17437,26,9751],["2021-06-15",17437,30,9781],["2021-06-16",17437,23,9804],["2021-06-17",17437,26,9830],["2021-06-18",17437,29,9859],["2021-06-19",17437,8,9867],["2021-06-20",17437,3,9870],["2021-06-21",17437,32,9902],["2021-06-22",17437,23,9925],["2021-06-23",17437,18,9943],["2021-06-24",17437,22,9965],["2021-06-25",17437,27,9992],["2021-06-26",17437,12,10004],["2021-06-27",17437,5,10009],["2021-06-28",17437,11,10020],["2021-06-29",17437,17,10037],["2021-06-30",17437,24,10061],["2021-07-01",17437,22,10083],["2021-07-02",17437,19,10102],["2021-07-03",17437,4,10106],["2021-07-04",17437,3,10109],["2021-07-05",17437,17,10126],["2021-07-06",17437,24,10150],["2021-07-07",17437,16,10166],["2021-07-08",17437,22,10188],["2021-07-09",17437,23,10211],["2021-07-10",17437,7,10218],["2021-07-11",17437,3,10221],["2021-07-12",17437,18,10239],["2021-07-13",17437,17,10256],["2021-07-14",17437,14,10270],["2021-07-15",17437,19,10289],["2021-07-16",17437,26,10315],["2021-07-17",17437,3,10318],["2021-07-18",17437,4,10322],["2021-07-19",17437,18,10340],["2021-07-20",17437,21,10361],["2021-07-21",17437,36,10397],["2021-07-22",17437,21,10418],["2021-07-23",17437,38,10456],["2021-07-24",17437,13,10469],["2021-07-25",17437,19,10488],["2021-07-26",17437,36,10524],["2021-07-27",17437,44,10568],["2021-07-28",17437,39,10607],["2021-07-29",17437,45,10652],["2021-07-30",17437,75,10727],["2021-07-31",17437,24,10751],["2021-08-01",17437,15,10766],["2021-08-02",17437,47,10813],["2021-08-03",17437,45,10858],["2021-08-04",17437,48,10906],["2021-08-05",17437,47,10953],["2021-08-06",17437,89,11042],["2021-08-07",17437,35,11077],["2021-08-08",17437,20,11097],["2021-08-09",17437,52,11149],["2021-08-10",17437,50,11199],["2021-08-11",17437,48,11247],["2021-08-12",17437,57,11304],["2021-08-13",17437,76,11380],["2021-08-14",17437,33,11413],["2021-08-15",17437,16,11429],["2021-08-16",17437,70,11499],["2021-08-17",17437,46,11545],["2021-08-18",17437,46,11591],["2021-08-19",17437,50,11641],["2021-08-20",17437,92,11733],["2021-08-21",17437,28,11761],["2021-08-22",17437,25,11786],["2021-08-23",17437,65,11851],["2021-08-24",17437,57,11908],["2021-08-25",17437,60,11968],["2021-08-26",17437,77,12045],["2021-08-27",17437,76,12121],["2021-08-28",17437,47,12168],["2021-08-29",17437,25,12193],["2021-08-30",17437,71,12264],["2021-08-31",17437,58,12322],["2021-09-01",17437,40,12362],["2021-09-02",17437,49,12411],["2021-09-03",17437,79,12490],["2021-09-04",17437,30,12520],["2021-09-05",17437,14,12534],["2021-09-06",17437,3,12537],["2021-09-07",17437,79,12616],["2021-09-08",17437,48,12664],["2021-09-09",17437,42,12706],["2021-09-10",17437,76,12782],["2021-09-11",17437,21,12803],["2021-09-12",17437,11,12814],["2021-09-13",17437,56,12870],["2021-09-14",17437,38,12908],["2021-09-15",17437,43,12951],["2021-09-16",17437,33,12984],["2021-09-17",17437,67,13051],["2021-09-18",17437,20,13071],["2021-09-19",17437,8,13079],["2021-09-20",17437,29,13108],["2021-09-21",17437,39,13147],["2021-09-22",17437,34,13181],["2021-09-23",17437,31,13212],["2021-09-24",17437,43,13255],["2021-09-25",17437,9,13264],["2021-09-26",17437,1,13265],["2021-09-27",17437,29,13294],["2021-09-28",17437,29,13323],["2021-09-29",17437,24,13347],["2021-09-30",17437,26,13373],["2021-10-01",17437,21,13394],["2021-10-02",17437,8,13402],["2021-10-03",17437,7,13409],["2021-10-04",17437,7,13416],["2021-10-05",17437,25,13441],["2021-10-06",17437,34,13475],["2021-10-07",17437,24,13499],["2021-10-08",17437,30,13529],["2021-10-09",17437,7,13536],["2021-10-10",17437,4,13540],["2021-10-11",17437,19,13559],["2021-10-12",17437,18,13577],["2021-10-13",17437,14,13591],["2021-10-14",17437,11,13602],["2021-10-15",17437,15,13617],["2021-10-16",17437,6,13623],["2021-10-17",17437,2,13625],["2021-10-18",17437,18,13643],["2021-10-19",17437,18,13661],["2021-10-20",17437,8,13669],["2021-10-21",17437,11,13680],["2021-10-22",17437,30,13710],["2021-10-23",17437,7,13717],["2021-10-24",17437,3,13720],["2021-10-25",17437,35,13755],["2021-10-26",17437,63,13818],["2021-10-27",17437,52,13870],["2021-10-28",17437,76,13946],["2021-10-29",17437,37,13983],["2021-10-30",17437,8,13991],["2021-10-31",17437,3,13994],["2021-11-01",17437,31,14025],["2021-11-02",17437,46,14071],["2021-11-03",17437,40,14111],["2021-11-04",17437,40,14151],["2021-11-05",17437,31,14182],["2021-11-06",17437,8,14190],["2021-11-07",17437,4,14194],["2021-11-08",17437,35,14229],["2021-11-09",17437,29,14258],["2021-11-10",17437,39,14297],["2021-11-11",17437,39,14336],["2021-11-12",17437,60,14396],["2021-11-13",17437,12,14408],["2021-11-14",17437,7,14415],["2021-11-15",17437,35,14450],["2021-11-16",17437,45,14495],["2021-11-17",17437,59,14554],["2021-11-18",17437,48,14602],["2021-11-19",17437,29,14631],["2021-11-20",17437,7,14638],["2021-11-21",17437,5,14643],["2021-11-22",17437,34,14677],["2021-11-23",17437,52,14729],["2021-11-24",17437,23,14752],["2021-11-26",17437,20,14772],["2021-11-27",17437,12,14784],["2021-11-28",17437,3,14787],["2021-11-29",17437,30,14817],["2021-11-30",17437,73,14890],["2021-12-01",17437,59,14949],["2021-12-02",17437,88,15037],["2021-12-03",17437,50,15087],["2021-12-04",17437,11,15098],["2021-12-05",17437,3,15101],["2021-12-06",17437,54,15155],["2021-12-07",17437,41,15196],["2021-12-08",17437,20,15216],["2021-12-09",17437,70,15286],["2021-12-10",17437,67,15353],["2021-12-11",17437,15,15368],["2021-12-12",17437,5,15373],["2021-12-13",17437,36,15409],["2021-12-14",17437,26,15435],["2021-12-15",17437,20,15455],["2021-12-16",17437,44,15499],["2021-12-17",17437,27,15526],["2021-12-18",17437,8,15534],["2021-12-19",17437,5,15539],["2021-12-20",17437,32,15571],["2021-12-21",17437,44,15615],["2021-12-22",17437,32,15647],["2021-12-23",17437,40,15687],["2021-12-24",17437,6,15693],["2021-12-26",17437,3,15696],["2021-12-27",17437,38,15734],["2021-12-28",17437,56,15790],["2021-12-29",17437,35,15825],["2021-12-30",17437,47,15872],["2021-12-31",17437,21,15893],["2022-01-01",17437,4,15897],["2022-01-02",17437,11,15908],["2022-01-03",17437,18,15926]]} \ No newline at end of file diff --git a/public/data/overall/vaccinations/by-county/Coweta.json b/public/data/overall/vaccinations/by-county/Coweta.json new file mode 100644 index 000000000..8f0b190ac --- /dev/null +++ b/public/data/overall/vaccinations/by-county/Coweta.json @@ -0,0 +1 @@ +{"segment":{"county":"Coweta"},"headers":["report_date","population","vaccinations","total_vaccinations"],"rows":[["2020-12-14",152001,1,1],["2020-12-16",152001,1,2],["2020-12-17",152001,5,7],["2020-12-18",152001,19,26],["2020-12-19",152001,11,37],["2020-12-20",152001,9,46],["2020-12-21",152001,47,93],["2020-12-22",152001,75,168],["2020-12-23",152001,107,275],["2020-12-24",152001,14,289],["2020-12-26",152001,4,293],["2020-12-27",152001,10,303],["2020-12-28",152001,271,574],["2020-12-29",152001,286,860],["2020-12-30",152001,372,1232],["2020-12-31",152001,113,1345],["2021-01-01",152001,36,1381],["2021-01-02",152001,8,1389],["2021-01-03",152001,11,1400],["2021-01-04",152001,221,1621],["2021-01-05",152001,74,1695],["2021-01-06",152001,121,1816],["2021-01-07",152001,126,1942],["2021-01-08",152001,183,2125],["2021-01-09",152001,123,2248],["2021-01-10",152001,40,2288],["2021-01-11",152001,995,3283],["2021-01-12",152001,365,3648],["2021-01-13",152001,402,4050],["2021-01-14",152001,966,5016],["2021-01-15",152001,364,5380],["2021-01-16",152001,252,5632],["2021-01-17",152001,67,5699],["2021-01-18",152001,345,6044],["2021-01-19",152001,453,6497],["2021-01-20",152001,386,6883],["2021-01-21",152001,336,7219],["2021-01-22",152001,406,7625],["2021-01-23",152001,131,7756],["2021-01-24",152001,41,7797],["2021-01-25",152001,407,8204],["2021-01-26",152001,266,8470],["2021-01-27",152001,505,8975],["2021-01-28",152001,528,9503],["2021-01-29",152001,693,10196],["2021-01-30",152001,100,10296],["2021-01-31",152001,58,10354],["2021-02-01",152001,320,10674],["2021-02-02",152001,348,11022],["2021-02-03",152001,244,11266],["2021-02-04",152001,495,11761],["2021-02-05",152001,418,12179],["2021-02-06",152001,71,12250],["2021-02-07",152001,42,12292],["2021-02-08",152001,1113,13405],["2021-02-09",152001,570,13975],["2021-02-10",152001,399,14374],["2021-02-11",152001,484,14858],["2021-02-12",152001,1126,15984],["2021-02-13",152001,207,16191],["2021-02-14",152001,85,16276],["2021-02-15",152001,435,16711],["2021-02-16",152001,486,17197],["2021-02-17",152001,1086,18283],["2021-02-18",152001,378,18661],["2021-02-19",152001,410,19071],["2021-02-20",152001,212,19283],["2021-02-21",152001,33,19316],["2021-02-22",152001,346,19662],["2021-02-23",152001,630,20292],["2021-02-24",152001,1008,21300],["2021-02-25",152001,622,21922],["2021-02-26",152001,686,22608],["2021-02-27",152001,145,22753],["2021-02-28",152001,111,22864],["2021-03-01",152001,510,23374],["2021-03-02",152001,717,24091],["2021-03-03",152001,900,24991],["2021-03-04",152001,719,25710],["2021-03-05",152001,549,26259],["2021-03-06",152001,124,26383],["2021-03-07",152001,141,26524],["2021-03-08",152001,651,27175],["2021-03-09",152001,704,27879],["2021-03-10",152001,843,28722],["2021-03-11",152001,940,29662],["2021-03-12",152001,1229,30891],["2021-03-13",152001,200,31091],["2021-03-14",152001,190,31281],["2021-03-15",152001,1176,32457],["2021-03-16",152001,1033,33490],["2021-03-17",152001,1441,34931],["2021-03-18",152001,849,35780],["2021-03-19",152001,1353,37133],["2021-03-20",152001,261,37394],["2021-03-21",152001,292,37686],["2021-03-22",152001,982,38668],["2021-03-23",152001,939,39607],["2021-03-24",152001,1382,40989],["2021-03-25",152001,1153,42142],["2021-03-26",152001,1169,43311],["2021-03-27",152001,624,43935],["2021-03-28",152001,295,44230],["2021-03-29",152001,867,45097],["2021-03-30",152001,1435,46532],["2021-03-31",152001,1484,48016],["2021-04-01",152001,1716,49732],["2021-04-02",152001,1070,50802],["2021-04-03",152001,497,51299],["2021-04-04",152001,282,51581],["2021-04-05",152001,1497,53078],["2021-04-06",152001,1386,54464],["2021-04-07",152001,1701,56165],["2021-04-08",152001,1266,57431],["2021-04-09",152001,1217,58648],["2021-04-10",152001,808,59456],["2021-04-11",152001,388,59844],["2021-04-12",152001,1570,61414],["2021-04-13",152001,1209,62623],["2021-04-14",152001,1218,63841],["2021-04-15",152001,1129,64970],["2021-04-16",152001,1135,66105],["2021-04-17",152001,542,66647],["2021-04-18",152001,278,66925],["2021-04-19",152001,1111,68036],["2021-04-20",152001,1182,69218],["2021-04-21",152001,1231,70449],["2021-04-22",152001,1094,71543],["2021-04-23",152001,1296,72839],["2021-04-24",152001,505,73344],["2021-04-25",152001,230,73574],["2021-04-26",152001,769,74343],["2021-04-27",152001,940,75283],["2021-04-28",152001,1148,76431],["2021-04-29",152001,795,77226],["2021-04-30",152001,1028,78254],["2021-05-01",152001,633,78887],["2021-05-02",152001,182,79069],["2021-05-03",152001,604,79673],["2021-05-04",152001,772,80445],["2021-05-05",152001,1063,81508],["2021-05-06",152001,763,82271],["2021-05-07",152001,836,83107],["2021-05-08",152001,297,83404],["2021-05-09",152001,130,83534],["2021-05-10",152001,534,84068],["2021-05-11",152001,648,84716],["2021-05-12",152001,456,85172],["2021-05-13",152001,576,85748],["2021-05-14",152001,715,86463],["2021-05-15",152001,370,86833],["2021-05-16",152001,246,87079],["2021-05-17",152001,574,87653],["2021-05-18",152001,664,88317],["2021-05-19",152001,523,88840],["2021-05-20",152001,435,89275],["2021-05-21",152001,773,90048],["2021-05-22",152001,286,90334],["2021-05-23",152001,150,90484],["2021-05-24",152001,348,90832],["2021-05-25",152001,344,91176],["2021-05-26",152001,367,91543],["2021-05-27",152001,377,91920],["2021-05-28",152001,400,92320],["2021-05-29",152001,190,92510],["2021-05-30",152001,83,92593],["2021-05-31",152001,51,92644],["2021-06-01",152001,427,93071],["2021-06-02",152001,377,93448],["2021-06-03",152001,360,93808],["2021-06-04",152001,441,94249],["2021-06-05",152001,252,94501],["2021-06-06",152001,166,94667],["2021-06-07",152001,424,95091],["2021-06-08",152001,369,95460],["2021-06-09",152001,320,95780],["2021-06-10",152001,289,96069],["2021-06-11",152001,416,96485],["2021-06-12",152001,229,96714],["2021-06-13",152001,95,96809],["2021-06-14",152001,290,97099],["2021-06-15",152001,259,97358],["2021-06-16",152001,255,97613],["2021-06-17",152001,207,97820],["2021-06-18",152001,262,98082],["2021-06-19",152001,151,98233],["2021-06-20",152001,66,98299],["2021-06-21",152001,220,98519],["2021-06-22",152001,195,98714],["2021-06-23",152001,206,98920],["2021-06-24",152001,172,99092],["2021-06-25",152001,243,99335],["2021-06-26",152001,132,99467],["2021-06-27",152001,74,99541],["2021-06-28",152001,199,99740],["2021-06-29",152001,171,99911],["2021-06-30",152001,172,100083],["2021-07-01",152001,185,100268],["2021-07-02",152001,217,100485],["2021-07-03",152001,97,100582],["2021-07-04",152001,7,100589],["2021-07-05",152001,143,100732],["2021-07-06",152001,141,100873],["2021-07-07",152001,132,101005],["2021-07-08",152001,130,101135],["2021-07-09",152001,189,101324],["2021-07-10",152001,111,101435],["2021-07-11",152001,53,101488],["2021-07-12",152001,132,101620],["2021-07-13",152001,158,101778],["2021-07-14",152001,153,101931],["2021-07-15",152001,173,102104],["2021-07-16",152001,219,102323],["2021-07-17",152001,110,102433],["2021-07-18",152001,75,102508],["2021-07-19",152001,203,102711],["2021-07-20",152001,170,102881],["2021-07-21",152001,204,103085],["2021-07-22",152001,203,103288],["2021-07-23",152001,281,103569],["2021-07-24",152001,183,103752],["2021-07-25",152001,88,103840],["2021-07-26",152001,247,104087],["2021-07-27",152001,210,104297],["2021-07-28",152001,235,104532],["2021-07-29",152001,225,104757],["2021-07-30",152001,352,105109],["2021-07-31",152001,219,105328],["2021-08-01",152001,130,105458],["2021-08-02",152001,284,105742],["2021-08-03",152001,252,105994],["2021-08-04",152001,299,106293],["2021-08-05",152001,271,106564],["2021-08-06",152001,377,106941],["2021-08-07",152001,237,107178],["2021-08-08",152001,143,107321],["2021-08-09",152001,311,107632],["2021-08-10",152001,320,107952],["2021-08-11",152001,316,108268],["2021-08-12",152001,315,108583],["2021-08-13",152001,386,108969],["2021-08-14",152001,249,109218],["2021-08-15",152001,135,109353],["2021-08-16",152001,341,109694],["2021-08-17",152001,313,110007],["2021-08-18",152001,406,110413],["2021-08-19",152001,317,110730],["2021-08-20",152001,496,111226],["2021-08-21",152001,328,111554],["2021-08-22",152001,141,111695],["2021-08-23",152001,396,112091],["2021-08-24",152001,344,112435],["2021-08-25",152001,422,112857],["2021-08-26",152001,388,113245],["2021-08-27",152001,551,113796],["2021-08-28",152001,305,114101],["2021-08-29",152001,172,114273],["2021-08-30",152001,475,114748],["2021-08-31",152001,348,115096],["2021-09-01",152001,408,115504],["2021-09-02",152001,369,115873],["2021-09-03",152001,526,116399],["2021-09-04",152001,280,116679],["2021-09-05",152001,137,116816],["2021-09-06",152001,47,116863],["2021-09-07",152001,370,117233],["2021-09-08",152001,419,117652],["2021-09-09",152001,376,118028],["2021-09-10",152001,572,118600],["2021-09-11",152001,258,118858],["2021-09-12",152001,131,118989],["2021-09-13",152001,472,119461],["2021-09-14",152001,363,119824],["2021-09-15",152001,401,120225],["2021-09-16",152001,318,120543],["2021-09-17",152001,464,121007],["2021-09-18",152001,303,121310],["2021-09-19",152001,122,121432],["2021-09-20",152001,405,121837],["2021-09-21",152001,296,122133],["2021-09-22",152001,317,122450],["2021-09-23",152001,272,122722],["2021-09-24",152001,411,123133],["2021-09-25",152001,247,123380],["2021-09-26",152001,105,123485],["2021-09-27",152001,376,123861],["2021-09-28",152001,302,124163],["2021-09-29",152001,352,124515],["2021-09-30",152001,331,124846],["2021-10-01",152001,402,125248],["2021-10-02",152001,219,125467],["2021-10-03",152001,131,125598],["2021-10-04",152001,289,125887],["2021-10-05",152001,283,126170],["2021-10-06",152001,323,126493],["2021-10-07",152001,278,126771],["2021-10-08",152001,369,127140],["2021-10-09",152001,192,127332],["2021-10-10",152001,71,127403],["2021-10-11",152001,302,127705],["2021-10-12",152001,209,127914],["2021-10-13",152001,223,128137],["2021-10-14",152001,206,128343],["2021-10-15",152001,321,128664],["2021-10-16",152001,178,128842],["2021-10-17",152001,68,128910],["2021-10-18",152001,260,129170],["2021-10-19",152001,185,129355],["2021-10-20",152001,179,129534],["2021-10-21",152001,174,129708],["2021-10-22",152001,522,130230],["2021-10-23",152001,317,130547],["2021-10-24",152001,166,130713],["2021-10-25",152001,625,131338],["2021-10-26",152001,477,131815],["2021-10-27",152001,501,132316],["2021-10-28",152001,517,132833],["2021-10-29",152001,527,133360],["2021-10-30",152001,248,133608],["2021-10-31",152001,118,133726],["2021-11-01",152001,422,134148],["2021-11-02",152001,352,134500],["2021-11-03",152001,349,134849],["2021-11-04",152001,416,135265],["2021-11-05",152001,472,135737],["2021-11-06",152001,298,136035],["2021-11-07",152001,117,136152],["2021-11-08",152001,345,136497],["2021-11-09",152001,410,136907],["2021-11-10",152001,356,137263],["2021-11-11",152001,384,137647],["2021-11-12",152001,513,138160],["2021-11-13",152001,313,138473],["2021-11-14",152001,117,138590],["2021-11-15",152001,409,138999],["2021-11-16",152001,351,139350],["2021-11-17",152001,328,139678],["2021-11-18",152001,316,139994],["2021-11-19",152001,576,140570],["2021-11-20",152001,260,140830],["2021-11-21",152001,154,140984],["2021-11-22",152001,502,141486],["2021-11-23",152001,392,141878],["2021-11-24",152001,256,142134],["2021-11-25",152001,4,142138],["2021-11-26",152001,358,142496],["2021-11-27",152001,237,142733],["2021-11-28",152001,148,142881],["2021-11-29",152001,473,143354],["2021-11-30",152001,460,143814],["2021-12-01",152001,562,144376],["2021-12-02",152001,586,144962],["2021-12-03",152001,625,145587],["2021-12-04",152001,392,145979],["2021-12-05",152001,176,146155],["2021-12-06",152001,455,146610],["2021-12-07",152001,379,146989],["2021-12-08",152001,412,147401],["2021-12-09",152001,409,147810],["2021-12-10",152001,544,148354],["2021-12-11",152001,285,148639],["2021-12-12",152001,166,148805],["2021-12-13",152001,390,149195],["2021-12-14",152001,309,149504],["2021-12-15",152001,319,149823],["2021-12-16",152001,309,150132],["2021-12-17",152001,452,150584],["2021-12-18",152001,310,150894],["2021-12-19",152001,146,151040],["2021-12-20",152001,444,151484],["2021-12-21",152001,474,151958],["2021-12-22",152001,434,152392],["2021-12-23",152001,385,152777],["2021-12-24",152001,98,152875],["2021-12-26",152001,102,152977],["2021-12-27",152001,450,153427],["2021-12-28",152001,405,153832],["2021-12-29",152001,430,154262],["2021-12-30",152001,289,154551],["2021-12-31",152001,181,154732],["2022-01-01",152001,9,154741],["2022-01-02",152001,112,154853],["2022-01-03",152001,158,155011]]} \ No newline at end of file diff --git a/public/data/overall/vaccinations/by-county/Crawford.json b/public/data/overall/vaccinations/by-county/Crawford.json new file mode 100644 index 000000000..63080e4d8 --- /dev/null +++ b/public/data/overall/vaccinations/by-county/Crawford.json @@ -0,0 +1 @@ +{"segment":{"county":"Crawford"},"headers":["report_date","population","vaccinations","total_vaccinations"],"rows":[["2020-12-17",12228,1,1],["2020-12-22",12228,2,3],["2020-12-23",12228,5,8],["2020-12-24",12228,3,11],["2020-12-26",12228,2,13],["2020-12-27",12228,1,14],["2020-12-28",12228,14,28],["2020-12-29",12228,9,37],["2020-12-30",12228,8,45],["2020-12-31",12228,6,51],["2021-01-01",12228,3,54],["2021-01-02",12228,2,56],["2021-01-03",12228,7,63],["2021-01-04",12228,8,71],["2021-01-05",12228,59,130],["2021-01-06",12228,11,141],["2021-01-07",12228,13,154],["2021-01-08",12228,3,157],["2021-01-09",12228,3,160],["2021-01-10",12228,4,164],["2021-01-11",12228,59,223],["2021-01-12",12228,19,242],["2021-01-13",12228,63,305],["2021-01-14",12228,28,333],["2021-01-15",12228,17,350],["2021-01-16",12228,29,379],["2021-01-17",12228,5,384],["2021-01-18",12228,103,487],["2021-01-19",12228,25,512],["2021-01-20",12228,106,618],["2021-01-21",12228,20,638],["2021-01-22",12228,41,679],["2021-01-23",12228,7,686],["2021-01-24",12228,8,694],["2021-01-25",12228,112,806],["2021-01-26",12228,109,915],["2021-01-27",12228,58,973],["2021-01-28",12228,25,998],["2021-01-29",12228,30,1028],["2021-01-30",12228,43,1071],["2021-01-31",12228,4,1075],["2021-02-01",12228,60,1135],["2021-02-02",12228,12,1147],["2021-02-03",12228,52,1199],["2021-02-04",12228,25,1224],["2021-02-05",12228,30,1254],["2021-02-06",12228,2,1256],["2021-02-07",12228,3,1259],["2021-02-08",12228,81,1340],["2021-02-09",12228,24,1364],["2021-02-10",12228,90,1454],["2021-02-11",12228,38,1492],["2021-02-12",12228,29,1521],["2021-02-13",12228,29,1550],["2021-02-14",12228,4,1554],["2021-02-15",12228,118,1672],["2021-02-16",12228,31,1703],["2021-02-17",12228,102,1805],["2021-02-18",12228,24,1829],["2021-02-19",12228,35,1864],["2021-02-20",12228,5,1869],["2021-02-21",12228,1,1870],["2021-02-22",12228,105,1975],["2021-02-23",12228,70,2045],["2021-02-24",12228,42,2087],["2021-02-25",12228,42,2129],["2021-02-26",12228,55,2184],["2021-02-27",12228,44,2228],["2021-02-28",12228,6,2234],["2021-03-01",12228,96,2330],["2021-03-02",12228,57,2387],["2021-03-03",12228,87,2474],["2021-03-04",12228,39,2513],["2021-03-05",12228,48,2561],["2021-03-06",12228,10,2571],["2021-03-07",12228,2,2573],["2021-03-08",12228,89,2662],["2021-03-09",12228,31,2693],["2021-03-10",12228,107,2800],["2021-03-11",12228,37,2837],["2021-03-12",12228,56,2893],["2021-03-13",12228,74,2967],["2021-03-14",12228,8,2975],["2021-03-15",12228,128,3103],["2021-03-16",12228,76,3179],["2021-03-17",12228,112,3291],["2021-03-18",12228,37,3328],["2021-03-19",12228,72,3400],["2021-03-20",12228,7,3407],["2021-03-21",12228,6,3413],["2021-03-22",12228,65,3478],["2021-03-23",12228,31,3509],["2021-03-24",12228,69,3578],["2021-03-25",12228,59,3637],["2021-03-26",12228,57,3694],["2021-03-27",12228,11,3705],["2021-03-28",12228,3,3708],["2021-03-29",12228,96,3804],["2021-03-30",12228,78,3882],["2021-03-31",12228,187,4069],["2021-04-01",12228,51,4120],["2021-04-02",12228,60,4180],["2021-04-03",12228,22,4202],["2021-04-04",12228,2,4204],["2021-04-05",12228,112,4316],["2021-04-06",12228,48,4364],["2021-04-07",12228,91,4455],["2021-04-08",12228,60,4515],["2021-04-09",12228,72,4587],["2021-04-10",12228,16,4603],["2021-04-11",12228,8,4611],["2021-04-12",12228,178,4789],["2021-04-13",12228,75,4864],["2021-04-14",12228,132,4996],["2021-04-15",12228,50,5046],["2021-04-16",12228,67,5113],["2021-04-17",12228,43,5156],["2021-04-18",12228,7,5163],["2021-04-19",12228,74,5237],["2021-04-20",12228,36,5273],["2021-04-21",12228,65,5338],["2021-04-22",12228,103,5441],["2021-04-23",12228,91,5532],["2021-04-24",12228,3,5535],["2021-04-25",12228,3,5538],["2021-04-26",12228,67,5605],["2021-04-27",12228,42,5647],["2021-04-28",12228,165,5812],["2021-04-29",12228,39,5851],["2021-04-30",12228,39,5890],["2021-05-01",12228,13,5903],["2021-05-02",12228,5,5908],["2021-05-03",12228,53,5961],["2021-05-04",12228,24,5985],["2021-05-05",12228,54,6039],["2021-05-06",12228,32,6071],["2021-05-07",12228,54,6125],["2021-05-08",12228,12,6137],["2021-05-09",12228,2,6139],["2021-05-10",12228,27,6166],["2021-05-11",12228,26,6192],["2021-05-12",12228,43,6235],["2021-05-13",12228,31,6266],["2021-05-14",12228,40,6306],["2021-05-15",12228,37,6343],["2021-05-16",12228,12,6355],["2021-05-17",12228,16,6371],["2021-05-18",12228,25,6396],["2021-05-19",12228,38,6434],["2021-05-20",12228,95,6529],["2021-05-21",12228,69,6598],["2021-05-22",12228,18,6616],["2021-05-23",12228,6,6622],["2021-05-24",12228,16,6638],["2021-05-25",12228,17,6655],["2021-05-26",12228,41,6696],["2021-05-27",12228,13,6709],["2021-05-28",12228,22,6731],["2021-05-29",12228,6,6737],["2021-05-30",12228,1,6738],["2021-05-31",12228,3,6741],["2021-06-01",12228,12,6753],["2021-06-02",12228,33,6786],["2021-06-03",12228,10,6796],["2021-06-04",12228,25,6821],["2021-06-05",12228,10,6831],["2021-06-06",12228,1,6832],["2021-06-07",12228,11,6843],["2021-06-08",12228,11,6854],["2021-06-09",12228,19,6873],["2021-06-10",12228,18,6891],["2021-06-11",12228,21,6912],["2021-06-12",12228,15,6927],["2021-06-13",12228,3,6930],["2021-06-14",12228,15,6945],["2021-06-15",12228,13,6958],["2021-06-16",12228,28,6986],["2021-06-17",12228,19,7005],["2021-06-18",12228,15,7020],["2021-06-19",12228,17,7037],["2021-06-20",12228,2,7039],["2021-06-21",12228,10,7049],["2021-06-22",12228,5,7054],["2021-06-23",12228,29,7083],["2021-06-24",12228,6,7089],["2021-06-25",12228,15,7104],["2021-06-26",12228,4,7108],["2021-06-28",12228,6,7114],["2021-06-29",12228,8,7122],["2021-06-30",12228,21,7143],["2021-07-01",12228,14,7157],["2021-07-02",12228,10,7167],["2021-07-03",12228,7,7174],["2021-07-04",12228,3,7177],["2021-07-05",12228,7,7184],["2021-07-06",12228,14,7198],["2021-07-07",12228,11,7209],["2021-07-08",12228,8,7217],["2021-07-09",12228,8,7225],["2021-07-10",12228,6,7231],["2021-07-11",12228,2,7233],["2021-07-12",12228,11,7244],["2021-07-13",12228,14,7258],["2021-07-14",12228,12,7270],["2021-07-15",12228,18,7288],["2021-07-16",12228,17,7305],["2021-07-17",12228,9,7314],["2021-07-18",12228,3,7317],["2021-07-19",12228,7,7324],["2021-07-20",12228,8,7332],["2021-07-21",12228,21,7353],["2021-07-22",12228,19,7372],["2021-07-23",12228,23,7395],["2021-07-24",12228,16,7411],["2021-07-25",12228,2,7413],["2021-07-26",12228,8,7421],["2021-07-27",12228,12,7433],["2021-07-28",12228,31,7464],["2021-07-29",12228,28,7492],["2021-07-30",12228,33,7525],["2021-07-31",12228,16,7541],["2021-08-01",12228,9,7550],["2021-08-02",12228,18,7568],["2021-08-03",12228,20,7588],["2021-08-04",12228,34,7622],["2021-08-05",12228,25,7647],["2021-08-06",12228,47,7694],["2021-08-07",12228,23,7717],["2021-08-08",12228,15,7732],["2021-08-09",12228,33,7765],["2021-08-10",12228,35,7800],["2021-08-11",12228,33,7833],["2021-08-12",12228,37,7870],["2021-08-13",12228,44,7914],["2021-08-14",12228,24,7938],["2021-08-15",12228,8,7946],["2021-08-16",12228,25,7971],["2021-08-17",12228,26,7997],["2021-08-18",12228,41,8038],["2021-08-19",12228,37,8075],["2021-08-20",12228,38,8113],["2021-08-21",12228,30,8143],["2021-08-22",12228,8,8151],["2021-08-23",12228,21,8172],["2021-08-24",12228,31,8203],["2021-08-25",12228,48,8251],["2021-08-26",12228,38,8289],["2021-08-27",12228,49,8338],["2021-08-28",12228,21,8359],["2021-08-29",12228,14,8373],["2021-08-30",12228,31,8404],["2021-08-31",12228,24,8428],["2021-09-01",12228,32,8460],["2021-09-02",12228,30,8490],["2021-09-03",12228,44,8534],["2021-09-04",12228,32,8566],["2021-09-05",12228,15,8581],["2021-09-07",12228,37,8618],["2021-09-08",12228,35,8653],["2021-09-09",12228,20,8673],["2021-09-10",12228,56,8729],["2021-09-11",12228,32,8761],["2021-09-12",12228,8,8769],["2021-09-13",12228,23,8792],["2021-09-14",12228,23,8815],["2021-09-15",12228,31,8846],["2021-09-16",12228,23,8869],["2021-09-17",12228,40,8909],["2021-09-18",12228,14,8923],["2021-09-19",12228,10,8933],["2021-09-20",12228,28,8961],["2021-09-21",12228,10,8971],["2021-09-22",12228,25,8996],["2021-09-23",12228,16,9012],["2021-09-24",12228,19,9031],["2021-09-25",12228,7,9038],["2021-09-26",12228,4,9042],["2021-09-27",12228,11,9053],["2021-09-28",12228,28,9081],["2021-09-29",12228,19,9100],["2021-09-30",12228,17,9117],["2021-10-01",12228,32,9149],["2021-10-02",12228,10,9159],["2021-10-03",12228,3,9162],["2021-10-04",12228,10,9172],["2021-10-05",12228,18,9190],["2021-10-06",12228,20,9210],["2021-10-07",12228,14,9224],["2021-10-08",12228,24,9248],["2021-10-09",12228,6,9254],["2021-10-10",12228,4,9258],["2021-10-11",12228,20,9278],["2021-10-12",12228,18,9296],["2021-10-13",12228,29,9325],["2021-10-14",12228,18,9343],["2021-10-15",12228,28,9371],["2021-10-16",12228,7,9378],["2021-10-17",12228,4,9382],["2021-10-18",12228,6,9388],["2021-10-19",12228,7,9395],["2021-10-20",12228,5,9400],["2021-10-21",12228,8,9408],["2021-10-22",12228,15,9423],["2021-10-23",12228,10,9433],["2021-10-24",12228,6,9439],["2021-10-25",12228,39,9478],["2021-10-26",12228,57,9535],["2021-10-27",12228,101,9636],["2021-10-28",12228,21,9657],["2021-10-29",12228,47,9704],["2021-10-30",12228,9,9713],["2021-10-31",12228,2,9715],["2021-11-01",12228,26,9741],["2021-11-02",12228,35,9776],["2021-11-03",12228,59,9835],["2021-11-04",12228,22,9857],["2021-11-05",12228,24,9881],["2021-11-06",12228,5,9886],["2021-11-07",12228,3,9889],["2021-11-08",12228,22,9911],["2021-11-09",12228,21,9932],["2021-11-10",12228,60,9992],["2021-11-11",12228,19,10011],["2021-11-12",12228,32,10043],["2021-11-13",12228,6,10049],["2021-11-14",12228,2,10051],["2021-11-15",12228,28,10079],["2021-11-16",12228,20,10099],["2021-11-17",12228,59,10158],["2021-11-18",12228,21,10179],["2021-11-19",12228,25,10204],["2021-11-20",12228,7,10211],["2021-11-21",12228,2,10213],["2021-11-22",12228,29,10242],["2021-11-23",12228,15,10257],["2021-11-24",12228,16,10273],["2021-11-26",12228,29,10302],["2021-11-27",12228,12,10314],["2021-11-28",12228,5,10319],["2021-11-29",12228,34,10353],["2021-11-30",12228,38,10391],["2021-12-01",12228,89,10480],["2021-12-02",12228,31,10511],["2021-12-03",12228,41,10552],["2021-12-04",12228,13,10565],["2021-12-05",12228,2,10567],["2021-12-06",12228,36,10603],["2021-12-07",12228,24,10627],["2021-12-08",12228,55,10682],["2021-12-09",12228,22,10704],["2021-12-10",12228,27,10731],["2021-12-11",12228,5,10736],["2021-12-12",12228,2,10738],["2021-12-13",12228,29,10767],["2021-12-14",12228,15,10782],["2021-12-15",12228,48,10830],["2021-12-16",12228,16,10846],["2021-12-17",12228,29,10875],["2021-12-18",12228,11,10886],["2021-12-19",12228,8,10894],["2021-12-20",12228,36,10930],["2021-12-21",12228,25,10955],["2021-12-22",12228,45,11000],["2021-12-23",12228,12,11012],["2021-12-24",12228,6,11018],["2021-12-26",12228,3,11021],["2021-12-27",12228,20,11041],["2021-12-28",12228,28,11069],["2021-12-29",12228,41,11110],["2021-12-30",12228,26,11136],["2021-12-31",12228,18,11154],["2022-01-01",12228,2,11156],["2022-01-02",12228,5,11161],["2022-01-03",12228,11,11172]]} \ No newline at end of file diff --git a/public/data/overall/vaccinations/by-county/Crisp.json b/public/data/overall/vaccinations/by-county/Crisp.json new file mode 100644 index 000000000..f99f7f182 --- /dev/null +++ b/public/data/overall/vaccinations/by-county/Crisp.json @@ -0,0 +1 @@ +{"segment":{"county":"Crisp"},"headers":["report_date","population","vaccinations","total_vaccinations"],"rows":[["2020-12-16",22289,1,1],["2020-12-17",22289,1,2],["2020-12-18",22289,5,7],["2020-12-21",22289,4,11],["2020-12-22",22289,8,19],["2020-12-23",22289,60,79],["2020-12-24",22289,44,123],["2020-12-26",22289,4,127],["2020-12-27",22289,4,131],["2020-12-28",22289,72,203],["2020-12-29",22289,68,271],["2020-12-30",22289,30,301],["2020-12-31",22289,41,342],["2021-01-01",22289,6,348],["2021-01-02",22289,2,350],["2021-01-03",22289,3,353],["2021-01-04",22289,70,423],["2021-01-05",22289,57,480],["2021-01-06",22289,49,529],["2021-01-07",22289,60,589],["2021-01-08",22289,79,668],["2021-01-09",22289,1,669],["2021-01-10",22289,3,672],["2021-01-11",22289,205,877],["2021-01-12",22289,97,974],["2021-01-13",22289,96,1070],["2021-01-14",22289,117,1187],["2021-01-15",22289,130,1317],["2021-01-16",22289,46,1363],["2021-01-17",22289,6,1369],["2021-01-18",22289,154,1523],["2021-01-19",22289,150,1673],["2021-01-20",22289,110,1783],["2021-01-21",22289,447,2230],["2021-01-22",22289,88,2318],["2021-01-23",22289,10,2328],["2021-01-24",22289,10,2338],["2021-01-25",22289,60,2398],["2021-01-26",22289,121,2519],["2021-01-27",22289,91,2610],["2021-01-28",22289,87,2697],["2021-01-29",22289,91,2788],["2021-01-30",22289,2,2790],["2021-01-31",22289,4,2794],["2021-02-01",22289,87,2881],["2021-02-02",22289,90,2971],["2021-02-03",22289,153,3124],["2021-02-04",22289,265,3389],["2021-02-05",22289,177,3566],["2021-02-06",22289,24,3590],["2021-02-07",22289,5,3595],["2021-02-08",22289,101,3696],["2021-02-09",22289,118,3814],["2021-02-10",22289,127,3941],["2021-02-11",22289,123,4064],["2021-02-12",22289,118,4182],["2021-02-13",22289,14,4196],["2021-02-14",22289,11,4207],["2021-02-15",22289,83,4290],["2021-02-16",22289,173,4463],["2021-02-17",22289,99,4562],["2021-02-18",22289,622,5184],["2021-02-19",22289,87,5271],["2021-02-20",22289,8,5279],["2021-02-21",22289,5,5284],["2021-02-22",22289,89,5373],["2021-02-23",22289,122,5495],["2021-02-24",22289,94,5589],["2021-02-25",22289,89,5678],["2021-02-26",22289,67,5745],["2021-02-27",22289,53,5798],["2021-02-28",22289,13,5811],["2021-03-01",22289,114,5925],["2021-03-02",22289,133,6058],["2021-03-03",22289,89,6147],["2021-03-04",22289,90,6237],["2021-03-05",22289,234,6471],["2021-03-06",22289,8,6479],["2021-03-07",22289,20,6499],["2021-03-08",22289,81,6580],["2021-03-09",22289,107,6687],["2021-03-10",22289,246,6933],["2021-03-11",22289,60,6993],["2021-03-12",22289,93,7086],["2021-03-13",22289,18,7104],["2021-03-14",22289,23,7127],["2021-03-15",22289,192,7319],["2021-03-16",22289,130,7449],["2021-03-17",22289,106,7555],["2021-03-18",22289,99,7654],["2021-03-19",22289,294,7948],["2021-03-20",22289,25,7973],["2021-03-21",22289,17,7990],["2021-03-22",22289,166,8156],["2021-03-23",22289,105,8261],["2021-03-24",22289,124,8385],["2021-03-25",22289,139,8524],["2021-03-26",22289,148,8672],["2021-03-27",22289,16,8688],["2021-03-28",22289,12,8700],["2021-03-29",22289,131,8831],["2021-03-30",22289,200,9031],["2021-03-31",22289,135,9166],["2021-04-01",22289,150,9316],["2021-04-02",22289,113,9429],["2021-04-03",22289,48,9477],["2021-04-04",22289,21,9498],["2021-04-05",22289,176,9674],["2021-04-06",22289,103,9777],["2021-04-07",22289,155,9932],["2021-04-08",22289,153,10085],["2021-04-09",22289,84,10169],["2021-04-10",22289,23,10192],["2021-04-11",22289,18,10210],["2021-04-12",22289,136,10346],["2021-04-13",22289,141,10487],["2021-04-14",22289,105,10592],["2021-04-15",22289,251,10843],["2021-04-16",22289,166,11009],["2021-04-17",22289,11,11020],["2021-04-18",22289,12,11032],["2021-04-19",22289,166,11198],["2021-04-20",22289,95,11293],["2021-04-21",22289,169,11462],["2021-04-22",22289,123,11585],["2021-04-23",22289,95,11680],["2021-04-24",22289,37,11717],["2021-04-25",22289,8,11725],["2021-04-26",22289,92,11817],["2021-04-27",22289,120,11937],["2021-04-28",22289,73,12010],["2021-04-29",22289,121,12131],["2021-04-30",22289,100,12231],["2021-05-01",22289,11,12242],["2021-05-02",22289,14,12256],["2021-05-03",22289,57,12313],["2021-05-04",22289,74,12387],["2021-05-05",22289,53,12440],["2021-05-06",22289,117,12557],["2021-05-07",22289,109,12666],["2021-05-08",22289,15,12681],["2021-05-09",22289,6,12687],["2021-05-10",22289,74,12761],["2021-05-11",22289,74,12835],["2021-05-12",22289,61,12896],["2021-05-13",22289,77,12973],["2021-05-14",22289,45,13018],["2021-05-15",22289,19,13037],["2021-05-16",22289,13,13050],["2021-05-17",22289,83,13133],["2021-05-18",22289,74,13207],["2021-05-19",22289,71,13278],["2021-05-20",22289,102,13380],["2021-05-21",22289,100,13480],["2021-05-22",22289,25,13505],["2021-05-23",22289,11,13516],["2021-05-24",22289,41,13557],["2021-05-25",22289,57,13614],["2021-05-26",22289,39,13653],["2021-05-27",22289,54,13707],["2021-05-28",22289,32,13739],["2021-05-29",22289,9,13748],["2021-05-30",22289,14,13762],["2021-05-31",22289,4,13766],["2021-06-01",22289,58,13824],["2021-06-02",22289,35,13859],["2021-06-03",22289,59,13918],["2021-06-04",22289,49,13967],["2021-06-05",22289,14,13981],["2021-06-06",22289,13,13994],["2021-06-07",22289,35,14029],["2021-06-08",22289,54,14083],["2021-06-09",22289,55,14138],["2021-06-10",22289,55,14193],["2021-06-11",22289,49,14242],["2021-06-12",22289,31,14273],["2021-06-13",22289,10,14283],["2021-06-14",22289,83,14366],["2021-06-15",22289,33,14399],["2021-06-16",22289,44,14443],["2021-06-17",22289,36,14479],["2021-06-18",22289,33,14512],["2021-06-19",22289,17,14529],["2021-06-20",22289,5,14534],["2021-06-21",22289,30,14564],["2021-06-22",22289,36,14600],["2021-06-23",22289,36,14636],["2021-06-24",22289,28,14664],["2021-06-25",22289,37,14701],["2021-06-26",22289,15,14716],["2021-06-27",22289,3,14719],["2021-06-28",22289,25,14744],["2021-06-29",22289,26,14770],["2021-06-30",22289,27,14797],["2021-07-01",22289,19,14816],["2021-07-02",22289,20,14836],["2021-07-03",22289,1,14837],["2021-07-04",22289,1,14838],["2021-07-05",22289,9,14847],["2021-07-06",22289,18,14865],["2021-07-07",22289,34,14899],["2021-07-08",22289,32,14931],["2021-07-09",22289,31,14962],["2021-07-10",22289,8,14970],["2021-07-11",22289,8,14978],["2021-07-12",22289,23,15001],["2021-07-13",22289,43,15044],["2021-07-14",22289,35,15079],["2021-07-15",22289,28,15107],["2021-07-16",22289,34,15141],["2021-07-17",22289,11,15152],["2021-07-18",22289,2,15154],["2021-07-19",22289,31,15185],["2021-07-20",22289,33,15218],["2021-07-21",22289,44,15262],["2021-07-22",22289,33,15295],["2021-07-23",22289,31,15326],["2021-07-24",22289,23,15349],["2021-07-25",22289,3,15352],["2021-07-26",22289,40,15392],["2021-07-27",22289,60,15452],["2021-07-28",22289,41,15493],["2021-07-29",22289,46,15539],["2021-07-30",22289,54,15593],["2021-07-31",22289,25,15618],["2021-08-01",22289,19,15637],["2021-08-02",22289,64,15701],["2021-08-03",22289,45,15746],["2021-08-04",22289,40,15786],["2021-08-05",22289,58,15844],["2021-08-06",22289,88,15932],["2021-08-07",22289,28,15960],["2021-08-08",22289,8,15968],["2021-08-09",22289,51,16019],["2021-08-10",22289,61,16080],["2021-08-11",22289,72,16152],["2021-08-12",22289,79,16231],["2021-08-13",22289,83,16314],["2021-08-14",22289,22,16336],["2021-08-15",22289,23,16359],["2021-08-16",22289,70,16429],["2021-08-17",22289,66,16495],["2021-08-18",22289,69,16564],["2021-08-19",22289,57,16621],["2021-08-20",22289,166,16787],["2021-08-21",22289,30,16817],["2021-08-22",22289,21,16838],["2021-08-23",22289,70,16908],["2021-08-24",22289,85,16993],["2021-08-25",22289,74,17067],["2021-08-26",22289,72,17139],["2021-08-27",22289,90,17229],["2021-08-28",22289,44,17273],["2021-08-29",22289,16,17289],["2021-08-30",22289,66,17355],["2021-08-31",22289,77,17432],["2021-09-01",22289,63,17495],["2021-09-02",22289,70,17565],["2021-09-03",22289,124,17689],["2021-09-04",22289,25,17714],["2021-09-05",22289,16,17730],["2021-09-06",22289,20,17750],["2021-09-07",22289,71,17821],["2021-09-08",22289,89,17910],["2021-09-09",22289,68,17978],["2021-09-10",22289,89,18067],["2021-09-11",22289,33,18100],["2021-09-12",22289,29,18129],["2021-09-13",22289,58,18187],["2021-09-14",22289,90,18277],["2021-09-15",22289,67,18344],["2021-09-16",22289,50,18394],["2021-09-17",22289,83,18477],["2021-09-18",22289,22,18499],["2021-09-19",22289,11,18510],["2021-09-20",22289,60,18570],["2021-09-21",22289,59,18629],["2021-09-22",22289,38,18667],["2021-09-23",22289,38,18705],["2021-09-24",22289,57,18762],["2021-09-25",22289,18,18780],["2021-09-26",22289,10,18790],["2021-09-27",22289,45,18835],["2021-09-28",22289,43,18878],["2021-09-29",22289,42,18920],["2021-09-30",22289,56,18976],["2021-10-01",22289,58,19034],["2021-10-02",22289,21,19055],["2021-10-03",22289,12,19067],["2021-10-04",22289,35,19102],["2021-10-05",22289,40,19142],["2021-10-06",22289,38,19180],["2021-10-07",22289,35,19215],["2021-10-08",22289,60,19275],["2021-10-09",22289,16,19291],["2021-10-10",22289,6,19297],["2021-10-11",22289,27,19324],["2021-10-12",22289,36,19360],["2021-10-13",22289,34,19394],["2021-10-14",22289,34,19428],["2021-10-15",22289,39,19467],["2021-10-16",22289,18,19485],["2021-10-17",22289,1,19486],["2021-10-18",22289,27,19513],["2021-10-19",22289,22,19535],["2021-10-20",22289,21,19556],["2021-10-21",22289,23,19579],["2021-10-22",22289,47,19626],["2021-10-23",22289,16,19642],["2021-10-24",22289,12,19654],["2021-10-25",22289,38,19692],["2021-10-26",22289,193,19885],["2021-10-27",22289,218,20103],["2021-10-28",22289,88,20191],["2021-10-29",22289,130,20321],["2021-10-30",22289,24,20345],["2021-10-31",22289,9,20354],["2021-11-01",22289,111,20465],["2021-11-02",22289,110,20575],["2021-11-03",22289,58,20633],["2021-11-04",22289,59,20692],["2021-11-05",22289,83,20775],["2021-11-06",22289,17,20792],["2021-11-07",22289,7,20799],["2021-11-08",22289,78,20877],["2021-11-09",22289,40,20917],["2021-11-10",22289,40,20957],["2021-11-11",22289,39,20996],["2021-11-12",22289,81,21077],["2021-11-13",22289,19,21096],["2021-11-14",22289,14,21110],["2021-11-15",22289,36,21146],["2021-11-16",22289,59,21205],["2021-11-17",22289,69,21274],["2021-11-18",22289,103,21377],["2021-11-19",22289,131,21508],["2021-11-20",22289,22,21530],["2021-11-21",22289,9,21539],["2021-11-22",22289,40,21579],["2021-11-23",22289,58,21637],["2021-11-24",22289,29,21666],["2021-11-25",22289,2,21668],["2021-11-26",22289,24,21692],["2021-11-27",22289,12,21704],["2021-11-28",22289,5,21709],["2021-11-29",22289,56,21765],["2021-11-30",22289,56,21821],["2021-12-01",22289,61,21882],["2021-12-02",22289,60,21942],["2021-12-03",22289,127,22069],["2021-12-04",22289,43,22112],["2021-12-05",22289,5,22117],["2021-12-06",22289,34,22151],["2021-12-07",22289,74,22225],["2021-12-08",22289,31,22256],["2021-12-09",22289,55,22311],["2021-12-10",22289,100,22411],["2021-12-11",22289,13,22424],["2021-12-12",22289,10,22434],["2021-12-13",22289,80,22514],["2021-12-14",22289,81,22595],["2021-12-15",22289,30,22625],["2021-12-16",22289,27,22652],["2021-12-17",22289,79,22731],["2021-12-18",22289,20,22751],["2021-12-19",22289,7,22758],["2021-12-20",22289,55,22813],["2021-12-21",22289,79,22892],["2021-12-22",22289,45,22937],["2021-12-23",22289,25,22962],["2021-12-24",22289,9,22971],["2021-12-26",22289,11,22982],["2021-12-27",22289,50,23032],["2021-12-28",22289,51,23083],["2021-12-29",22289,73,23156],["2021-12-30",22289,69,23225],["2021-12-31",22289,38,23263],["2022-01-01",22289,8,23271],["2022-01-02",22289,12,23283],["2022-01-03",22289,14,23297]]} \ No newline at end of file diff --git a/public/data/overall/vaccinations/by-county/Dade.json b/public/data/overall/vaccinations/by-county/Dade.json new file mode 100644 index 000000000..b104e653f --- /dev/null +++ b/public/data/overall/vaccinations/by-county/Dade.json @@ -0,0 +1 @@ +{"segment":{"county":"Dade"},"headers":["report_date","population","vaccinations","total_vaccinations"],"rows":[["2020-12-14",16162,1,1],["2020-12-19",16162,1,2],["2020-12-21",16162,5,7],["2020-12-22",16162,5,12],["2020-12-23",16162,8,20],["2020-12-24",16162,1,21],["2020-12-27",16162,2,23],["2020-12-28",16162,2,25],["2020-12-29",16162,3,28],["2020-12-30",16162,9,37],["2020-12-31",16162,9,46],["2021-01-01",16162,1,47],["2021-01-03",16162,3,50],["2021-01-04",16162,14,64],["2021-01-05",16162,33,97],["2021-01-06",16162,7,104],["2021-01-07",16162,21,125],["2021-01-08",16162,11,136],["2021-01-09",16162,6,142],["2021-01-10",16162,1,143],["2021-01-11",16162,106,249],["2021-01-12",16162,108,357],["2021-01-13",16162,6,363],["2021-01-14",16162,136,499],["2021-01-15",16162,82,581],["2021-01-16",16162,13,594],["2021-01-17",16162,63,657],["2021-01-18",16162,10,667],["2021-01-19",16162,134,801],["2021-01-20",16162,17,818],["2021-01-21",16162,164,982],["2021-01-22",16162,78,1060],["2021-01-23",16162,1,1061],["2021-01-24",16162,4,1065],["2021-01-25",16162,176,1241],["2021-01-26",16162,152,1393],["2021-01-27",16162,97,1490],["2021-01-28",16162,138,1628],["2021-01-29",16162,77,1705],["2021-01-30",16162,1,1706],["2021-02-01",16162,93,1799],["2021-02-02",16162,92,1891],["2021-02-03",16162,7,1898],["2021-02-04",16162,139,2037],["2021-02-05",16162,50,2087],["2021-02-06",16162,3,2090],["2021-02-07",16162,46,2136],["2021-02-08",16162,91,2227],["2021-02-09",16162,98,2325],["2021-02-10",16162,45,2370],["2021-02-11",16162,139,2509],["2021-02-12",16162,85,2594],["2021-02-13",16162,1,2595],["2021-02-15",16162,62,2657],["2021-02-16",16162,1,2658],["2021-02-17",16162,117,2775],["2021-02-18",16162,169,2944],["2021-02-19",16162,92,3036],["2021-02-22",16162,63,3099],["2021-02-23",16162,18,3117],["2021-02-24",16162,111,3228],["2021-02-25",16162,157,3385],["2021-02-26",16162,93,3478],["2021-02-27",16162,2,3480],["2021-02-28",16162,2,3482],["2021-03-01",16162,133,3615],["2021-03-02",16162,132,3747],["2021-03-03",16162,160,3907],["2021-03-04",16162,128,4035],["2021-03-05",16162,58,4093],["2021-03-06",16162,3,4096],["2021-03-07",16162,2,4098],["2021-03-08",16162,74,4172],["2021-03-09",16162,69,4241],["2021-03-10",16162,66,4307],["2021-03-11",16162,76,4383],["2021-03-12",16162,79,4462],["2021-03-13",16162,1,4463],["2021-03-14",16162,1,4464],["2021-03-15",16162,115,4579],["2021-03-16",16162,133,4712],["2021-03-17",16162,124,4836],["2021-03-18",16162,107,4943],["2021-03-19",16162,90,5033],["2021-03-20",16162,4,5037],["2021-03-21",16162,1,5038],["2021-03-22",16162,24,5062],["2021-03-23",16162,82,5144],["2021-03-24",16162,60,5204],["2021-03-25",16162,80,5284],["2021-03-26",16162,90,5374],["2021-03-27",16162,3,5377],["2021-03-28",16162,3,5380],["2021-03-29",16162,105,5485],["2021-03-30",16162,41,5526],["2021-03-31",16162,127,5653],["2021-04-01",16162,64,5717],["2021-04-02",16162,91,5808],["2021-04-03",16162,2,5810],["2021-04-04",16162,1,5811],["2021-04-05",16162,74,5885],["2021-04-06",16162,31,5916],["2021-04-07",16162,127,6043],["2021-04-08",16162,50,6093],["2021-04-09",16162,83,6176],["2021-04-10",16162,7,6183],["2021-04-11",16162,2,6185],["2021-04-12",16162,128,6313],["2021-04-13",16162,30,6343],["2021-04-14",16162,160,6503],["2021-04-15",16162,34,6537],["2021-04-16",16162,92,6629],["2021-04-17",16162,3,6632],["2021-04-18",16162,1,6633],["2021-04-19",16162,119,6752],["2021-04-20",16162,46,6798],["2021-04-21",16162,105,6903],["2021-04-22",16162,59,6962],["2021-04-23",16162,68,7030],["2021-04-24",16162,7,7037],["2021-04-26",16162,91,7128],["2021-04-27",16162,20,7148],["2021-04-28",16162,116,7264],["2021-04-29",16162,33,7297],["2021-04-30",16162,88,7385],["2021-05-01",16162,4,7389],["2021-05-02",16162,2,7391],["2021-05-03",16162,55,7446],["2021-05-04",16162,20,7466],["2021-05-05",16162,50,7516],["2021-05-06",16162,44,7560],["2021-05-07",16162,62,7622],["2021-05-08",16162,3,7625],["2021-05-09",16162,2,7627],["2021-05-10",16162,36,7663],["2021-05-11",16162,20,7683],["2021-05-12",16162,35,7718],["2021-05-13",16162,16,7734],["2021-05-14",16162,37,7771],["2021-05-15",16162,4,7775],["2021-05-16",16162,8,7783],["2021-05-17",16162,33,7816],["2021-05-18",16162,14,7830],["2021-05-19",16162,33,7863],["2021-05-20",16162,22,7885],["2021-05-21",16162,24,7909],["2021-05-22",16162,11,7920],["2021-05-23",16162,2,7922],["2021-05-24",16162,24,7946],["2021-05-25",16162,18,7964],["2021-05-26",16162,25,7989],["2021-05-27",16162,8,7997],["2021-05-28",16162,17,8014],["2021-05-29",16162,2,8016],["2021-05-30",16162,1,8017],["2021-05-31",16162,1,8018],["2021-06-01",16162,20,8038],["2021-06-02",16162,28,8066],["2021-06-03",16162,20,8086],["2021-06-04",16162,18,8104],["2021-06-05",16162,3,8107],["2021-06-06",16162,2,8109],["2021-06-07",16162,21,8130],["2021-06-08",16162,13,8143],["2021-06-09",16162,12,8155],["2021-06-10",16162,9,8164],["2021-06-11",16162,19,8183],["2021-06-12",16162,3,8186],["2021-06-13",16162,3,8189],["2021-06-14",16162,16,8205],["2021-06-15",16162,2,8207],["2021-06-16",16162,15,8222],["2021-06-17",16162,26,8248],["2021-06-18",16162,8,8256],["2021-06-19",16162,1,8257],["2021-06-21",16162,7,8264],["2021-06-22",16162,6,8270],["2021-06-23",16162,20,8290],["2021-06-24",16162,8,8298],["2021-06-25",16162,14,8312],["2021-06-26",16162,2,8314],["2021-06-27",16162,3,8317],["2021-06-28",16162,8,8325],["2021-06-29",16162,5,8330],["2021-06-30",16162,6,8336],["2021-07-01",16162,13,8349],["2021-07-02",16162,15,8364],["2021-07-03",16162,3,8367],["2021-07-05",16162,3,8370],["2021-07-06",16162,7,8377],["2021-07-07",16162,24,8401],["2021-07-08",16162,8,8409],["2021-07-09",16162,18,8427],["2021-07-10",16162,2,8429],["2021-07-11",16162,2,8431],["2021-07-12",16162,6,8437],["2021-07-13",16162,3,8440],["2021-07-14",16162,5,8445],["2021-07-15",16162,13,8458],["2021-07-16",16162,24,8482],["2021-07-17",16162,4,8486],["2021-07-18",16162,4,8490],["2021-07-19",16162,15,8505],["2021-07-20",16162,9,8514],["2021-07-21",16162,15,8529],["2021-07-22",16162,15,8544],["2021-07-23",16162,21,8565],["2021-07-24",16162,12,8577],["2021-07-25",16162,5,8582],["2021-07-26",16162,18,8600],["2021-07-27",16162,17,8617],["2021-07-28",16162,21,8638],["2021-07-29",16162,30,8668],["2021-07-30",16162,41,8709],["2021-08-01",16162,3,8712],["2021-08-02",16162,20,8732],["2021-08-03",16162,25,8757],["2021-08-04",16162,20,8777],["2021-08-05",16162,21,8798],["2021-08-06",16162,24,8822],["2021-08-07",16162,14,8836],["2021-08-08",16162,9,8845],["2021-08-09",16162,23,8868],["2021-08-10",16162,11,8879],["2021-08-11",16162,25,8904],["2021-08-12",16162,49,8953],["2021-08-13",16162,22,8975],["2021-08-14",16162,16,8991],["2021-08-15",16162,3,8994],["2021-08-16",16162,39,9033],["2021-08-17",16162,29,9062],["2021-08-18",16162,36,9098],["2021-08-19",16162,50,9148],["2021-08-20",16162,31,9179],["2021-08-21",16162,7,9186],["2021-08-22",16162,4,9190],["2021-08-23",16162,38,9228],["2021-08-24",16162,36,9264],["2021-08-25",16162,53,9317],["2021-08-26",16162,40,9357],["2021-08-27",16162,45,9402],["2021-08-28",16162,14,9416],["2021-08-29",16162,9,9425],["2021-08-30",16162,35,9460],["2021-08-31",16162,25,9485],["2021-09-01",16162,25,9510],["2021-09-02",16162,54,9564],["2021-09-03",16162,35,9599],["2021-09-04",16162,12,9611],["2021-09-05",16162,5,9616],["2021-09-06",16162,3,9619],["2021-09-07",16162,40,9659],["2021-09-08",16162,25,9684],["2021-09-09",16162,33,9717],["2021-09-10",16162,30,9747],["2021-09-11",16162,14,9761],["2021-09-12",16162,5,9766],["2021-09-13",16162,33,9799],["2021-09-14",16162,14,9813],["2021-09-15",16162,28,9841],["2021-09-16",16162,28,9869],["2021-09-17",16162,33,9902],["2021-09-18",16162,10,9912],["2021-09-19",16162,4,9916],["2021-09-20",16162,19,9935],["2021-09-21",16162,18,9953],["2021-09-22",16162,17,9970],["2021-09-23",16162,26,9996],["2021-09-24",16162,16,10012],["2021-09-25",16162,5,10017],["2021-09-26",16162,3,10020],["2021-09-27",16162,13,10033],["2021-09-28",16162,14,10047],["2021-09-29",16162,19,10066],["2021-09-30",16162,26,10092],["2021-10-01",16162,25,10117],["2021-10-02",16162,8,10125],["2021-10-03",16162,3,10128],["2021-10-04",16162,16,10144],["2021-10-05",16162,9,10153],["2021-10-06",16162,10,10163],["2021-10-07",16162,13,10176],["2021-10-08",16162,16,10192],["2021-10-09",16162,1,10193],["2021-10-10",16162,4,10197],["2021-10-11",16162,9,10206],["2021-10-12",16162,10,10216],["2021-10-13",16162,6,10222],["2021-10-14",16162,4,10226],["2021-10-15",16162,13,10239],["2021-10-16",16162,1,10240],["2021-10-17",16162,1,10241],["2021-10-19",16162,7,10248],["2021-10-20",16162,3,10251],["2021-10-21",16162,9,10260],["2021-10-22",16162,6,10266],["2021-10-23",16162,3,10269],["2021-10-24",16162,3,10272],["2021-10-25",16162,10,10282],["2021-10-26",16162,12,10294],["2021-10-27",16162,94,10388],["2021-10-28",16162,108,10496],["2021-10-29",16162,44,10540],["2021-10-30",16162,6,10546],["2021-10-31",16162,3,10549],["2021-11-01",16162,92,10641],["2021-11-02",16162,98,10739],["2021-11-03",16162,85,10824],["2021-11-04",16162,50,10874],["2021-11-05",16162,47,10921],["2021-11-06",16162,3,10924],["2021-11-07",16162,3,10927],["2021-11-08",16162,45,10972],["2021-11-09",16162,55,11027],["2021-11-10",16162,60,11087],["2021-11-11",16162,7,11094],["2021-11-12",16162,43,11137],["2021-11-13",16162,4,11141],["2021-11-14",16162,1,11142],["2021-11-15",16162,44,11186],["2021-11-16",16162,31,11217],["2021-11-17",16162,27,11244],["2021-11-18",16162,48,11292],["2021-11-19",16162,34,11326],["2021-11-20",16162,5,11331],["2021-11-21",16162,6,11337],["2021-11-22",16162,57,11394],["2021-11-23",16162,40,11434],["2021-11-24",16162,26,11460],["2021-11-26",16162,6,11466],["2021-11-27",16162,5,11471],["2021-11-28",16162,2,11473],["2021-11-29",16162,54,11527],["2021-11-30",16162,69,11596],["2021-12-01",16162,72,11668],["2021-12-02",16162,64,11732],["2021-12-03",16162,59,11791],["2021-12-04",16162,18,11809],["2021-12-05",16162,2,11811],["2021-12-06",16162,43,11854],["2021-12-07",16162,40,11894],["2021-12-08",16162,24,11918],["2021-12-09",16162,32,11950],["2021-12-10",16162,37,11987],["2021-12-11",16162,7,11994],["2021-12-12",16162,1,11995],["2021-12-13",16162,36,12031],["2021-12-14",16162,6,12037],["2021-12-15",16162,8,12045],["2021-12-16",16162,40,12085],["2021-12-17",16162,48,12133],["2021-12-18",16162,3,12136],["2021-12-19",16162,7,12143],["2021-12-20",16162,42,12185],["2021-12-21",16162,54,12239],["2021-12-22",16162,5,12244],["2021-12-23",16162,6,12250],["2021-12-24",16162,1,12251],["2021-12-27",16162,39,12290],["2021-12-28",16162,48,12338],["2021-12-29",16162,29,12367],["2021-12-30",16162,37,12404],["2021-12-31",16162,2,12406],["2022-01-01",16162,1,12407],["2022-01-02",16162,3,12410],["2022-01-03",16162,3,12413]]} \ No newline at end of file diff --git a/public/data/overall/vaccinations/by-county/Dawson.json b/public/data/overall/vaccinations/by-county/Dawson.json new file mode 100644 index 000000000..364bd2152 --- /dev/null +++ b/public/data/overall/vaccinations/by-county/Dawson.json @@ -0,0 +1 @@ +{"segment":{"county":"Dawson"},"headers":["report_date","population","vaccinations","total_vaccinations"],"rows":[["2020-12-17",27021,1,1],["2020-12-18",27021,6,7],["2020-12-19",27021,6,13],["2020-12-20",27021,7,20],["2020-12-21",27021,10,30],["2020-12-22",27021,13,43],["2020-12-23",27021,11,54],["2020-12-24",27021,3,57],["2020-12-26",27021,3,60],["2020-12-27",27021,6,66],["2020-12-28",27021,30,96],["2020-12-29",27021,36,132],["2020-12-30",27021,27,159],["2020-12-31",27021,9,168],["2021-01-01",27021,31,199],["2021-01-02",27021,3,202],["2021-01-03",27021,4,206],["2021-01-04",27021,45,251],["2021-01-05",27021,34,285],["2021-01-06",27021,56,341],["2021-01-07",27021,48,389],["2021-01-08",27021,32,421],["2021-01-09",27021,8,429],["2021-01-10",27021,12,441],["2021-01-11",27021,79,520],["2021-01-12",27021,77,597],["2021-01-13",27021,75,672],["2021-01-14",27021,100,772],["2021-01-15",27021,62,834],["2021-01-16",27021,48,882],["2021-01-17",27021,24,906],["2021-01-18",27021,134,1040],["2021-01-19",27021,94,1134],["2021-01-20",27021,111,1245],["2021-01-21",27021,639,1884],["2021-01-22",27021,120,2004],["2021-01-23",27021,36,2040],["2021-01-24",27021,17,2057],["2021-01-25",27021,81,2138],["2021-01-26",27021,97,2235],["2021-01-27",27021,140,2375],["2021-01-28",27021,78,2453],["2021-01-29",27021,85,2538],["2021-01-30",27021,41,2579],["2021-01-31",27021,10,2589],["2021-02-01",27021,110,2699],["2021-02-02",27021,84,2783],["2021-02-03",27021,74,2857],["2021-02-04",27021,139,2996],["2021-02-05",27021,61,3057],["2021-02-06",27021,19,3076],["2021-02-07",27021,6,3082],["2021-02-08",27021,112,3194],["2021-02-09",27021,119,3313],["2021-02-10",27021,109,3422],["2021-02-11",27021,87,3509],["2021-02-12",27021,77,3586],["2021-02-13",27021,62,3648],["2021-02-14",27021,12,3660],["2021-02-15",27021,121,3781],["2021-02-16",27021,96,3877],["2021-02-17",27021,138,4015],["2021-02-18",27021,651,4666],["2021-02-19",27021,49,4715],["2021-02-20",27021,39,4754],["2021-02-21",27021,18,4772],["2021-02-22",27021,87,4859],["2021-02-23",27021,112,4971],["2021-02-24",27021,132,5103],["2021-02-25",27021,179,5282],["2021-02-26",27021,161,5443],["2021-02-27",27021,48,5491],["2021-02-28",27021,31,5522],["2021-03-01",27021,162,5684],["2021-03-02",27021,109,5793],["2021-03-03",27021,229,6022],["2021-03-04",27021,175,6197],["2021-03-05",27021,114,6311],["2021-03-06",27021,15,6326],["2021-03-07",27021,21,6347],["2021-03-08",27021,164,6511],["2021-03-09",27021,157,6668],["2021-03-10",27021,179,6847],["2021-03-11",27021,130,6977],["2021-03-12",27021,154,7131],["2021-03-13",27021,101,7232],["2021-03-14",27021,21,7253],["2021-03-15",27021,193,7446],["2021-03-16",27021,165,7611],["2021-03-17",27021,163,7774],["2021-03-18",27021,168,7942],["2021-03-19",27021,229,8171],["2021-03-20",27021,35,8206],["2021-03-21",27021,20,8226],["2021-03-22",27021,124,8350],["2021-03-23",27021,170,8520],["2021-03-24",27021,137,8657],["2021-03-25",27021,191,8848],["2021-03-26",27021,165,9013],["2021-03-27",27021,29,9042],["2021-03-28",27021,42,9084],["2021-03-29",27021,125,9209],["2021-03-30",27021,168,9377],["2021-03-31",27021,211,9588],["2021-04-01",27021,269,9857],["2021-04-02",27021,114,9971],["2021-04-03",27021,36,10007],["2021-04-04",27021,24,10031],["2021-04-05",27021,209,10240],["2021-04-06",27021,209,10449],["2021-04-07",27021,192,10641],["2021-04-08",27021,194,10835],["2021-04-09",27021,173,11008],["2021-04-10",27021,45,11053],["2021-04-11",27021,43,11096],["2021-04-12",27021,195,11291],["2021-04-13",27021,176,11467],["2021-04-14",27021,184,11651],["2021-04-15",27021,196,11847],["2021-04-16",27021,125,11972],["2021-04-17",27021,34,12006],["2021-04-18",27021,15,12021],["2021-04-19",27021,129,12150],["2021-04-20",27021,166,12316],["2021-04-21",27021,144,12460],["2021-04-22",27021,196,12656],["2021-04-23",27021,179,12835],["2021-04-24",27021,46,12881],["2021-04-25",27021,22,12903],["2021-04-26",27021,104,13007],["2021-04-27",27021,171,13178],["2021-04-28",27021,159,13337],["2021-04-29",27021,156,13493],["2021-04-30",27021,105,13598],["2021-05-01",27021,44,13642],["2021-05-02",27021,25,13667],["2021-05-03",27021,122,13789],["2021-05-04",27021,125,13914],["2021-05-05",27021,131,14045],["2021-05-06",27021,141,14186],["2021-05-07",27021,129,14315],["2021-05-08",27021,26,14341],["2021-05-09",27021,15,14356],["2021-05-10",27021,61,14417],["2021-05-11",27021,76,14493],["2021-05-12",27021,51,14544],["2021-05-13",27021,99,14643],["2021-05-14",27021,72,14715],["2021-05-15",27021,39,14754],["2021-05-16",27021,22,14776],["2021-05-17",27021,70,14846],["2021-05-18",27021,92,14938],["2021-05-19",27021,89,15027],["2021-05-20",27021,88,15115],["2021-05-21",27021,69,15184],["2021-05-22",27021,31,15215],["2021-05-23",27021,22,15237],["2021-05-24",27021,54,15291],["2021-05-25",27021,73,15364],["2021-05-26",27021,62,15426],["2021-05-27",27021,74,15500],["2021-05-28",27021,58,15558],["2021-05-29",27021,30,15588],["2021-05-30",27021,18,15606],["2021-05-31",27021,16,15622],["2021-06-01",27021,74,15696],["2021-06-02",27021,49,15745],["2021-06-03",27021,60,15805],["2021-06-04",27021,69,15874],["2021-06-05",27021,21,15895],["2021-06-06",27021,17,15912],["2021-06-07",27021,58,15970],["2021-06-08",27021,54,16024],["2021-06-09",27021,47,16071],["2021-06-10",27021,46,16117],["2021-06-11",27021,58,16175],["2021-06-12",27021,19,16194],["2021-06-13",27021,17,16211],["2021-06-14",27021,37,16248],["2021-06-15",27021,31,16279],["2021-06-16",27021,32,16311],["2021-06-17",27021,54,16365],["2021-06-18",27021,32,16397],["2021-06-19",27021,19,16416],["2021-06-20",27021,7,16423],["2021-06-21",27021,30,16453],["2021-06-22",27021,36,16489],["2021-06-23",27021,37,16526],["2021-06-24",27021,25,16551],["2021-06-25",27021,30,16581],["2021-06-26",27021,16,16597],["2021-06-27",27021,15,16612],["2021-06-28",27021,22,16634],["2021-06-29",27021,26,16660],["2021-06-30",27021,23,16683],["2021-07-01",27021,27,16710],["2021-07-02",27021,38,16748],["2021-07-03",27021,16,16764],["2021-07-05",27021,19,16783],["2021-07-06",27021,19,16802],["2021-07-07",27021,26,16828],["2021-07-08",27021,23,16851],["2021-07-09",27021,46,16897],["2021-07-10",27021,16,16913],["2021-07-11",27021,9,16922],["2021-07-12",27021,21,16943],["2021-07-13",27021,23,16966],["2021-07-14",27021,24,16990],["2021-07-15",27021,15,17005],["2021-07-16",27021,26,17031],["2021-07-17",27021,11,17042],["2021-07-18",27021,9,17051],["2021-07-19",27021,22,17073],["2021-07-20",27021,29,17102],["2021-07-21",27021,23,17125],["2021-07-22",27021,28,17153],["2021-07-23",27021,38,17191],["2021-07-24",27021,33,17224],["2021-07-25",27021,13,17237],["2021-07-26",27021,23,17260],["2021-07-27",27021,28,17288],["2021-07-28",27021,31,17319],["2021-07-29",27021,33,17352],["2021-07-30",27021,39,17391],["2021-07-31",27021,32,17423],["2021-08-01",27021,27,17450],["2021-08-02",27021,42,17492],["2021-08-03",27021,41,17533],["2021-08-04",27021,45,17578],["2021-08-05",27021,40,17618],["2021-08-06",27021,65,17683],["2021-08-07",27021,37,17720],["2021-08-08",27021,19,17739],["2021-08-09",27021,46,17785],["2021-08-10",27021,44,17829],["2021-08-11",27021,48,17877],["2021-08-12",27021,51,17928],["2021-08-13",27021,75,18003],["2021-08-14",27021,41,18044],["2021-08-15",27021,21,18065],["2021-08-16",27021,46,18111],["2021-08-17",27021,43,18154],["2021-08-18",27021,62,18216],["2021-08-19",27021,47,18263],["2021-08-20",27021,79,18342],["2021-08-21",27021,46,18388],["2021-08-22",27021,26,18414],["2021-08-23",27021,57,18471],["2021-08-24",27021,58,18529],["2021-08-25",27021,50,18579],["2021-08-26",27021,75,18654],["2021-08-27",27021,76,18730],["2021-08-28",27021,41,18771],["2021-08-29",27021,29,18800],["2021-08-30",27021,64,18864],["2021-08-31",27021,71,18935],["2021-09-01",27021,73,19008],["2021-09-02",27021,76,19084],["2021-09-03",27021,82,19166],["2021-09-04",27021,28,19194],["2021-09-05",27021,20,19214],["2021-09-06",27021,18,19232],["2021-09-07",27021,45,19277],["2021-09-08",27021,63,19340],["2021-09-09",27021,71,19411],["2021-09-10",27021,76,19487],["2021-09-11",27021,31,19518],["2021-09-12",27021,28,19546],["2021-09-13",27021,51,19597],["2021-09-14",27021,40,19637],["2021-09-15",27021,44,19681],["2021-09-16",27021,45,19726],["2021-09-17",27021,70,19796],["2021-09-18",27021,28,19824],["2021-09-19",27021,24,19848],["2021-09-20",27021,43,19891],["2021-09-21",27021,38,19929],["2021-09-22",27021,56,19985],["2021-09-23",27021,44,20029],["2021-09-24",27021,50,20079],["2021-09-25",27021,23,20102],["2021-09-26",27021,15,20117],["2021-09-27",27021,49,20166],["2021-09-28",27021,56,20222],["2021-09-29",27021,50,20272],["2021-09-30",27021,61,20333],["2021-10-01",27021,68,20401],["2021-10-02",27021,20,20421],["2021-10-03",27021,18,20439],["2021-10-04",27021,28,20467],["2021-10-05",27021,56,20523],["2021-10-06",27021,52,20575],["2021-10-07",27021,49,20624],["2021-10-08",27021,27,20651],["2021-10-09",27021,11,20662],["2021-10-10",27021,11,20673],["2021-10-11",27021,18,20691],["2021-10-12",27021,32,20723],["2021-10-13",27021,32,20755],["2021-10-14",27021,28,20783],["2021-10-15",27021,41,20824],["2021-10-16",27021,14,20838],["2021-10-17",27021,4,20842],["2021-10-18",27021,19,20861],["2021-10-19",27021,13,20874],["2021-10-20",27021,43,20917],["2021-10-21",27021,33,20950],["2021-10-22",27021,68,21018],["2021-10-23",27021,42,21060],["2021-10-24",27021,12,21072],["2021-10-25",27021,70,21142],["2021-10-26",27021,115,21257],["2021-10-27",27021,107,21364],["2021-10-28",27021,98,21462],["2021-10-29",27021,86,21548],["2021-10-30",27021,31,21579],["2021-10-31",27021,13,21592],["2021-11-01",27021,72,21664],["2021-11-02",27021,83,21747],["2021-11-03",27021,73,21820],["2021-11-04",27021,74,21894],["2021-11-05",27021,59,21953],["2021-11-06",27021,22,21975],["2021-11-07",27021,16,21991],["2021-11-08",27021,52,22043],["2021-11-09",27021,48,22091],["2021-11-10",27021,51,22142],["2021-11-11",27021,39,22181],["2021-11-12",27021,54,22235],["2021-11-13",27021,39,22274],["2021-11-14",27021,13,22287],["2021-11-15",27021,67,22354],["2021-11-16",27021,71,22425],["2021-11-17",27021,56,22481],["2021-11-18",27021,78,22559],["2021-11-19",27021,73,22632],["2021-11-20",27021,29,22661],["2021-11-21",27021,24,22685],["2021-11-22",27021,49,22734],["2021-11-23",27021,52,22786],["2021-11-24",27021,33,22819],["2021-11-25",27021,2,22821],["2021-11-26",27021,30,22851],["2021-11-27",27021,23,22874],["2021-11-28",27021,24,22898],["2021-11-29",27021,53,22951],["2021-11-30",27021,86,23037],["2021-12-01",27021,69,23106],["2021-12-02",27021,92,23198],["2021-12-03",27021,60,23258],["2021-12-04",27021,23,23281],["2021-12-05",27021,15,23296],["2021-12-06",27021,68,23364],["2021-12-07",27021,65,23429],["2021-12-08",27021,57,23486],["2021-12-09",27021,62,23548],["2021-12-10",27021,72,23620],["2021-12-11",27021,20,23640],["2021-12-12",27021,13,23653],["2021-12-13",27021,46,23699],["2021-12-14",27021,39,23738],["2021-12-15",27021,36,23774],["2021-12-16",27021,53,23827],["2021-12-17",27021,59,23886],["2021-12-18",27021,28,23914],["2021-12-19",27021,15,23929],["2021-12-20",27021,77,24006],["2021-12-21",27021,53,24059],["2021-12-22",27021,56,24115],["2021-12-23",27021,33,24148],["2021-12-24",27021,15,24163],["2021-12-25",27021,1,24164],["2021-12-26",27021,11,24175],["2021-12-27",27021,68,24243],["2021-12-28",27021,54,24297],["2021-12-29",27021,59,24356],["2021-12-30",27021,56,24412],["2021-12-31",27021,23,24435],["2022-01-01",27021,2,24437],["2022-01-02",27021,12,24449],["2022-01-03",27021,12,24461]]} \ No newline at end of file diff --git a/public/data/overall/vaccinations/by-county/DeKalb.json b/public/data/overall/vaccinations/by-county/DeKalb.json new file mode 100644 index 000000000..0b6e7d368 --- /dev/null +++ b/public/data/overall/vaccinations/by-county/DeKalb.json @@ -0,0 +1 @@ +{"segment":{"county":"DeKalb"},"headers":["report_date","population","vaccinations","total_vaccinations"],"rows":[["2020-12-12",793154,3,3],["2020-12-13",793154,1,4],["2020-12-15",793154,5,9],["2020-12-16",793154,15,24],["2020-12-17",793154,223,247],["2020-12-18",793154,531,778],["2020-12-19",793154,1061,1839],["2020-12-20",793154,800,2639],["2020-12-21",793154,637,3276],["2020-12-22",793154,747,4023],["2020-12-23",793154,1041,5064],["2020-12-24",793154,244,5308],["2020-12-25",793154,13,5321],["2020-12-26",793154,146,5467],["2020-12-27",793154,94,5561],["2020-12-28",793154,1108,6669],["2020-12-29",793154,1024,7693],["2020-12-30",793154,1038,8731],["2020-12-31",793154,554,9285],["2021-01-01",793154,260,9545],["2021-01-02",793154,173,9718],["2021-01-03",793154,248,9966],["2021-01-04",793154,1097,11063],["2021-01-05",793154,1073,12136],["2021-01-06",793154,1601,13737],["2021-01-07",793154,1696,15433],["2021-01-08",793154,2121,17554],["2021-01-09",793154,1527,19081],["2021-01-10",793154,967,20048],["2021-01-11",793154,2222,22270],["2021-01-12",793154,2093,24363],["2021-01-13",793154,3071,27434],["2021-01-14",793154,2672,30106],["2021-01-15",793154,2715,32821],["2021-01-16",793154,1531,34352],["2021-01-17",793154,652,35004],["2021-01-18",793154,2146,37150],["2021-01-19",793154,3088,40238],["2021-01-20",793154,3102,43340],["2021-01-21",793154,2873,46213],["2021-01-22",793154,2712,48925],["2021-01-23",793154,884,49809],["2021-01-24",793154,545,50354],["2021-01-25",793154,2767,53121],["2021-01-26",793154,2561,55682],["2021-01-27",793154,3013,58695],["2021-01-28",793154,3059,61754],["2021-01-29",793154,3271,65025],["2021-01-30",793154,983,66008],["2021-01-31",793154,560,66568],["2021-02-01",793154,2638,69206],["2021-02-02",793154,2280,71486],["2021-02-03",793154,3023,74509],["2021-02-04",793154,3249,77758],["2021-02-05",793154,3066,80824],["2021-02-06",793154,1208,82032],["2021-02-07",793154,473,82505],["2021-02-08",793154,2834,85339],["2021-02-09",793154,2775,88114],["2021-02-10",793154,3633,91747],["2021-02-11",793154,3651,95398],["2021-02-12",793154,3598,98996],["2021-02-13",793154,1983,100979],["2021-02-14",793154,946,101925],["2021-02-15",793154,3853,105778],["2021-02-16",793154,3822,109600],["2021-02-17",793154,4184,113784],["2021-02-18",793154,3760,117544],["2021-02-19",793154,3570,121114],["2021-02-20",793154,1224,122338],["2021-02-21",793154,645,122983],["2021-02-22",793154,2142,125125],["2021-02-23",793154,2746,127871],["2021-02-24",793154,3715,131586],["2021-02-25",793154,4830,136416],["2021-02-26",793154,4983,141399],["2021-02-27",793154,2032,143431],["2021-02-28",793154,736,144167],["2021-03-01",793154,3391,147558],["2021-03-02",793154,3738,151296],["2021-03-03",793154,4044,155340],["2021-03-04",793154,4802,160142],["2021-03-05",793154,4636,164778],["2021-03-06",793154,1851,166629],["2021-03-07",793154,1147,167776],["2021-03-08",793154,4919,172695],["2021-03-09",793154,5345,178040],["2021-03-10",793154,5935,183975],["2021-03-11",793154,6265,190240],["2021-03-12",793154,6193,196433],["2021-03-13",793154,2632,199065],["2021-03-14",793154,1932,200997],["2021-03-15",793154,6026,207023],["2021-03-16",793154,7426,214449],["2021-03-17",793154,7206,221655],["2021-03-18",793154,7671,229326],["2021-03-19",793154,7393,236719],["2021-03-20",793154,3863,240582],["2021-03-21",793154,1736,242318],["2021-03-22",793154,6310,248628],["2021-03-23",793154,7259,255887],["2021-03-24",793154,7659,263546],["2021-03-25",793154,8709,272255],["2021-03-26",793154,8272,280527],["2021-03-27",793154,4986,285513],["2021-03-28",793154,2284,287797],["2021-03-29",793154,7892,295689],["2021-03-30",793154,10013,305702],["2021-03-31",793154,10646,316348],["2021-04-01",793154,10082,326430],["2021-04-02",793154,8038,334468],["2021-04-03",793154,3776,338244],["2021-04-04",793154,1770,340014],["2021-04-05",793154,7404,347418],["2021-04-06",793154,10199,357617],["2021-04-07",793154,9954,367571],["2021-04-08",793154,9559,377130],["2021-04-09",793154,10259,387389],["2021-04-10",793154,5940,393329],["2021-04-11",793154,2071,395400],["2021-04-12",793154,8542,403942],["2021-04-13",793154,8926,412868],["2021-04-14",793154,9482,422350],["2021-04-15",793154,9248,431598],["2021-04-16",793154,7493,439091],["2021-04-17",793154,4422,443513],["2021-04-18",793154,4082,447595],["2021-04-19",793154,7891,455486],["2021-04-20",793154,8645,464131],["2021-04-21",793154,8946,473077],["2021-04-22",793154,8397,481474],["2021-04-23",793154,7923,489397],["2021-04-24",793154,3879,493276],["2021-04-25",793154,1847,495123],["2021-04-26",793154,6290,501413],["2021-04-27",793154,5798,507211],["2021-04-28",793154,8663,515874],["2021-04-29",793154,7203,523077],["2021-04-30",793154,7978,531055],["2021-05-01",793154,5071,536126],["2021-05-02",793154,1358,537484],["2021-05-03",793154,4188,541672],["2021-05-04",793154,5419,547091],["2021-05-05",793154,5102,552193],["2021-05-06",793154,4445,556638],["2021-05-07",793154,4870,561508],["2021-05-08",793154,2347,563855],["2021-05-09",793154,962,564817],["2021-05-10",793154,3551,568368],["2021-05-11",793154,4283,572651],["2021-05-12",793154,4642,577293],["2021-05-13",793154,3906,581199],["2021-05-14",793154,4572,585771],["2021-05-15",793154,3554,589325],["2021-05-16",793154,1763,591088],["2021-05-17",793154,3631,594719],["2021-05-18",793154,3537,598256],["2021-05-19",793154,4208,602464],["2021-05-20",793154,3266,605730],["2021-05-21",793154,3812,609542],["2021-05-22",793154,2731,612273],["2021-05-23",793154,1335,613608],["2021-05-24",793154,2337,615945],["2021-05-25",793154,2488,618433],["2021-05-26",793154,2866,621299],["2021-05-27",793154,2243,623542],["2021-05-28",793154,2742,626284],["2021-05-29",793154,1379,627663],["2021-05-30",793154,824,628487],["2021-05-31",793154,390,628877],["2021-06-01",793154,3024,631901],["2021-06-02",793154,3358,635259],["2021-06-03",793154,2722,637981],["2021-06-04",793154,3230,641211],["2021-06-05",793154,2388,643599],["2021-06-06",793154,1637,645236],["2021-06-07",793154,2444,647680],["2021-06-08",793154,2273,649953],["2021-06-09",793154,2527,652480],["2021-06-10",793154,2254,654734],["2021-06-11",793154,2513,657247],["2021-06-12",793154,1801,659048],["2021-06-13",793154,969,660017],["2021-06-14",793154,1845,661862],["2021-06-15",793154,1809,663671],["2021-06-16",793154,1940,665611],["2021-06-17",793154,1720,667331],["2021-06-18",793154,1989,669320],["2021-06-19",793154,1166,670486],["2021-06-20",793154,657,671143],["2021-06-21",793154,1126,672269],["2021-06-22",793154,1555,673824],["2021-06-23",793154,1694,675518],["2021-06-24",793154,1333,676851],["2021-06-25",793154,1754,678605],["2021-06-26",793154,1198,679803],["2021-06-27",793154,834,680637],["2021-06-28",793154,1281,681918],["2021-06-29",793154,1378,683296],["2021-06-30",793154,1390,684686],["2021-07-01",793154,1228,685914],["2021-07-02",793154,1429,687343],["2021-07-03",793154,927,688270],["2021-07-04",793154,93,688363],["2021-07-05",793154,996,689359],["2021-07-06",793154,1196,690555],["2021-07-07",793154,1295,691850],["2021-07-08",793154,1123,692973],["2021-07-09",793154,1457,694430],["2021-07-10",793154,983,695413],["2021-07-11",793154,657,696070],["2021-07-12",793154,1057,697127],["2021-07-13",793154,1073,698200],["2021-07-14",793154,1239,699439],["2021-07-15",793154,1206,700645],["2021-07-16",793154,1336,701981],["2021-07-17",793154,912,702893],["2021-07-18",793154,631,703524],["2021-07-19",793154,1358,704882],["2021-07-20",793154,1330,706212],["2021-07-21",793154,1453,707665],["2021-07-22",793154,1371,709036],["2021-07-23",793154,1753,710789],["2021-07-24",793154,1327,712116],["2021-07-25",793154,695,712811],["2021-07-26",793154,1461,714272],["2021-07-27",793154,1491,715763],["2021-07-28",793154,1644,717407],["2021-07-29",793154,1538,718945],["2021-07-30",793154,1800,720745],["2021-07-31",793154,1562,722307],["2021-08-01",793154,982,723289],["2021-08-02",793154,1553,724842],["2021-08-03",793154,1489,726331],["2021-08-04",793154,1664,727995],["2021-08-05",793154,1598,729593],["2021-08-06",793154,1993,731586],["2021-08-07",793154,1495,733081],["2021-08-08",793154,1106,734187],["2021-08-09",793154,1686,735873],["2021-08-10",793154,1794,737667],["2021-08-11",793154,1625,739292],["2021-08-12",793154,1797,741089],["2021-08-13",793154,1838,742927],["2021-08-14",793154,2182,745109],["2021-08-15",793154,1184,746293],["2021-08-16",793154,1754,748047],["2021-08-17",793154,1772,749819],["2021-08-18",793154,1912,751731],["2021-08-19",793154,1783,753514],["2021-08-20",793154,2274,755788],["2021-08-21",793154,2148,757936],["2021-08-22",793154,1112,759048],["2021-08-23",793154,1819,760867],["2021-08-24",793154,1757,762624],["2021-08-25",793154,1824,764448],["2021-08-26",793154,1957,766405],["2021-08-27",793154,2095,768500],["2021-08-28",793154,2520,771020],["2021-08-29",793154,1080,772100],["2021-08-30",793154,1885,773985],["2021-08-31",793154,1704,775689],["2021-09-01",793154,1765,777454],["2021-09-02",793154,1791,779245],["2021-09-03",793154,1957,781202],["2021-09-04",793154,1400,782602],["2021-09-05",793154,1008,783610],["2021-09-06",793154,243,783853],["2021-09-07",793154,1782,785635],["2021-09-08",793154,1663,787298],["2021-09-09",793154,1675,788973],["2021-09-10",793154,1897,790870],["2021-09-11",793154,1447,792317],["2021-09-12",793154,931,793248],["2021-09-13",793154,1397,794645],["2021-09-14",793154,1393,796038],["2021-09-15",793154,1313,797351],["2021-09-16",793154,1279,798630],["2021-09-17",793154,1487,800117],["2021-09-18",793154,1176,801293],["2021-09-19",793154,783,802076],["2021-09-20",793154,1297,803373],["2021-09-21",793154,1229,804602],["2021-09-22",793154,1070,805672],["2021-09-23",793154,1167,806839],["2021-09-24",793154,1578,808417],["2021-09-25",793154,1269,809686],["2021-09-26",793154,900,810586],["2021-09-27",793154,1768,812354],["2021-09-28",793154,1985,814339],["2021-09-29",793154,1748,816087],["2021-09-30",793154,1827,817914],["2021-10-01",793154,2164,820078],["2021-10-02",793154,2062,822140],["2021-10-03",793154,828,822968],["2021-10-04",793154,1680,824648],["2021-10-05",793154,1589,826237],["2021-10-06",793154,1511,827748],["2021-10-07",793154,1770,829518],["2021-10-08",793154,1829,831347],["2021-10-09",793154,1252,832599],["2021-10-10",793154,821,833420],["2021-10-11",793154,1516,834936],["2021-10-12",793154,1525,836461],["2021-10-13",793154,1543,838004],["2021-10-14",793154,1663,839667],["2021-10-15",793154,1864,841531],["2021-10-16",793154,1105,842636],["2021-10-17",793154,692,843328],["2021-10-18",793154,1629,844957],["2021-10-19",793154,1571,846528],["2021-10-20",793154,1306,847834],["2021-10-21",793154,1495,849329],["2021-10-22",793154,2266,851595],["2021-10-23",793154,1894,853489],["2021-10-24",793154,1035,854524],["2021-10-25",793154,2908,857432],["2021-10-26",793154,2345,859777],["2021-10-27",793154,2547,862324],["2021-10-28",793154,2707,865031],["2021-10-29",793154,2808,867839],["2021-10-30",793154,1834,869673],["2021-10-31",793154,891,870564],["2021-11-01",793154,2310,872874],["2021-11-02",793154,2522,875396],["2021-11-03",793154,2838,878234],["2021-11-04",793154,3169,881403],["2021-11-05",793154,3868,885271],["2021-11-06",793154,2058,887329],["2021-11-07",793154,1511,888840],["2021-11-08",793154,2491,891331],["2021-11-09",793154,2990,894321],["2021-11-10",793154,2838,897159],["2021-11-11",793154,2761,899920],["2021-11-12",793154,3127,903047],["2021-11-13",793154,2188,905235],["2021-11-14",793154,1226,906461],["2021-11-15",793154,2557,909018],["2021-11-16",793154,2881,911899],["2021-11-17",793154,2685,914584],["2021-11-18",793154,2843,917427],["2021-11-19",793154,3382,920809],["2021-11-20",793154,2618,923427],["2021-11-21",793154,1398,924825],["2021-11-22",793154,3282,928107],["2021-11-23",793154,3194,931301],["2021-11-24",793154,2654,933955],["2021-11-25",793154,15,933970],["2021-11-26",793154,3273,937243],["2021-11-27",793154,1952,939195],["2021-11-28",793154,1519,940714],["2021-11-29",793154,2933,943647],["2021-11-30",793154,3560,947207],["2021-12-01",793154,3804,951011],["2021-12-02",793154,4015,955026],["2021-12-03",793154,4430,959456],["2021-12-04",793154,3529,962985],["2021-12-05",793154,1490,964475],["2021-12-06",793154,3150,967625],["2021-12-07",793154,3571,971196],["2021-12-08",793154,3175,974371],["2021-12-09",793154,3171,977542],["2021-12-10",793154,3525,981067],["2021-12-11",793154,2262,983329],["2021-12-12",793154,1338,984667],["2021-12-13",793154,2699,987366],["2021-12-14",793154,2891,990257],["2021-12-15",793154,2701,992958],["2021-12-16",793154,2812,995770],["2021-12-17",793154,3198,998968],["2021-12-18",793154,2447,1001415],["2021-12-19",793154,1409,1002824],["2021-12-20",793154,3408,1006232],["2021-12-21",793154,3280,1009512],["2021-12-22",793154,3359,1012871],["2021-12-23",793154,2851,1015722],["2021-12-24",793154,838,1016560],["2021-12-25",793154,24,1016584],["2021-12-26",793154,921,1017505],["2021-12-27",793154,2631,1020136],["2021-12-28",793154,2909,1023045],["2021-12-29",793154,2810,1025855],["2021-12-30",793154,2275,1028130],["2021-12-31",793154,1117,1029247],["2022-01-01",793154,214,1029461],["2022-01-02",793154,739,1030200],["2022-01-03",793154,920,1031120]]} \ No newline at end of file diff --git a/public/data/overall/vaccinations/by-county/Decatur.json b/public/data/overall/vaccinations/by-county/Decatur.json new file mode 100644 index 000000000..601aa649b --- /dev/null +++ b/public/data/overall/vaccinations/by-county/Decatur.json @@ -0,0 +1 @@ +{"segment":{"county":"Decatur"},"headers":["report_date","population","vaccinations","total_vaccinations"],"rows":[["2020-12-18",26322,2,2],["2020-12-19",26322,3,5],["2020-12-20",26322,1,6],["2020-12-21",26322,6,12],["2020-12-22",26322,2,14],["2020-12-23",26322,46,60],["2020-12-24",26322,4,64],["2020-12-26",26322,1,65],["2020-12-27",26322,3,68],["2020-12-28",26322,37,105],["2020-12-29",26322,39,144],["2020-12-30",26322,43,187],["2020-12-31",26322,15,202],["2021-01-01",26322,2,204],["2021-01-03",26322,1,205],["2021-01-04",26322,43,248],["2021-01-05",26322,53,301],["2021-01-06",26322,65,366],["2021-01-07",26322,112,478],["2021-01-08",26322,30,508],["2021-01-09",26322,3,511],["2021-01-10",26322,1,512],["2021-01-11",26322,115,627],["2021-01-12",26322,162,789],["2021-01-13",26322,134,923],["2021-01-14",26322,233,1156],["2021-01-15",26322,129,1285],["2021-01-16",26322,11,1296],["2021-01-17",26322,3,1299],["2021-01-18",26322,154,1453],["2021-01-19",26322,129,1582],["2021-01-20",26322,161,1743],["2021-01-21",26322,173,1916],["2021-01-22",26322,133,2049],["2021-01-23",26322,6,2055],["2021-01-25",26322,139,2194],["2021-01-26",26322,154,2348],["2021-01-27",26322,164,2512],["2021-01-28",26322,231,2743],["2021-01-29",26322,83,2826],["2021-01-30",26322,3,2829],["2021-01-31",26322,1,2830],["2021-02-01",26322,151,2981],["2021-02-02",26322,170,3151],["2021-02-03",26322,150,3301],["2021-02-04",26322,187,3488],["2021-02-05",26322,116,3604],["2021-02-06",26322,7,3611],["2021-02-07",26322,2,3613],["2021-02-08",26322,101,3714],["2021-02-09",26322,246,3960],["2021-02-10",26322,189,4149],["2021-02-11",26322,213,4362],["2021-02-12",26322,150,4512],["2021-02-13",26322,36,4548],["2021-02-14",26322,11,4559],["2021-02-15",26322,192,4751],["2021-02-16",26322,187,4938],["2021-02-17",26322,143,5081],["2021-02-18",26322,197,5278],["2021-02-19",26322,45,5323],["2021-02-20",26322,5,5328],["2021-02-22",26322,96,5424],["2021-02-23",26322,129,5553],["2021-02-24",26322,149,5702],["2021-02-25",26322,196,5898],["2021-02-26",26322,134,6032],["2021-02-27",26322,29,6061],["2021-02-28",26322,14,6075],["2021-03-01",26322,201,6276],["2021-03-02",26322,214,6490],["2021-03-03",26322,225,6715],["2021-03-04",26322,208,6923],["2021-03-05",26322,97,7020],["2021-03-06",26322,13,7033],["2021-03-07",26322,7,7040],["2021-03-08",26322,186,7226],["2021-03-09",26322,158,7384],["2021-03-10",26322,172,7556],["2021-03-11",26322,163,7719],["2021-03-12",26322,236,7955],["2021-03-13",26322,30,7985],["2021-03-14",26322,16,8001],["2021-03-15",26322,253,8254],["2021-03-16",26322,160,8414],["2021-03-17",26322,177,8591],["2021-03-18",26322,161,8752],["2021-03-19",26322,70,8822],["2021-03-20",26322,19,8841],["2021-03-21",26322,15,8856],["2021-03-22",26322,204,9060],["2021-03-23",26322,97,9157],["2021-03-24",26322,86,9243],["2021-03-25",26322,264,9507],["2021-03-26",26322,74,9581],["2021-03-27",26322,46,9627],["2021-03-28",26322,21,9648],["2021-03-29",26322,194,9842],["2021-03-30",26322,224,10066],["2021-03-31",26322,160,10226],["2021-04-01",26322,252,10478],["2021-04-02",26322,92,10570],["2021-04-03",26322,28,10598],["2021-04-04",26322,15,10613],["2021-04-05",26322,139,10752],["2021-04-06",26322,162,10914],["2021-04-07",26322,176,11090],["2021-04-08",26322,218,11308],["2021-04-09",26322,199,11507],["2021-04-10",26322,31,11538],["2021-04-11",26322,29,11567],["2021-04-12",26322,214,11781],["2021-04-13",26322,215,11996],["2021-04-14",26322,191,12187],["2021-04-15",26322,181,12368],["2021-04-16",26322,68,12436],["2021-04-17",26322,20,12456],["2021-04-18",26322,8,12464],["2021-04-19",26322,175,12639],["2021-04-20",26322,124,12763],["2021-04-21",26322,96,12859],["2021-04-22",26322,268,13127],["2021-04-23",26322,83,13210],["2021-04-24",26322,11,13221],["2021-04-25",26322,16,13237],["2021-04-26",26322,142,13379],["2021-04-27",26322,147,13526],["2021-04-28",26322,155,13681],["2021-04-29",26322,215,13896],["2021-04-30",26322,66,13962],["2021-05-01",26322,32,13994],["2021-05-02",26322,12,14006],["2021-05-03",26322,129,14135],["2021-05-04",26322,116,14251],["2021-05-05",26322,108,14359],["2021-05-06",26322,137,14496],["2021-05-07",26322,84,14580],["2021-05-08",26322,29,14609],["2021-05-09",26322,5,14614],["2021-05-10",26322,71,14685],["2021-05-11",26322,83,14768],["2021-05-12",26322,160,14928],["2021-05-13",26322,96,15024],["2021-05-14",26322,111,15135],["2021-05-15",26322,31,15166],["2021-05-16",26322,9,15175],["2021-05-17",26322,73,15248],["2021-05-18",26322,80,15328],["2021-05-19",26322,97,15425],["2021-05-20",26322,104,15529],["2021-05-21",26322,53,15582],["2021-05-22",26322,21,15603],["2021-05-23",26322,13,15616],["2021-05-24",26322,55,15671],["2021-05-25",26322,57,15728],["2021-05-26",26322,53,15781],["2021-05-27",26322,97,15878],["2021-05-28",26322,26,15904],["2021-05-29",26322,35,15939],["2021-05-30",26322,9,15948],["2021-05-31",26322,5,15953],["2021-06-01",26322,65,16018],["2021-06-02",26322,172,16190],["2021-06-03",26322,96,16286],["2021-06-04",26322,50,16336],["2021-06-05",26322,20,16356],["2021-06-06",26322,12,16368],["2021-06-07",26322,56,16424],["2021-06-08",26322,56,16480],["2021-06-09",26322,49,16529],["2021-06-10",26322,103,16632],["2021-06-11",26322,41,16673],["2021-06-12",26322,18,16691],["2021-06-13",26322,5,16696],["2021-06-14",26322,43,16739],["2021-06-15",26322,56,16795],["2021-06-16",26322,36,16831],["2021-06-17",26322,50,16881],["2021-06-18",26322,30,16911],["2021-06-19",26322,19,16930],["2021-06-20",26322,5,16935],["2021-06-21",26322,46,16981],["2021-06-22",26322,56,17037],["2021-06-23",26322,46,17083],["2021-06-24",26322,56,17139],["2021-06-25",26322,29,17168],["2021-06-26",26322,13,17181],["2021-06-27",26322,6,17187],["2021-06-28",26322,34,17221],["2021-06-29",26322,31,17252],["2021-06-30",26322,100,17352],["2021-07-01",26322,57,17409],["2021-07-02",26322,24,17433],["2021-07-03",26322,20,17453],["2021-07-04",26322,3,17456],["2021-07-05",26322,13,17469],["2021-07-06",26322,43,17512],["2021-07-07",26322,69,17581],["2021-07-08",26322,50,17631],["2021-07-09",26322,27,17658],["2021-07-10",26322,17,17675],["2021-07-11",26322,4,17679],["2021-07-12",26322,27,17706],["2021-07-13",26322,39,17745],["2021-07-14",26322,45,17790],["2021-07-15",26322,43,17833],["2021-07-16",26322,26,17859],["2021-07-17",26322,17,17876],["2021-07-18",26322,8,17884],["2021-07-19",26322,57,17941],["2021-07-20",26322,66,18007],["2021-07-21",26322,65,18072],["2021-07-22",26322,67,18139],["2021-07-23",26322,48,18187],["2021-07-24",26322,33,18220],["2021-07-25",26322,13,18233],["2021-07-26",26322,76,18309],["2021-07-27",26322,61,18370],["2021-07-28",26322,83,18453],["2021-07-29",26322,123,18576],["2021-07-30",26322,73,18649],["2021-07-31",26322,38,18687],["2021-08-01",26322,14,18701],["2021-08-02",26322,140,18841],["2021-08-03",26322,106,18947],["2021-08-04",26322,125,19072],["2021-08-05",26322,96,19168],["2021-08-06",26322,58,19226],["2021-08-07",26322,75,19301],["2021-08-08",26322,22,19323],["2021-08-09",26322,119,19442],["2021-08-10",26322,143,19585],["2021-08-11",26322,114,19699],["2021-08-12",26322,193,19892],["2021-08-13",26322,126,20018],["2021-08-14",26322,69,20087],["2021-08-15",26322,35,20122],["2021-08-16",26322,165,20287],["2021-08-17",26322,149,20436],["2021-08-18",26322,163,20599],["2021-08-19",26322,155,20754],["2021-08-20",26322,98,20852],["2021-08-21",26322,73,20925],["2021-08-22",26322,18,20943],["2021-08-23",26322,145,21088],["2021-08-24",26322,142,21230],["2021-08-25",26322,147,21377],["2021-08-26",26322,153,21530],["2021-08-27",26322,103,21633],["2021-08-28",26322,60,21693],["2021-08-29",26322,22,21715],["2021-08-30",26322,153,21868],["2021-08-31",26322,113,21981],["2021-09-01",26322,122,22103],["2021-09-02",26322,158,22261],["2021-09-03",26322,137,22398],["2021-09-04",26322,52,22450],["2021-09-05",26322,15,22465],["2021-09-06",26322,34,22499],["2021-09-07",26322,143,22642],["2021-09-08",26322,121,22763],["2021-09-09",26322,167,22930],["2021-09-10",26322,120,23050],["2021-09-11",26322,53,23103],["2021-09-12",26322,21,23124],["2021-09-13",26322,149,23273],["2021-09-14",26322,109,23382],["2021-09-15",26322,152,23534],["2021-09-16",26322,104,23638],["2021-09-17",26322,73,23711],["2021-09-18",26322,51,23762],["2021-09-19",26322,9,23771],["2021-09-20",26322,90,23861],["2021-09-21",26322,67,23928],["2021-09-22",26322,80,24008],["2021-09-23",26322,76,24084],["2021-09-24",26322,75,24159],["2021-09-25",26322,16,24175],["2021-09-26",26322,7,24182],["2021-09-27",26322,77,24259],["2021-09-28",26322,64,24323],["2021-09-29",26322,61,24384],["2021-09-30",26322,51,24435],["2021-10-01",26322,64,24499],["2021-10-02",26322,24,24523],["2021-10-03",26322,12,24535],["2021-10-04",26322,39,24574],["2021-10-05",26322,58,24632],["2021-10-06",26322,68,24700],["2021-10-07",26322,70,24770],["2021-10-08",26322,40,24810],["2021-10-09",26322,17,24827],["2021-10-10",26322,4,24831],["2021-10-11",26322,29,24860],["2021-10-12",26322,38,24898],["2021-10-13",26322,41,24939],["2021-10-14",26322,32,24971],["2021-10-15",26322,28,24999],["2021-10-16",26322,7,25006],["2021-10-17",26322,6,25012],["2021-10-18",26322,22,25034],["2021-10-19",26322,50,25084],["2021-10-20",26322,36,25120],["2021-10-21",26322,33,25153],["2021-10-22",26322,28,25181],["2021-10-23",26322,31,25212],["2021-10-24",26322,15,25227],["2021-10-25",26322,84,25311],["2021-10-26",26322,83,25394],["2021-10-27",26322,102,25496],["2021-10-28",26322,134,25630],["2021-10-29",26322,30,25660],["2021-10-30",26322,19,25679],["2021-10-31",26322,5,25684],["2021-11-01",26322,69,25753],["2021-11-02",26322,130,25883],["2021-11-03",26322,90,25973],["2021-11-04",26322,143,26116],["2021-11-05",26322,59,26175],["2021-11-06",26322,13,26188],["2021-11-07",26322,8,26196],["2021-11-08",26322,46,26242],["2021-11-09",26322,145,26387],["2021-11-10",26322,160,26547],["2021-11-11",26322,82,26629],["2021-11-12",26322,86,26715],["2021-11-13",26322,13,26728],["2021-11-14",26322,11,26739],["2021-11-15",26322,56,26795],["2021-11-16",26322,130,26925],["2021-11-17",26322,74,26999],["2021-11-18",26322,88,27087],["2021-11-19",26322,75,27162],["2021-11-20",26322,38,27200],["2021-11-21",26322,16,27216],["2021-11-22",26322,118,27334],["2021-11-23",26322,91,27425],["2021-11-24",26322,37,27462],["2021-11-25",26322,1,27463],["2021-11-26",26322,37,27500],["2021-11-27",26322,22,27522],["2021-11-28",26322,11,27533],["2021-11-29",26322,84,27617],["2021-11-30",26322,108,27725],["2021-12-01",26322,114,27839],["2021-12-02",26322,191,28030],["2021-12-03",26322,85,28115],["2021-12-04",26322,36,28151],["2021-12-05",26322,16,28167],["2021-12-06",26322,50,28217],["2021-12-07",26322,107,28324],["2021-12-08",26322,71,28395],["2021-12-09",26322,80,28475],["2021-12-10",26322,45,28520],["2021-12-11",26322,15,28535],["2021-12-12",26322,4,28539],["2021-12-13",26322,39,28578],["2021-12-14",26322,82,28660],["2021-12-15",26322,68,28728],["2021-12-16",26322,78,28806],["2021-12-17",26322,53,28859],["2021-12-18",26322,22,28881],["2021-12-19",26322,17,28898],["2021-12-20",26322,35,28933],["2021-12-21",26322,112,29045],["2021-12-22",26322,69,29114],["2021-12-23",26322,36,29150],["2021-12-24",26322,17,29167],["2021-12-26",26322,6,29173],["2021-12-27",26322,38,29211],["2021-12-28",26322,104,29315],["2021-12-29",26322,62,29377],["2021-12-30",26322,57,29434],["2021-12-31",26322,26,29460],["2022-01-01",26322,5,29465],["2022-01-02",26322,14,29479],["2022-01-03",26322,22,29501]]} \ No newline at end of file diff --git a/public/data/overall/vaccinations/by-county/Dodge.json b/public/data/overall/vaccinations/by-county/Dodge.json new file mode 100644 index 000000000..08f5892ba --- /dev/null +++ b/public/data/overall/vaccinations/by-county/Dodge.json @@ -0,0 +1 @@ +{"segment":{"county":"Dodge"},"headers":["report_date","population","vaccinations","total_vaccinations"],"rows":[["2020-12-13",20385,1,1],["2020-12-16",20385,1,2],["2020-12-18",20385,4,6],["2020-12-19",20385,1,7],["2020-12-20",20385,2,9],["2020-12-21",20385,3,12],["2020-12-22",20385,4,16],["2020-12-23",20385,8,24],["2020-12-24",20385,5,29],["2020-12-26",20385,1,30],["2020-12-28",20385,7,37],["2020-12-29",20385,34,71],["2020-12-30",20385,17,88],["2020-12-31",20385,10,98],["2021-01-01",20385,3,101],["2021-01-02",20385,2,103],["2021-01-03",20385,33,136],["2021-01-04",20385,37,173],["2021-01-05",20385,60,233],["2021-01-06",20385,48,281],["2021-01-07",20385,30,311],["2021-01-08",20385,65,376],["2021-01-09",20385,12,388],["2021-01-10",20385,1,389],["2021-01-11",20385,87,476],["2021-01-12",20385,115,591],["2021-01-13",20385,300,891],["2021-01-14",20385,50,941],["2021-01-15",20385,27,968],["2021-01-16",20385,1,969],["2021-01-17",20385,5,974],["2021-01-18",20385,39,1013],["2021-01-19",20385,172,1185],["2021-01-20",20385,450,1635],["2021-01-21",20385,83,1718],["2021-01-22",20385,36,1754],["2021-01-23",20385,4,1758],["2021-01-24",20385,40,1798],["2021-01-25",20385,51,1849],["2021-01-26",20385,42,1891],["2021-01-27",20385,71,1962],["2021-01-28",20385,62,2024],["2021-01-29",20385,26,2050],["2021-01-30",20385,36,2086],["2021-01-31",20385,1,2087],["2021-02-01",20385,31,2118],["2021-02-02",20385,131,2249],["2021-02-03",20385,297,2546],["2021-02-04",20385,54,2600],["2021-02-05",20385,44,2644],["2021-02-06",20385,17,2661],["2021-02-07",20385,1,2662],["2021-02-08",20385,82,2744],["2021-02-09",20385,56,2800],["2021-02-10",20385,239,3039],["2021-02-11",20385,79,3118],["2021-02-12",20385,56,3174],["2021-02-13",20385,6,3180],["2021-02-14",20385,4,3184],["2021-02-15",20385,70,3254],["2021-02-16",20385,215,3469],["2021-02-17",20385,392,3861],["2021-02-18",20385,68,3929],["2021-02-19",20385,26,3955],["2021-02-21",20385,2,3957],["2021-02-22",20385,41,3998],["2021-02-23",20385,45,4043],["2021-02-24",20385,427,4470],["2021-02-25",20385,85,4555],["2021-02-26",20385,38,4593],["2021-02-27",20385,44,4637],["2021-02-28",20385,2,4639],["2021-03-01",20385,40,4679],["2021-03-02",20385,62,4741],["2021-03-03",20385,290,5031],["2021-03-04",20385,44,5075],["2021-03-05",20385,23,5098],["2021-03-06",20385,3,5101],["2021-03-07",20385,4,5105],["2021-03-08",20385,39,5144],["2021-03-09",20385,57,5201],["2021-03-10",20385,201,5402],["2021-03-11",20385,80,5482],["2021-03-12",20385,134,5616],["2021-03-13",20385,19,5635],["2021-03-14",20385,7,5642],["2021-03-15",20385,222,5864],["2021-03-16",20385,57,5921],["2021-03-17",20385,254,6175],["2021-03-18",20385,88,6263],["2021-03-19",20385,32,6295],["2021-03-20",20385,11,6306],["2021-03-21",20385,2,6308],["2021-03-22",20385,34,6342],["2021-03-23",20385,35,6377],["2021-03-24",20385,217,6594],["2021-03-25",20385,87,6681],["2021-03-26",20385,53,6734],["2021-03-27",20385,19,6753],["2021-03-28",20385,10,6763],["2021-03-29",20385,42,6805],["2021-03-30",20385,73,6878],["2021-03-31",20385,116,6994],["2021-04-01",20385,85,7079],["2021-04-02",20385,43,7122],["2021-04-03",20385,19,7141],["2021-04-04",20385,11,7152],["2021-04-05",20385,44,7196],["2021-04-06",20385,48,7244],["2021-04-07",20385,183,7427],["2021-04-08",20385,102,7529],["2021-04-09",20385,32,7561],["2021-04-10",20385,30,7591],["2021-04-11",20385,11,7602],["2021-04-12",20385,46,7648],["2021-04-13",20385,45,7693],["2021-04-14",20385,178,7871],["2021-04-15",20385,106,7977],["2021-04-16",20385,36,8013],["2021-04-17",20385,18,8031],["2021-04-18",20385,2,8033],["2021-04-19",20385,24,8057],["2021-04-20",20385,51,8108],["2021-04-21",20385,231,8339],["2021-04-22",20385,64,8403],["2021-04-23",20385,46,8449],["2021-04-24",20385,18,8467],["2021-04-25",20385,8,8475],["2021-04-26",20385,25,8500],["2021-04-27",20385,61,8561],["2021-04-28",20385,155,8716],["2021-04-29",20385,73,8789],["2021-04-30",20385,47,8836],["2021-05-01",20385,24,8860],["2021-05-02",20385,5,8865],["2021-05-03",20385,28,8893],["2021-05-04",20385,24,8917],["2021-05-05",20385,105,9022],["2021-05-06",20385,54,9076],["2021-05-07",20385,33,9109],["2021-05-08",20385,12,9121],["2021-05-09",20385,5,9126],["2021-05-10",20385,29,9155],["2021-05-11",20385,25,9180],["2021-05-12",20385,78,9258],["2021-05-13",20385,60,9318],["2021-05-14",20385,35,9353],["2021-05-15",20385,23,9376],["2021-05-16",20385,6,9382],["2021-05-17",20385,35,9417],["2021-05-18",20385,39,9456],["2021-05-19",20385,86,9542],["2021-05-20",20385,50,9592],["2021-05-21",20385,32,9624],["2021-05-22",20385,20,9644],["2021-05-23",20385,10,9654],["2021-05-24",20385,12,9666],["2021-05-25",20385,22,9688],["2021-05-26",20385,43,9731],["2021-05-27",20385,35,9766],["2021-05-28",20385,24,9790],["2021-05-29",20385,5,9795],["2021-05-30",20385,3,9798],["2021-05-31",20385,5,9803],["2021-06-01",20385,27,9830],["2021-06-02",20385,48,9878],["2021-06-03",20385,22,9900],["2021-06-04",20385,40,9940],["2021-06-05",20385,11,9951],["2021-06-06",20385,7,9958],["2021-06-07",20385,31,9989],["2021-06-08",20385,19,10008],["2021-06-09",20385,31,10039],["2021-06-10",20385,25,10064],["2021-06-11",20385,26,10090],["2021-06-12",20385,13,10103],["2021-06-13",20385,8,10111],["2021-06-14",20385,23,10134],["2021-06-15",20385,22,10156],["2021-06-16",20385,36,10192],["2021-06-17",20385,28,10220],["2021-06-18",20385,17,10237],["2021-06-19",20385,12,10249],["2021-06-20",20385,8,10257],["2021-06-21",20385,18,10275],["2021-06-22",20385,20,10295],["2021-06-23",20385,17,10312],["2021-06-24",20385,17,10329],["2021-06-25",20385,28,10357],["2021-06-26",20385,9,10366],["2021-06-27",20385,2,10368],["2021-06-28",20385,16,10384],["2021-06-29",20385,13,10397],["2021-06-30",20385,25,10422],["2021-07-01",20385,19,10441],["2021-07-02",20385,17,10458],["2021-07-03",20385,11,10469],["2021-07-04",20385,2,10471],["2021-07-05",20385,11,10482],["2021-07-06",20385,20,10502],["2021-07-07",20385,19,10521],["2021-07-08",20385,30,10551],["2021-07-09",20385,17,10568],["2021-07-10",20385,7,10575],["2021-07-11",20385,8,10583],["2021-07-12",20385,24,10607],["2021-07-13",20385,19,10626],["2021-07-14",20385,14,10640],["2021-07-15",20385,27,10667],["2021-07-16",20385,19,10686],["2021-07-17",20385,8,10694],["2021-07-19",20385,27,10721],["2021-07-20",20385,36,10757],["2021-07-21",20385,28,10785],["2021-07-22",20385,21,10806],["2021-07-23",20385,30,10836],["2021-07-24",20385,18,10854],["2021-07-25",20385,9,10863],["2021-07-26",20385,42,10905],["2021-07-27",20385,52,10957],["2021-07-28",20385,49,11006],["2021-07-29",20385,39,11045],["2021-07-30",20385,50,11095],["2021-07-31",20385,12,11107],["2021-08-01",20385,11,11118],["2021-08-02",20385,46,11164],["2021-08-03",20385,45,11209],["2021-08-04",20385,44,11253],["2021-08-05",20385,37,11290],["2021-08-06",20385,52,11342],["2021-08-07",20385,12,11354],["2021-08-08",20385,18,11372],["2021-08-09",20385,68,11440],["2021-08-10",20385,88,11528],["2021-08-11",20385,54,11582],["2021-08-12",20385,53,11635],["2021-08-13",20385,69,11704],["2021-08-14",20385,40,11744],["2021-08-15",20385,24,11768],["2021-08-16",20385,64,11832],["2021-08-17",20385,51,11883],["2021-08-18",20385,55,11938],["2021-08-19",20385,54,11992],["2021-08-20",20385,79,12071],["2021-08-21",20385,30,12101],["2021-08-22",20385,16,12117],["2021-08-23",20385,62,12179],["2021-08-24",20385,54,12233],["2021-08-25",20385,71,12304],["2021-08-26",20385,83,12387],["2021-08-27",20385,74,12461],["2021-08-28",20385,30,12491],["2021-08-29",20385,17,12508],["2021-08-30",20385,57,12565],["2021-08-31",20385,65,12630],["2021-09-01",20385,66,12696],["2021-09-02",20385,65,12761],["2021-09-03",20385,65,12826],["2021-09-04",20385,34,12860],["2021-09-05",20385,18,12878],["2021-09-06",20385,16,12894],["2021-09-07",20385,87,12981],["2021-09-08",20385,59,13040],["2021-09-09",20385,48,13088],["2021-09-10",20385,78,13166],["2021-09-11",20385,34,13200],["2021-09-12",20385,15,13215],["2021-09-13",20385,39,13254],["2021-09-14",20385,45,13299],["2021-09-15",20385,43,13342],["2021-09-16",20385,44,13386],["2021-09-17",20385,62,13448],["2021-09-18",20385,20,13468],["2021-09-19",20385,12,13480],["2021-09-20",20385,40,13520],["2021-09-21",20385,31,13551],["2021-09-22",20385,34,13585],["2021-09-23",20385,45,13630],["2021-09-24",20385,42,13672],["2021-09-25",20385,16,13688],["2021-09-26",20385,9,13697],["2021-09-27",20385,28,13725],["2021-09-28",20385,37,13762],["2021-09-29",20385,37,13799],["2021-09-30",20385,39,13838],["2021-10-01",20385,43,13881],["2021-10-02",20385,22,13903],["2021-10-03",20385,10,13913],["2021-10-04",20385,19,13932],["2021-10-05",20385,30,13962],["2021-10-06",20385,23,13985],["2021-10-07",20385,21,14006],["2021-10-08",20385,42,14048],["2021-10-09",20385,7,14055],["2021-10-10",20385,6,14061],["2021-10-11",20385,13,14074],["2021-10-12",20385,22,14096],["2021-10-13",20385,30,14126],["2021-10-14",20385,17,14143],["2021-10-15",20385,23,14166],["2021-10-16",20385,8,14174],["2021-10-17",20385,1,14175],["2021-10-18",20385,20,14195],["2021-10-19",20385,8,14203],["2021-10-20",20385,28,14231],["2021-10-21",20385,15,14246],["2021-10-22",20385,30,14276],["2021-10-23",20385,23,14299],["2021-10-24",20385,6,14305],["2021-10-25",20385,39,14344],["2021-10-26",20385,50,14394],["2021-10-27",20385,84,14478],["2021-10-28",20385,99,14577],["2021-10-29",20385,55,14632],["2021-10-30",20385,15,14647],["2021-10-31",20385,7,14654],["2021-11-01",20385,49,14703],["2021-11-02",20385,61,14764],["2021-11-03",20385,109,14873],["2021-11-04",20385,83,14956],["2021-11-05",20385,59,15015],["2021-11-06",20385,16,15031],["2021-11-07",20385,8,15039],["2021-11-08",20385,49,15088],["2021-11-09",20385,74,15162],["2021-11-10",20385,101,15263],["2021-11-11",20385,27,15290],["2021-11-12",20385,42,15332],["2021-11-13",20385,14,15346],["2021-11-14",20385,5,15351],["2021-11-15",20385,42,15393],["2021-11-16",20385,44,15437],["2021-11-17",20385,155,15592],["2021-11-18",20385,86,15678],["2021-11-19",20385,60,15738],["2021-11-20",20385,17,15755],["2021-11-21",20385,8,15763],["2021-11-22",20385,42,15805],["2021-11-23",20385,52,15857],["2021-11-24",20385,26,15883],["2021-11-26",20385,24,15907],["2021-11-27",20385,14,15921],["2021-11-28",20385,5,15926],["2021-11-29",20385,55,15981],["2021-11-30",20385,48,16029],["2021-12-01",20385,95,16124],["2021-12-02",20385,86,16210],["2021-12-03",20385,72,16282],["2021-12-04",20385,15,16297],["2021-12-05",20385,4,16301],["2021-12-06",20385,38,16339],["2021-12-07",20385,50,16389],["2021-12-08",20385,51,16440],["2021-12-09",20385,45,16485],["2021-12-10",20385,47,16532],["2021-12-11",20385,11,16543],["2021-12-12",20385,1,16544],["2021-12-13",20385,27,16571],["2021-12-14",20385,32,16603],["2021-12-15",20385,49,16652],["2021-12-16",20385,37,16689],["2021-12-17",20385,46,16735],["2021-12-18",20385,15,16750],["2021-12-19",20385,11,16761],["2021-12-20",20385,46,16807],["2021-12-21",20385,45,16852],["2021-12-22",20385,56,16908],["2021-12-23",20385,21,16929],["2021-12-24",20385,2,16931],["2021-12-26",20385,2,16933],["2021-12-27",20385,39,16972],["2021-12-28",20385,65,17037],["2021-12-29",20385,43,17080],["2021-12-30",20385,100,17180],["2021-12-31",20385,15,17195],["2022-01-01",20385,5,17200],["2022-01-02",20385,5,17205],["2022-01-03",20385,22,17227]]} \ No newline at end of file diff --git a/public/data/overall/vaccinations/by-county/Dooly.json b/public/data/overall/vaccinations/by-county/Dooly.json new file mode 100644 index 000000000..d76477843 --- /dev/null +++ b/public/data/overall/vaccinations/by-county/Dooly.json @@ -0,0 +1 @@ +{"segment":{"county":"Dooly"},"headers":["report_date","population","vaccinations","total_vaccinations"],"rows":[["2020-12-18",13400,1,1],["2020-12-21",13400,3,4],["2020-12-22",13400,6,10],["2020-12-23",13400,12,22],["2020-12-24",13400,7,29],["2020-12-26",13400,3,32],["2020-12-27",13400,2,34],["2020-12-28",13400,19,53],["2020-12-29",13400,17,70],["2020-12-30",13400,32,102],["2020-12-31",13400,8,110],["2021-01-01",13400,35,145],["2021-01-03",13400,2,147],["2021-01-04",13400,37,184],["2021-01-05",13400,79,263],["2021-01-06",13400,10,273],["2021-01-07",13400,7,280],["2021-01-08",13400,10,290],["2021-01-10",13400,3,293],["2021-01-11",13400,47,340],["2021-01-12",13400,54,394],["2021-01-13",13400,63,457],["2021-01-14",13400,218,675],["2021-01-15",13400,46,721],["2021-01-16",13400,1,722],["2021-01-17",13400,3,725],["2021-01-18",13400,188,913],["2021-01-19",13400,85,998],["2021-01-20",13400,121,1119],["2021-01-21",13400,56,1175],["2021-01-22",13400,58,1233],["2021-01-24",13400,2,1235],["2021-01-25",13400,16,1251],["2021-01-26",13400,26,1277],["2021-01-27",13400,57,1334],["2021-01-28",13400,38,1372],["2021-01-29",13400,32,1404],["2021-01-30",13400,2,1406],["2021-02-01",13400,19,1425],["2021-02-02",13400,119,1544],["2021-02-03",13400,124,1668],["2021-02-04",13400,51,1719],["2021-02-05",13400,30,1749],["2021-02-06",13400,3,1752],["2021-02-07",13400,2,1754],["2021-02-08",13400,42,1796],["2021-02-09",13400,44,1840],["2021-02-10",13400,36,1876],["2021-02-11",13400,74,1950],["2021-02-12",13400,62,2012],["2021-02-13",13400,19,2031],["2021-02-14",13400,2,2033],["2021-02-15",13400,37,2070],["2021-02-16",13400,48,2118],["2021-02-17",13400,45,2163],["2021-02-18",13400,471,2634],["2021-02-19",13400,54,2688],["2021-02-22",13400,74,2762],["2021-02-23",13400,52,2814],["2021-02-24",13400,54,2868],["2021-02-25",13400,68,2936],["2021-02-26",13400,53,2989],["2021-02-27",13400,4,2993],["2021-02-28",13400,3,2996],["2021-03-01",13400,56,3052],["2021-03-02",13400,39,3091],["2021-03-03",13400,41,3132],["2021-03-04",13400,41,3173],["2021-03-05",13400,177,3350],["2021-03-06",13400,7,3357],["2021-03-07",13400,6,3363],["2021-03-08",13400,76,3439],["2021-03-09",13400,29,3468],["2021-03-10",13400,55,3523],["2021-03-11",13400,58,3581],["2021-03-12",13400,71,3652],["2021-03-13",13400,6,3658],["2021-03-14",13400,5,3663],["2021-03-15",13400,48,3711],["2021-03-16",13400,103,3814],["2021-03-17",13400,21,3835],["2021-03-18",13400,33,3868],["2021-03-19",13400,148,4016],["2021-03-20",13400,7,4023],["2021-03-21",13400,6,4029],["2021-03-22",13400,143,4172],["2021-03-23",13400,46,4218],["2021-03-24",13400,55,4273],["2021-03-25",13400,92,4365],["2021-03-26",13400,89,4454],["2021-03-27",13400,10,4464],["2021-03-28",13400,8,4472],["2021-03-29",13400,67,4539],["2021-03-30",13400,81,4620],["2021-03-31",13400,45,4665],["2021-04-01",13400,97,4762],["2021-04-02",13400,38,4800],["2021-04-03",13400,19,4819],["2021-04-04",13400,5,4824],["2021-04-05",13400,111,4935],["2021-04-06",13400,60,4995],["2021-04-07",13400,28,5023],["2021-04-08",13400,103,5126],["2021-04-09",13400,89,5215],["2021-04-10",13400,11,5226],["2021-04-11",13400,5,5231],["2021-04-12",13400,70,5301],["2021-04-13",13400,83,5384],["2021-04-14",13400,30,5414],["2021-04-15",13400,111,5525],["2021-04-16",13400,56,5581],["2021-04-17",13400,4,5585],["2021-04-18",13400,5,5590],["2021-04-19",13400,81,5671],["2021-04-20",13400,35,5706],["2021-04-21",13400,58,5764],["2021-04-22",13400,71,5835],["2021-04-23",13400,76,5911],["2021-04-24",13400,16,5927],["2021-04-25",13400,4,5931],["2021-04-26",13400,43,5974],["2021-04-27",13400,58,6032],["2021-04-28",13400,41,6073],["2021-04-29",13400,69,6142],["2021-04-30",13400,29,6171],["2021-05-01",13400,8,6179],["2021-05-02",13400,5,6184],["2021-05-03",13400,33,6217],["2021-05-04",13400,33,6250],["2021-05-05",13400,23,6273],["2021-05-06",13400,52,6325],["2021-05-07",13400,76,6401],["2021-05-08",13400,6,6407],["2021-05-09",13400,7,6414],["2021-05-10",13400,46,6460],["2021-05-11",13400,20,6480],["2021-05-12",13400,26,6506],["2021-05-13",13400,23,6529],["2021-05-14",13400,13,6542],["2021-05-15",13400,14,6556],["2021-05-16",13400,4,6560],["2021-05-17",13400,28,6588],["2021-05-18",13400,27,6615],["2021-05-19",13400,28,6643],["2021-05-20",13400,52,6695],["2021-05-21",13400,29,6724],["2021-05-22",13400,10,6734],["2021-05-23",13400,2,6736],["2021-05-24",13400,18,6754],["2021-05-25",13400,33,6787],["2021-05-26",13400,26,6813],["2021-05-27",13400,17,6830],["2021-05-28",13400,10,6840],["2021-05-29",13400,3,6843],["2021-05-30",13400,4,6847],["2021-06-01",13400,33,6880],["2021-06-02",13400,22,6902],["2021-06-03",13400,30,6932],["2021-06-04",13400,11,6943],["2021-06-05",13400,6,6949],["2021-06-06",13400,7,6956],["2021-06-07",13400,20,6976],["2021-06-08",13400,10,6986],["2021-06-09",13400,25,7011],["2021-06-10",13400,29,7040],["2021-06-11",13400,28,7068],["2021-06-12",13400,11,7079],["2021-06-13",13400,3,7082],["2021-06-14",13400,13,7095],["2021-06-15",13400,20,7115],["2021-06-16",13400,32,7147],["2021-06-17",13400,8,7155],["2021-06-18",13400,19,7174],["2021-06-19",13400,5,7179],["2021-06-21",13400,9,7188],["2021-06-22",13400,11,7199],["2021-06-23",13400,16,7215],["2021-06-24",13400,12,7227],["2021-06-25",13400,18,7245],["2021-06-26",13400,5,7250],["2021-06-27",13400,2,7252],["2021-06-28",13400,6,7258],["2021-06-29",13400,9,7267],["2021-06-30",13400,22,7289],["2021-07-01",13400,16,7305],["2021-07-02",13400,10,7315],["2021-07-03",13400,4,7319],["2021-07-04",13400,3,7322],["2021-07-05",13400,6,7328],["2021-07-06",13400,10,7338],["2021-07-07",13400,29,7367],["2021-07-08",13400,22,7389],["2021-07-09",13400,10,7399],["2021-07-10",13400,7,7406],["2021-07-11",13400,2,7408],["2021-07-12",13400,16,7424],["2021-07-13",13400,11,7435],["2021-07-14",13400,16,7451],["2021-07-15",13400,12,7463],["2021-07-16",13400,17,7480],["2021-07-17",13400,4,7484],["2021-07-18",13400,1,7485],["2021-07-19",13400,17,7502],["2021-07-20",13400,11,7513],["2021-07-21",13400,25,7538],["2021-07-22",13400,24,7562],["2021-07-23",13400,27,7589],["2021-07-24",13400,12,7601],["2021-07-25",13400,6,7607],["2021-07-26",13400,17,7624],["2021-07-27",13400,14,7638],["2021-07-28",13400,24,7662],["2021-07-29",13400,21,7683],["2021-07-30",13400,21,7704],["2021-07-31",13400,6,7710],["2021-08-01",13400,5,7715],["2021-08-02",13400,19,7734],["2021-08-03",13400,23,7757],["2021-08-04",13400,25,7782],["2021-08-05",13400,30,7812],["2021-08-06",13400,45,7857],["2021-08-07",13400,12,7869],["2021-08-08",13400,2,7871],["2021-08-09",13400,32,7903],["2021-08-10",13400,37,7940],["2021-08-11",13400,38,7978],["2021-08-12",13400,41,8019],["2021-08-13",13400,41,8060],["2021-08-14",13400,15,8075],["2021-08-15",13400,6,8081],["2021-08-16",13400,42,8123],["2021-08-17",13400,41,8164],["2021-08-18",13400,54,8218],["2021-08-19",13400,24,8242],["2021-08-20",13400,46,8288],["2021-08-21",13400,16,8304],["2021-08-22",13400,9,8313],["2021-08-23",13400,32,8345],["2021-08-24",13400,33,8378],["2021-08-25",13400,20,8398],["2021-08-26",13400,50,8448],["2021-08-27",13400,54,8502],["2021-08-28",13400,13,8515],["2021-08-29",13400,9,8524],["2021-08-30",13400,37,8561],["2021-08-31",13400,36,8597],["2021-09-01",13400,42,8639],["2021-09-02",13400,58,8697],["2021-09-03",13400,52,8749],["2021-09-04",13400,17,8766],["2021-09-05",13400,10,8776],["2021-09-06",13400,4,8780],["2021-09-07",13400,60,8840],["2021-09-08",13400,62,8902],["2021-09-09",13400,53,8955],["2021-09-10",13400,51,9006],["2021-09-11",13400,29,9035],["2021-09-12",13400,10,9045],["2021-09-13",13400,44,9089],["2021-09-14",13400,37,9126],["2021-09-15",13400,34,9160],["2021-09-16",13400,45,9205],["2021-09-17",13400,50,9255],["2021-09-18",13400,13,9268],["2021-09-19",13400,9,9277],["2021-09-20",13400,29,9306],["2021-09-21",13400,24,9330],["2021-09-22",13400,27,9357],["2021-09-23",13400,30,9387],["2021-09-24",13400,36,9423],["2021-09-25",13400,19,9442],["2021-09-26",13400,14,9456],["2021-09-27",13400,19,9475],["2021-09-28",13400,34,9509],["2021-09-29",13400,30,9539],["2021-09-30",13400,14,9553],["2021-10-01",13400,30,9583],["2021-10-02",13400,8,9591],["2021-10-03",13400,6,9597],["2021-10-04",13400,18,9615],["2021-10-05",13400,19,9634],["2021-10-06",13400,22,9656],["2021-10-07",13400,26,9682],["2021-10-08",13400,36,9718],["2021-10-09",13400,6,9724],["2021-10-10",13400,6,9730],["2021-10-11",13400,18,9748],["2021-10-12",13400,25,9773],["2021-10-13",13400,29,9802],["2021-10-14",13400,21,9823],["2021-10-15",13400,29,9852],["2021-10-16",13400,11,9863],["2021-10-17",13400,1,9864],["2021-10-18",13400,25,9889],["2021-10-19",13400,11,9900],["2021-10-20",13400,16,9916],["2021-10-21",13400,14,9930],["2021-10-22",13400,23,9953],["2021-10-23",13400,12,9965],["2021-10-24",13400,4,9969],["2021-10-25",13400,42,10011],["2021-10-26",13400,99,10110],["2021-10-27",13400,114,10224],["2021-10-28",13400,45,10269],["2021-10-29",13400,55,10324],["2021-10-30",13400,19,10343],["2021-10-31",13400,8,10351],["2021-11-01",13400,62,10413],["2021-11-02",13400,67,10480],["2021-11-03",13400,50,10530],["2021-11-04",13400,43,10573],["2021-11-05",13400,45,10618],["2021-11-06",13400,5,10623],["2021-11-07",13400,3,10626],["2021-11-08",13400,65,10691],["2021-11-09",13400,41,10732],["2021-11-10",13400,36,10768],["2021-11-11",13400,26,10794],["2021-11-12",13400,43,10837],["2021-11-13",13400,8,10845],["2021-11-14",13400,6,10851],["2021-11-15",13400,31,10882],["2021-11-16",13400,55,10937],["2021-11-17",13400,44,10981],["2021-11-18",13400,29,11010],["2021-11-19",13400,24,11034],["2021-11-20",13400,16,11050],["2021-11-21",13400,7,11057],["2021-11-22",13400,38,11095],["2021-11-23",13400,27,11122],["2021-11-24",13400,16,11138],["2021-11-26",13400,15,11153],["2021-11-27",13400,9,11162],["2021-11-28",13400,4,11166],["2021-11-29",13400,37,11203],["2021-11-30",13400,35,11238],["2021-12-01",13400,49,11287],["2021-12-02",13400,60,11347],["2021-12-03",13400,45,11392],["2021-12-04",13400,13,11405],["2021-12-05",13400,4,11409],["2021-12-06",13400,26,11435],["2021-12-07",13400,38,11473],["2021-12-08",13400,19,11492],["2021-12-09",13400,30,11522],["2021-12-10",13400,42,11564],["2021-12-11",13400,10,11574],["2021-12-12",13400,3,11577],["2021-12-13",13400,27,11604],["2021-12-14",13400,29,11633],["2021-12-15",13400,19,11652],["2021-12-16",13400,35,11687],["2021-12-17",13400,30,11717],["2021-12-18",13400,6,11723],["2021-12-19",13400,4,11727],["2021-12-20",13400,22,11749],["2021-12-21",13400,29,11778],["2021-12-22",13400,23,11801],["2021-12-23",13400,12,11813],["2021-12-24",13400,2,11815],["2021-12-26",13400,4,11819],["2021-12-27",13400,38,11857],["2021-12-28",13400,53,11910],["2021-12-29",13400,46,11956],["2021-12-30",13400,32,11988],["2021-12-31",13400,7,11995],["2022-01-01",13400,3,11998],["2022-01-02",13400,6,12004],["2022-01-03",13400,8,12012]]} \ No newline at end of file diff --git a/public/data/overall/vaccinations/by-county/Dougherty.json b/public/data/overall/vaccinations/by-county/Dougherty.json new file mode 100644 index 000000000..bf0126a01 --- /dev/null +++ b/public/data/overall/vaccinations/by-county/Dougherty.json @@ -0,0 +1 @@ +{"segment":{"county":"Dougherty"},"headers":["report_date","population","vaccinations","total_vaccinations"],"rows":[["2020-12-12",89905,1,1],["2020-12-16",89905,2,3],["2020-12-17",89905,63,66],["2020-12-18",89905,158,224],["2020-12-19",89905,56,280],["2020-12-20",89905,34,314],["2020-12-21",89905,94,408],["2020-12-22",89905,129,537],["2020-12-23",89905,117,654],["2020-12-24",89905,23,677],["2020-12-26",89905,42,719],["2020-12-27",89905,5,724],["2020-12-28",89905,92,816],["2020-12-29",89905,90,906],["2020-12-30",89905,122,1028],["2020-12-31",89905,65,1093],["2021-01-01",89905,27,1120],["2021-01-02",89905,6,1126],["2021-01-03",89905,7,1133],["2021-01-04",89905,87,1220],["2021-01-05",89905,90,1310],["2021-01-06",89905,126,1436],["2021-01-07",89905,203,1639],["2021-01-08",89905,218,1857],["2021-01-09",89905,40,1897],["2021-01-10",89905,83,1980],["2021-01-11",89905,592,2572],["2021-01-12",89905,737,3309],["2021-01-13",89905,767,4076],["2021-01-14",89905,763,4839],["2021-01-15",89905,738,5577],["2021-01-16",89905,551,6128],["2021-01-17",89905,40,6168],["2021-01-18",89905,864,7032],["2021-01-19",89905,794,7826],["2021-01-20",89905,712,8538],["2021-01-21",89905,713,9251],["2021-01-22",89905,611,9862],["2021-01-23",89905,164,10026],["2021-01-24",89905,13,10039],["2021-01-25",89905,455,10494],["2021-01-26",89905,488,10982],["2021-01-27",89905,425,11407],["2021-01-28",89905,380,11787],["2021-01-29",89905,475,12262],["2021-01-30",89905,42,12304],["2021-01-31",89905,121,12425],["2021-02-01",89905,425,12850],["2021-02-02",89905,519,13369],["2021-02-03",89905,616,13985],["2021-02-04",89905,712,14697],["2021-02-05",89905,760,15457],["2021-02-06",89905,423,15880],["2021-02-07",89905,42,15922],["2021-02-08",89905,808,16730],["2021-02-09",89905,859,17589],["2021-02-10",89905,858,18447],["2021-02-11",89905,763,19210],["2021-02-12",89905,784,19994],["2021-02-13",89905,314,20308],["2021-02-14",89905,12,20320],["2021-02-15",89905,506,20826],["2021-02-16",89905,577,21403],["2021-02-17",89905,519,21922],["2021-02-18",89905,647,22569],["2021-02-19",89905,564,23133],["2021-02-20",89905,141,23274],["2021-02-21",89905,15,23289],["2021-02-22",89905,360,23649],["2021-02-23",89905,671,24320],["2021-02-24",89905,499,24819],["2021-02-25",89905,586,25405],["2021-02-26",89905,552,25957],["2021-02-27",89905,113,26070],["2021-02-28",89905,31,26101],["2021-03-01",89905,461,26562],["2021-03-02",89905,572,27134],["2021-03-03",89905,382,27516],["2021-03-04",89905,435,27951],["2021-03-05",89905,239,28190],["2021-03-06",89905,38,28228],["2021-03-07",89905,34,28262],["2021-03-08",89905,339,28601],["2021-03-09",89905,686,29287],["2021-03-10",89905,462,29749],["2021-03-11",89905,395,30144],["2021-03-12",89905,731,30875],["2021-03-13",89905,210,31085],["2021-03-14",89905,32,31117],["2021-03-15",89905,462,31579],["2021-03-16",89905,909,32488],["2021-03-17",89905,603,33091],["2021-03-18",89905,469,33560],["2021-03-19",89905,678,34238],["2021-03-20",89905,425,34663],["2021-03-21",89905,58,34721],["2021-03-22",89905,281,35002],["2021-03-23",89905,631,35633],["2021-03-24",89905,439,36072],["2021-03-25",89905,618,36690],["2021-03-26",89905,347,37037],["2021-03-27",89905,154,37191],["2021-03-28",89905,76,37267],["2021-03-29",89905,314,37581],["2021-03-30",89905,905,38486],["2021-03-31",89905,608,39094],["2021-04-01",89905,582,39676],["2021-04-02",89905,272,39948],["2021-04-03",89905,74,40022],["2021-04-04",89905,64,40086],["2021-04-05",89905,346,40432],["2021-04-06",89905,1016,41448],["2021-04-07",89905,717,42165],["2021-04-08",89905,755,42920],["2021-04-09",89905,571,43491],["2021-04-10",89905,361,43852],["2021-04-11",89905,56,43908],["2021-04-12",89905,309,44217],["2021-04-13",89905,923,45140],["2021-04-14",89905,351,45491],["2021-04-15",89905,502,45993],["2021-04-16",89905,461,46454],["2021-04-17",89905,58,46512],["2021-04-18",89905,78,46590],["2021-04-19",89905,286,46876],["2021-04-20",89905,869,47745],["2021-04-21",89905,268,48013],["2021-04-22",89905,454,48467],["2021-04-23",89905,447,48914],["2021-04-24",89905,72,48986],["2021-04-25",89905,49,49035],["2021-04-26",89905,223,49258],["2021-04-27",89905,773,50031],["2021-04-28",89905,406,50437],["2021-04-29",89905,530,50967],["2021-04-30",89905,297,51264],["2021-05-01",89905,114,51378],["2021-05-02",89905,73,51451],["2021-05-03",89905,177,51628],["2021-05-04",89905,715,52343],["2021-05-05",89905,267,52610],["2021-05-06",89905,209,52819],["2021-05-07",89905,247,53066],["2021-05-08",89905,113,53179],["2021-05-09",89905,23,53202],["2021-05-10",89905,144,53346],["2021-05-11",89905,372,53718],["2021-05-12",89905,202,53920],["2021-05-13",89905,438,54358],["2021-05-14",89905,207,54565],["2021-05-15",89905,88,54653],["2021-05-16",89905,72,54725],["2021-05-17",89905,216,54941],["2021-05-18",89905,349,55290],["2021-05-19",89905,266,55556],["2021-05-20",89905,550,56106],["2021-05-21",89905,217,56323],["2021-05-22",89905,106,56429],["2021-05-23",89905,76,56505],["2021-05-24",89905,140,56645],["2021-05-25",89905,269,56914],["2021-05-26",89905,187,57101],["2021-05-27",89905,217,57318],["2021-05-28",89905,134,57452],["2021-05-29",89905,81,57533],["2021-05-30",89905,36,57569],["2021-05-31",89905,18,57587],["2021-06-01",89905,284,57871],["2021-06-02",89905,160,58031],["2021-06-03",89905,219,58250],["2021-06-04",89905,144,58394],["2021-06-05",89905,97,58491],["2021-06-06",89905,78,58569],["2021-06-07",89905,163,58732],["2021-06-08",89905,200,58932],["2021-06-09",89905,157,59089],["2021-06-10",89905,236,59325],["2021-06-11",89905,136,59461],["2021-06-12",89905,153,59614],["2021-06-13",89905,39,59653],["2021-06-14",89905,176,59829],["2021-06-15",89905,198,60027],["2021-06-16",89905,146,60173],["2021-06-17",89905,165,60338],["2021-06-18",89905,153,60491],["2021-06-19",89905,92,60583],["2021-06-20",89905,60,60643],["2021-06-21",89905,110,60753],["2021-06-22",89905,188,60941],["2021-06-23",89905,153,61094],["2021-06-24",89905,164,61258],["2021-06-25",89905,131,61389],["2021-06-26",89905,129,61518],["2021-06-27",89905,33,61551],["2021-06-28",89905,126,61677],["2021-06-29",89905,155,61832],["2021-06-30",89905,121,61953],["2021-07-01",89905,156,62109],["2021-07-02",89905,107,62216],["2021-07-03",89905,45,62261],["2021-07-04",89905,10,62271],["2021-07-05",89905,80,62351],["2021-07-06",89905,127,62478],["2021-07-07",89905,124,62602],["2021-07-08",89905,146,62748],["2021-07-09",89905,118,62866],["2021-07-10",89905,95,62961],["2021-07-11",89905,28,62989],["2021-07-12",89905,124,63113],["2021-07-13",89905,132,63245],["2021-07-14",89905,87,63332],["2021-07-15",89905,148,63480],["2021-07-16",89905,156,63636],["2021-07-17",89905,126,63762],["2021-07-18",89905,42,63804],["2021-07-19",89905,122,63926],["2021-07-20",89905,169,64095],["2021-07-21",89905,132,64227],["2021-07-22",89905,208,64435],["2021-07-23",89905,202,64637],["2021-07-24",89905,86,64723],["2021-07-25",89905,50,64773],["2021-07-26",89905,180,64953],["2021-07-27",89905,267,65220],["2021-07-28",89905,251,65471],["2021-07-29",89905,295,65766],["2021-07-30",89905,270,66036],["2021-07-31",89905,148,66184],["2021-08-01",89905,93,66277],["2021-08-02",89905,202,66479],["2021-08-03",89905,241,66720],["2021-08-04",89905,269,66989],["2021-08-05",89905,294,67283],["2021-08-06",89905,318,67601],["2021-08-07",89905,246,67847],["2021-08-08",89905,191,68038],["2021-08-09",89905,274,68312],["2021-08-10",89905,348,68660],["2021-08-11",89905,291,68951],["2021-08-12",89905,346,69297],["2021-08-13",89905,382,69679],["2021-08-14",89905,212,69891],["2021-08-15",89905,153,70044],["2021-08-16",89905,278,70322],["2021-08-17",89905,372,70694],["2021-08-18",89905,374,71068],["2021-08-19",89905,413,71481],["2021-08-20",89905,397,71878],["2021-08-21",89905,191,72069],["2021-08-22",89905,114,72183],["2021-08-23",89905,271,72454],["2021-08-24",89905,345,72799],["2021-08-25",89905,288,73087],["2021-08-26",89905,355,73442],["2021-08-27",89905,358,73800],["2021-08-28",89905,207,74007],["2021-08-29",89905,243,74250],["2021-08-30",89905,313,74563],["2021-08-31",89905,394,74957],["2021-09-01",89905,340,75297],["2021-09-02",89905,323,75620],["2021-09-03",89905,405,76025],["2021-09-04",89905,227,76252],["2021-09-05",89905,139,76391],["2021-09-06",89905,62,76453],["2021-09-07",89905,342,76795],["2021-09-08",89905,314,77109],["2021-09-09",89905,360,77469],["2021-09-10",89905,339,77808],["2021-09-11",89905,170,77978],["2021-09-12",89905,119,78097],["2021-09-13",89905,236,78333],["2021-09-14",89905,324,78657],["2021-09-15",89905,234,78891],["2021-09-16",89905,230,79121],["2021-09-17",89905,282,79403],["2021-09-18",89905,453,79856],["2021-09-19",89905,87,79943],["2021-09-20",89905,175,80118],["2021-09-21",89905,242,80360],["2021-09-22",89905,203,80563],["2021-09-23",89905,252,80815],["2021-09-24",89905,266,81081],["2021-09-25",89905,152,81233],["2021-09-26",89905,72,81305],["2021-09-27",89905,173,81478],["2021-09-28",89905,379,81857],["2021-09-29",89905,367,82224],["2021-09-30",89905,594,82818],["2021-10-01",89905,568,83386],["2021-10-02",89905,289,83675],["2021-10-03",89905,49,83724],["2021-10-04",89905,145,83869],["2021-10-05",89905,532,84401],["2021-10-06",89905,323,84724],["2021-10-07",89905,386,85110],["2021-10-08",89905,405,85515],["2021-10-09",89905,176,85691],["2021-10-10",89905,44,85735],["2021-10-11",89905,124,85859],["2021-10-12",89905,340,86199],["2021-10-13",89905,259,86458],["2021-10-14",89905,242,86700],["2021-10-15",89905,273,86973],["2021-10-16",89905,637,87610],["2021-10-17",89905,34,87644],["2021-10-18",89905,164,87808],["2021-10-19",89905,178,87986],["2021-10-20",89905,118,88104],["2021-10-21",89905,144,88248],["2021-10-22",89905,179,88427],["2021-10-23",89905,100,88527],["2021-10-24",89905,57,88584],["2021-10-25",89905,182,88766],["2021-10-26",89905,263,89029],["2021-10-27",89905,236,89265],["2021-10-28",89905,282,89547],["2021-10-29",89905,230,89777],["2021-10-30",89905,69,89846],["2021-10-31",89905,54,89900],["2021-11-01",89905,210,90110],["2021-11-02",89905,276,90386],["2021-11-03",89905,330,90716],["2021-11-04",89905,259,90975],["2021-11-05",89905,286,91261],["2021-11-06",89905,1004,92265],["2021-11-07",89905,47,92312],["2021-11-08",89905,158,92470],["2021-11-09",89905,224,92694],["2021-11-10",89905,195,92889],["2021-11-11",89905,327,93216],["2021-11-12",89905,194,93410],["2021-11-13",89905,131,93541],["2021-11-14",89905,24,93565],["2021-11-15",89905,240,93805],["2021-11-16",89905,266,94071],["2021-11-17",89905,340,94411],["2021-11-18",89905,298,94709],["2021-11-19",89905,237,94946],["2021-11-20",89905,81,95027],["2021-11-21",89905,64,95091],["2021-11-22",89905,250,95341],["2021-11-23",89905,281,95622],["2021-11-24",89905,137,95759],["2021-11-26",89905,104,95863],["2021-11-27",89905,84,95947],["2021-11-28",89905,45,95992],["2021-11-29",89905,228,96220],["2021-11-30",89905,337,96557],["2021-12-01",89905,274,96831],["2021-12-02",89905,362,97193],["2021-12-03",89905,341,97534],["2021-12-04",89905,252,97786],["2021-12-05",89905,48,97834],["2021-12-06",89905,195,98029],["2021-12-07",89905,291,98320],["2021-12-08",89905,253,98573],["2021-12-09",89905,285,98858],["2021-12-10",89905,300,99158],["2021-12-11",89905,92,99250],["2021-12-12",89905,56,99306],["2021-12-13",89905,186,99492],["2021-12-14",89905,256,99748],["2021-12-15",89905,183,99931],["2021-12-16",89905,254,100185],["2021-12-17",89905,249,100434],["2021-12-18",89905,83,100517],["2021-12-19",89905,54,100571],["2021-12-20",89905,247,100818],["2021-12-21",89905,309,101127],["2021-12-22",89905,255,101382],["2021-12-23",89905,173,101555],["2021-12-24",89905,47,101602],["2021-12-26",89905,51,101653],["2021-12-27",89905,215,101868],["2021-12-28",89905,274,102142],["2021-12-29",89905,250,102392],["2021-12-30",89905,337,102729],["2021-12-31",89905,118,102847],["2022-01-01",89905,22,102869],["2022-01-02",89905,55,102924],["2022-01-03",89905,92,103016]]} \ No newline at end of file diff --git a/public/data/overall/vaccinations/by-county/Douglas.json b/public/data/overall/vaccinations/by-county/Douglas.json new file mode 100644 index 000000000..3c12fdbee --- /dev/null +++ b/public/data/overall/vaccinations/by-county/Douglas.json @@ -0,0 +1 @@ +{"segment":{"county":"Douglas"},"headers":["report_date","population","vaccinations","total_vaccinations"],"rows":[["2020-12-17",151906,8,8],["2020-12-18",151906,23,31],["2020-12-19",151906,15,46],["2020-12-20",151906,20,66],["2020-12-21",151906,65,131],["2020-12-22",151906,168,299],["2020-12-23",151906,149,448],["2020-12-24",151906,16,464],["2020-12-26",151906,5,469],["2020-12-27",151906,11,480],["2020-12-28",151906,145,625],["2020-12-29",151906,132,757],["2020-12-30",151906,150,907],["2020-12-31",151906,66,973],["2021-01-01",151906,24,997],["2021-01-02",151906,27,1024],["2021-01-03",151906,16,1040],["2021-01-04",151906,193,1233],["2021-01-05",151906,168,1401],["2021-01-06",151906,111,1512],["2021-01-07",151906,210,1722],["2021-01-08",151906,176,1898],["2021-01-09",151906,70,1968],["2021-01-10",151906,53,2021],["2021-01-11",151906,240,2261],["2021-01-12",151906,304,2565],["2021-01-13",151906,364,2929],["2021-01-14",151906,374,3303],["2021-01-15",151906,312,3615],["2021-01-16",151906,183,3798],["2021-01-17",151906,102,3900],["2021-01-18",151906,343,4243],["2021-01-19",151906,513,4756],["2021-01-20",151906,555,5311],["2021-01-21",151906,412,5723],["2021-01-22",151906,440,6163],["2021-01-23",151906,126,6289],["2021-01-24",151906,52,6341],["2021-01-25",151906,525,6866],["2021-01-26",151906,468,7334],["2021-01-27",151906,616,7950],["2021-01-28",151906,701,8651],["2021-01-29",151906,414,9065],["2021-01-30",151906,139,9204],["2021-01-31",151906,79,9283],["2021-02-01",151906,353,9636],["2021-02-02",151906,431,10067],["2021-02-03",151906,411,10478],["2021-02-04",151906,536,11014],["2021-02-05",151906,375,11389],["2021-02-06",151906,104,11493],["2021-02-07",151906,39,11532],["2021-02-08",151906,366,11898],["2021-02-09",151906,494,12392],["2021-02-10",151906,466,12858],["2021-02-11",151906,395,13253],["2021-02-12",151906,460,13713],["2021-02-13",151906,349,14062],["2021-02-14",151906,93,14155],["2021-02-15",151906,424,14579],["2021-02-16",151906,466,15045],["2021-02-17",151906,709,15754],["2021-02-18",151906,569,16323],["2021-02-19",151906,551,16874],["2021-02-20",151906,105,16979],["2021-02-21",151906,24,17003],["2021-02-22",151906,343,17346],["2021-02-23",151906,582,17928],["2021-02-24",151906,530,18458],["2021-02-25",151906,689,19147],["2021-02-26",151906,775,19922],["2021-02-27",151906,297,20219],["2021-02-28",151906,133,20352],["2021-03-01",151906,576,20928],["2021-03-02",151906,558,21486],["2021-03-03",151906,712,22198],["2021-03-04",151906,594,22792],["2021-03-05",151906,648,23440],["2021-03-06",151906,234,23674],["2021-03-07",151906,138,23812],["2021-03-08",151906,570,24382],["2021-03-09",151906,799,25181],["2021-03-10",151906,775,25956],["2021-03-11",151906,625,26581],["2021-03-12",151906,947,27528],["2021-03-13",151906,597,28125],["2021-03-14",151906,138,28263],["2021-03-15",151906,775,29038],["2021-03-16",151906,1033,30071],["2021-03-17",151906,1084,31155],["2021-03-18",151906,739,31894],["2021-03-19",151906,959,32853],["2021-03-20",151906,438,33291],["2021-03-21",151906,252,33543],["2021-03-22",151906,601,34144],["2021-03-23",151906,1107,35251],["2021-03-24",151906,1030,36281],["2021-03-25",151906,1175,37456],["2021-03-26",151906,869,38325],["2021-03-27",151906,526,38851],["2021-03-28",151906,346,39197],["2021-03-29",151906,921,40118],["2021-03-30",151906,1344,41462],["2021-03-31",151906,1498,42960],["2021-04-01",151906,1437,44397],["2021-04-02",151906,1056,45453],["2021-04-03",151906,612,46065],["2021-04-04",151906,334,46399],["2021-04-05",151906,1095,47494],["2021-04-06",151906,1664,49158],["2021-04-07",151906,1328,50486],["2021-04-08",151906,1525,52011],["2021-04-09",151906,1277,53288],["2021-04-10",151906,812,54100],["2021-04-11",151906,302,54402],["2021-04-12",151906,1294,55696],["2021-04-13",151906,1387,57083],["2021-04-14",151906,1506,58589],["2021-04-15",151906,1163,59752],["2021-04-16",151906,1700,61452],["2021-04-17",151906,397,61849],["2021-04-18",151906,416,62265],["2021-04-19",151906,1107,63372],["2021-04-20",151906,1237,64609],["2021-04-21",151906,1314,65923],["2021-04-22",151906,1225,67148],["2021-04-23",151906,1181,68329],["2021-04-24",151906,584,68913],["2021-04-25",151906,250,69163],["2021-04-26",151906,1075,70238],["2021-04-27",151906,1055,71293],["2021-04-28",151906,1210,72503],["2021-04-29",151906,1023,73526],["2021-04-30",151906,1218,74744],["2021-05-01",151906,725,75469],["2021-05-02",151906,241,75710],["2021-05-03",151906,884,76594],["2021-05-04",151906,882,77476],["2021-05-05",151906,967,78443],["2021-05-06",151906,751,79194],["2021-05-07",151906,921,80115],["2021-05-08",151906,438,80553],["2021-05-09",151906,198,80751],["2021-05-10",151906,584,81335],["2021-05-11",151906,779,82114],["2021-05-12",151906,636,82750],["2021-05-13",151906,655,83405],["2021-05-14",151906,770,84175],["2021-05-15",151906,680,84855],["2021-05-16",151906,216,85071],["2021-05-17",151906,586,85657],["2021-05-18",151906,603,86260],["2021-05-19",151906,746,87006],["2021-05-20",151906,568,87574],["2021-05-21",151906,749,88323],["2021-05-22",151906,448,88771],["2021-05-23",151906,177,88948],["2021-05-24",151906,347,89295],["2021-05-25",151906,419,89714],["2021-05-26",151906,497,90211],["2021-05-27",151906,437,90648],["2021-05-28",151906,427,91075],["2021-05-29",151906,238,91313],["2021-05-30",151906,161,91474],["2021-05-31",151906,58,91532],["2021-06-01",151906,495,92027],["2021-06-02",151906,486,92513],["2021-06-03",151906,425,92938],["2021-06-04",151906,530,93468],["2021-06-05",151906,416,93884],["2021-06-06",151906,164,94048],["2021-06-07",151906,373,94421],["2021-06-08",151906,365,94786],["2021-06-09",151906,385,95171],["2021-06-10",151906,396,95567],["2021-06-11",151906,478,96045],["2021-06-12",151906,351,96396],["2021-06-13",151906,151,96547],["2021-06-14",151906,361,96908],["2021-06-15",151906,294,97202],["2021-06-16",151906,372,97574],["2021-06-17",151906,312,97886],["2021-06-18",151906,376,98262],["2021-06-19",151906,248,98510],["2021-06-20",151906,120,98630],["2021-06-21",151906,256,98886],["2021-06-22",151906,360,99246],["2021-06-23",151906,408,99654],["2021-06-24",151906,245,99899],["2021-06-25",151906,286,100185],["2021-06-26",151906,198,100383],["2021-06-27",151906,110,100493],["2021-06-28",151906,213,100706],["2021-06-29",151906,221,100927],["2021-06-30",151906,232,101159],["2021-07-01",151906,266,101425],["2021-07-02",151906,233,101658],["2021-07-03",151906,180,101838],["2021-07-04",151906,13,101851],["2021-07-05",151906,231,102082],["2021-07-06",151906,226,102308],["2021-07-07",151906,230,102538],["2021-07-08",151906,249,102787],["2021-07-09",151906,254,103041],["2021-07-10",151906,187,103228],["2021-07-11",151906,107,103335],["2021-07-12",151906,290,103625],["2021-07-13",151906,321,103946],["2021-07-14",151906,310,104256],["2021-07-15",151906,181,104437],["2021-07-16",151906,291,104728],["2021-07-17",151906,220,104948],["2021-07-18",151906,127,105075],["2021-07-19",151906,246,105321],["2021-07-20",151906,261,105582],["2021-07-21",151906,274,105856],["2021-07-22",151906,252,106108],["2021-07-23",151906,377,106485],["2021-07-24",151906,261,106746],["2021-07-25",151906,156,106902],["2021-07-26",151906,341,107243],["2021-07-27",151906,333,107576],["2021-07-28",151906,351,107927],["2021-07-29",151906,385,108312],["2021-07-30",151906,417,108729],["2021-07-31",151906,238,108967],["2021-08-01",151906,183,109150],["2021-08-02",151906,384,109534],["2021-08-03",151906,346,109880],["2021-08-04",151906,353,110233],["2021-08-05",151906,339,110572],["2021-08-06",151906,460,111032],["2021-08-07",151906,320,111352],["2021-08-08",151906,208,111560],["2021-08-09",151906,325,111885],["2021-08-10",151906,390,112275],["2021-08-11",151906,324,112599],["2021-08-12",151906,389,112988],["2021-08-13",151906,402,113390],["2021-08-14",151906,355,113745],["2021-08-15",151906,190,113935],["2021-08-16",151906,407,114342],["2021-08-17",151906,390,114732],["2021-08-18",151906,408,115140],["2021-08-19",151906,410,115550],["2021-08-20",151906,485,116035],["2021-08-21",151906,360,116395],["2021-08-22",151906,141,116536],["2021-08-23",151906,420,116956],["2021-08-24",151906,369,117325],["2021-08-25",151906,379,117704],["2021-08-26",151906,397,118101],["2021-08-27",151906,514,118615],["2021-08-28",151906,365,118980],["2021-08-29",151906,203,119183],["2021-08-30",151906,435,119618],["2021-08-31",151906,346,119964],["2021-09-01",151906,358,120322],["2021-09-02",151906,392,120714],["2021-09-03",151906,463,121177],["2021-09-04",151906,309,121486],["2021-09-05",151906,150,121636],["2021-09-06",151906,38,121674],["2021-09-07",151906,404,122078],["2021-09-08",151906,347,122425],["2021-09-09",151906,372,122797],["2021-09-10",151906,430,123227],["2021-09-11",151906,311,123538],["2021-09-12",151906,158,123696],["2021-09-13",151906,374,124070],["2021-09-14",151906,351,124421],["2021-09-15",151906,332,124753],["2021-09-16",151906,316,125069],["2021-09-17",151906,309,125378],["2021-09-18",151906,250,125628],["2021-09-19",151906,123,125751],["2021-09-20",151906,247,125998],["2021-09-21",151906,229,126227],["2021-09-22",151906,240,126467],["2021-09-23",151906,243,126710],["2021-09-24",151906,340,127050],["2021-09-25",151906,224,127274],["2021-09-26",151906,117,127391],["2021-09-27",151906,293,127684],["2021-09-28",151906,330,128014],["2021-09-29",151906,340,128354],["2021-09-30",151906,280,128634],["2021-10-01",151906,345,128979],["2021-10-02",151906,204,129183],["2021-10-03",151906,120,129303],["2021-10-04",151906,313,129616],["2021-10-05",151906,308,129924],["2021-10-06",151906,301,130225],["2021-10-07",151906,247,130472],["2021-10-08",151906,274,130746],["2021-10-09",151906,189,130935],["2021-10-10",151906,123,131058],["2021-10-11",151906,213,131271],["2021-10-12",151906,267,131538],["2021-10-13",151906,206,131744],["2021-10-14",151906,205,131949],["2021-10-15",151906,284,132233],["2021-10-16",151906,143,132376],["2021-10-17",151906,83,132459],["2021-10-18",151906,245,132704],["2021-10-19",151906,248,132952],["2021-10-20",151906,242,133194],["2021-10-21",151906,261,133455],["2021-10-22",151906,457,133912],["2021-10-23",151906,282,134194],["2021-10-24",151906,130,134324],["2021-10-25",151906,483,134807],["2021-10-26",151906,403,135210],["2021-10-27",151906,447,135657],["2021-10-28",151906,389,136046],["2021-10-29",151906,425,136471],["2021-10-30",151906,201,136672],["2021-10-31",151906,114,136786],["2021-11-01",151906,352,137138],["2021-11-02",151906,366,137504],["2021-11-03",151906,322,137826],["2021-11-04",151906,408,138234],["2021-11-05",151906,422,138656],["2021-11-06",151906,266,138922],["2021-11-07",151906,125,139047],["2021-11-08",151906,351,139398],["2021-11-09",151906,390,139788],["2021-11-10",151906,424,140212],["2021-11-11",151906,340,140552],["2021-11-12",151906,500,141052],["2021-11-13",151906,275,141327],["2021-11-14",151906,124,141451],["2021-11-15",151906,363,141814],["2021-11-16",151906,312,142126],["2021-11-17",151906,403,142529],["2021-11-18",151906,385,142914],["2021-11-19",151906,481,143395],["2021-11-20",151906,301,143696],["2021-11-21",151906,185,143881],["2021-11-22",151906,429,144310],["2021-11-23",151906,393,144703],["2021-11-24",151906,298,145001],["2021-11-26",151906,294,145295],["2021-11-27",151906,272,145567],["2021-11-28",151906,140,145707],["2021-11-29",151906,499,146206],["2021-11-30",151906,561,146767],["2021-12-01",151906,592,147359],["2021-12-02",151906,604,147963],["2021-12-03",151906,731,148694],["2021-12-04",151906,425,149119],["2021-12-05",151906,179,149298],["2021-12-06",151906,517,149815],["2021-12-07",151906,432,150247],["2021-12-08",151906,436,150683],["2021-12-09",151906,417,151100],["2021-12-10",151906,558,151658],["2021-12-11",151906,393,152051],["2021-12-12",151906,148,152199],["2021-12-13",151906,342,152541],["2021-12-14",151906,370,152911],["2021-12-15",151906,360,153271],["2021-12-16",151906,374,153645],["2021-12-17",151906,406,154051],["2021-12-18",151906,319,154370],["2021-12-19",151906,168,154538],["2021-12-20",151906,450,154988],["2021-12-21",151906,475,155463],["2021-12-22",151906,497,155960],["2021-12-23",151906,409,156369],["2021-12-24",151906,122,156491],["2021-12-26",151906,147,156638],["2021-12-27",151906,459,157097],["2021-12-28",151906,385,157482],["2021-12-29",151906,347,157829],["2021-12-30",151906,307,158136],["2021-12-31",151906,184,158320],["2022-01-01",151906,25,158345],["2022-01-02",151906,103,158448],["2022-01-03",151906,100,158548]]} \ No newline at end of file diff --git a/public/data/overall/vaccinations/by-county/Early.json b/public/data/overall/vaccinations/by-county/Early.json new file mode 100644 index 000000000..b15d10b29 --- /dev/null +++ b/public/data/overall/vaccinations/by-county/Early.json @@ -0,0 +1 @@ +{"segment":{"county":"Early"},"headers":["report_date","population","vaccinations","total_vaccinations"],"rows":[["2020-12-18",10146,2,2],["2020-12-19",10146,1,3],["2020-12-20",10146,1,4],["2020-12-21",10146,2,6],["2020-12-22",10146,3,9],["2020-12-23",10146,44,53],["2020-12-24",10146,5,58],["2020-12-26",10146,1,59],["2020-12-27",10146,3,62],["2020-12-28",10146,23,85],["2020-12-29",10146,31,116],["2020-12-30",10146,21,137],["2020-12-31",10146,20,157],["2021-01-01",10146,8,165],["2021-01-03",10146,1,166],["2021-01-04",10146,29,195],["2021-01-05",10146,17,212],["2021-01-06",10146,20,232],["2021-01-07",10146,18,250],["2021-01-08",10146,59,309],["2021-01-11",10146,87,396],["2021-01-12",10146,155,551],["2021-01-13",10146,101,652],["2021-01-14",10146,180,832],["2021-01-15",10146,108,940],["2021-01-16",10146,67,1007],["2021-01-18",10146,87,1094],["2021-01-19",10146,67,1161],["2021-01-20",10146,80,1241],["2021-01-21",10146,84,1325],["2021-01-22",10146,56,1381],["2021-01-23",10146,4,1385],["2021-01-24",10146,2,1387],["2021-01-25",10146,66,1453],["2021-01-26",10146,69,1522],["2021-01-27",10146,62,1584],["2021-01-28",10146,66,1650],["2021-01-29",10146,114,1764],["2021-01-30",10146,1,1765],["2021-01-31",10146,1,1766],["2021-02-01",10146,52,1818],["2021-02-02",10146,61,1879],["2021-02-03",10146,59,1938],["2021-02-04",10146,65,2003],["2021-02-05",10146,38,2041],["2021-02-06",10146,5,2046],["2021-02-08",10146,137,2183],["2021-02-09",10146,187,2370],["2021-02-10",10146,97,2467],["2021-02-11",10146,79,2546],["2021-02-12",10146,144,2690],["2021-02-13",10146,1,2691],["2021-02-15",10146,100,2791],["2021-02-16",10146,144,2935],["2021-02-17",10146,121,3056],["2021-02-18",10146,76,3132],["2021-02-19",10146,118,3250],["2021-02-20",10146,4,3254],["2021-02-21",10146,2,3256],["2021-02-22",10146,82,3338],["2021-02-23",10146,55,3393],["2021-02-24",10146,60,3453],["2021-02-25",10146,104,3557],["2021-02-26",10146,52,3609],["2021-02-27",10146,2,3611],["2021-03-01",10146,41,3652],["2021-03-02",10146,67,3719],["2021-03-03",10146,61,3780],["2021-03-04",10146,49,3829],["2021-03-05",10146,48,3877],["2021-03-08",10146,151,4028],["2021-03-09",10146,120,4148],["2021-03-10",10146,71,4219],["2021-03-11",10146,50,4269],["2021-03-12",10146,43,4312],["2021-03-13",10146,28,4340],["2021-03-14",10146,1,4341],["2021-03-15",10146,83,4424],["2021-03-16",10146,41,4465],["2021-03-17",10146,53,4518],["2021-03-18",10146,16,4534],["2021-03-19",10146,62,4596],["2021-03-20",10146,2,4598],["2021-03-21",10146,1,4599],["2021-03-22",10146,33,4632],["2021-03-23",10146,33,4665],["2021-03-24",10146,54,4719],["2021-03-25",10146,59,4778],["2021-03-26",10146,108,4886],["2021-03-27",10146,1,4887],["2021-03-28",10146,1,4888],["2021-03-29",10146,43,4931],["2021-03-30",10146,80,5011],["2021-03-31",10146,57,5068],["2021-04-01",10146,46,5114],["2021-04-02",10146,20,5134],["2021-04-03",10146,2,5136],["2021-04-04",10146,2,5138],["2021-04-05",10146,73,5211],["2021-04-06",10146,48,5259],["2021-04-07",10146,141,5400],["2021-04-08",10146,44,5444],["2021-04-09",10146,51,5495],["2021-04-10",10146,4,5499],["2021-04-11",10146,4,5503],["2021-04-12",10146,50,5553],["2021-04-13",10146,44,5597],["2021-04-14",10146,63,5660],["2021-04-15",10146,30,5690],["2021-04-16",10146,116,5806],["2021-04-17",10146,1,5807],["2021-04-18",10146,1,5808],["2021-04-19",10146,33,5841],["2021-04-20",10146,75,5916],["2021-04-21",10146,39,5955],["2021-04-22",10146,38,5993],["2021-04-23",10146,62,6055],["2021-04-24",10146,1,6056],["2021-04-26",10146,67,6123],["2021-04-27",10146,32,6155],["2021-04-28",10146,66,6221],["2021-04-29",10146,15,6236],["2021-04-30",10146,46,6282],["2021-05-01",10146,5,6287],["2021-05-02",10146,5,6292],["2021-05-03",10146,35,6327],["2021-05-04",10146,16,6343],["2021-05-05",10146,47,6390],["2021-05-06",10146,17,6407],["2021-05-07",10146,33,6440],["2021-05-08",10146,5,6445],["2021-05-09",10146,1,6446],["2021-05-10",10146,27,6473],["2021-05-11",10146,11,6484],["2021-05-12",10146,43,6527],["2021-05-13",10146,25,6552],["2021-05-14",10146,22,6574],["2021-05-15",10146,6,6580],["2021-05-16",10146,1,6581],["2021-05-17",10146,26,6607],["2021-05-18",10146,19,6626],["2021-05-19",10146,39,6665],["2021-05-20",10146,23,6688],["2021-05-21",10146,17,6705],["2021-05-22",10146,2,6707],["2021-05-23",10146,2,6709],["2021-05-24",10146,23,6732],["2021-05-25",10146,14,6746],["2021-05-26",10146,31,6777],["2021-05-27",10146,6,6783],["2021-05-28",10146,24,6807],["2021-05-29",10146,1,6808],["2021-05-30",10146,1,6809],["2021-06-01",10146,20,6829],["2021-06-02",10146,29,6858],["2021-06-03",10146,9,6867],["2021-06-04",10146,29,6896],["2021-06-05",10146,4,6900],["2021-06-06",10146,1,6901],["2021-06-07",10146,18,6919],["2021-06-08",10146,12,6931],["2021-06-09",10146,23,6954],["2021-06-10",10146,11,6965],["2021-06-11",10146,24,6989],["2021-06-12",10146,1,6990],["2021-06-13",10146,2,6992],["2021-06-14",10146,19,7011],["2021-06-15",10146,9,7020],["2021-06-16",10146,17,7037],["2021-06-17",10146,11,7048],["2021-06-18",10146,3,7051],["2021-06-19",10146,3,7054],["2021-06-20",10146,1,7055],["2021-06-21",10146,31,7086],["2021-06-22",10146,16,7102],["2021-06-23",10146,18,7120],["2021-06-24",10146,5,7125],["2021-06-25",10146,31,7156],["2021-06-26",10146,1,7157],["2021-06-27",10146,2,7159],["2021-06-28",10146,16,7175],["2021-06-29",10146,9,7184],["2021-06-30",10146,19,7203],["2021-07-01",10146,7,7210],["2021-07-02",10146,15,7225],["2021-07-03",10146,2,7227],["2021-07-05",10146,5,7232],["2021-07-06",10146,9,7241],["2021-07-07",10146,25,7266],["2021-07-08",10146,9,7275],["2021-07-09",10146,18,7293],["2021-07-10",10146,1,7294],["2021-07-12",10146,11,7305],["2021-07-13",10146,12,7317],["2021-07-14",10146,23,7340],["2021-07-15",10146,12,7352],["2021-07-16",10146,38,7390],["2021-07-17",10146,1,7391],["2021-07-18",10146,1,7392],["2021-07-19",10146,29,7421],["2021-07-20",10146,12,7433],["2021-07-21",10146,29,7462],["2021-07-22",10146,17,7479],["2021-07-23",10146,38,7517],["2021-07-24",10146,7,7524],["2021-07-25",10146,1,7525],["2021-07-26",10146,29,7554],["2021-07-27",10146,30,7584],["2021-07-28",10146,37,7621],["2021-07-29",10146,29,7650],["2021-07-30",10146,41,7691],["2021-07-31",10146,9,7700],["2021-08-01",10146,6,7706],["2021-08-02",10146,45,7751],["2021-08-03",10146,23,7774],["2021-08-04",10146,65,7839],["2021-08-05",10146,26,7865],["2021-08-06",10146,60,7925],["2021-08-07",10146,11,7936],["2021-08-08",10146,3,7939],["2021-08-09",10146,50,7989],["2021-08-10",10146,35,8024],["2021-08-11",10146,64,8088],["2021-08-12",10146,32,8120],["2021-08-13",10146,71,8191],["2021-08-14",10146,13,8204],["2021-08-15",10146,3,8207],["2021-08-16",10146,36,8243],["2021-08-17",10146,23,8266],["2021-08-18",10146,77,8343],["2021-08-19",10146,28,8371],["2021-08-20",10146,78,8449],["2021-08-21",10146,14,8463],["2021-08-22",10146,9,8472],["2021-08-23",10146,74,8546],["2021-08-24",10146,60,8606],["2021-08-25",10146,72,8678],["2021-08-26",10146,43,8721],["2021-08-27",10146,54,8775],["2021-08-28",10146,29,8804],["2021-08-29",10146,7,8811],["2021-08-30",10146,77,8888],["2021-08-31",10146,36,8924],["2021-09-01",10146,67,8991],["2021-09-02",10146,39,9030],["2021-09-03",10146,55,9085],["2021-09-04",10146,9,9094],["2021-09-05",10146,3,9097],["2021-09-06",10146,3,9100],["2021-09-07",10146,36,9136],["2021-09-08",10146,56,9192],["2021-09-09",10146,46,9238],["2021-09-10",10146,52,9290],["2021-09-11",10146,8,9298],["2021-09-12",10146,4,9302],["2021-09-13",10146,54,9356],["2021-09-14",10146,18,9374],["2021-09-15",10146,52,9426],["2021-09-16",10146,24,9450],["2021-09-17",10146,64,9514],["2021-09-18",10146,11,9525],["2021-09-19",10146,5,9530],["2021-09-20",10146,50,9580],["2021-09-21",10146,31,9611],["2021-09-22",10146,49,9660],["2021-09-23",10146,36,9696],["2021-09-24",10146,28,9724],["2021-09-25",10146,2,9726],["2021-09-26",10146,5,9731],["2021-09-27",10146,25,9756],["2021-09-28",10146,26,9782],["2021-09-29",10146,41,9823],["2021-09-30",10146,18,9841],["2021-10-01",10146,31,9872],["2021-10-02",10146,5,9877],["2021-10-03",10146,2,9879],["2021-10-04",10146,7,9886],["2021-10-05",10146,24,9910],["2021-10-06",10146,22,9932],["2021-10-07",10146,19,9951],["2021-10-08",10146,16,9967],["2021-10-10",10146,1,9968],["2021-10-11",10146,11,9979],["2021-10-12",10146,16,9995],["2021-10-13",10146,20,10015],["2021-10-14",10146,6,10021],["2021-10-15",10146,20,10041],["2021-10-16",10146,8,10049],["2021-10-17",10146,1,10050],["2021-10-18",10146,15,10065],["2021-10-19",10146,9,10074],["2021-10-20",10146,16,10090],["2021-10-21",10146,6,10096],["2021-10-22",10146,17,10113],["2021-10-23",10146,3,10116],["2021-10-24",10146,3,10119],["2021-10-25",10146,29,10148],["2021-10-26",10146,14,10162],["2021-10-27",10146,68,10230],["2021-10-28",10146,36,10266],["2021-10-29",10146,52,10318],["2021-10-30",10146,1,10319],["2021-11-01",10146,50,10369],["2021-11-02",10146,82,10451],["2021-11-03",10146,75,10526],["2021-11-04",10146,55,10581],["2021-11-05",10146,46,10627],["2021-11-06",10146,7,10634],["2021-11-07",10146,1,10635],["2021-11-08",10146,63,10698],["2021-11-09",10146,36,10734],["2021-11-10",10146,76,10810],["2021-11-11",10146,22,10832],["2021-11-12",10146,31,10863],["2021-11-13",10146,15,10878],["2021-11-14",10146,1,10879],["2021-11-15",10146,50,10929],["2021-11-16",10146,57,10986],["2021-11-17",10146,78,11064],["2021-11-18",10146,48,11112],["2021-11-19",10146,37,11149],["2021-11-20",10146,5,11154],["2021-11-21",10146,1,11155],["2021-11-22",10146,36,11191],["2021-11-23",10146,41,11232],["2021-11-24",10146,29,11261],["2021-11-26",10146,7,11268],["2021-11-27",10146,1,11269],["2021-11-28",10146,2,11271],["2021-11-29",10146,35,11306],["2021-11-30",10146,40,11346],["2021-12-01",10146,49,11395],["2021-12-02",10146,38,11433],["2021-12-03",10146,27,11460],["2021-12-04",10146,2,11462],["2021-12-06",10146,47,11509],["2021-12-07",10146,36,11545],["2021-12-08",10146,35,11580],["2021-12-09",10146,21,11601],["2021-12-10",10146,33,11634],["2021-12-11",10146,2,11636],["2021-12-13",10146,27,11663],["2021-12-14",10146,27,11690],["2021-12-15",10146,29,11719],["2021-12-16",10146,16,11735],["2021-12-17",10146,13,11748],["2021-12-19",10146,1,11749],["2021-12-20",10146,34,11783],["2021-12-21",10146,25,11808],["2021-12-22",10146,24,11832],["2021-12-23",10146,8,11840],["2021-12-24",10146,6,11846],["2021-12-26",10146,2,11848],["2021-12-27",10146,17,11865],["2021-12-28",10146,19,11884],["2021-12-29",10146,41,11925],["2021-12-30",10146,26,11951],["2021-12-31",10146,11,11962],["2022-01-01",10146,3,11965],["2022-01-02",10146,3,11968]]} \ No newline at end of file diff --git a/public/data/overall/vaccinations/by-county/Echols.json b/public/data/overall/vaccinations/by-county/Echols.json new file mode 100644 index 000000000..b688a1fa3 --- /dev/null +++ b/public/data/overall/vaccinations/by-county/Echols.json @@ -0,0 +1 @@ +{"segment":{"county":"Echols"},"headers":["report_date","population","vaccinations","total_vaccinations"],"rows":[["2020-12-21",3969,1,1],["2020-12-28",3969,1,2],["2020-12-29",3969,6,8],["2020-12-30",3969,1,9],["2021-01-04",3969,1,10],["2021-01-06",3969,11,21],["2021-01-07",3969,1,22],["2021-01-08",3969,3,25],["2021-01-09",3969,1,26],["2021-01-11",3969,17,43],["2021-01-12",3969,10,53],["2021-01-13",3969,11,64],["2021-01-14",3969,16,80],["2021-01-15",3969,8,88],["2021-01-16",3969,1,89],["2021-01-18",3969,23,112],["2021-01-19",3969,10,122],["2021-01-20",3969,16,138],["2021-01-21",3969,20,158],["2021-01-22",3969,10,168],["2021-01-25",3969,9,177],["2021-01-26",3969,13,190],["2021-01-27",3969,11,201],["2021-01-28",3969,18,219],["2021-01-29",3969,12,231],["2021-01-30",3969,1,232],["2021-02-01",3969,6,238],["2021-02-02",3969,9,247],["2021-02-03",3969,18,265],["2021-02-04",3969,32,297],["2021-02-05",3969,3,300],["2021-02-06",3969,1,301],["2021-02-08",3969,18,319],["2021-02-09",3969,10,329],["2021-02-10",3969,13,342],["2021-02-11",3969,15,357],["2021-02-12",3969,12,369],["2021-02-15",3969,28,397],["2021-02-16",3969,8,405],["2021-02-17",3969,17,422],["2021-02-18",3969,26,448],["2021-02-19",3969,9,457],["2021-02-22",3969,11,468],["2021-02-23",3969,9,477],["2021-02-24",3969,16,493],["2021-02-25",3969,20,513],["2021-02-26",3969,11,524],["2021-03-01",3969,2,526],["2021-03-02",3969,4,530],["2021-03-03",3969,28,558],["2021-03-04",3969,36,594],["2021-03-05",3969,7,601],["2021-03-08",3969,19,620],["2021-03-09",3969,5,625],["2021-03-10",3969,6,631],["2021-03-11",3969,12,643],["2021-03-12",3969,15,658],["2021-03-13",3969,2,660],["2021-03-14",3969,1,661],["2021-03-15",3969,13,674],["2021-03-16",3969,8,682],["2021-03-17",3969,21,703],["2021-03-18",3969,15,718],["2021-03-19",3969,12,730],["2021-03-20",3969,1,731],["2021-03-22",3969,4,735],["2021-03-23",3969,18,753],["2021-03-24",3969,9,762],["2021-03-25",3969,12,774],["2021-03-26",3969,16,790],["2021-03-27",3969,2,792],["2021-03-28",3969,1,793],["2021-03-29",3969,10,803],["2021-03-30",3969,17,820],["2021-03-31",3969,17,837],["2021-04-01",3969,22,859],["2021-04-02",3969,8,867],["2021-04-03",3969,6,873],["2021-04-05",3969,27,900],["2021-04-06",3969,5,905],["2021-04-07",3969,13,918],["2021-04-08",3969,18,936],["2021-04-09",3969,32,968],["2021-04-12",3969,19,987],["2021-04-13",3969,18,1005],["2021-04-14",3969,15,1020],["2021-04-15",3969,24,1044],["2021-04-16",3969,7,1051],["2021-04-17",3969,1,1052],["2021-04-19",3969,16,1068],["2021-04-20",3969,15,1083],["2021-04-21",3969,11,1094],["2021-04-22",3969,12,1106],["2021-04-23",3969,132,1238],["2021-04-25",3969,1,1239],["2021-04-26",3969,15,1254],["2021-04-27",3969,3,1257],["2021-04-28",3969,8,1265],["2021-04-29",3969,12,1277],["2021-04-30",3969,14,1291],["2021-05-01",3969,2,1293],["2021-05-03",3969,2,1295],["2021-05-04",3969,3,1298],["2021-05-05",3969,11,1309],["2021-05-06",3969,11,1320],["2021-05-07",3969,38,1358],["2021-05-10",3969,1,1359],["2021-05-11",3969,3,1362],["2021-05-12",3969,16,1378],["2021-05-13",3969,12,1390],["2021-05-14",3969,3,1393],["2021-05-15",3969,1,1394],["2021-05-17",3969,4,1398],["2021-05-18",3969,2,1400],["2021-05-19",3969,17,1417],["2021-05-20",3969,7,1424],["2021-05-21",3969,121,1545],["2021-05-22",3969,1,1546],["2021-05-24",3969,4,1550],["2021-05-25",3969,1,1551],["2021-05-26",3969,19,1570],["2021-05-27",3969,11,1581],["2021-05-28",3969,3,1584],["2021-06-01",3969,5,1589],["2021-06-02",3969,5,1594],["2021-06-03",3969,7,1601],["2021-06-04",3969,6,1607],["2021-06-07",3969,5,1612],["2021-06-08",3969,2,1614],["2021-06-09",3969,2,1616],["2021-06-11",3969,3,1619],["2021-06-12",3969,1,1620],["2021-06-14",3969,1,1621],["2021-06-16",3969,4,1625],["2021-06-18",3969,4,1629],["2021-06-19",3969,1,1630],["2021-06-20",3969,2,1632],["2021-06-21",3969,2,1634],["2021-06-22",3969,5,1639],["2021-06-23",3969,8,1647],["2021-06-24",3969,12,1659],["2021-06-25",3969,5,1664],["2021-06-28",3969,4,1668],["2021-06-29",3969,2,1670],["2021-06-30",3969,6,1676],["2021-07-01",3969,4,1680],["2021-07-02",3969,9,1689],["2021-07-03",3969,3,1692],["2021-07-05",3969,1,1693],["2021-07-06",3969,3,1696],["2021-07-08",3969,4,1700],["2021-07-09",3969,4,1704],["2021-07-10",3969,1,1705],["2021-07-11",3969,1,1706],["2021-07-13",3969,1,1707],["2021-07-14",3969,6,1713],["2021-07-15",3969,11,1724],["2021-07-16",3969,7,1731],["2021-07-17",3969,1,1732],["2021-07-18",3969,1,1733],["2021-07-19",3969,1,1734],["2021-07-20",3969,4,1738],["2021-07-21",3969,7,1745],["2021-07-22",3969,12,1757],["2021-07-23",3969,9,1766],["2021-07-24",3969,5,1771],["2021-07-27",3969,7,1778],["2021-07-28",3969,19,1797],["2021-07-29",3969,11,1808],["2021-07-30",3969,24,1832],["2021-07-31",3969,4,1836],["2021-08-01",3969,1,1837],["2021-08-02",3969,4,1841],["2021-08-03",3969,10,1851],["2021-08-04",3969,8,1859],["2021-08-05",3969,15,1874],["2021-08-06",3969,13,1887],["2021-08-07",3969,12,1899],["2021-08-09",3969,9,1908],["2021-08-10",3969,9,1917],["2021-08-11",3969,20,1937],["2021-08-12",3969,12,1949],["2021-08-13",3969,5,1954],["2021-08-14",3969,1,1955],["2021-08-15",3969,2,1957],["2021-08-16",3969,5,1962],["2021-08-17",3969,6,1968],["2021-08-18",3969,19,1987],["2021-08-19",3969,21,2008],["2021-08-20",3969,15,2023],["2021-08-21",3969,2,2025],["2021-08-23",3969,5,2030],["2021-08-24",3969,5,2035],["2021-08-25",3969,21,2056],["2021-08-26",3969,17,2073],["2021-08-27",3969,24,2097],["2021-08-28",3969,13,2110],["2021-08-29",3969,1,2111],["2021-08-30",3969,5,2116],["2021-08-31",3969,16,2132],["2021-09-01",3969,9,2141],["2021-09-02",3969,18,2159],["2021-09-03",3969,9,2168],["2021-09-04",3969,4,2172],["2021-09-05",3969,1,2173],["2021-09-07",3969,5,2178],["2021-09-08",3969,21,2199],["2021-09-09",3969,15,2214],["2021-09-10",3969,18,2232],["2021-09-13",3969,2,2234],["2021-09-14",3969,4,2238],["2021-09-15",3969,12,2250],["2021-09-16",3969,14,2264],["2021-09-17",3969,7,2271],["2021-09-18",3969,1,2272],["2021-09-20",3969,4,2276],["2021-09-21",3969,1,2277],["2021-09-22",3969,17,2294],["2021-09-23",3969,13,2307],["2021-09-24",3969,7,2314],["2021-09-25",3969,3,2317],["2021-09-26",3969,1,2318],["2021-09-28",3969,3,2321],["2021-09-29",3969,8,2329],["2021-09-30",3969,4,2333],["2021-10-01",3969,7,2340],["2021-10-02",3969,2,2342],["2021-10-03",3969,1,2343],["2021-10-04",3969,1,2344],["2021-10-05",3969,5,2349],["2021-10-06",3969,7,2356],["2021-10-09",3969,1,2357],["2021-10-11",3969,1,2358],["2021-10-12",3969,4,2362],["2021-10-13",3969,13,2375],["2021-10-14",3969,10,2385],["2021-10-15",3969,1,2386],["2021-10-17",3969,1,2387],["2021-10-19",3969,3,2390],["2021-10-20",3969,9,2399],["2021-10-21",3969,3,2402],["2021-10-26",3969,5,2407],["2021-10-27",3969,14,2421],["2021-10-28",3969,15,2436],["2021-10-29",3969,1,2437],["2021-10-31",3969,1,2438],["2021-11-01",3969,2,2440],["2021-11-02",3969,1,2441],["2021-11-03",3969,8,2449],["2021-11-04",3969,17,2466],["2021-11-05",3969,13,2479],["2021-11-08",3969,4,2483],["2021-11-09",3969,16,2499],["2021-11-10",3969,16,2515],["2021-11-11",3969,2,2517],["2021-11-12",3969,5,2522],["2021-11-14",3969,1,2523],["2021-11-15",3969,8,2531],["2021-11-16",3969,7,2538],["2021-11-17",3969,16,2554],["2021-11-19",3969,7,2561],["2021-11-21",3969,1,2562],["2021-11-22",3969,3,2565],["2021-11-23",3969,2,2567],["2021-11-24",3969,9,2576],["2021-11-27",3969,2,2578],["2021-11-29",3969,16,2594],["2021-11-30",3969,2,2596],["2021-12-01",3969,24,2620],["2021-12-02",3969,17,2637],["2021-12-03",3969,5,2642],["2021-12-04",3969,3,2645],["2021-12-05",3969,2,2647],["2021-12-06",3969,21,2668],["2021-12-07",3969,5,2673],["2021-12-08",3969,20,2693],["2021-12-09",3969,9,2702],["2021-12-10",3969,7,2709],["2021-12-12",3969,3,2712],["2021-12-13",3969,15,2727],["2021-12-14",3969,10,2737],["2021-12-15",3969,13,2750],["2021-12-16",3969,2,2752],["2021-12-17",3969,5,2757],["2021-12-20",3969,16,2773],["2021-12-21",3969,1,2774],["2021-12-22",3969,12,2786],["2021-12-23",3969,2,2788],["2021-12-27",3969,2,2790],["2021-12-28",3969,2,2792],["2021-12-29",3969,2,2794],["2021-12-30",3969,11,2805],["2021-12-31",3969,2,2807],["2022-01-01",3969,1,2808],["2022-01-03",3969,2,2810]]} \ No newline at end of file diff --git a/public/data/overall/vaccinations/by-county/Effingham.json b/public/data/overall/vaccinations/by-county/Effingham.json new file mode 100644 index 000000000..e56c810ee --- /dev/null +++ b/public/data/overall/vaccinations/by-county/Effingham.json @@ -0,0 +1 @@ +{"segment":{"county":"Effingham"},"headers":["report_date","population","vaccinations","total_vaccinations"],"rows":[["2020-12-15",64026,5,5],["2020-12-16",64026,48,53],["2020-12-17",64026,19,72],["2020-12-18",64026,84,156],["2020-12-19",64026,13,169],["2020-12-20",64026,4,173],["2020-12-21",64026,96,269],["2020-12-22",64026,53,322],["2020-12-23",64026,64,386],["2020-12-24",64026,12,398],["2020-12-27",64026,8,406],["2020-12-28",64026,64,470],["2020-12-29",64026,39,509],["2020-12-30",64026,94,603],["2020-12-31",64026,16,619],["2021-01-01",64026,11,630],["2021-01-02",64026,5,635],["2021-01-03",64026,3,638],["2021-01-04",64026,36,674],["2021-01-05",64026,71,745],["2021-01-06",64026,159,904],["2021-01-07",64026,142,1046],["2021-01-08",64026,86,1132],["2021-01-09",64026,25,1157],["2021-01-10",64026,4,1161],["2021-01-11",64026,220,1381],["2021-01-12",64026,111,1492],["2021-01-13",64026,112,1604],["2021-01-14",64026,291,1895],["2021-01-15",64026,94,1989],["2021-01-16",64026,57,2046],["2021-01-17",64026,37,2083],["2021-01-18",64026,261,2344],["2021-01-19",64026,149,2493],["2021-01-20",64026,151,2644],["2021-01-21",64026,242,2886],["2021-01-22",64026,92,2978],["2021-01-23",64026,49,3027],["2021-01-24",64026,29,3056],["2021-01-25",64026,234,3290],["2021-01-26",64026,94,3384],["2021-01-27",64026,222,3606],["2021-01-28",64026,208,3814],["2021-01-29",64026,216,4030],["2021-01-30",64026,250,4280],["2021-01-31",64026,35,4315],["2021-02-01",64026,300,4615],["2021-02-02",64026,261,4876],["2021-02-03",64026,146,5022],["2021-02-04",64026,220,5242],["2021-02-05",64026,204,5446],["2021-02-06",64026,199,5645],["2021-02-07",64026,122,5767],["2021-02-08",64026,221,5988],["2021-02-09",64026,214,6202],["2021-02-10",64026,88,6290],["2021-02-11",64026,391,6681],["2021-02-12",64026,306,6987],["2021-02-13",64026,67,7054],["2021-02-14",64026,29,7083],["2021-02-15",64026,329,7412],["2021-02-16",64026,263,7675],["2021-02-17",64026,169,7844],["2021-02-18",64026,341,8185],["2021-02-19",64026,196,8381],["2021-02-20",64026,245,8626],["2021-02-21",64026,39,8665],["2021-02-22",64026,221,8886],["2021-02-23",64026,283,9169],["2021-02-24",64026,140,9309],["2021-02-25",64026,289,9598],["2021-02-26",64026,184,9782],["2021-02-27",64026,216,9998],["2021-02-28",64026,169,10167],["2021-03-01",64026,245,10412],["2021-03-02",64026,305,10717],["2021-03-03",64026,162,10879],["2021-03-04",64026,353,11232],["2021-03-05",64026,200,11432],["2021-03-06",64026,61,11493],["2021-03-07",64026,211,11704],["2021-03-08",64026,265,11969],["2021-03-09",64026,264,12233],["2021-03-10",64026,166,12399],["2021-03-11",64026,407,12806],["2021-03-12",64026,334,13140],["2021-03-13",64026,330,13470],["2021-03-14",64026,56,13526],["2021-03-15",64026,387,13913],["2021-03-16",64026,369,14282],["2021-03-17",64026,268,14550],["2021-03-18",64026,643,15193],["2021-03-19",64026,390,15583],["2021-03-20",64026,180,15763],["2021-03-21",64026,219,15982],["2021-03-22",64026,317,16299],["2021-03-23",64026,570,16869],["2021-03-24",64026,431,17300],["2021-03-25",64026,606,17906],["2021-03-26",64026,448,18354],["2021-03-27",64026,208,18562],["2021-03-28",64026,248,18810],["2021-03-29",64026,314,19124],["2021-03-30",64026,452,19576],["2021-03-31",64026,344,19920],["2021-04-01",64026,544,20464],["2021-04-02",64026,364,20828],["2021-04-03",64026,95,20923],["2021-04-04",64026,62,20985],["2021-04-05",64026,307,21292],["2021-04-06",64026,385,21677],["2021-04-07",64026,406,22083],["2021-04-08",64026,514,22597],["2021-04-09",64026,370,22967],["2021-04-10",64026,309,23276],["2021-04-11",64026,178,23454],["2021-04-12",64026,319,23773],["2021-04-13",64026,412,24185],["2021-04-14",64026,352,24537],["2021-04-15",64026,541,25078],["2021-04-16",64026,579,25657],["2021-04-17",64026,223,25880],["2021-04-18",64026,38,25918],["2021-04-19",64026,200,26118],["2021-04-20",64026,376,26494],["2021-04-21",64026,316,26810],["2021-04-22",64026,506,27316],["2021-04-23",64026,370,27686],["2021-04-24",64026,154,27840],["2021-04-25",64026,35,27875],["2021-04-26",64026,162,28037],["2021-04-27",64026,329,28366],["2021-04-28",64026,271,28637],["2021-04-29",64026,406,29043],["2021-04-30",64026,453,29496],["2021-05-01",64026,225,29721],["2021-05-02",64026,41,29762],["2021-05-03",64026,152,29914],["2021-05-04",64026,263,30177],["2021-05-05",64026,208,30385],["2021-05-06",64026,322,30707],["2021-05-07",64026,243,30950],["2021-05-08",64026,103,31053],["2021-05-09",64026,16,31069],["2021-05-10",64026,77,31146],["2021-05-11",64026,180,31326],["2021-05-12",64026,139,31465],["2021-05-13",64026,235,31700],["2021-05-14",64026,168,31868],["2021-05-15",64026,93,31961],["2021-05-16",64026,50,32011],["2021-05-17",64026,109,32120],["2021-05-18",64026,177,32297],["2021-05-19",64026,137,32434],["2021-05-20",64026,211,32645],["2021-05-21",64026,168,32813],["2021-05-22",64026,89,32902],["2021-05-23",64026,44,32946],["2021-05-24",64026,78,33024],["2021-05-25",64026,119,33143],["2021-05-26",64026,109,33252],["2021-05-27",64026,146,33398],["2021-05-28",64026,118,33516],["2021-05-29",64026,49,33565],["2021-05-30",64026,28,33593],["2021-05-31",64026,13,33606],["2021-06-01",64026,119,33725],["2021-06-02",64026,90,33815],["2021-06-03",64026,145,33960],["2021-06-04",64026,122,34082],["2021-06-05",64026,78,34160],["2021-06-06",64026,41,34201],["2021-06-07",64026,104,34305],["2021-06-08",64026,92,34397],["2021-06-09",64026,90,34487],["2021-06-10",64026,111,34598],["2021-06-11",64026,117,34715],["2021-06-12",64026,76,34791],["2021-06-13",64026,33,34824],["2021-06-14",64026,79,34903],["2021-06-15",64026,99,35002],["2021-06-16",64026,73,35075],["2021-06-17",64026,120,35195],["2021-06-18",64026,107,35302],["2021-06-19",64026,47,35349],["2021-06-20",64026,14,35363],["2021-06-21",64026,38,35401],["2021-06-22",64026,79,35480],["2021-06-23",64026,77,35557],["2021-06-24",64026,81,35638],["2021-06-25",64026,95,35733],["2021-06-26",64026,48,35781],["2021-06-27",64026,20,35801],["2021-06-28",64026,47,35848],["2021-06-29",64026,66,35914],["2021-06-30",64026,90,36004],["2021-07-01",64026,65,36069],["2021-07-02",64026,72,36141],["2021-07-03",64026,26,36167],["2021-07-04",64026,3,36170],["2021-07-05",64026,63,36233],["2021-07-06",64026,52,36285],["2021-07-07",64026,48,36333],["2021-07-08",64026,61,36394],["2021-07-09",64026,59,36453],["2021-07-10",64026,41,36494],["2021-07-11",64026,19,36513],["2021-07-12",64026,56,36569],["2021-07-13",64026,50,36619],["2021-07-14",64026,58,36677],["2021-07-15",64026,68,36745],["2021-07-16",64026,77,36822],["2021-07-17",64026,56,36878],["2021-07-18",64026,32,36910],["2021-07-19",64026,81,36991],["2021-07-20",64026,76,37067],["2021-07-21",64026,88,37155],["2021-07-22",64026,89,37244],["2021-07-23",64026,111,37355],["2021-07-24",64026,65,37420],["2021-07-25",64026,49,37469],["2021-07-26",64026,128,37597],["2021-07-27",64026,116,37713],["2021-07-28",64026,126,37839],["2021-07-29",64026,123,37962],["2021-07-30",64026,161,38123],["2021-07-31",64026,92,38215],["2021-08-01",64026,52,38267],["2021-08-02",64026,106,38373],["2021-08-03",64026,106,38479],["2021-08-04",64026,127,38606],["2021-08-05",64026,121,38727],["2021-08-06",64026,170,38897],["2021-08-07",64026,106,39003],["2021-08-08",64026,67,39070],["2021-08-09",64026,129,39199],["2021-08-10",64026,161,39360],["2021-08-11",64026,168,39528],["2021-08-12",64026,176,39704],["2021-08-13",64026,219,39923],["2021-08-14",64026,138,40061],["2021-08-15",64026,92,40153],["2021-08-16",64026,156,40309],["2021-08-17",64026,153,40462],["2021-08-18",64026,146,40608],["2021-08-19",64026,212,40820],["2021-08-20",64026,258,41078],["2021-08-21",64026,108,41186],["2021-08-22",64026,69,41255],["2021-08-23",64026,158,41413],["2021-08-24",64026,166,41579],["2021-08-25",64026,187,41766],["2021-08-26",64026,240,42006],["2021-08-27",64026,254,42260],["2021-08-28",64026,144,42404],["2021-08-29",64026,77,42481],["2021-08-30",64026,142,42623],["2021-08-31",64026,154,42777],["2021-09-01",64026,203,42980],["2021-09-02",64026,218,43198],["2021-09-03",64026,267,43465],["2021-09-04",64026,118,43583],["2021-09-05",64026,59,43642],["2021-09-06",64026,52,43694],["2021-09-07",64026,155,43849],["2021-09-08",64026,138,43987],["2021-09-09",64026,221,44208],["2021-09-10",64026,222,44430],["2021-09-11",64026,107,44537],["2021-09-12",64026,69,44606],["2021-09-13",64026,128,44734],["2021-09-14",64026,135,44869],["2021-09-15",64026,118,44987],["2021-09-16",64026,167,45154],["2021-09-17",64026,213,45367],["2021-09-18",64026,97,45464],["2021-09-19",64026,67,45531],["2021-09-20",64026,110,45641],["2021-09-21",64026,120,45761],["2021-09-22",64026,146,45907],["2021-09-23",64026,155,46062],["2021-09-24",64026,205,46267],["2021-09-25",64026,67,46334],["2021-09-26",64026,49,46383],["2021-09-27",64026,129,46512],["2021-09-28",64026,115,46627],["2021-09-29",64026,147,46774],["2021-09-30",64026,194,46968],["2021-10-01",64026,223,47191],["2021-10-02",64026,70,47261],["2021-10-03",64026,56,47317],["2021-10-04",64026,97,47414],["2021-10-05",64026,93,47507],["2021-10-06",64026,120,47627],["2021-10-07",64026,145,47772],["2021-10-08",64026,178,47950],["2021-10-09",64026,53,48003],["2021-10-10",64026,54,48057],["2021-10-11",64026,85,48142],["2021-10-12",64026,85,48227],["2021-10-13",64026,124,48351],["2021-10-14",64026,95,48446],["2021-10-15",64026,139,48585],["2021-10-16",64026,34,48619],["2021-10-17",64026,23,48642],["2021-10-18",64026,53,48695],["2021-10-19",64026,61,48756],["2021-10-20",64026,60,48816],["2021-10-21",64026,88,48904],["2021-10-22",64026,148,49052],["2021-10-23",64026,68,49120],["2021-10-24",64026,34,49154],["2021-10-25",64026,107,49261],["2021-10-26",64026,88,49349],["2021-10-27",64026,116,49465],["2021-10-28",64026,197,49662],["2021-10-29",64026,208,49870],["2021-10-30",64026,39,49909],["2021-10-31",64026,27,49936],["2021-11-01",64026,81,50017],["2021-11-02",64026,94,50111],["2021-11-03",64026,99,50210],["2021-11-04",64026,251,50461],["2021-11-05",64026,202,50663],["2021-11-06",64026,75,50738],["2021-11-07",64026,35,50773],["2021-11-08",64026,109,50882],["2021-11-09",64026,94,50976],["2021-11-10",64026,117,51093],["2021-11-11",64026,68,51161],["2021-11-12",64026,166,51327],["2021-11-13",64026,83,51410],["2021-11-14",64026,26,51436],["2021-11-15",64026,120,51556],["2021-11-16",64026,74,51630],["2021-11-17",64026,102,51732],["2021-11-18",64026,233,51965],["2021-11-19",64026,244,52209],["2021-11-20",64026,65,52274],["2021-11-21",64026,41,52315],["2021-11-22",64026,121,52436],["2021-11-23",64026,130,52566],["2021-11-24",64026,69,52635],["2021-11-26",64026,89,52724],["2021-11-27",64026,67,52791],["2021-11-28",64026,46,52837],["2021-11-29",64026,124,52961],["2021-11-30",64026,135,53096],["2021-12-01",64026,169,53265],["2021-12-02",64026,298,53563],["2021-12-03",64026,349,53912],["2021-12-04",64026,100,54012],["2021-12-05",64026,63,54075],["2021-12-06",64026,142,54217],["2021-12-07",64026,109,54326],["2021-12-08",64026,120,54446],["2021-12-09",64026,224,54670],["2021-12-10",64026,245,54915],["2021-12-11",64026,63,54978],["2021-12-12",64026,47,55025],["2021-12-13",64026,129,55154],["2021-12-14",64026,111,55265],["2021-12-15",64026,126,55391],["2021-12-16",64026,158,55549],["2021-12-17",64026,178,55727],["2021-12-18",64026,68,55795],["2021-12-19",64026,52,55847],["2021-12-20",64026,133,55980],["2021-12-21",64026,153,56133],["2021-12-22",64026,146,56279],["2021-12-23",64026,106,56385],["2021-12-24",64026,37,56422],["2021-12-26",64026,45,56467],["2021-12-27",64026,135,56602],["2021-12-28",64026,116,56718],["2021-12-29",64026,125,56843],["2021-12-30",64026,183,57026],["2021-12-31",64026,68,57094],["2022-01-01",64026,13,57107],["2022-01-02",64026,49,57156],["2022-01-03",64026,49,57205]]} \ No newline at end of file diff --git a/public/data/overall/vaccinations/by-county/Elbert.json b/public/data/overall/vaccinations/by-county/Elbert.json new file mode 100644 index 000000000..e6f3b34e9 --- /dev/null +++ b/public/data/overall/vaccinations/by-county/Elbert.json @@ -0,0 +1 @@ +{"segment":{"county":"Elbert"},"headers":["report_date","population","vaccinations","total_vaccinations"],"rows":[["2020-12-17",18945,7,7],["2020-12-18",18945,21,28],["2020-12-21",18945,1,29],["2020-12-22",18945,8,37],["2020-12-23",18945,12,49],["2020-12-24",18945,3,52],["2020-12-27",18945,1,53],["2020-12-28",18945,44,97],["2020-12-29",18945,12,109],["2020-12-30",18945,10,119],["2020-12-31",18945,1,120],["2021-01-01",18945,2,122],["2021-01-02",18945,1,123],["2021-01-03",18945,25,148],["2021-01-04",18945,71,219],["2021-01-05",18945,66,285],["2021-01-06",18945,59,344],["2021-01-07",18945,62,406],["2021-01-08",18945,68,474],["2021-01-11",18945,86,560],["2021-01-12",18945,73,633],["2021-01-13",18945,91,724],["2021-01-14",18945,122,846],["2021-01-15",18945,95,941],["2021-01-16",18945,11,952],["2021-01-17",18945,5,957],["2021-01-18",18945,113,1070],["2021-01-19",18945,99,1169],["2021-01-20",18945,166,1335],["2021-01-21",18945,157,1492],["2021-01-22",18945,75,1567],["2021-01-23",18945,23,1590],["2021-01-24",18945,32,1622],["2021-01-25",18945,105,1727],["2021-01-26",18945,83,1810],["2021-01-27",18945,176,1986],["2021-01-28",18945,107,2093],["2021-01-29",18945,108,2201],["2021-01-30",18945,3,2204],["2021-01-31",18945,3,2207],["2021-02-01",18945,110,2317],["2021-02-02",18945,170,2487],["2021-02-03",18945,229,2716],["2021-02-04",18945,255,2971],["2021-02-05",18945,167,3138],["2021-02-06",18945,19,3157],["2021-02-07",18945,19,3176],["2021-02-08",18945,102,3278],["2021-02-09",18945,128,3406],["2021-02-10",18945,182,3588],["2021-02-11",18945,179,3767],["2021-02-12",18945,180,3947],["2021-02-13",18945,37,3984],["2021-02-14",18945,13,3997],["2021-02-15",18945,43,4040],["2021-02-16",18945,103,4143],["2021-02-17",18945,115,4258],["2021-02-18",18945,127,4385],["2021-02-19",18945,87,4472],["2021-02-20",18945,5,4477],["2021-02-21",18945,1,4478],["2021-02-22",18945,32,4510],["2021-02-23",18945,166,4676],["2021-02-24",18945,163,4839],["2021-02-25",18945,92,4931],["2021-02-26",18945,102,5033],["2021-02-27",18945,21,5054],["2021-02-28",18945,7,5061],["2021-03-01",18945,101,5162],["2021-03-02",18945,183,5345],["2021-03-03",18945,219,5564],["2021-03-04",18945,131,5695],["2021-03-05",18945,134,5829],["2021-03-06",18945,28,5857],["2021-03-07",18945,24,5881],["2021-03-08",18945,68,5949],["2021-03-09",18945,114,6063],["2021-03-10",18945,92,6155],["2021-03-11",18945,114,6269],["2021-03-12",18945,144,6413],["2021-03-13",18945,32,6445],["2021-03-14",18945,32,6477],["2021-03-15",18945,36,6513],["2021-03-16",18945,177,6690],["2021-03-17",18945,152,6842],["2021-03-18",18945,168,7010],["2021-03-19",18945,174,7184],["2021-03-20",18945,20,7204],["2021-03-21",18945,20,7224],["2021-03-22",18945,109,7333],["2021-03-23",18945,142,7475],["2021-03-24",18945,96,7571],["2021-03-25",18945,93,7664],["2021-03-26",18945,134,7798],["2021-03-27",18945,13,7811],["2021-03-28",18945,24,7835],["2021-03-29",18945,106,7941],["2021-03-30",18945,187,8128],["2021-03-31",18945,109,8237],["2021-04-01",18945,129,8366],["2021-04-02",18945,86,8452],["2021-04-03",18945,30,8482],["2021-04-04",18945,31,8513],["2021-04-05",18945,82,8595],["2021-04-06",18945,166,8761],["2021-04-07",18945,160,8921],["2021-04-08",18945,225,9146],["2021-04-09",18945,144,9290],["2021-04-10",18945,32,9322],["2021-04-11",18945,22,9344],["2021-04-12",18945,69,9413],["2021-04-13",18945,144,9557],["2021-04-14",18945,89,9646],["2021-04-15",18945,114,9760],["2021-04-16",18945,133,9893],["2021-04-17",18945,33,9926],["2021-04-18",18945,10,9936],["2021-04-19",18945,71,10007],["2021-04-20",18945,88,10095],["2021-04-21",18945,78,10173],["2021-04-22",18945,125,10298],["2021-04-23",18945,105,10403],["2021-04-24",18945,28,10431],["2021-04-25",18945,7,10438],["2021-04-26",18945,96,10534],["2021-04-27",18945,159,10693],["2021-04-28",18945,76,10769],["2021-04-29",18945,116,10885],["2021-04-30",18945,75,10960],["2021-05-01",18945,24,10984],["2021-05-02",18945,13,10997],["2021-05-03",18945,33,11030],["2021-05-04",18945,71,11101],["2021-05-05",18945,68,11169],["2021-05-06",18945,100,11269],["2021-05-07",18945,40,11309],["2021-05-08",18945,25,11334],["2021-05-09",18945,6,11340],["2021-05-10",18945,33,11373],["2021-05-11",18945,32,11405],["2021-05-12",18945,40,11445],["2021-05-13",18945,38,11483],["2021-05-14",18945,45,11528],["2021-05-15",18945,20,11548],["2021-05-16",18945,5,11553],["2021-05-17",18945,60,11613],["2021-05-18",18945,68,11681],["2021-05-19",18945,38,11719],["2021-05-20",18945,77,11796],["2021-05-21",18945,49,11845],["2021-05-22",18945,13,11858],["2021-05-23",18945,5,11863],["2021-05-24",18945,21,11884],["2021-05-25",18945,45,11929],["2021-05-26",18945,29,11958],["2021-05-27",18945,42,12000],["2021-05-28",18945,25,12025],["2021-05-29",18945,12,12037],["2021-05-30",18945,2,12039],["2021-05-31",18945,4,12043],["2021-06-01",18945,58,12101],["2021-06-02",18945,33,12134],["2021-06-03",18945,20,12154],["2021-06-04",18945,24,12178],["2021-06-05",18945,15,12193],["2021-06-06",18945,10,12203],["2021-06-07",18945,17,12220],["2021-06-08",18945,56,12276],["2021-06-09",18945,21,12297],["2021-06-10",18945,25,12322],["2021-06-11",18945,32,12354],["2021-06-12",18945,8,12362],["2021-06-13",18945,2,12364],["2021-06-14",18945,20,12384],["2021-06-15",18945,31,12415],["2021-06-16",18945,16,12431],["2021-06-17",18945,15,12446],["2021-06-18",18945,29,12475],["2021-06-19",18945,11,12486],["2021-06-20",18945,2,12488],["2021-06-21",18945,14,12502],["2021-06-22",18945,33,12535],["2021-06-23",18945,12,12547],["2021-06-24",18945,16,12563],["2021-06-25",18945,9,12572],["2021-06-26",18945,10,12582],["2021-06-27",18945,6,12588],["2021-06-28",18945,14,12602],["2021-06-29",18945,40,12642],["2021-06-30",18945,18,12660],["2021-07-01",18945,13,12673],["2021-07-02",18945,7,12680],["2021-07-03",18945,6,12686],["2021-07-04",18945,1,12687],["2021-07-05",18945,10,12697],["2021-07-06",18945,24,12721],["2021-07-07",18945,21,12742],["2021-07-08",18945,17,12759],["2021-07-09",18945,31,12790],["2021-07-10",18945,12,12802],["2021-07-11",18945,4,12806],["2021-07-12",18945,21,12827],["2021-07-13",18945,28,12855],["2021-07-14",18945,14,12869],["2021-07-15",18945,20,12889],["2021-07-16",18945,24,12913],["2021-07-17",18945,9,12922],["2021-07-18",18945,4,12926],["2021-07-19",18945,23,12949],["2021-07-20",18945,42,12991],["2021-07-21",18945,21,13012],["2021-07-22",18945,19,13031],["2021-07-23",18945,27,13058],["2021-07-24",18945,12,13070],["2021-07-25",18945,3,13073],["2021-07-26",18945,21,13094],["2021-07-27",18945,35,13129],["2021-07-28",18945,31,13160],["2021-07-29",18945,24,13184],["2021-07-30",18945,39,13223],["2021-07-31",18945,32,13255],["2021-08-01",18945,14,13269],["2021-08-02",18945,45,13314],["2021-08-03",18945,36,13350],["2021-08-04",18945,34,13384],["2021-08-05",18945,32,13416],["2021-08-06",18945,24,13440],["2021-08-07",18945,21,13461],["2021-08-08",18945,98,13559],["2021-08-09",18945,46,13605],["2021-08-10",18945,81,13686],["2021-08-11",18945,26,13712],["2021-08-12",18945,45,13757],["2021-08-13",18945,35,13792],["2021-08-14",18945,27,13819],["2021-08-15",18945,13,13832],["2021-08-16",18945,38,13870],["2021-08-17",18945,56,13926],["2021-08-18",18945,46,13972],["2021-08-19",18945,40,14012],["2021-08-20",18945,50,14062],["2021-08-21",18945,25,14087],["2021-08-22",18945,8,14095],["2021-08-23",18945,60,14155],["2021-08-24",18945,73,14228],["2021-08-25",18945,62,14290],["2021-08-26",18945,58,14348],["2021-08-27",18945,47,14395],["2021-08-28",18945,44,14439],["2021-08-29",18945,10,14449],["2021-08-30",18945,134,14583],["2021-08-31",18945,103,14686],["2021-09-01",18945,74,14760],["2021-09-02",18945,46,14806],["2021-09-03",18945,52,14858],["2021-09-04",18945,21,14879],["2021-09-05",18945,20,14899],["2021-09-06",18945,13,14912],["2021-09-07",18945,65,14977],["2021-09-08",18945,44,15021],["2021-09-09",18945,45,15066],["2021-09-10",18945,49,15115],["2021-09-11",18945,29,15144],["2021-09-12",18945,16,15160],["2021-09-13",18945,54,15214],["2021-09-14",18945,85,15299],["2021-09-15",18945,46,15345],["2021-09-16",18945,44,15389],["2021-09-17",18945,36,15425],["2021-09-18",18945,30,15455],["2021-09-19",18945,6,15461],["2021-09-20",18945,40,15501],["2021-09-21",18945,83,15584],["2021-09-22",18945,40,15624],["2021-09-23",18945,30,15654],["2021-09-24",18945,48,15702],["2021-09-25",18945,18,15720],["2021-09-26",18945,19,15739],["2021-09-27",18945,100,15839],["2021-09-28",18945,96,15935],["2021-09-29",18945,34,15969],["2021-09-30",18945,28,15997],["2021-10-01",18945,47,16044],["2021-10-02",18945,20,16064],["2021-10-03",18945,6,16070],["2021-10-04",18945,33,16103],["2021-10-05",18945,81,16184],["2021-10-06",18945,98,16282],["2021-10-07",18945,42,16324],["2021-10-08",18945,36,16360],["2021-10-09",18945,10,16370],["2021-10-10",18945,9,16379],["2021-10-11",18945,43,16422],["2021-10-12",18945,67,16489],["2021-10-13",18945,41,16530],["2021-10-14",18945,116,16646],["2021-10-15",18945,27,16673],["2021-10-16",18945,12,16685],["2021-10-17",18945,7,16692],["2021-10-18",18945,38,16730],["2021-10-19",18945,84,16814],["2021-10-20",18945,27,16841],["2021-10-21",18945,62,16903],["2021-10-22",18945,19,16922],["2021-10-23",18945,34,16956],["2021-10-24",18945,15,16971],["2021-10-25",18945,50,17021],["2021-10-26",18945,99,17120],["2021-10-27",18945,47,17167],["2021-10-28",18945,50,17217],["2021-10-29",18945,54,17271],["2021-10-30",18945,20,17291],["2021-10-31",18945,10,17301],["2021-11-01",18945,44,17345],["2021-11-02",18945,91,17436],["2021-11-03",18945,44,17480],["2021-11-04",18945,29,17509],["2021-11-05",18945,54,17563],["2021-11-06",18945,13,17576],["2021-11-07",18945,1,17577],["2021-11-08",18945,35,17612],["2021-11-09",18945,70,17682],["2021-11-10",18945,54,17736],["2021-11-11",18945,40,17776],["2021-11-12",18945,34,17810],["2021-11-13",18945,20,17830],["2021-11-14",18945,13,17843],["2021-11-15",18945,24,17867],["2021-11-16",18945,66,17933],["2021-11-17",18945,37,17970],["2021-11-18",18945,36,18006],["2021-11-19",18945,31,18037],["2021-11-20",18945,20,18057],["2021-11-21",18945,12,18069],["2021-11-22",18945,66,18135],["2021-11-23",18945,55,18190],["2021-11-24",18945,41,18231],["2021-11-25",18945,1,18232],["2021-11-26",18945,19,18251],["2021-11-27",18945,11,18262],["2021-11-28",18945,11,18273],["2021-11-29",18945,46,18319],["2021-11-30",18945,114,18433],["2021-12-01",18945,52,18485],["2021-12-02",18945,65,18550],["2021-12-03",18945,55,18605],["2021-12-04",18945,27,18632],["2021-12-05",18945,15,18647],["2021-12-06",18945,43,18690],["2021-12-07",18945,45,18735],["2021-12-08",18945,48,18783],["2021-12-09",18945,30,18813],["2021-12-10",18945,65,18878],["2021-12-11",18945,9,18887],["2021-12-12",18945,5,18892],["2021-12-13",18945,24,18916],["2021-12-14",18945,50,18966],["2021-12-15",18945,29,18995],["2021-12-16",18945,32,19027],["2021-12-17",18945,34,19061],["2021-12-18",18945,10,19071],["2021-12-19",18945,19,19090],["2021-12-20",18945,48,19138],["2021-12-21",18945,42,19180],["2021-12-22",18945,43,19223],["2021-12-23",18945,25,19248],["2021-12-24",18945,10,19258],["2021-12-26",18945,15,19273],["2021-12-27",18945,30,19303],["2021-12-28",18945,68,19371],["2021-12-29",18945,43,19414],["2021-12-30",18945,41,19455],["2021-12-31",18945,33,19488],["2022-01-01",18945,10,19498],["2022-01-02",18945,10,19508],["2022-01-03",18945,12,19520]]} \ No newline at end of file diff --git a/public/data/overall/vaccinations/by-county/Emanuel.json b/public/data/overall/vaccinations/by-county/Emanuel.json new file mode 100644 index 000000000..02c8ba3ea --- /dev/null +++ b/public/data/overall/vaccinations/by-county/Emanuel.json @@ -0,0 +1 @@ +{"segment":{"county":"Emanuel"},"headers":["report_date","population","vaccinations","total_vaccinations"],"rows":[["2020-12-17",22664,1,1],["2020-12-18",22664,3,4],["2020-12-19",22664,2,6],["2020-12-20",22664,3,9],["2020-12-22",22664,9,18],["2020-12-23",22664,8,26],["2020-12-24",22664,4,30],["2020-12-26",22664,2,32],["2020-12-27",22664,4,36],["2020-12-28",22664,45,81],["2020-12-29",22664,18,99],["2020-12-30",22664,14,113],["2020-12-31",22664,31,144],["2021-01-01",22664,1,145],["2021-01-02",22664,1,146],["2021-01-03",22664,1,147],["2021-01-04",22664,21,168],["2021-01-05",22664,71,239],["2021-01-06",22664,38,277],["2021-01-07",22664,111,388],["2021-01-08",22664,45,433],["2021-01-09",22664,35,468],["2021-01-10",22664,3,471],["2021-01-11",22664,19,490],["2021-01-12",22664,22,512],["2021-01-13",22664,320,832],["2021-01-14",22664,63,895],["2021-01-15",22664,34,929],["2021-01-16",22664,9,938],["2021-01-17",22664,9,947],["2021-01-18",22664,15,962],["2021-01-19",22664,281,1243],["2021-01-20",22664,186,1429],["2021-01-21",22664,127,1556],["2021-01-22",22664,74,1630],["2021-01-23",22664,7,1637],["2021-01-24",22664,1,1638],["2021-01-25",22664,50,1688],["2021-01-26",22664,60,1748],["2021-01-27",22664,148,1896],["2021-01-28",22664,145,2041],["2021-01-29",22664,32,2073],["2021-01-30",22664,42,2115],["2021-01-31",22664,3,2118],["2021-02-01",22664,31,2149],["2021-02-02",22664,228,2377],["2021-02-03",22664,153,2530],["2021-02-04",22664,81,2611],["2021-02-05",22664,98,2709],["2021-02-06",22664,15,2724],["2021-02-07",22664,7,2731],["2021-02-08",22664,16,2747],["2021-02-09",22664,136,2883],["2021-02-10",22664,361,3244],["2021-02-11",22664,31,3275],["2021-02-12",22664,61,3336],["2021-02-13",22664,14,3350],["2021-02-14",22664,8,3358],["2021-02-15",22664,29,3387],["2021-02-16",22664,303,3690],["2021-02-17",22664,248,3938],["2021-02-18",22664,90,4028],["2021-02-19",22664,192,4220],["2021-02-20",22664,2,4222],["2021-02-21",22664,17,4239],["2021-02-22",22664,20,4259],["2021-02-23",22664,42,4301],["2021-02-24",22664,225,4526],["2021-02-25",22664,83,4609],["2021-02-26",22664,43,4652],["2021-02-27",22664,3,4655],["2021-02-28",22664,3,4658],["2021-03-01",22664,23,4681],["2021-03-02",22664,194,4875],["2021-03-03",22664,132,5007],["2021-03-04",22664,69,5076],["2021-03-05",22664,57,5133],["2021-03-06",22664,9,5142],["2021-03-08",22664,27,5169],["2021-03-09",22664,111,5280],["2021-03-10",22664,184,5464],["2021-03-11",22664,69,5533],["2021-03-12",22664,158,5691],["2021-03-13",22664,20,5711],["2021-03-14",22664,9,5720],["2021-03-15",22664,65,5785],["2021-03-16",22664,135,5920],["2021-03-17",22664,224,6144],["2021-03-18",22664,69,6213],["2021-03-19",22664,212,6425],["2021-03-20",22664,7,6432],["2021-03-21",22664,2,6434],["2021-03-22",22664,37,6471],["2021-03-23",22664,97,6568],["2021-03-24",22664,169,6737],["2021-03-25",22664,105,6842],["2021-03-26",22664,106,6948],["2021-03-27",22664,26,6974],["2021-03-28",22664,14,6988],["2021-03-29",22664,38,7026],["2021-03-30",22664,115,7141],["2021-03-31",22664,147,7288],["2021-04-01",22664,72,7360],["2021-04-02",22664,80,7440],["2021-04-03",22664,13,7453],["2021-04-04",22664,12,7465],["2021-04-05",22664,53,7518],["2021-04-06",22664,101,7619],["2021-04-07",22664,205,7824],["2021-04-08",22664,79,7903],["2021-04-09",22664,138,8041],["2021-04-10",22664,20,8061],["2021-04-11",22664,13,8074],["2021-04-12",22664,47,8121],["2021-04-13",22664,147,8268],["2021-04-14",22664,219,8487],["2021-04-15",22664,55,8542],["2021-04-16",22664,182,8724],["2021-04-17",22664,13,8737],["2021-04-18",22664,1,8738],["2021-04-19",22664,37,8775],["2021-04-20",22664,111,8886],["2021-04-21",22664,206,9092],["2021-04-22",22664,77,9169],["2021-04-23",22664,85,9254],["2021-04-24",22664,12,9266],["2021-04-25",22664,3,9269],["2021-04-26",22664,41,9310],["2021-04-27",22664,61,9371],["2021-04-28",22664,168,9539],["2021-04-29",22664,53,9592],["2021-04-30",22664,90,9682],["2021-05-01",22664,35,9717],["2021-05-02",22664,8,9725],["2021-05-03",22664,21,9746],["2021-05-04",22664,61,9807],["2021-05-05",22664,148,9955],["2021-05-06",22664,55,10010],["2021-05-07",22664,78,10088],["2021-05-08",22664,15,10103],["2021-05-09",22664,5,10108],["2021-05-10",22664,31,10139],["2021-05-11",22664,66,10205],["2021-05-12",22664,81,10286],["2021-05-13",22664,31,10317],["2021-05-14",22664,49,10366],["2021-05-15",22664,11,10377],["2021-05-16",22664,6,10383],["2021-05-17",22664,26,10409],["2021-05-18",22664,110,10519],["2021-05-19",22664,99,10618],["2021-05-20",22664,51,10669],["2021-05-21",22664,38,10707],["2021-05-22",22664,22,10729],["2021-05-23",22664,6,10735],["2021-05-24",22664,27,10762],["2021-05-25",22664,29,10791],["2021-05-26",22664,78,10869],["2021-05-27",22664,31,10900],["2021-05-28",22664,50,10950],["2021-05-29",22664,8,10958],["2021-05-30",22664,7,10965],["2021-05-31",22664,5,10970],["2021-06-01",22664,56,11026],["2021-06-02",22664,75,11101],["2021-06-03",22664,34,11135],["2021-06-04",22664,45,11180],["2021-06-05",22664,19,11199],["2021-06-06",22664,7,11206],["2021-06-07",22664,23,11229],["2021-06-08",22664,39,11268],["2021-06-09",22664,68,11336],["2021-06-10",22664,22,11358],["2021-06-11",22664,46,11404],["2021-06-12",22664,15,11419],["2021-06-13",22664,13,11432],["2021-06-14",22664,22,11454],["2021-06-15",22664,36,11490],["2021-06-16",22664,55,11545],["2021-06-17",22664,36,11581],["2021-06-18",22664,17,11598],["2021-06-19",22664,16,11614],["2021-06-20",22664,2,11616],["2021-06-21",22664,22,11638],["2021-06-22",22664,18,11656],["2021-06-23",22664,56,11712],["2021-06-24",22664,18,11730],["2021-06-25",22664,18,11748],["2021-06-26",22664,12,11760],["2021-06-27",22664,2,11762],["2021-06-28",22664,13,11775],["2021-06-29",22664,21,11796],["2021-06-30",22664,45,11841],["2021-07-01",22664,21,11862],["2021-07-02",22664,17,11879],["2021-07-03",22664,10,11889],["2021-07-04",22664,1,11890],["2021-07-05",22664,16,11906],["2021-07-06",22664,20,11926],["2021-07-07",22664,44,11970],["2021-07-08",22664,13,11983],["2021-07-09",22664,25,12008],["2021-07-10",22664,7,12015],["2021-07-11",22664,4,12019],["2021-07-12",22664,15,12034],["2021-07-13",22664,24,12058],["2021-07-14",22664,39,12097],["2021-07-15",22664,30,12127],["2021-07-16",22664,32,12159],["2021-07-17",22664,12,12171],["2021-07-18",22664,7,12178],["2021-07-19",22664,26,12204],["2021-07-20",22664,39,12243],["2021-07-21",22664,87,12330],["2021-07-22",22664,42,12372],["2021-07-23",22664,64,12436],["2021-07-24",22664,29,12465],["2021-07-25",22664,6,12471],["2021-07-26",22664,36,12507],["2021-07-27",22664,35,12542],["2021-07-28",22664,87,12629],["2021-07-29",22664,141,12770],["2021-07-30",22664,56,12826],["2021-07-31",22664,32,12858],["2021-08-01",22664,13,12871],["2021-08-02",22664,48,12919],["2021-08-03",22664,48,12967],["2021-08-04",22664,70,13037],["2021-08-05",22664,45,13082],["2021-08-06",22664,44,13126],["2021-08-07",22664,58,13184],["2021-08-08",22664,17,13201],["2021-08-09",22664,58,13259],["2021-08-10",22664,58,13317],["2021-08-11",22664,117,13434],["2021-08-12",22664,108,13542],["2021-08-13",22664,95,13637],["2021-08-14",22664,52,13689],["2021-08-15",22664,17,13706],["2021-08-16",22664,95,13801],["2021-08-17",22664,79,13880],["2021-08-18",22664,166,14046],["2021-08-19",22664,79,14125],["2021-08-20",22664,97,14222],["2021-08-21",22664,43,14265],["2021-08-22",22664,20,14285],["2021-08-23",22664,92,14377],["2021-08-24",22664,58,14435],["2021-08-25",22664,157,14592],["2021-08-26",22664,147,14739],["2021-08-27",22664,118,14857],["2021-08-28",22664,49,14906],["2021-08-29",22664,26,14932],["2021-08-30",22664,107,15039],["2021-08-31",22664,90,15129],["2021-09-01",22664,122,15251],["2021-09-02",22664,80,15331],["2021-09-03",22664,80,15411],["2021-09-04",22664,45,15456],["2021-09-05",22664,20,15476],["2021-09-06",22664,12,15488],["2021-09-07",22664,82,15570],["2021-09-08",22664,118,15688],["2021-09-09",22664,97,15785],["2021-09-10",22664,105,15890],["2021-09-11",22664,38,15928],["2021-09-12",22664,17,15945],["2021-09-13",22664,73,16018],["2021-09-14",22664,72,16090],["2021-09-15",22664,127,16217],["2021-09-16",22664,79,16296],["2021-09-17",22664,86,16382],["2021-09-18",22664,55,16437],["2021-09-19",22664,5,16442],["2021-09-20",22664,80,16522],["2021-09-21",22664,81,16603],["2021-09-22",22664,91,16694],["2021-09-23",22664,62,16756],["2021-09-24",22664,85,16841],["2021-09-25",22664,25,16866],["2021-09-26",22664,17,16883],["2021-09-27",22664,39,16922],["2021-09-28",22664,39,16961],["2021-09-29",22664,53,17014],["2021-09-30",22664,40,17054],["2021-10-01",22664,59,17113],["2021-10-02",22664,27,17140],["2021-10-03",22664,5,17145],["2021-10-04",22664,28,17173],["2021-10-05",22664,26,17199],["2021-10-06",22664,44,17243],["2021-10-07",22664,36,17279],["2021-10-08",22664,42,17321],["2021-10-09",22664,24,17345],["2021-10-10",22664,8,17353],["2021-10-11",22664,14,17367],["2021-10-12",22664,30,17397],["2021-10-13",22664,21,17418],["2021-10-14",22664,24,17442],["2021-10-15",22664,44,17486],["2021-10-16",22664,8,17494],["2021-10-17",22664,6,17500],["2021-10-18",22664,31,17531],["2021-10-19",22664,23,17554],["2021-10-20",22664,50,17604],["2021-10-21",22664,24,17628],["2021-10-22",22664,29,17657],["2021-10-23",22664,16,17673],["2021-10-24",22664,5,17678],["2021-10-25",22664,52,17730],["2021-10-26",22664,122,17852],["2021-10-27",22664,117,17969],["2021-10-28",22664,67,18036],["2021-10-29",22664,34,18070],["2021-10-30",22664,15,18085],["2021-10-31",22664,4,18089],["2021-11-01",22664,60,18149],["2021-11-02",22664,90,18239],["2021-11-03",22664,95,18334],["2021-11-04",22664,45,18379],["2021-11-05",22664,63,18442],["2021-11-06",22664,6,18448],["2021-11-07",22664,1,18449],["2021-11-08",22664,63,18512],["2021-11-09",22664,41,18553],["2021-11-10",22664,50,18603],["2021-11-11",22664,23,18626],["2021-11-12",22664,53,18679],["2021-11-13",22664,16,18695],["2021-11-14",22664,1,18696],["2021-11-15",22664,63,18759],["2021-11-16",22664,79,18838],["2021-11-17",22664,127,18965],["2021-11-18",22664,93,19058],["2021-11-19",22664,79,19137],["2021-11-20",22664,38,19175],["2021-11-21",22664,19,19194],["2021-11-22",22664,55,19249],["2021-11-23",22664,103,19352],["2021-11-24",22664,22,19374],["2021-11-26",22664,23,19397],["2021-11-27",22664,6,19403],["2021-11-28",22664,5,19408],["2021-11-29",22664,63,19471],["2021-11-30",22664,125,19596],["2021-12-01",22664,134,19730],["2021-12-02",22664,75,19805],["2021-12-03",22664,53,19858],["2021-12-04",22664,16,19874],["2021-12-05",22664,16,19890],["2021-12-06",22664,51,19941],["2021-12-07",22664,75,20016],["2021-12-08",22664,53,20069],["2021-12-09",22664,72,20141],["2021-12-10",22664,58,20199],["2021-12-11",22664,33,20232],["2021-12-12",22664,2,20234],["2021-12-13",22664,39,20273],["2021-12-14",22664,48,20321],["2021-12-15",22664,56,20377],["2021-12-16",22664,38,20415],["2021-12-17",22664,60,20475],["2021-12-18",22664,8,20483],["2021-12-19",22664,6,20489],["2021-12-20",22664,59,20548],["2021-12-21",22664,54,20602],["2021-12-22",22664,51,20653],["2021-12-23",22664,38,20691],["2021-12-24",22664,11,20702],["2021-12-26",22664,6,20708],["2021-12-27",22664,36,20744],["2021-12-28",22664,70,20814],["2021-12-29",22664,48,20862],["2021-12-30",22664,53,20915],["2021-12-31",22664,15,20930],["2022-01-01",22664,6,20936],["2022-01-02",22664,4,20940],["2022-01-03",22664,26,20966]]} \ No newline at end of file diff --git a/public/data/overall/vaccinations/by-county/Evans.json b/public/data/overall/vaccinations/by-county/Evans.json new file mode 100644 index 000000000..5fa60f6d1 --- /dev/null +++ b/public/data/overall/vaccinations/by-county/Evans.json @@ -0,0 +1 @@ +{"segment":{"county":"Evans"},"headers":["report_date","population","vaccinations","total_vaccinations"],"rows":[["2020-12-18",10687,3,3],["2020-12-21",10687,2,5],["2020-12-22",10687,2,7],["2020-12-23",10687,10,17],["2020-12-24",10687,10,27],["2020-12-27",10687,1,28],["2020-12-28",10687,11,39],["2020-12-29",10687,12,51],["2020-12-30",10687,31,82],["2020-12-31",10687,12,94],["2021-01-01",10687,4,98],["2021-01-02",10687,4,102],["2021-01-04",10687,17,119],["2021-01-05",10687,6,125],["2021-01-06",10687,24,149],["2021-01-07",10687,57,206],["2021-01-08",10687,24,230],["2021-01-09",10687,3,233],["2021-01-10",10687,3,236],["2021-01-11",10687,44,280],["2021-01-12",10687,107,387],["2021-01-13",10687,109,496],["2021-01-14",10687,84,580],["2021-01-15",10687,37,617],["2021-01-16",10687,5,622],["2021-01-17",10687,7,629],["2021-01-18",10687,85,714],["2021-01-19",10687,57,771],["2021-01-20",10687,55,826],["2021-01-21",10687,48,874],["2021-01-22",10687,21,895],["2021-01-23",10687,7,902],["2021-01-24",10687,1,903],["2021-01-25",10687,18,921],["2021-01-26",10687,31,952],["2021-01-27",10687,20,972],["2021-01-28",10687,62,1034],["2021-01-29",10687,36,1070],["2021-01-30",10687,8,1078],["2021-02-01",10687,30,1108],["2021-02-02",10687,30,1138],["2021-02-03",10687,76,1214],["2021-02-04",10687,49,1263],["2021-02-05",10687,75,1338],["2021-02-06",10687,1,1339],["2021-02-08",10687,64,1403],["2021-02-09",10687,131,1534],["2021-02-10",10687,125,1659],["2021-02-11",10687,90,1749],["2021-02-12",10687,86,1835],["2021-02-13",10687,18,1853],["2021-02-14",10687,4,1857],["2021-02-15",10687,85,1942],["2021-02-16",10687,61,2003],["2021-02-17",10687,87,2090],["2021-02-18",10687,68,2158],["2021-02-19",10687,25,2183],["2021-02-20",10687,3,2186],["2021-02-21",10687,2,2188],["2021-02-22",10687,59,2247],["2021-02-23",10687,43,2290],["2021-02-24",10687,69,2359],["2021-02-25",10687,61,2420],["2021-02-26",10687,20,2440],["2021-02-27",10687,6,2446],["2021-02-28",10687,3,2449],["2021-03-01",10687,56,2505],["2021-03-02",10687,49,2554],["2021-03-03",10687,57,2611],["2021-03-04",10687,73,2684],["2021-03-05",10687,60,2744],["2021-03-06",10687,4,2748],["2021-03-07",10687,7,2755],["2021-03-08",10687,47,2802],["2021-03-09",10687,65,2867],["2021-03-10",10687,62,2929],["2021-03-11",10687,74,3003],["2021-03-12",10687,94,3097],["2021-03-13",10687,10,3107],["2021-03-14",10687,10,3117],["2021-03-15",10687,45,3162],["2021-03-16",10687,48,3210],["2021-03-17",10687,88,3298],["2021-03-18",10687,51,3349],["2021-03-19",10687,51,3400],["2021-03-20",10687,9,3409],["2021-03-21",10687,9,3418],["2021-03-22",10687,65,3483],["2021-03-23",10687,52,3535],["2021-03-24",10687,94,3629],["2021-03-25",10687,69,3698],["2021-03-26",10687,32,3730],["2021-03-27",10687,13,3743],["2021-03-28",10687,8,3751],["2021-03-29",10687,81,3832],["2021-03-30",10687,101,3933],["2021-03-31",10687,63,3996],["2021-04-01",10687,106,4102],["2021-04-02",10687,23,4125],["2021-04-03",10687,10,4135],["2021-04-04",10687,12,4147],["2021-04-05",10687,59,4206],["2021-04-06",10687,54,4260],["2021-04-07",10687,51,4311],["2021-04-08",10687,58,4369],["2021-04-09",10687,46,4415],["2021-04-10",10687,32,4447],["2021-04-11",10687,17,4464],["2021-04-12",10687,64,4528],["2021-04-13",10687,35,4563],["2021-04-14",10687,87,4650],["2021-04-15",10687,59,4709],["2021-04-16",10687,82,4791],["2021-04-17",10687,14,4805],["2021-04-18",10687,2,4807],["2021-04-19",10687,39,4846],["2021-04-20",10687,34,4880],["2021-04-21",10687,74,4954],["2021-04-22",10687,37,4991],["2021-04-23",10687,52,5043],["2021-04-24",10687,5,5048],["2021-04-25",10687,3,5051],["2021-04-26",10687,49,5100],["2021-04-27",10687,73,5173],["2021-04-28",10687,45,5218],["2021-04-29",10687,60,5278],["2021-04-30",10687,42,5320],["2021-05-01",10687,24,5344],["2021-05-02",10687,3,5347],["2021-05-03",10687,18,5365],["2021-05-04",10687,39,5404],["2021-05-05",10687,51,5455],["2021-05-06",10687,70,5525],["2021-05-07",10687,44,5569],["2021-05-08",10687,8,5577],["2021-05-10",10687,29,5606],["2021-05-11",10687,30,5636],["2021-05-12",10687,33,5669],["2021-05-13",10687,25,5694],["2021-05-14",10687,37,5731],["2021-05-15",10687,15,5746],["2021-05-16",10687,4,5750],["2021-05-17",10687,26,5776],["2021-05-18",10687,25,5801],["2021-05-19",10687,48,5849],["2021-05-20",10687,19,5868],["2021-05-21",10687,36,5904],["2021-05-22",10687,4,5908],["2021-05-23",10687,2,5910],["2021-05-24",10687,26,5936],["2021-05-25",10687,13,5949],["2021-05-26",10687,30,5979],["2021-05-27",10687,42,6021],["2021-05-28",10687,20,6041],["2021-05-29",10687,8,6049],["2021-05-31",10687,1,6050],["2021-06-01",10687,28,6078],["2021-06-02",10687,29,6107],["2021-06-03",10687,23,6130],["2021-06-04",10687,15,6145],["2021-06-05",10687,8,6153],["2021-06-06",10687,2,6155],["2021-06-07",10687,17,6172],["2021-06-08",10687,22,6194],["2021-06-09",10687,21,6215],["2021-06-10",10687,23,6238],["2021-06-11",10687,19,6257],["2021-06-12",10687,9,6266],["2021-06-13",10687,2,6268],["2021-06-14",10687,15,6283],["2021-06-15",10687,13,6296],["2021-06-16",10687,20,6316],["2021-06-17",10687,33,6349],["2021-06-18",10687,25,6374],["2021-06-19",10687,10,6384],["2021-06-20",10687,4,6388],["2021-06-21",10687,9,6397],["2021-06-22",10687,18,6415],["2021-06-23",10687,12,6427],["2021-06-24",10687,14,6441],["2021-06-25",10687,18,6459],["2021-06-26",10687,11,6470],["2021-06-27",10687,1,6471],["2021-06-28",10687,15,6486],["2021-06-29",10687,14,6500],["2021-06-30",10687,17,6517],["2021-07-01",10687,15,6532],["2021-07-02",10687,9,6541],["2021-07-03",10687,3,6544],["2021-07-05",10687,3,6547],["2021-07-06",10687,7,6554],["2021-07-07",10687,12,6566],["2021-07-08",10687,12,6578],["2021-07-09",10687,13,6591],["2021-07-10",10687,5,6596],["2021-07-11",10687,3,6599],["2021-07-12",10687,16,6615],["2021-07-13",10687,12,6627],["2021-07-14",10687,21,6648],["2021-07-15",10687,18,6666],["2021-07-16",10687,19,6685],["2021-07-17",10687,8,6693],["2021-07-18",10687,10,6703],["2021-07-19",10687,21,6724],["2021-07-20",10687,26,6750],["2021-07-21",10687,23,6773],["2021-07-22",10687,32,6805],["2021-07-23",10687,25,6830],["2021-07-24",10687,19,6849],["2021-07-25",10687,20,6869],["2021-07-26",10687,24,6893],["2021-07-27",10687,32,6925],["2021-07-28",10687,28,6953],["2021-07-29",10687,33,6986],["2021-07-30",10687,46,7032],["2021-07-31",10687,19,7051],["2021-08-01",10687,9,7060],["2021-08-02",10687,26,7086],["2021-08-03",10687,15,7101],["2021-08-04",10687,37,7138],["2021-08-05",10687,43,7181],["2021-08-06",10687,33,7214],["2021-08-07",10687,19,7233],["2021-08-08",10687,13,7246],["2021-08-09",10687,28,7274],["2021-08-10",10687,31,7305],["2021-08-11",10687,46,7351],["2021-08-12",10687,28,7379],["2021-08-13",10687,34,7413],["2021-08-14",10687,15,7428],["2021-08-15",10687,10,7438],["2021-08-16",10687,20,7458],["2021-08-17",10687,40,7498],["2021-08-18",10687,30,7528],["2021-08-19",10687,39,7567],["2021-08-20",10687,52,7619],["2021-08-21",10687,29,7648],["2021-08-22",10687,16,7664],["2021-08-23",10687,37,7701],["2021-08-24",10687,38,7739],["2021-08-25",10687,45,7784],["2021-08-26",10687,35,7819],["2021-08-27",10687,51,7870],["2021-08-28",10687,15,7885],["2021-08-29",10687,6,7891],["2021-08-30",10687,28,7919],["2021-08-31",10687,25,7944],["2021-09-01",10687,48,7992],["2021-09-02",10687,39,8031],["2021-09-03",10687,54,8085],["2021-09-04",10687,9,8094],["2021-09-05",10687,6,8100],["2021-09-06",10687,3,8103],["2021-09-07",10687,43,8146],["2021-09-08",10687,31,8177],["2021-09-09",10687,26,8203],["2021-09-10",10687,39,8242],["2021-09-11",10687,8,8250],["2021-09-12",10687,3,8253],["2021-09-13",10687,20,8273],["2021-09-14",10687,22,8295],["2021-09-15",10687,26,8321],["2021-09-16",10687,16,8337],["2021-09-17",10687,32,8369],["2021-09-18",10687,12,8381],["2021-09-19",10687,3,8384],["2021-09-20",10687,24,8408],["2021-09-21",10687,19,8427],["2021-09-22",10687,19,8446],["2021-09-23",10687,22,8468],["2021-09-24",10687,28,8496],["2021-09-25",10687,6,8502],["2021-09-26",10687,2,8504],["2021-09-27",10687,8,8512],["2021-09-28",10687,24,8536],["2021-09-29",10687,16,8552],["2021-09-30",10687,20,8572],["2021-10-01",10687,31,8603],["2021-10-02",10687,1,8604],["2021-10-04",10687,15,8619],["2021-10-05",10687,23,8642],["2021-10-06",10687,10,8652],["2021-10-07",10687,25,8677],["2021-10-08",10687,14,8691],["2021-10-09",10687,3,8694],["2021-10-10",10687,3,8697],["2021-10-11",10687,6,8703],["2021-10-12",10687,14,8717],["2021-10-13",10687,3,8720],["2021-10-14",10687,30,8750],["2021-10-15",10687,11,8761],["2021-10-16",10687,4,8765],["2021-10-17",10687,2,8767],["2021-10-18",10687,8,8775],["2021-10-19",10687,32,8807],["2021-10-20",10687,5,8812],["2021-10-21",10687,35,8847],["2021-10-22",10687,12,8859],["2021-10-23",10687,6,8865],["2021-10-24",10687,3,8868],["2021-10-25",10687,12,8880],["2021-10-26",10687,85,8965],["2021-10-27",10687,15,8980],["2021-10-28",10687,67,9047],["2021-10-29",10687,22,9069],["2021-10-30",10687,5,9074],["2021-10-31",10687,2,9076],["2021-11-01",10687,19,9095],["2021-11-02",10687,62,9157],["2021-11-03",10687,19,9176],["2021-11-04",10687,79,9255],["2021-11-05",10687,33,9288],["2021-11-06",10687,4,9292],["2021-11-07",10687,3,9295],["2021-11-08",10687,16,9311],["2021-11-09",10687,50,9361],["2021-11-10",10687,11,9372],["2021-11-11",10687,40,9412],["2021-11-12",10687,40,9452],["2021-11-13",10687,8,9460],["2021-11-14",10687,2,9462],["2021-11-15",10687,15,9477],["2021-11-16",10687,48,9525],["2021-11-17",10687,14,9539],["2021-11-18",10687,46,9585],["2021-11-19",10687,53,9638],["2021-11-20",10687,14,9652],["2021-11-21",10687,12,9664],["2021-11-22",10687,35,9699],["2021-11-23",10687,17,9716],["2021-11-24",10687,17,9733],["2021-11-26",10687,9,9742],["2021-11-27",10687,4,9746],["2021-11-28",10687,3,9749],["2021-11-29",10687,33,9782],["2021-11-30",10687,62,9844],["2021-12-01",10687,21,9865],["2021-12-02",10687,61,9926],["2021-12-03",10687,39,9965],["2021-12-04",10687,12,9977],["2021-12-05",10687,7,9984],["2021-12-06",10687,24,10008],["2021-12-07",10687,35,10043],["2021-12-08",10687,20,10063],["2021-12-09",10687,37,10100],["2021-12-10",10687,35,10135],["2021-12-11",10687,4,10139],["2021-12-12",10687,4,10143],["2021-12-13",10687,28,10171],["2021-12-14",10687,24,10195],["2021-12-15",10687,18,10213],["2021-12-16",10687,22,10235],["2021-12-17",10687,18,10253],["2021-12-18",10687,9,10262],["2021-12-19",10687,3,10265],["2021-12-20",10687,19,10284],["2021-12-21",10687,25,10309],["2021-12-22",10687,18,10327],["2021-12-23",10687,32,10359],["2021-12-24",10687,2,10361],["2021-12-26",10687,8,10369],["2021-12-27",10687,22,10391],["2021-12-28",10687,36,10427],["2021-12-29",10687,17,10444],["2021-12-30",10687,49,10493],["2021-12-31",10687,15,10508],["2022-01-01",10687,1,10509],["2022-01-02",10687,11,10520],["2022-01-03",10687,7,10527]]} \ No newline at end of file diff --git a/public/data/overall/vaccinations/by-county/Fannin.json b/public/data/overall/vaccinations/by-county/Fannin.json new file mode 100644 index 000000000..a6aff2c88 --- /dev/null +++ b/public/data/overall/vaccinations/by-county/Fannin.json @@ -0,0 +1 @@ +{"segment":{"county":"Fannin"},"headers":["report_date","population","vaccinations","total_vaccinations"],"rows":[["2020-12-17",26320,2,2],["2020-12-18",26320,4,6],["2020-12-19",26320,2,8],["2020-12-20",26320,2,10],["2020-12-21",26320,4,14],["2020-12-22",26320,7,21],["2020-12-23",26320,48,69],["2020-12-24",26320,30,99],["2020-12-27",26320,1,100],["2020-12-28",26320,38,138],["2020-12-29",26320,49,187],["2020-12-30",26320,39,226],["2020-12-31",26320,11,237],["2021-01-01",26320,8,245],["2021-01-02",26320,1,246],["2021-01-03",26320,7,253],["2021-01-04",26320,33,286],["2021-01-05",26320,54,340],["2021-01-06",26320,108,448],["2021-01-07",26320,111,559],["2021-01-08",26320,28,587],["2021-01-09",26320,4,591],["2021-01-10",26320,9,600],["2021-01-11",26320,176,776],["2021-01-12",26320,168,944],["2021-01-13",26320,220,1164],["2021-01-14",26320,203,1367],["2021-01-15",26320,115,1482],["2021-01-16",26320,23,1505],["2021-01-17",26320,44,1549],["2021-01-18",26320,179,1728],["2021-01-19",26320,228,1956],["2021-01-20",26320,366,2322],["2021-01-21",26320,136,2458],["2021-01-22",26320,215,2673],["2021-01-23",26320,21,2694],["2021-01-24",26320,21,2715],["2021-01-25",26320,167,2882],["2021-01-26",26320,103,2985],["2021-01-27",26320,113,3098],["2021-01-28",26320,101,3199],["2021-01-29",26320,73,3272],["2021-01-30",26320,8,3280],["2021-01-31",26320,2,3282],["2021-02-01",26320,111,3393],["2021-02-02",26320,131,3524],["2021-02-03",26320,193,3717],["2021-02-04",26320,130,3847],["2021-02-05",26320,116,3963],["2021-02-06",26320,5,3968],["2021-02-07",26320,4,3972],["2021-02-08",26320,188,4160],["2021-02-09",26320,207,4367],["2021-02-10",26320,384,4751],["2021-02-11",26320,225,4976],["2021-02-12",26320,161,5137],["2021-02-13",26320,27,5164],["2021-02-14",26320,44,5208],["2021-02-15",26320,205,5413],["2021-02-16",26320,196,5609],["2021-02-17",26320,203,5812],["2021-02-18",26320,141,5953],["2021-02-19",26320,123,6076],["2021-02-20",26320,31,6107],["2021-02-21",26320,20,6127],["2021-02-22",26320,79,6206],["2021-02-23",26320,173,6379],["2021-02-24",26320,141,6520],["2021-02-25",26320,148,6668],["2021-02-26",26320,420,7088],["2021-02-27",26320,22,7110],["2021-02-28",26320,43,7153],["2021-03-01",26320,255,7408],["2021-03-02",26320,232,7640],["2021-03-03",26320,239,7879],["2021-03-04",26320,240,8119],["2021-03-05",26320,165,8284],["2021-03-06",26320,22,8306],["2021-03-07",26320,35,8341],["2021-03-08",26320,149,8490],["2021-03-09",26320,153,8643],["2021-03-10",26320,178,8821],["2021-03-11",26320,130,8951],["2021-03-12",26320,282,9233],["2021-03-13",26320,32,9265],["2021-03-14",26320,26,9291],["2021-03-15",26320,232,9523],["2021-03-16",26320,169,9692],["2021-03-17",26320,252,9944],["2021-03-18",26320,118,10062],["2021-03-19",26320,133,10195],["2021-03-20",26320,35,10230],["2021-03-21",26320,25,10255],["2021-03-22",26320,125,10380],["2021-03-23",26320,144,10524],["2021-03-24",26320,161,10685],["2021-03-25",26320,193,10878],["2021-03-26",26320,165,11043],["2021-03-27",26320,28,11071],["2021-03-28",26320,55,11126],["2021-03-29",26320,211,11337],["2021-03-30",26320,237,11574],["2021-03-31",26320,262,11836],["2021-04-01",26320,278,12114],["2021-04-02",26320,126,12240],["2021-04-03",26320,51,12291],["2021-04-04",26320,37,12328],["2021-04-05",26320,200,12528],["2021-04-06",26320,158,12686],["2021-04-07",26320,166,12852],["2021-04-08",26320,170,13022],["2021-04-09",26320,197,13219],["2021-04-10",26320,88,13307],["2021-04-11",26320,39,13346],["2021-04-12",26320,308,13654],["2021-04-13",26320,210,13864],["2021-04-14",26320,141,14005],["2021-04-15",26320,153,14158],["2021-04-16",26320,143,14301],["2021-04-17",26320,43,14344],["2021-04-18",26320,22,14366],["2021-04-19",26320,132,14498],["2021-04-20",26320,141,14639],["2021-04-21",26320,142,14781],["2021-04-22",26320,127,14908],["2021-04-23",26320,131,15039],["2021-04-24",26320,22,15061],["2021-04-25",26320,25,15086],["2021-04-26",26320,104,15190],["2021-04-27",26320,100,15290],["2021-04-28",26320,116,15406],["2021-04-29",26320,112,15518],["2021-04-30",26320,104,15622],["2021-05-01",26320,67,15689],["2021-05-02",26320,20,15709],["2021-05-03",26320,90,15799],["2021-05-04",26320,95,15894],["2021-05-05",26320,78,15972],["2021-05-06",26320,72,16044],["2021-05-07",26320,90,16134],["2021-05-08",26320,19,16153],["2021-05-09",26320,16,16169],["2021-05-10",26320,70,16239],["2021-05-11",26320,78,16317],["2021-05-12",26320,33,16350],["2021-05-13",26320,47,16397],["2021-05-14",26320,66,16463],["2021-05-15",26320,28,16491],["2021-05-16",26320,20,16511],["2021-05-17",26320,43,16554],["2021-05-18",26320,49,16603],["2021-05-19",26320,48,16651],["2021-05-20",26320,41,16692],["2021-05-21",26320,70,16762],["2021-05-22",26320,13,16775],["2021-05-23",26320,6,16781],["2021-05-24",26320,46,16827],["2021-05-25",26320,58,16885],["2021-05-26",26320,29,16914],["2021-05-27",26320,28,16942],["2021-05-28",26320,51,16993],["2021-05-29",26320,9,17002],["2021-05-30",26320,8,17010],["2021-05-31",26320,5,17015],["2021-06-01",26320,53,17068],["2021-06-02",26320,34,17102],["2021-06-03",26320,20,17122],["2021-06-04",26320,46,17168],["2021-06-05",26320,17,17185],["2021-06-06",26320,2,17187],["2021-06-07",26320,25,17212],["2021-06-08",26320,35,17247],["2021-06-09",26320,22,17269],["2021-06-10",26320,22,17291],["2021-06-11",26320,14,17305],["2021-06-12",26320,9,17314],["2021-06-13",26320,5,17319],["2021-06-14",26320,19,17338],["2021-06-15",26320,23,17361],["2021-06-16",26320,26,17387],["2021-06-17",26320,19,17406],["2021-06-18",26320,28,17434],["2021-06-19",26320,5,17439],["2021-06-20",26320,2,17441],["2021-06-21",26320,19,17460],["2021-06-22",26320,32,17492],["2021-06-23",26320,27,17519],["2021-06-24",26320,18,17537],["2021-06-25",26320,33,17570],["2021-06-26",26320,6,17576],["2021-06-27",26320,2,17578],["2021-06-28",26320,24,17602],["2021-06-29",26320,21,17623],["2021-06-30",26320,27,17650],["2021-07-01",26320,14,17664],["2021-07-02",26320,16,17680],["2021-07-03",26320,5,17685],["2021-07-04",26320,2,17687],["2021-07-05",26320,14,17701],["2021-07-06",26320,12,17713],["2021-07-07",26320,16,17729],["2021-07-08",26320,14,17743],["2021-07-09",26320,16,17759],["2021-07-10",26320,2,17761],["2021-07-11",26320,8,17769],["2021-07-12",26320,11,17780],["2021-07-13",26320,24,17804],["2021-07-14",26320,15,17819],["2021-07-15",26320,18,17837],["2021-07-16",26320,20,17857],["2021-07-17",26320,6,17863],["2021-07-18",26320,5,17868],["2021-07-19",26320,11,17879],["2021-07-20",26320,15,17894],["2021-07-21",26320,18,17912],["2021-07-22",26320,35,17947],["2021-07-23",26320,22,17969],["2021-07-24",26320,20,17989],["2021-07-25",26320,6,17995],["2021-07-26",26320,37,18032],["2021-07-27",26320,26,18058],["2021-07-28",26320,23,18081],["2021-07-29",26320,28,18109],["2021-07-30",26320,51,18160],["2021-07-31",26320,18,18178],["2021-08-01",26320,14,18192],["2021-08-02",26320,31,18223],["2021-08-03",26320,40,18263],["2021-08-04",26320,36,18299],["2021-08-05",26320,34,18333],["2021-08-06",26320,49,18382],["2021-08-07",26320,24,18406],["2021-08-08",26320,19,18425],["2021-08-09",26320,36,18461],["2021-08-10",26320,34,18495],["2021-08-11",26320,55,18550],["2021-08-12",26320,51,18601],["2021-08-13",26320,61,18662],["2021-08-14",26320,23,18685],["2021-08-15",26320,14,18699],["2021-08-16",26320,56,18755],["2021-08-17",26320,61,18816],["2021-08-18",26320,54,18870],["2021-08-19",26320,57,18927],["2021-08-20",26320,61,18988],["2021-08-21",26320,30,19018],["2021-08-22",26320,20,19038],["2021-08-23",26320,43,19081],["2021-08-24",26320,54,19135],["2021-08-25",26320,63,19198],["2021-08-26",26320,72,19270],["2021-08-27",26320,87,19357],["2021-08-28",26320,105,19462],["2021-08-29",26320,12,19474],["2021-08-30",26320,68,19542],["2021-08-31",26320,56,19598],["2021-09-01",26320,79,19677],["2021-09-02",26320,49,19726],["2021-09-03",26320,78,19804],["2021-09-04",26320,35,19839],["2021-09-05",26320,18,19857],["2021-09-06",26320,9,19866],["2021-09-07",26320,64,19930],["2021-09-08",26320,50,19980],["2021-09-09",26320,44,20024],["2021-09-10",26320,65,20089],["2021-09-11",26320,26,20115],["2021-09-12",26320,13,20128],["2021-09-13",26320,41,20169],["2021-09-14",26320,33,20202],["2021-09-15",26320,44,20246],["2021-09-16",26320,39,20285],["2021-09-17",26320,55,20340],["2021-09-18",26320,33,20373],["2021-09-19",26320,9,20382],["2021-09-20",26320,36,20418],["2021-09-21",26320,39,20457],["2021-09-22",26320,44,20501],["2021-09-23",26320,22,20523],["2021-09-24",26320,42,20565],["2021-09-25",26320,24,20589],["2021-09-26",26320,12,20601],["2021-09-27",26320,42,20643],["2021-09-28",26320,45,20688],["2021-09-29",26320,34,20722],["2021-09-30",26320,70,20792],["2021-10-01",26320,42,20834],["2021-10-02",26320,26,20860],["2021-10-03",26320,7,20867],["2021-10-04",26320,36,20903],["2021-10-05",26320,25,20928],["2021-10-06",26320,50,20978],["2021-10-07",26320,26,21004],["2021-10-08",26320,37,21041],["2021-10-09",26320,12,21053],["2021-10-10",26320,7,21060],["2021-10-11",26320,17,21077],["2021-10-12",26320,32,21109],["2021-10-13",26320,21,21130],["2021-10-14",26320,21,21151],["2021-10-15",26320,19,21170],["2021-10-16",26320,10,21180],["2021-10-17",26320,10,21190],["2021-10-18",26320,21,21211],["2021-10-19",26320,18,21229],["2021-10-20",26320,20,21249],["2021-10-21",26320,25,21274],["2021-10-22",26320,116,21390],["2021-10-23",26320,67,21457],["2021-10-24",26320,34,21491],["2021-10-25",26320,116,21607],["2021-10-26",26320,161,21768],["2021-10-27",26320,146,21914],["2021-10-28",26320,136,22050],["2021-10-29",26320,127,22177],["2021-10-30",26320,36,22213],["2021-10-31",26320,23,22236],["2021-11-01",26320,119,22355],["2021-11-02",26320,119,22474],["2021-11-03",26320,143,22617],["2021-11-04",26320,122,22739],["2021-11-05",26320,111,22850],["2021-11-06",26320,33,22883],["2021-11-07",26320,26,22909],["2021-11-08",26320,84,22993],["2021-11-09",26320,93,23086],["2021-11-10",26320,88,23174],["2021-11-11",26320,102,23276],["2021-11-12",26320,96,23372],["2021-11-13",26320,35,23407],["2021-11-14",26320,29,23436],["2021-11-15",26320,91,23527],["2021-11-16",26320,102,23629],["2021-11-17",26320,70,23699],["2021-11-18",26320,76,23775],["2021-11-19",26320,82,23857],["2021-11-20",26320,51,23908],["2021-11-21",26320,28,23936],["2021-11-22",26320,82,24018],["2021-11-23",26320,86,24104],["2021-11-24",26320,40,24144],["2021-11-26",26320,49,24193],["2021-11-27",26320,40,24233],["2021-11-28",26320,21,24254],["2021-11-29",26320,85,24339],["2021-11-30",26320,107,24446],["2021-12-01",26320,91,24537],["2021-12-02",26320,102,24639],["2021-12-03",26320,107,24746],["2021-12-04",26320,50,24796],["2021-12-05",26320,18,24814],["2021-12-06",26320,75,24889],["2021-12-07",26320,69,24958],["2021-12-08",26320,45,25003],["2021-12-09",26320,53,25056],["2021-12-10",26320,93,25149],["2021-12-11",26320,31,25180],["2021-12-12",26320,11,25191],["2021-12-13",26320,60,25251],["2021-12-14",26320,67,25318],["2021-12-15",26320,45,25363],["2021-12-16",26320,59,25422],["2021-12-17",26320,73,25495],["2021-12-18",26320,16,25511],["2021-12-19",26320,13,25524],["2021-12-20",26320,77,25601],["2021-12-21",26320,67,25668],["2021-12-22",26320,84,25752],["2021-12-23",26320,43,25795],["2021-12-24",26320,10,25805],["2021-12-26",26320,8,25813],["2021-12-27",26320,61,25874],["2021-12-28",26320,41,25915],["2021-12-29",26320,46,25961],["2021-12-30",26320,39,26000],["2021-12-31",26320,19,26019],["2022-01-01",26320,4,26023],["2022-01-02",26320,7,26030],["2022-01-03",26320,9,26039]]} \ No newline at end of file diff --git a/public/data/overall/vaccinations/by-county/Fayette.json b/public/data/overall/vaccinations/by-county/Fayette.json new file mode 100644 index 000000000..2c09954e7 --- /dev/null +++ b/public/data/overall/vaccinations/by-county/Fayette.json @@ -0,0 +1 @@ +{"segment":{"county":"Fayette"},"headers":["report_date","population","vaccinations","total_vaccinations"],"rows":[["2020-12-15",117544,1,1],["2020-12-16",117544,2,3],["2020-12-17",117544,11,14],["2020-12-18",117544,44,58],["2020-12-19",117544,34,92],["2020-12-20",117544,26,118],["2020-12-21",117544,50,168],["2020-12-22",117544,123,291],["2020-12-23",117544,188,479],["2020-12-24",117544,46,525],["2020-12-25",117544,2,527],["2020-12-26",117544,8,535],["2020-12-27",117544,35,570],["2020-12-28",117544,254,824],["2020-12-29",117544,369,1193],["2020-12-30",117544,206,1399],["2020-12-31",117544,138,1537],["2021-01-01",117544,68,1605],["2021-01-02",117544,9,1614],["2021-01-03",117544,18,1632],["2021-01-04",117544,246,1878],["2021-01-05",117544,108,1986],["2021-01-06",117544,143,2129],["2021-01-07",117544,122,2251],["2021-01-08",117544,169,2420],["2021-01-09",117544,96,2516],["2021-01-10",117544,133,2649],["2021-01-11",117544,396,3045],["2021-01-12",117544,676,3721],["2021-01-13",117544,919,4640],["2021-01-14",117544,775,5415],["2021-01-15",117544,680,6095],["2021-01-16",117544,409,6504],["2021-01-17",117544,223,6727],["2021-01-18",117544,512,7239],["2021-01-19",117544,683,7922],["2021-01-20",117544,715,8637],["2021-01-21",117544,552,9189],["2021-01-22",117544,741,9930],["2021-01-23",117544,227,10157],["2021-01-24",117544,49,10206],["2021-01-25",117544,620,10826],["2021-01-26",117544,427,11253],["2021-01-27",117544,559,11812],["2021-01-28",117544,654,12466],["2021-01-29",117544,802,13268],["2021-01-30",117544,248,13516],["2021-01-31",117544,161,13677],["2021-02-01",117544,498,14175],["2021-02-02",117544,396,14571],["2021-02-03",117544,366,14937],["2021-02-04",117544,642,15579],["2021-02-05",117544,555,16134],["2021-02-06",117544,139,16273],["2021-02-07",117544,68,16341],["2021-02-08",117544,462,16803],["2021-02-09",117544,741,17544],["2021-02-10",117544,1046,18590],["2021-02-11",117544,800,19390],["2021-02-12",117544,1178,20568],["2021-02-13",117544,530,21098],["2021-02-14",117544,194,21292],["2021-02-15",117544,666,21958],["2021-02-16",117544,923,22881],["2021-02-17",117544,1315,24196],["2021-02-18",117544,625,24821],["2021-02-19",117544,868,25689],["2021-02-20",117544,369,26058],["2021-02-21",117544,63,26121],["2021-02-22",117544,479,26600],["2021-02-23",117544,943,27543],["2021-02-24",117544,1234,28777],["2021-02-25",117544,856,29633],["2021-02-26",117544,967,30600],["2021-02-27",117544,220,30820],["2021-02-28",117544,162,30982],["2021-03-01",117544,591,31573],["2021-03-02",117544,696,32269],["2021-03-03",117544,1259,33528],["2021-03-04",117544,891,34419],["2021-03-05",117544,1076,35495],["2021-03-06",117544,211,35706],["2021-03-07",117544,204,35910],["2021-03-08",117544,729,36639],["2021-03-09",117544,840,37479],["2021-03-10",117544,1105,38584],["2021-03-11",117544,1884,40468],["2021-03-12",117544,1136,41604],["2021-03-13",117544,343,41947],["2021-03-14",117544,290,42237],["2021-03-15",117544,1127,43364],["2021-03-16",117544,1298,44662],["2021-03-17",117544,1890,46552],["2021-03-18",117544,1100,47652],["2021-03-19",117544,1288,48940],["2021-03-20",117544,347,49287],["2021-03-21",117544,351,49638],["2021-03-22",117544,996,50634],["2021-03-23",117544,1305,51939],["2021-03-24",117544,1711,53650],["2021-03-25",117544,1481,55131],["2021-03-26",117544,1425,56556],["2021-03-27",117544,592,57148],["2021-03-28",117544,453,57601],["2021-03-29",117544,1117,58718],["2021-03-30",117544,1598,60316],["2021-03-31",117544,2041,62357],["2021-04-01",117544,2892,65249],["2021-04-02",117544,1316,66565],["2021-04-03",117544,552,67117],["2021-04-04",117544,332,67449],["2021-04-05",117544,1284,68733],["2021-04-06",117544,1752,70485],["2021-04-07",117544,1785,72270],["2021-04-08",117544,1375,73645],["2021-04-09",117544,1424,75069],["2021-04-10",117544,1075,76144],["2021-04-11",117544,488,76632],["2021-04-12",117544,1360,77992],["2021-04-13",117544,1352,79344],["2021-04-14",117544,1642,80986],["2021-04-15",117544,1398,82384],["2021-04-16",117544,1207,83591],["2021-04-17",117544,447,84038],["2021-04-18",117544,389,84427],["2021-04-19",117544,1083,85510],["2021-04-20",117544,1500,87010],["2021-04-21",117544,1582,88592],["2021-04-22",117544,1334,89926],["2021-04-23",117544,1177,91103],["2021-04-24",117544,552,91655],["2021-04-25",117544,286,91941],["2021-04-26",117544,812,92753],["2021-04-27",117544,1119,93872],["2021-04-28",117544,1196,95068],["2021-04-29",117544,917,95985],["2021-04-30",117544,1105,97090],["2021-05-01",117544,969,98059],["2021-05-02",117544,250,98309],["2021-05-03",117544,653,98962],["2021-05-04",117544,801,99763],["2021-05-05",117544,978,100741],["2021-05-06",117544,674,101415],["2021-05-07",117544,724,102139],["2021-05-08",117544,326,102465],["2021-05-09",117544,149,102614],["2021-05-10",117544,449,103063],["2021-05-11",117544,632,103695],["2021-05-12",117544,592,104287],["2021-05-13",117544,551,104838],["2021-05-14",117544,659,105497],["2021-05-15",117544,482,105979],["2021-05-16",117544,290,106269],["2021-05-17",117544,521,106790],["2021-05-18",117544,616,107406],["2021-05-19",117544,633,108039],["2021-05-20",117544,501,108540],["2021-05-21",117544,614,109154],["2021-05-22",117544,307,109461],["2021-05-23",117544,176,109637],["2021-05-24",117544,310,109947],["2021-05-25",117544,359,110306],["2021-05-26",117544,320,110626],["2021-05-27",117544,363,110989],["2021-05-28",117544,307,111296],["2021-05-29",117544,193,111489],["2021-05-30",117544,131,111620],["2021-05-31",117544,63,111683],["2021-06-01",117544,434,112117],["2021-06-02",117544,366,112483],["2021-06-03",117544,316,112799],["2021-06-04",117544,367,113166],["2021-06-05",117544,294,113460],["2021-06-06",117544,208,113668],["2021-06-07",117544,373,114041],["2021-06-08",117544,311,114352],["2021-06-09",117544,278,114630],["2021-06-10",117544,286,114916],["2021-06-11",117544,366,115282],["2021-06-12",117544,204,115486],["2021-06-13",117544,121,115607],["2021-06-14",117544,260,115867],["2021-06-15",117544,266,116133],["2021-06-16",117544,223,116356],["2021-06-17",117544,244,116600],["2021-06-18",117544,242,116842],["2021-06-19",117544,154,116996],["2021-06-20",117544,86,117082],["2021-06-21",117544,164,117246],["2021-06-22",117544,230,117476],["2021-06-23",117544,183,117659],["2021-06-24",117544,175,117834],["2021-06-25",117544,200,118034],["2021-06-26",117544,120,118154],["2021-06-27",117544,92,118246],["2021-06-28",117544,170,118416],["2021-06-29",117544,167,118583],["2021-06-30",117544,190,118773],["2021-07-01",117544,174,118947],["2021-07-02",117544,211,119158],["2021-07-03",117544,108,119266],["2021-07-04",117544,14,119280],["2021-07-05",117544,137,119417],["2021-07-06",117544,178,119595],["2021-07-07",117544,166,119761],["2021-07-08",117544,149,119910],["2021-07-09",117544,175,120085],["2021-07-10",117544,111,120196],["2021-07-11",117544,75,120271],["2021-07-12",117544,132,120403],["2021-07-13",117544,154,120557],["2021-07-14",117544,142,120699],["2021-07-15",117544,151,120850],["2021-07-16",117544,169,121019],["2021-07-17",117544,116,121135],["2021-07-18",117544,93,121228],["2021-07-19",117544,147,121375],["2021-07-20",117544,206,121581],["2021-07-21",117544,158,121739],["2021-07-22",117544,190,121929],["2021-07-23",117544,237,122166],["2021-07-24",117544,163,122329],["2021-07-25",117544,124,122453],["2021-07-26",117544,234,122687],["2021-07-27",117544,220,122907],["2021-07-28",117544,263,123170],["2021-07-29",117544,222,123392],["2021-07-30",117544,287,123679],["2021-07-31",117544,162,123841],["2021-08-01",117544,125,123966],["2021-08-02",117544,204,124170],["2021-08-03",117544,219,124389],["2021-08-04",117544,244,124633],["2021-08-05",117544,240,124873],["2021-08-06",117544,334,125207],["2021-08-07",117544,213,125420],["2021-08-08",117544,145,125565],["2021-08-09",117544,240,125805],["2021-08-10",117544,289,126094],["2021-08-11",117544,263,126357],["2021-08-12",117544,286,126643],["2021-08-13",117544,274,126917],["2021-08-14",117544,206,127123],["2021-08-15",117544,167,127290],["2021-08-16",117544,271,127561],["2021-08-17",117544,290,127851],["2021-08-18",117544,294,128145],["2021-08-19",117544,275,128420],["2021-08-20",117544,348,128768],["2021-08-21",117544,242,129010],["2021-08-22",117544,141,129151],["2021-08-23",117544,306,129457],["2021-08-24",117544,299,129756],["2021-08-25",117544,294,130050],["2021-08-26",117544,310,130360],["2021-08-27",117544,377,130737],["2021-08-28",117544,232,130969],["2021-08-29",117544,170,131139],["2021-08-30",117544,301,131440],["2021-08-31",117544,307,131747],["2021-09-01",117544,342,132089],["2021-09-02",117544,292,132381],["2021-09-03",117544,321,132702],["2021-09-04",117544,156,132858],["2021-09-05",117544,113,132971],["2021-09-06",117544,15,132986],["2021-09-07",117544,274,133260],["2021-09-08",117544,278,133538],["2021-09-09",117544,236,133774],["2021-09-10",117544,301,134075],["2021-09-11",117544,224,134299],["2021-09-12",117544,112,134411],["2021-09-13",117544,267,134678],["2021-09-14",117544,242,134920],["2021-09-15",117544,242,135162],["2021-09-16",117544,215,135377],["2021-09-17",117544,274,135651],["2021-09-18",117544,162,135813],["2021-09-19",117544,94,135907],["2021-09-20",117544,219,136126],["2021-09-21",117544,193,136319],["2021-09-22",117544,202,136521],["2021-09-23",117544,187,136708],["2021-09-24",117544,241,136949],["2021-09-25",117544,163,137112],["2021-09-26",117544,143,137255],["2021-09-27",117544,315,137570],["2021-09-28",117544,315,137885],["2021-09-29",117544,367,138252],["2021-09-30",117544,286,138538],["2021-10-01",117544,348,138886],["2021-10-02",117544,178,139064],["2021-10-03",117544,96,139160],["2021-10-04",117544,245,139405],["2021-10-05",117544,270,139675],["2021-10-06",117544,281,139956],["2021-10-07",117544,280,140236],["2021-10-08",117544,324,140560],["2021-10-09",117544,158,140718],["2021-10-10",117544,103,140821],["2021-10-11",117544,236,141057],["2021-10-12",117544,241,141298],["2021-10-13",117544,218,141516],["2021-10-14",117544,214,141730],["2021-10-15",117544,308,142038],["2021-10-16",117544,133,142171],["2021-10-17",117544,67,142238],["2021-10-18",117544,212,142450],["2021-10-19",117544,210,142660],["2021-10-20",117544,295,142955],["2021-10-21",117544,227,143182],["2021-10-22",117544,497,143679],["2021-10-23",117544,335,144014],["2021-10-24",117544,169,144183],["2021-10-25",117544,632,144815],["2021-10-26",117544,482,145297],["2021-10-27",117544,597,145894],["2021-10-28",117544,638,146532],["2021-10-29",117544,587,147119],["2021-10-30",117544,291,147410],["2021-10-31",117544,124,147534],["2021-11-01",117544,475,148009],["2021-11-02",117544,459,148468],["2021-11-03",117544,450,148918],["2021-11-04",117544,493,149411],["2021-11-05",117544,532,149943],["2021-11-06",117544,409,150352],["2021-11-07",117544,161,150513],["2021-11-08",117544,385,150898],["2021-11-09",117544,497,151395],["2021-11-10",117544,470,151865],["2021-11-11",117544,453,152318],["2021-11-12",117544,553,152871],["2021-11-13",117544,379,153250],["2021-11-14",117544,147,153397],["2021-11-15",117544,448,153845],["2021-11-16",117544,483,154328],["2021-11-17",117544,478,154806],["2021-11-18",117544,477,155283],["2021-11-19",117544,567,155850],["2021-11-20",117544,340,156190],["2021-11-21",117544,244,156434],["2021-11-22",117544,570,157004],["2021-11-23",117544,507,157511],["2021-11-24",117544,386,157897],["2021-11-25",117544,1,157898],["2021-11-26",117544,431,158329],["2021-11-27",117544,262,158591],["2021-11-28",117544,192,158783],["2021-11-29",117544,540,159323],["2021-11-30",117544,536,159859],["2021-12-01",117544,662,160521],["2021-12-02",117544,660,161181],["2021-12-03",117544,667,161848],["2021-12-04",117544,517,162365],["2021-12-05",117544,186,162551],["2021-12-06",117544,503,163054],["2021-12-07",117544,523,163577],["2021-12-08",117544,541,164118],["2021-12-09",117544,588,164706],["2021-12-10",117544,586,165292],["2021-12-11",117544,332,165624],["2021-12-12",117544,192,165816],["2021-12-13",117544,448,166264],["2021-12-14",117544,452,166716],["2021-12-15",117544,452,167168],["2021-12-16",117544,489,167657],["2021-12-17",117544,572,168229],["2021-12-18",117544,352,168581],["2021-12-19",117544,220,168801],["2021-12-20",117544,551,169352],["2021-12-21",117544,571,169923],["2021-12-22",117544,503,170426],["2021-12-23",117544,451,170877],["2021-12-24",117544,132,171009],["2021-12-26",117544,130,171139],["2021-12-27",117544,419,171558],["2021-12-28",117544,448,172006],["2021-12-29",117544,455,172461],["2021-12-30",117544,320,172781],["2021-12-31",117544,138,172919],["2022-01-01",117544,19,172938],["2022-01-02",117544,77,173015],["2022-01-03",117544,92,173107]]} \ No newline at end of file diff --git a/public/data/overall/vaccinations/by-county/Floyd.json b/public/data/overall/vaccinations/by-county/Floyd.json new file mode 100644 index 000000000..313c1ea96 --- /dev/null +++ b/public/data/overall/vaccinations/by-county/Floyd.json @@ -0,0 +1 @@ +{"segment":{"county":"Floyd"},"headers":["report_date","population","vaccinations","total_vaccinations"],"rows":[["2020-12-15",99916,1,1],["2020-12-16",99916,2,3],["2020-12-17",99916,2,5],["2020-12-18",99916,81,86],["2020-12-20",99916,6,92],["2020-12-21",99916,145,237],["2020-12-22",99916,183,420],["2020-12-23",99916,254,674],["2020-12-24",99916,7,681],["2020-12-26",99916,28,709],["2020-12-27",99916,15,724],["2020-12-28",99916,194,918],["2020-12-29",99916,217,1135],["2020-12-30",99916,172,1307],["2020-12-31",99916,198,1505],["2021-01-01",99916,39,1544],["2021-01-02",99916,49,1593],["2021-01-03",99916,42,1635],["2021-01-04",99916,154,1789],["2021-01-05",99916,273,2062],["2021-01-06",99916,271,2333],["2021-01-07",99916,419,2752],["2021-01-08",99916,282,3034],["2021-01-09",99916,13,3047],["2021-01-10",99916,63,3110],["2021-01-11",99916,580,3690],["2021-01-12",99916,796,4486],["2021-01-13",99916,804,5290],["2021-01-14",99916,773,6063],["2021-01-15",99916,489,6552],["2021-01-16",99916,82,6634],["2021-01-17",99916,32,6666],["2021-01-18",99916,922,7588],["2021-01-19",99916,1106,8694],["2021-01-20",99916,762,9456],["2021-01-21",99916,590,10046],["2021-01-22",99916,338,10384],["2021-01-23",99916,22,10406],["2021-01-24",99916,44,10450],["2021-01-25",99916,234,10684],["2021-01-26",99916,327,11011],["2021-01-27",99916,755,11766],["2021-01-28",99916,778,12544],["2021-01-29",99916,600,13144],["2021-01-30",99916,74,13218],["2021-01-31",99916,13,13231],["2021-02-01",99916,895,14126],["2021-02-02",99916,690,14816],["2021-02-03",99916,793,15609],["2021-02-04",99916,631,16240],["2021-02-05",99916,975,17215],["2021-02-06",99916,692,17907],["2021-02-07",99916,27,17934],["2021-02-08",99916,821,18755],["2021-02-09",99916,443,19198],["2021-02-10",99916,239,19437],["2021-02-11",99916,482,19919],["2021-02-12",99916,789,20708],["2021-02-13",99916,226,20934],["2021-02-14",99916,27,20961],["2021-02-15",99916,680,21641],["2021-02-16",99916,307,21948],["2021-02-17",99916,289,22237],["2021-02-18",99916,849,23086],["2021-02-19",99916,769,23855],["2021-02-20",99916,30,23885],["2021-02-21",99916,29,23914],["2021-02-22",99916,215,24129],["2021-02-23",99916,174,24303],["2021-02-24",99916,758,25061],["2021-02-25",99916,327,25388],["2021-02-26",99916,805,26193],["2021-02-27",99916,29,26222],["2021-02-28",99916,40,26262],["2021-03-01",99916,853,27115],["2021-03-02",99916,598,27713],["2021-03-03",99916,500,28213],["2021-03-04",99916,439,28652],["2021-03-05",99916,497,29149],["2021-03-06",99916,262,29411],["2021-03-07",99916,23,29434],["2021-03-08",99916,537,29971],["2021-03-09",99916,160,30131],["2021-03-10",99916,692,30823],["2021-03-11",99916,510,31333],["2021-03-12",99916,761,32094],["2021-03-13",99916,116,32210],["2021-03-14",99916,28,32238],["2021-03-15",99916,590,32828],["2021-03-16",99916,405,33233],["2021-03-17",99916,456,33689],["2021-03-18",99916,644,34333],["2021-03-19",99916,1133,35466],["2021-03-20",99916,35,35501],["2021-03-21",99916,58,35559],["2021-03-22",99916,324,35883],["2021-03-23",99916,333,36216],["2021-03-24",99916,398,36614],["2021-03-25",99916,195,36809],["2021-03-26",99916,1059,37868],["2021-03-27",99916,215,38083],["2021-03-28",99916,79,38162],["2021-03-29",99916,638,38800],["2021-03-30",99916,487,39287],["2021-03-31",99916,1163,40450],["2021-04-01",99916,632,41082],["2021-04-02",99916,1146,42228],["2021-04-03",99916,87,42315],["2021-04-04",99916,73,42388],["2021-04-05",99916,799,43187],["2021-04-06",99916,346,43533],["2021-04-07",99916,806,44339],["2021-04-08",99916,363,44702],["2021-04-09",99916,1149,45851],["2021-04-10",99916,119,45970],["2021-04-11",99916,62,46032],["2021-04-12",99916,761,46793],["2021-04-13",99916,338,47131],["2021-04-14",99916,703,47834],["2021-04-15",99916,522,48356],["2021-04-16",99916,952,49308],["2021-04-17",99916,141,49449],["2021-04-18",99916,39,49488],["2021-04-19",99916,473,49961],["2021-04-20",99916,484,50445],["2021-04-21",99916,617,51062],["2021-04-22",99916,543,51605],["2021-04-23",99916,810,52415],["2021-04-24",99916,66,52481],["2021-04-25",99916,38,52519],["2021-04-26",99916,354,52873],["2021-04-27",99916,398,53271],["2021-04-28",99916,700,53971],["2021-04-29",99916,376,54347],["2021-04-30",99916,865,55212],["2021-05-01",99916,101,55313],["2021-05-02",99916,75,55388],["2021-05-03",99916,270,55658],["2021-05-04",99916,260,55918],["2021-05-05",99916,370,56288],["2021-05-06",99916,277,56565],["2021-05-07",99916,566,57131],["2021-05-08",99916,80,57211],["2021-05-09",99916,32,57243],["2021-05-10",99916,100,57343],["2021-05-11",99916,258,57601],["2021-05-12",99916,212,57813],["2021-05-13",99916,266,58079],["2021-05-14",99916,442,58521],["2021-05-15",99916,174,58695],["2021-05-16",99916,67,58762],["2021-05-17",99916,169,58931],["2021-05-18",99916,268,59199],["2021-05-19",99916,368,59567],["2021-05-20",99916,276,59843],["2021-05-21",99916,353,60196],["2021-05-22",99916,76,60272],["2021-05-23",99916,50,60322],["2021-05-24",99916,106,60428],["2021-05-25",99916,183,60611],["2021-05-26",99916,174,60785],["2021-05-27",99916,225,61010],["2021-05-28",99916,255,61265],["2021-05-29",99916,69,61334],["2021-05-30",99916,54,61388],["2021-05-31",99916,63,61451],["2021-06-01",99916,204,61655],["2021-06-02",99916,124,61779],["2021-06-03",99916,198,61977],["2021-06-04",99916,286,62263],["2021-06-05",99916,129,62392],["2021-06-06",99916,62,62454],["2021-06-07",99916,118,62572],["2021-06-08",99916,176,62748],["2021-06-09",99916,104,62852],["2021-06-10",99916,213,63065],["2021-06-11",99916,236,63301],["2021-06-12",99916,83,63384],["2021-06-13",99916,28,63412],["2021-06-14",99916,71,63483],["2021-06-15",99916,151,63634],["2021-06-16",99916,103,63737],["2021-06-17",99916,170,63907],["2021-06-18",99916,172,64079],["2021-06-19",99916,57,64136],["2021-06-20",99916,32,64168],["2021-06-21",99916,61,64229],["2021-06-22",99916,147,64376],["2021-06-23",99916,101,64477],["2021-06-24",99916,105,64582],["2021-06-25",99916,168,64750],["2021-06-26",99916,59,64809],["2021-06-27",99916,29,64838],["2021-06-28",99916,77,64915],["2021-06-29",99916,108,65023],["2021-06-30",99916,75,65098],["2021-07-01",99916,109,65207],["2021-07-02",99916,98,65305],["2021-07-03",99916,40,65345],["2021-07-04",99916,6,65351],["2021-07-05",99916,70,65421],["2021-07-06",99916,104,65525],["2021-07-07",99916,67,65592],["2021-07-08",99916,140,65732],["2021-07-09",99916,82,65814],["2021-07-10",99916,41,65855],["2021-07-11",99916,27,65882],["2021-07-12",99916,53,65935],["2021-07-13",99916,129,66064],["2021-07-14",99916,74,66138],["2021-07-15",99916,123,66261],["2021-07-16",99916,100,66361],["2021-07-17",99916,46,66407],["2021-07-18",99916,35,66442],["2021-07-19",99916,82,66524],["2021-07-20",99916,123,66647],["2021-07-21",99916,87,66734],["2021-07-22",99916,143,66877],["2021-07-23",99916,172,67049],["2021-07-24",99916,103,67152],["2021-07-25",99916,42,67194],["2021-07-26",99916,89,67283],["2021-07-27",99916,185,67468],["2021-07-28",99916,122,67590],["2021-07-29",99916,173,67763],["2021-07-30",99916,238,68001],["2021-07-31",99916,90,68091],["2021-08-01",99916,60,68151],["2021-08-02",99916,162,68313],["2021-08-03",99916,234,68547],["2021-08-04",99916,168,68715],["2021-08-05",99916,237,68952],["2021-08-06",99916,194,69146],["2021-08-07",99916,133,69279],["2021-08-08",99916,90,69369],["2021-08-09",99916,167,69536],["2021-08-10",99916,254,69790],["2021-08-11",99916,169,69959],["2021-08-12",99916,240,70199],["2021-08-13",99916,283,70482],["2021-08-14",99916,133,70615],["2021-08-15",99916,105,70720],["2021-08-16",99916,223,70943],["2021-08-17",99916,330,71273],["2021-08-18",99916,258,71531],["2021-08-19",99916,359,71890],["2021-08-20",99916,397,72287],["2021-08-21",99916,154,72441],["2021-08-22",99916,132,72573],["2021-08-23",99916,243,72816],["2021-08-24",99916,374,73190],["2021-08-25",99916,254,73444],["2021-08-26",99916,341,73785],["2021-08-27",99916,401,74186],["2021-08-28",99916,177,74363],["2021-08-29",99916,116,74479],["2021-08-30",99916,218,74697],["2021-08-31",99916,341,75038],["2021-09-01",99916,316,75354],["2021-09-02",99916,394,75748],["2021-09-03",99916,524,76272],["2021-09-04",99916,165,76437],["2021-09-05",99916,150,76587],["2021-09-06",99916,81,76668],["2021-09-07",99916,357,77025],["2021-09-08",99916,275,77300],["2021-09-09",99916,335,77635],["2021-09-10",99916,394,78029],["2021-09-11",99916,175,78204],["2021-09-12",99916,120,78324],["2021-09-13",99916,245,78569],["2021-09-14",99916,316,78885],["2021-09-15",99916,287,79172],["2021-09-16",99916,346,79518],["2021-09-17",99916,396,79914],["2021-09-18",99916,136,80050],["2021-09-19",99916,101,80151],["2021-09-20",99916,202,80353],["2021-09-21",99916,229,80582],["2021-09-22",99916,198,80780],["2021-09-23",99916,197,80977],["2021-09-24",99916,320,81297],["2021-09-25",99916,127,81424],["2021-09-26",99916,99,81523],["2021-09-27",99916,214,81737],["2021-09-28",99916,242,81979],["2021-09-29",99916,220,82199],["2021-09-30",99916,282,82481],["2021-10-01",99916,395,82876],["2021-10-02",99916,106,82982],["2021-10-03",99916,80,83062],["2021-10-04",99916,146,83208],["2021-10-05",99916,326,83534],["2021-10-06",99916,155,83689],["2021-10-07",99916,201,83890],["2021-10-08",99916,309,84199],["2021-10-09",99916,53,84252],["2021-10-10",99916,62,84314],["2021-10-11",99916,118,84432],["2021-10-12",99916,158,84590],["2021-10-13",99916,201,84791],["2021-10-14",99916,159,84950],["2021-10-15",99916,231,85181],["2021-10-16",99916,89,85270],["2021-10-17",99916,43,85313],["2021-10-18",99916,101,85414],["2021-10-19",99916,185,85599],["2021-10-20",99916,88,85687],["2021-10-21",99916,104,85791],["2021-10-22",99916,290,86081],["2021-10-23",99916,130,86211],["2021-10-24",99916,100,86311],["2021-10-25",99916,267,86578],["2021-10-26",99916,526,87104],["2021-10-27",99916,474,87578],["2021-10-28",99916,333,87911],["2021-10-29",99916,489,88400],["2021-10-30",99916,72,88472],["2021-10-31",99916,47,88519],["2021-11-01",99916,466,88985],["2021-11-02",99916,283,89268],["2021-11-03",99916,246,89514],["2021-11-04",99916,289,89803],["2021-11-05",99916,484,90287],["2021-11-06",99916,97,90384],["2021-11-07",99916,78,90462],["2021-11-08",99916,252,90714],["2021-11-09",99916,317,91031],["2021-11-10",99916,232,91263],["2021-11-11",99916,177,91440],["2021-11-12",99916,453,91893],["2021-11-13",99916,97,91990],["2021-11-14",99916,50,92040],["2021-11-15",99916,217,92257],["2021-11-16",99916,359,92616],["2021-11-17",99916,268,92884],["2021-11-18",99916,337,93221],["2021-11-19",99916,414,93635],["2021-11-20",99916,109,93744],["2021-11-21",99916,64,93808],["2021-11-22",99916,254,94062],["2021-11-23",99916,369,94431],["2021-11-24",99916,162,94593],["2021-11-25",99916,3,94596],["2021-11-26",99916,146,94742],["2021-11-27",99916,97,94839],["2021-11-28",99916,106,94945],["2021-11-29",99916,266,95211],["2021-11-30",99916,448,95659],["2021-12-01",99916,361,96020],["2021-12-02",99916,473,96493],["2021-12-03",99916,456,96949],["2021-12-04",99916,186,97135],["2021-12-05",99916,70,97205],["2021-12-06",99916,236,97441],["2021-12-07",99916,355,97796],["2021-12-08",99916,204,98000],["2021-12-09",99916,286,98286],["2021-12-10",99916,302,98588],["2021-12-11",99916,85,98673],["2021-12-12",99916,55,98728],["2021-12-13",99916,178,98906],["2021-12-14",99916,245,99151],["2021-12-15",99916,160,99311],["2021-12-16",99916,204,99515],["2021-12-17",99916,219,99734],["2021-12-18",99916,100,99834],["2021-12-19",99916,59,99893],["2021-12-20",99916,266,100159],["2021-12-21",99916,325,100484],["2021-12-22",99916,252,100736],["2021-12-23",99916,145,100881],["2021-12-24",99916,52,100933],["2021-12-25",99916,1,100934],["2021-12-26",99916,64,100998],["2021-12-27",99916,239,101237],["2021-12-28",99916,311,101548],["2021-12-29",99916,272,101820],["2021-12-30",99916,264,102084],["2021-12-31",99916,110,102194],["2022-01-01",99916,20,102214],["2022-01-02",99916,77,102291],["2022-01-03",99916,81,102372]]} \ No newline at end of file diff --git a/public/data/overall/vaccinations/by-county/Forsyth.json b/public/data/overall/vaccinations/by-county/Forsyth.json new file mode 100644 index 000000000..c54baa913 --- /dev/null +++ b/public/data/overall/vaccinations/by-county/Forsyth.json @@ -0,0 +1 @@ +{"segment":{"county":"Forsyth"},"headers":["report_date","population","vaccinations","total_vaccinations"],"rows":[["2020-12-16",252507,3,3],["2020-12-17",252507,50,53],["2020-12-18",252507,95,148],["2020-12-19",252507,66,214],["2020-12-20",252507,87,301],["2020-12-21",252507,129,430],["2020-12-22",252507,184,614],["2020-12-23",252507,202,816],["2020-12-24",252507,54,870],["2020-12-25",252507,1,871],["2020-12-26",252507,29,900],["2020-12-27",252507,62,962],["2020-12-28",252507,274,1236],["2020-12-29",252507,291,1527],["2020-12-30",252507,448,1975],["2020-12-31",252507,86,2061],["2021-01-01",252507,452,2513],["2021-01-02",252507,39,2552],["2021-01-03",252507,61,2613],["2021-01-04",252507,392,3005],["2021-01-05",252507,289,3294],["2021-01-06",252507,411,3705],["2021-01-07",252507,436,4141],["2021-01-08",252507,363,4504],["2021-01-09",252507,228,4732],["2021-01-10",252507,123,4855],["2021-01-11",252507,456,5311],["2021-01-12",252507,486,5797],["2021-01-13",252507,586,6383],["2021-01-14",252507,630,7013],["2021-01-15",252507,722,7735],["2021-01-16",252507,536,8271],["2021-01-17",252507,328,8599],["2021-01-18",252507,791,9390],["2021-01-19",252507,1373,10763],["2021-01-20",252507,1416,12179],["2021-01-21",252507,887,13066],["2021-01-22",252507,658,13724],["2021-01-23",252507,398,14122],["2021-01-24",252507,224,14346],["2021-01-25",252507,806,15152],["2021-01-26",252507,1310,16462],["2021-01-27",252507,1639,18101],["2021-01-28",252507,1183,19284],["2021-01-29",252507,943,20227],["2021-01-30",252507,435,20662],["2021-01-31",252507,73,20735],["2021-02-01",252507,1151,21886],["2021-02-02",252507,808,22694],["2021-02-03",252507,751,23445],["2021-02-04",252507,1473,24918],["2021-02-05",252507,688,25606],["2021-02-06",252507,489,26095],["2021-02-07",252507,100,26195],["2021-02-08",252507,1238,27433],["2021-02-09",252507,1302,28735],["2021-02-10",252507,1245,29980],["2021-02-11",252507,854,30834],["2021-02-12",252507,726,31560],["2021-02-13",252507,673,32233],["2021-02-14",252507,331,32564],["2021-02-15",252507,1023,33587],["2021-02-16",252507,1466,35053],["2021-02-17",252507,1588,36641],["2021-02-18",252507,1016,37657],["2021-02-19",252507,721,38378],["2021-02-20",252507,458,38836],["2021-02-21",252507,167,39003],["2021-02-22",252507,568,39571],["2021-02-23",252507,796,40367],["2021-02-24",252507,1570,41937],["2021-02-25",252507,2074,44011],["2021-02-26",252507,1868,45879],["2021-02-27",252507,643,46522],["2021-02-28",252507,267,46789],["2021-03-01",252507,2260,49049],["2021-03-02",252507,2060,51109],["2021-03-03",252507,1522,52631],["2021-03-04",252507,1106,53737],["2021-03-05",252507,1236,54973],["2021-03-06",252507,537,55510],["2021-03-07",252507,297,55807],["2021-03-08",252507,1331,57138],["2021-03-09",252507,1516,58654],["2021-03-10",252507,1956,60610],["2021-03-11",252507,1466,62076],["2021-03-12",252507,1343,63419],["2021-03-13",252507,1974,65393],["2021-03-14",252507,381,65774],["2021-03-15",252507,1828,67602],["2021-03-16",252507,2397,69999],["2021-03-17",252507,2583,72582],["2021-03-18",252507,2547,75129],["2021-03-19",252507,2283,77412],["2021-03-20",252507,880,78292],["2021-03-21",252507,490,78782],["2021-03-22",252507,1944,80726],["2021-03-23",252507,2474,83200],["2021-03-24",252507,2908,86108],["2021-03-25",252507,3337,89445],["2021-03-26",252507,2605,92050],["2021-03-27",252507,1241,93291],["2021-03-28",252507,722,94013],["2021-03-29",252507,2626,96639],["2021-03-30",252507,3180,99819],["2021-03-31",252507,3724,103543],["2021-04-01",252507,4139,107682],["2021-04-02",252507,2334,110016],["2021-04-03",252507,1011,111027],["2021-04-04",252507,568,111595],["2021-04-05",252507,2470,114065],["2021-04-06",252507,3474,117539],["2021-04-07",252507,3433,120972],["2021-04-08",252507,3225,124197],["2021-04-09",252507,2585,126782],["2021-04-10",252507,1435,128217],["2021-04-11",252507,691,128908],["2021-04-12",252507,2995,131903],["2021-04-13",252507,2852,134755],["2021-04-14",252507,3389,138144],["2021-04-15",252507,3611,141755],["2021-04-16",252507,2395,144150],["2021-04-17",252507,1034,145184],["2021-04-18",252507,660,145844],["2021-04-19",252507,2695,148539],["2021-04-20",252507,3119,151658],["2021-04-21",252507,3145,154803],["2021-04-22",252507,3274,158077],["2021-04-23",252507,2888,160965],["2021-04-24",252507,1455,162420],["2021-04-25",252507,636,163056],["2021-04-26",252507,2036,165092],["2021-04-27",252507,2365,167457],["2021-04-28",252507,2386,169843],["2021-04-29",252507,2529,172372],["2021-04-30",252507,1967,174339],["2021-05-01",252507,1397,175736],["2021-05-02",252507,508,176244],["2021-05-03",252507,1620,177864],["2021-05-04",252507,2090,179954],["2021-05-05",252507,1989,181943],["2021-05-06",252507,1719,183662],["2021-05-07",252507,1667,185329],["2021-05-08",252507,663,185992],["2021-05-09",252507,310,186302],["2021-05-10",252507,1054,187356],["2021-05-11",252507,1288,188644],["2021-05-12",252507,923,189567],["2021-05-13",252507,1560,191127],["2021-05-14",252507,1127,192254],["2021-05-15",252507,947,193201],["2021-05-16",252507,622,193823],["2021-05-17",252507,1196,195019],["2021-05-18",252507,1291,196310],["2021-05-19",252507,1193,197503],["2021-05-20",252507,1108,198611],["2021-05-21",252507,935,199546],["2021-05-22",252507,685,200231],["2021-05-23",252507,348,200579],["2021-05-24",252507,660,201239],["2021-05-25",252507,1007,202246],["2021-05-26",252507,695,202941],["2021-05-27",252507,795,203736],["2021-05-28",252507,682,204418],["2021-05-29",252507,365,204783],["2021-05-30",252507,243,205026],["2021-05-31",252507,99,205125],["2021-06-01",252507,912,206037],["2021-06-02",252507,582,206619],["2021-06-03",252507,1031,207650],["2021-06-04",252507,858,208508],["2021-06-05",252507,702,209210],["2021-06-06",252507,434,209644],["2021-06-07",252507,593,210237],["2021-06-08",252507,798,211035],["2021-06-09",252507,624,211659],["2021-06-10",252507,698,212357],["2021-06-11",252507,636,212993],["2021-06-12",252507,563,213556],["2021-06-13",252507,215,213771],["2021-06-14",252507,492,214263],["2021-06-15",252507,549,214812],["2021-06-16",252507,456,215268],["2021-06-17",252507,439,215707],["2021-06-18",252507,514,216221],["2021-06-19",252507,346,216567],["2021-06-20",252507,180,216747],["2021-06-21",252507,277,217024],["2021-06-22",252507,428,217452],["2021-06-23",252507,339,217791],["2021-06-24",252507,410,218201],["2021-06-25",252507,412,218613],["2021-06-26",252507,279,218892],["2021-06-27",252507,186,219078],["2021-06-28",252507,270,219348],["2021-06-29",252507,365,219713],["2021-06-30",252507,317,220030],["2021-07-01",252507,397,220427],["2021-07-02",252507,343,220770],["2021-07-03",252507,172,220942],["2021-07-04",252507,28,220970],["2021-07-05",252507,221,221191],["2021-07-06",252507,274,221465],["2021-07-07",252507,306,221771],["2021-07-08",252507,264,222035],["2021-07-09",252507,319,222354],["2021-07-10",252507,223,222577],["2021-07-11",252507,108,222685],["2021-07-12",252507,249,222934],["2021-07-13",252507,267,223201],["2021-07-14",252507,250,223451],["2021-07-15",252507,287,223738],["2021-07-16",252507,343,224081],["2021-07-17",252507,223,224304],["2021-07-18",252507,164,224468],["2021-07-19",252507,287,224755],["2021-07-20",252507,333,225088],["2021-07-21",252507,321,225409],["2021-07-22",252507,369,225778],["2021-07-23",252507,435,226213],["2021-07-24",252507,294,226507],["2021-07-25",252507,171,226678],["2021-07-26",252507,351,227029],["2021-07-27",252507,370,227399],["2021-07-28",252507,404,227803],["2021-07-29",252507,373,228176],["2021-07-30",252507,455,228631],["2021-07-31",252507,337,228968],["2021-08-01",252507,270,229238],["2021-08-02",252507,437,229675],["2021-08-03",252507,475,230150],["2021-08-04",252507,448,230598],["2021-08-05",252507,403,231001],["2021-08-06",252507,540,231541],["2021-08-07",252507,402,231943],["2021-08-08",252507,284,232227],["2021-08-09",252507,428,232655],["2021-08-10",252507,485,233140],["2021-08-11",252507,411,233551],["2021-08-12",252507,463,234014],["2021-08-13",252507,562,234576],["2021-08-14",252507,423,234999],["2021-08-15",252507,293,235292],["2021-08-16",252507,543,235835],["2021-08-17",252507,564,236399],["2021-08-18",252507,501,236900],["2021-08-19",252507,517,237417],["2021-08-20",252507,641,238058],["2021-08-21",252507,526,238584],["2021-08-22",252507,266,238850],["2021-08-23",252507,506,239356],["2021-08-24",252507,525,239881],["2021-08-25",252507,504,240385],["2021-08-26",252507,543,240928],["2021-08-27",252507,635,241563],["2021-08-28",252507,439,242002],["2021-08-29",252507,300,242302],["2021-08-30",252507,519,242821],["2021-08-31",252507,481,243302],["2021-09-01",252507,511,243813],["2021-09-02",252507,459,244272],["2021-09-03",252507,607,244879],["2021-09-04",252507,339,245218],["2021-09-05",252507,241,245459],["2021-09-06",252507,62,245521],["2021-09-07",252507,452,245973],["2021-09-08",252507,398,246371],["2021-09-09",252507,445,246816],["2021-09-10",252507,502,247318],["2021-09-11",252507,326,247644],["2021-09-12",252507,192,247836],["2021-09-13",252507,430,248266],["2021-09-14",252507,384,248650],["2021-09-15",252507,341,248991],["2021-09-16",252507,369,249360],["2021-09-17",252507,457,249817],["2021-09-18",252507,269,250086],["2021-09-19",252507,145,250231],["2021-09-20",252507,324,250555],["2021-09-21",252507,268,250823],["2021-09-22",252507,273,251096],["2021-09-23",252507,238,251334],["2021-09-24",252507,403,251737],["2021-09-25",252507,271,252008],["2021-09-26",252507,193,252201],["2021-09-27",252507,420,252621],["2021-09-28",252507,449,253070],["2021-09-29",252507,429,253499],["2021-09-30",252507,460,253959],["2021-10-01",252507,684,254643],["2021-10-02",252507,247,254890],["2021-10-03",252507,150,255040],["2021-10-04",252507,427,255467],["2021-10-05",252507,365,255832],["2021-10-06",252507,388,256220],["2021-10-07",252507,482,256702],["2021-10-08",252507,523,257225],["2021-10-09",252507,218,257443],["2021-10-10",252507,155,257598],["2021-10-11",252507,259,257857],["2021-10-12",252507,295,258152],["2021-10-13",252507,265,258417],["2021-10-14",252507,272,258689],["2021-10-15",252507,431,259120],["2021-10-16",252507,192,259312],["2021-10-17",252507,132,259444],["2021-10-18",252507,348,259792],["2021-10-19",252507,273,260065],["2021-10-20",252507,258,260323],["2021-10-21",252507,319,260642],["2021-10-22",252507,724,261366],["2021-10-23",252507,495,261861],["2021-10-24",252507,321,262182],["2021-10-25",252507,811,262993],["2021-10-26",252507,619,263612],["2021-10-27",252507,774,264386],["2021-10-28",252507,679,265065],["2021-10-29",252507,899,265964],["2021-10-30",252507,450,266414],["2021-10-31",252507,255,266669],["2021-11-01",252507,702,267371],["2021-11-02",252507,627,267998],["2021-11-03",252507,624,268622],["2021-11-04",252507,666,269288],["2021-11-05",252507,836,270124],["2021-11-06",252507,586,270710],["2021-11-07",252507,316,271026],["2021-11-08",252507,627,271653],["2021-11-09",252507,646,272299],["2021-11-10",252507,699,272998],["2021-11-11",252507,727,273725],["2021-11-12",252507,911,274636],["2021-11-13",252507,1129,275765],["2021-11-14",252507,420,276185],["2021-11-15",252507,745,276930],["2021-11-16",252507,673,277603],["2021-11-17",252507,722,278325],["2021-11-18",252507,696,279021],["2021-11-19",252507,906,279927],["2021-11-20",252507,747,280674],["2021-11-21",252507,522,281196],["2021-11-22",252507,916,282112],["2021-11-23",252507,871,282983],["2021-11-24",252507,775,283758],["2021-11-25",252507,1,283759],["2021-11-26",252507,832,284591],["2021-11-27",252507,616,285207],["2021-11-28",252507,453,285660],["2021-11-29",252507,838,286498],["2021-11-30",252507,915,287413],["2021-12-01",252507,1121,288534],["2021-12-02",252507,1158,289692],["2021-12-03",252507,1401,291093],["2021-12-04",252507,1015,292108],["2021-12-05",252507,539,292647],["2021-12-06",252507,1023,293670],["2021-12-07",252507,1025,294695],["2021-12-08",252507,996,295691],["2021-12-09",252507,1002,296693],["2021-12-10",252507,1253,297946],["2021-12-11",252507,822,298768],["2021-12-12",252507,515,299283],["2021-12-13",252507,924,300207],["2021-12-14",252507,935,301142],["2021-12-15",252507,914,302056],["2021-12-16",252507,1041,303097],["2021-12-17",252507,1117,304214],["2021-12-18",252507,752,304966],["2021-12-19",252507,549,305515],["2021-12-20",252507,1104,306619],["2021-12-21",252507,1174,307793],["2021-12-22",252507,1126,308919],["2021-12-23",252507,956,309875],["2021-12-24",252507,360,310235],["2021-12-25",252507,2,310237],["2021-12-26",252507,313,310550],["2021-12-27",252507,908,311458],["2021-12-28",252507,1042,312500],["2021-12-29",252507,1004,313504],["2021-12-30",252507,789,314293],["2021-12-31",252507,335,314628],["2022-01-01",252507,65,314693],["2022-01-02",252507,275,314968],["2022-01-03",252507,281,315249]]} \ No newline at end of file diff --git a/public/data/overall/vaccinations/by-county/Franklin.json b/public/data/overall/vaccinations/by-county/Franklin.json new file mode 100644 index 000000000..b976410ee --- /dev/null +++ b/public/data/overall/vaccinations/by-county/Franklin.json @@ -0,0 +1 @@ +{"segment":{"county":"Franklin"},"headers":["report_date","population","vaccinations","total_vaccinations"],"rows":[["2020-12-18",23329,4,4],["2020-12-19",23329,1,5],["2020-12-21",23329,5,10],["2020-12-22",23329,20,30],["2020-12-23",23329,18,48],["2020-12-27",23329,2,50],["2020-12-28",23329,22,72],["2020-12-29",23329,78,150],["2020-12-30",23329,52,202],["2020-12-31",23329,4,206],["2021-01-01",23329,5,211],["2021-01-02",23329,2,213],["2021-01-03",23329,4,217],["2021-01-04",23329,27,244],["2021-01-05",23329,36,280],["2021-01-06",23329,27,307],["2021-01-07",23329,22,329],["2021-01-08",23329,32,361],["2021-01-09",23329,2,363],["2021-01-10",23329,11,374],["2021-01-11",23329,72,446],["2021-01-12",23329,110,556],["2021-01-13",23329,130,686],["2021-01-14",23329,102,788],["2021-01-15",23329,102,890],["2021-01-16",23329,10,900],["2021-01-17",23329,2,902],["2021-01-18",23329,143,1045],["2021-01-19",23329,180,1225],["2021-01-20",23329,172,1397],["2021-01-21",23329,118,1515],["2021-01-22",23329,79,1594],["2021-01-23",23329,20,1614],["2021-01-24",23329,22,1636],["2021-01-25",23329,98,1734],["2021-01-26",23329,145,1879],["2021-01-27",23329,113,1992],["2021-01-28",23329,99,2091],["2021-01-29",23329,63,2154],["2021-01-30",23329,5,2159],["2021-01-31",23329,17,2176],["2021-02-01",23329,100,2276],["2021-02-02",23329,100,2376],["2021-02-03",23329,119,2495],["2021-02-04",23329,85,2580],["2021-02-05",23329,65,2645],["2021-02-06",23329,12,2657],["2021-02-07",23329,6,2663],["2021-02-08",23329,88,2751],["2021-02-09",23329,111,2862],["2021-02-10",23329,107,2969],["2021-02-11",23329,116,3085],["2021-02-12",23329,89,3174],["2021-02-13",23329,9,3183],["2021-02-14",23329,21,3204],["2021-02-15",23329,111,3315],["2021-02-16",23329,118,3433],["2021-02-17",23329,104,3537],["2021-02-18",23329,114,3651],["2021-02-19",23329,74,3725],["2021-02-20",23329,12,3737],["2021-02-21",23329,3,3740],["2021-02-22",23329,43,3783],["2021-02-23",23329,226,4009],["2021-02-24",23329,139,4148],["2021-02-25",23329,149,4297],["2021-02-26",23329,59,4356],["2021-02-27",23329,10,4366],["2021-02-28",23329,15,4381],["2021-03-01",23329,128,4509],["2021-03-02",23329,153,4662],["2021-03-03",23329,186,4848],["2021-03-04",23329,122,4970],["2021-03-05",23329,126,5096],["2021-03-06",23329,9,5105],["2021-03-07",23329,12,5117],["2021-03-08",23329,128,5245],["2021-03-09",23329,174,5419],["2021-03-10",23329,120,5539],["2021-03-11",23329,139,5678],["2021-03-12",23329,126,5804],["2021-03-13",23329,37,5841],["2021-03-14",23329,15,5856],["2021-03-15",23329,116,5972],["2021-03-16",23329,149,6121],["2021-03-17",23329,146,6267],["2021-03-18",23329,120,6387],["2021-03-19",23329,132,6519],["2021-03-20",23329,20,6539],["2021-03-21",23329,15,6554],["2021-03-22",23329,105,6659],["2021-03-23",23329,99,6758],["2021-03-24",23329,122,6880],["2021-03-25",23329,137,7017],["2021-03-26",23329,121,7138],["2021-03-27",23329,25,7163],["2021-03-28",23329,36,7199],["2021-03-29",23329,94,7293],["2021-03-30",23329,143,7436],["2021-03-31",23329,135,7571],["2021-04-01",23329,159,7730],["2021-04-02",23329,105,7835],["2021-04-03",23329,59,7894],["2021-04-04",23329,34,7928],["2021-04-05",23329,156,8084],["2021-04-06",23329,230,8314],["2021-04-07",23329,129,8443],["2021-04-08",23329,163,8606],["2021-04-09",23329,110,8716],["2021-04-10",23329,34,8750],["2021-04-11",23329,25,8775],["2021-04-12",23329,150,8925],["2021-04-13",23329,136,9061],["2021-04-14",23329,173,9234],["2021-04-15",23329,149,9383],["2021-04-16",23329,144,9527],["2021-04-17",23329,59,9586],["2021-04-18",23329,13,9599],["2021-04-19",23329,88,9687],["2021-04-20",23329,136,9823],["2021-04-21",23329,118,9941],["2021-04-22",23329,135,10076],["2021-04-23",23329,101,10177],["2021-04-24",23329,20,10197],["2021-04-25",23329,16,10213],["2021-04-26",23329,96,10309],["2021-04-27",23329,142,10451],["2021-04-28",23329,122,10573],["2021-04-29",23329,101,10674],["2021-04-30",23329,88,10762],["2021-05-01",23329,34,10796],["2021-05-02",23329,19,10815],["2021-05-03",23329,67,10882],["2021-05-04",23329,150,11032],["2021-05-05",23329,68,11100],["2021-05-06",23329,62,11162],["2021-05-07",23329,79,11241],["2021-05-08",23329,59,11300],["2021-05-09",23329,8,11308],["2021-05-10",23329,41,11349],["2021-05-11",23329,67,11416],["2021-05-12",23329,54,11470],["2021-05-13",23329,40,11510],["2021-05-14",23329,88,11598],["2021-05-15",23329,20,11618],["2021-05-16",23329,7,11625],["2021-05-17",23329,59,11684],["2021-05-18",23329,86,11770],["2021-05-19",23329,62,11832],["2021-05-20",23329,49,11881],["2021-05-21",23329,54,11935],["2021-05-22",23329,17,11952],["2021-05-23",23329,9,11961],["2021-05-24",23329,42,12003],["2021-05-25",23329,54,12057],["2021-05-26",23329,53,12110],["2021-05-27",23329,30,12140],["2021-05-28",23329,46,12186],["2021-05-29",23329,13,12199],["2021-05-30",23329,7,12206],["2021-05-31",23329,9,12215],["2021-06-01",23329,48,12263],["2021-06-02",23329,23,12286],["2021-06-03",23329,42,12328],["2021-06-04",23329,35,12363],["2021-06-05",23329,13,12376],["2021-06-06",23329,8,12384],["2021-06-07",23329,23,12407],["2021-06-08",23329,34,12441],["2021-06-09",23329,19,12460],["2021-06-10",23329,35,12495],["2021-06-11",23329,22,12517],["2021-06-12",23329,19,12536],["2021-06-13",23329,4,12540],["2021-06-14",23329,30,12570],["2021-06-15",23329,50,12620],["2021-06-16",23329,27,12647],["2021-06-17",23329,13,12660],["2021-06-18",23329,30,12690],["2021-06-19",23329,16,12706],["2021-06-20",23329,8,12714],["2021-06-21",23329,23,12737],["2021-06-22",23329,24,12761],["2021-06-23",23329,27,12788],["2021-06-24",23329,15,12803],["2021-06-25",23329,28,12831],["2021-06-26",23329,8,12839],["2021-06-27",23329,4,12843],["2021-06-28",23329,15,12858],["2021-06-29",23329,19,12877],["2021-06-30",23329,24,12901],["2021-07-01",23329,26,12927],["2021-07-02",23329,18,12945],["2021-07-03",23329,9,12954],["2021-07-04",23329,3,12957],["2021-07-05",23329,8,12965],["2021-07-06",23329,23,12988],["2021-07-07",23329,17,13005],["2021-07-08",23329,25,13030],["2021-07-09",23329,20,13050],["2021-07-10",23329,11,13061],["2021-07-11",23329,3,13064],["2021-07-12",23329,15,13079],["2021-07-13",23329,25,13104],["2021-07-14",23329,19,13123],["2021-07-15",23329,11,13134],["2021-07-16",23329,22,13156],["2021-07-17",23329,10,13166],["2021-07-18",23329,9,13175],["2021-07-19",23329,20,13195],["2021-07-20",23329,26,13221],["2021-07-21",23329,20,13241],["2021-07-22",23329,44,13285],["2021-07-23",23329,18,13303],["2021-07-24",23329,20,13323],["2021-07-25",23329,8,13331],["2021-07-26",23329,29,13360],["2021-07-27",23329,32,13392],["2021-07-28",23329,31,13423],["2021-07-29",23329,50,13473],["2021-07-30",23329,33,13506],["2021-07-31",23329,24,13530],["2021-08-01",23329,14,13544],["2021-08-02",23329,28,13572],["2021-08-03",23329,30,13602],["2021-08-04",23329,50,13652],["2021-08-05",23329,47,13699],["2021-08-06",23329,39,13738],["2021-08-07",23329,22,13760],["2021-08-08",23329,16,13776],["2021-08-09",23329,36,13812],["2021-08-10",23329,66,13878],["2021-08-11",23329,44,13922],["2021-08-12",23329,69,13991],["2021-08-13",23329,54,14045],["2021-08-14",23329,29,14074],["2021-08-15",23329,28,14102],["2021-08-16",23329,43,14145],["2021-08-17",23329,41,14186],["2021-08-18",23329,43,14229],["2021-08-19",23329,54,14283],["2021-08-20",23329,77,14360],["2021-08-21",23329,36,14396],["2021-08-22",23329,22,14418],["2021-08-23",23329,62,14480],["2021-08-24",23329,83,14563],["2021-08-25",23329,75,14638],["2021-08-26",23329,83,14721],["2021-08-27",23329,76,14797],["2021-08-28",23329,40,14837],["2021-08-29",23329,18,14855],["2021-08-30",23329,49,14904],["2021-08-31",23329,63,14967],["2021-09-01",23329,61,15028],["2021-09-02",23329,75,15103],["2021-09-03",23329,66,15169],["2021-09-04",23329,33,15202],["2021-09-05",23329,29,15231],["2021-09-06",23329,5,15236],["2021-09-07",23329,58,15294],["2021-09-08",23329,49,15343],["2021-09-09",23329,64,15407],["2021-09-10",23329,61,15468],["2021-09-11",23329,36,15504],["2021-09-12",23329,23,15527],["2021-09-13",23329,77,15604],["2021-09-14",23329,68,15672],["2021-09-15",23329,46,15718],["2021-09-16",23329,68,15786],["2021-09-17",23329,76,15862],["2021-09-18",23329,36,15898],["2021-09-19",23329,27,15925],["2021-09-20",23329,44,15969],["2021-09-21",23329,46,16015],["2021-09-22",23329,44,16059],["2021-09-23",23329,75,16134],["2021-09-24",23329,39,16173],["2021-09-25",23329,23,16196],["2021-09-26",23329,10,16206],["2021-09-27",23329,36,16242],["2021-09-28",23329,47,16289],["2021-09-29",23329,46,16335],["2021-09-30",23329,37,16372],["2021-10-01",23329,47,16419],["2021-10-02",23329,13,16432],["2021-10-03",23329,11,16443],["2021-10-04",23329,43,16486],["2021-10-05",23329,30,16516],["2021-10-06",23329,34,16550],["2021-10-07",23329,36,16586],["2021-10-08",23329,35,16621],["2021-10-09",23329,12,16633],["2021-10-10",23329,6,16639],["2021-10-11",23329,20,16659],["2021-10-12",23329,37,16696],["2021-10-13",23329,29,16725],["2021-10-14",23329,21,16746],["2021-10-15",23329,33,16779],["2021-10-16",23329,13,16792],["2021-10-17",23329,6,16798],["2021-10-18",23329,28,16826],["2021-10-19",23329,21,16847],["2021-10-20",23329,33,16880],["2021-10-21",23329,31,16911],["2021-10-22",23329,35,16946],["2021-10-23",23329,34,16980],["2021-10-24",23329,14,16994],["2021-10-25",23329,46,17040],["2021-10-26",23329,92,17132],["2021-10-27",23329,91,17223],["2021-10-28",23329,78,17301],["2021-10-29",23329,57,17358],["2021-10-30",23329,21,17379],["2021-10-31",23329,14,17393],["2021-11-01",23329,55,17448],["2021-11-02",23329,73,17521],["2021-11-03",23329,71,17592],["2021-11-04",23329,49,17641],["2021-11-05",23329,55,17696],["2021-11-06",23329,22,17718],["2021-11-07",23329,7,17725],["2021-11-08",23329,55,17780],["2021-11-09",23329,54,17834],["2021-11-10",23329,84,17918],["2021-11-11",23329,65,17983],["2021-11-12",23329,72,18055],["2021-11-13",23329,13,18068],["2021-11-14",23329,5,18073],["2021-11-15",23329,47,18120],["2021-11-16",23329,72,18192],["2021-11-17",23329,89,18281],["2021-11-18",23329,60,18341],["2021-11-19",23329,44,18385],["2021-11-20",23329,15,18400],["2021-11-21",23329,10,18410],["2021-11-22",23329,60,18470],["2021-11-23",23329,53,18523],["2021-11-24",23329,47,18570],["2021-11-26",23329,29,18599],["2021-11-27",23329,15,18614],["2021-11-28",23329,10,18624],["2021-11-29",23329,59,18683],["2021-11-30",23329,77,18760],["2021-12-01",23329,87,18847],["2021-12-02",23329,81,18928],["2021-12-03",23329,103,19031],["2021-12-04",23329,25,19056],["2021-12-05",23329,13,19069],["2021-12-06",23329,68,19137],["2021-12-07",23329,41,19178],["2021-12-08",23329,79,19257],["2021-12-09",23329,48,19305],["2021-12-10",23329,50,19355],["2021-12-11",23329,18,19373],["2021-12-12",23329,10,19383],["2021-12-13",23329,42,19425],["2021-12-14",23329,47,19472],["2021-12-15",23329,51,19523],["2021-12-16",23329,61,19584],["2021-12-17",23329,54,19638],["2021-12-18",23329,21,19659],["2021-12-19",23329,6,19665],["2021-12-20",23329,40,19705],["2021-12-21",23329,49,19754],["2021-12-22",23329,62,19816],["2021-12-23",23329,31,19847],["2021-12-24",23329,6,19853],["2021-12-26",23329,14,19867],["2021-12-27",23329,39,19906],["2021-12-28",23329,52,19958],["2021-12-29",23329,51,20009],["2021-12-30",23329,42,20051],["2021-12-31",23329,21,20072],["2022-01-01",23329,8,20080],["2022-01-02",23329,5,20085],["2022-01-03",23329,13,20098]]} \ No newline at end of file diff --git a/public/data/overall/vaccinations/by-county/Fulton.json b/public/data/overall/vaccinations/by-county/Fulton.json new file mode 100644 index 000000000..376862241 --- /dev/null +++ b/public/data/overall/vaccinations/by-county/Fulton.json @@ -0,0 +1 @@ +{"segment":{"county":"Fulton"},"headers":["report_date","population","vaccinations","total_vaccinations"],"rows":[["2020-12-12",1099181,1,1],["2020-12-13",1099181,1,2],["2020-12-14",1099181,3,5],["2020-12-15",1099181,7,12],["2020-12-16",1099181,27,39],["2020-12-17",1099181,305,344],["2020-12-18",1099181,635,979],["2020-12-19",1099181,981,1960],["2020-12-20",1099181,869,2829],["2020-12-21",1099181,861,3690],["2020-12-22",1099181,1145,4835],["2020-12-23",1099181,1443,6278],["2020-12-24",1099181,415,6693],["2020-12-25",1099181,25,6718],["2020-12-26",1099181,249,6967],["2020-12-27",1099181,222,7189],["2020-12-28",1099181,1571,8760],["2020-12-29",1099181,1618,10378],["2020-12-30",1099181,1464,11842],["2020-12-31",1099181,765,12607],["2021-01-01",1099181,699,13306],["2021-01-02",1099181,243,13549],["2021-01-03",1099181,355,13904],["2021-01-04",1099181,1539,15443],["2021-01-05",1099181,1667,17110],["2021-01-06",1099181,1776,18886],["2021-01-07",1099181,1918,20804],["2021-01-08",1099181,2658,23462],["2021-01-09",1099181,2014,25476],["2021-01-10",1099181,1137,26613],["2021-01-11",1099181,3455,30068],["2021-01-12",1099181,3624,33692],["2021-01-13",1099181,4576,38268],["2021-01-14",1099181,4035,42303],["2021-01-15",1099181,4297,46600],["2021-01-16",1099181,3136,49736],["2021-01-17",1099181,1490,51226],["2021-01-18",1099181,3378,54604],["2021-01-19",1099181,4461,59065],["2021-01-20",1099181,4798,63863],["2021-01-21",1099181,4291,68154],["2021-01-22",1099181,3707,71861],["2021-01-23",1099181,1583,73444],["2021-01-24",1099181,913,74357],["2021-01-25",1099181,3655,78012],["2021-01-26",1099181,3512,81524],["2021-01-27",1099181,4027,85551],["2021-01-28",1099181,4705,90256],["2021-01-29",1099181,5100,95356],["2021-01-30",1099181,2009,97365],["2021-01-31",1099181,920,98285],["2021-02-01",1099181,4656,102941],["2021-02-02",1099181,3995,106936],["2021-02-03",1099181,4109,111045],["2021-02-04",1099181,4676,115721],["2021-02-05",1099181,4745,120466],["2021-02-06",1099181,1752,122218],["2021-02-07",1099181,1108,123326],["2021-02-08",1099181,4684,128010],["2021-02-09",1099181,4766,132776],["2021-02-10",1099181,5155,137931],["2021-02-11",1099181,5823,143754],["2021-02-12",1099181,4911,148665],["2021-02-13",1099181,3350,152015],["2021-02-14",1099181,1364,153379],["2021-02-15",1099181,4249,157628],["2021-02-16",1099181,4908,162536],["2021-02-17",1099181,5948,168484],["2021-02-18",1099181,5110,173594],["2021-02-19",1099181,5178,178772],["2021-02-20",1099181,2086,180858],["2021-02-21",1099181,702,181560],["2021-02-22",1099181,2645,184205],["2021-02-23",1099181,4294,188499],["2021-02-24",1099181,5179,193678],["2021-02-25",1099181,6758,200436],["2021-02-26",1099181,6557,206993],["2021-02-27",1099181,2440,209433],["2021-02-28",1099181,1078,210511],["2021-03-01",1099181,5011,215522],["2021-03-02",1099181,5782,221304],["2021-03-03",1099181,5943,227247],["2021-03-04",1099181,6880,234127],["2021-03-05",1099181,6708,240835],["2021-03-06",1099181,2874,243709],["2021-03-07",1099181,1405,245114],["2021-03-08",1099181,6139,251253],["2021-03-09",1099181,7455,258708],["2021-03-10",1099181,8414,267122],["2021-03-11",1099181,8369,275491],["2021-03-12",1099181,8360,283851],["2021-03-13",1099181,3756,287607],["2021-03-14",1099181,2196,289803],["2021-03-15",1099181,7678,297481],["2021-03-16",1099181,11061,308542],["2021-03-17",1099181,11171,319713],["2021-03-18",1099181,10904,330617],["2021-03-19",1099181,10640,341257],["2021-03-20",1099181,4749,346006],["2021-03-21",1099181,2337,348343],["2021-03-22",1099181,9695,358038],["2021-03-23",1099181,11688,369726],["2021-03-24",1099181,12807,382533],["2021-03-25",1099181,14643,397176],["2021-03-26",1099181,13420,410596],["2021-03-27",1099181,6463,417059],["2021-03-28",1099181,3289,420348],["2021-03-29",1099181,11835,432183],["2021-03-30",1099181,16516,448699],["2021-03-31",1099181,16739,465438],["2021-04-01",1099181,15980,481418],["2021-04-02",1099181,11711,493129],["2021-04-03",1099181,5892,499021],["2021-04-04",1099181,2405,501426],["2021-04-05",1099181,11131,512557],["2021-04-06",1099181,16436,528993],["2021-04-07",1099181,15810,544803],["2021-04-08",1099181,14409,559212],["2021-04-09",1099181,14948,574160],["2021-04-10",1099181,8826,582986],["2021-04-11",1099181,3073,586059],["2021-04-12",1099181,13015,599074],["2021-04-13",1099181,14712,613786],["2021-04-14",1099181,15458,629244],["2021-04-15",1099181,14309,643553],["2021-04-16",1099181,11271,654824],["2021-04-17",1099181,5402,660226],["2021-04-18",1099181,5742,665968],["2021-04-19",1099181,11678,677646],["2021-04-20",1099181,14462,692108],["2021-04-21",1099181,13012,705120],["2021-04-22",1099181,12803,717923],["2021-04-23",1099181,12334,730257],["2021-04-24",1099181,6151,736408],["2021-04-25",1099181,2568,738976],["2021-04-26",1099181,9763,748739],["2021-04-27",1099181,9856,758595],["2021-04-28",1099181,13885,772480],["2021-04-29",1099181,11644,784124],["2021-04-30",1099181,11634,795758],["2021-05-01",1099181,7762,803520],["2021-05-02",1099181,1771,805291],["2021-05-03",1099181,6593,811884],["2021-05-04",1099181,8341,820225],["2021-05-05",1099181,7669,827894],["2021-05-06",1099181,6514,834408],["2021-05-07",1099181,7048,841456],["2021-05-08",1099181,3643,845099],["2021-05-09",1099181,1185,846284],["2021-05-10",1099181,4452,850736],["2021-05-11",1099181,5986,856722],["2021-05-12",1099181,5614,862336],["2021-05-13",1099181,5552,867888],["2021-05-14",1099181,6042,873930],["2021-05-15",1099181,4807,878737],["2021-05-16",1099181,2310,881047],["2021-05-17",1099181,4830,885877],["2021-05-18",1099181,5801,891678],["2021-05-19",1099181,5445,897123],["2021-05-20",1099181,4567,901690],["2021-05-21",1099181,4998,906688],["2021-05-22",1099181,3820,910508],["2021-05-23",1099181,1440,911948],["2021-05-24",1099181,2932,914880],["2021-05-25",1099181,3854,918734],["2021-05-26",1099181,3662,922396],["2021-05-27",1099181,3520,925916],["2021-05-28",1099181,3256,929172],["2021-05-29",1099181,1661,930833],["2021-05-30",1099181,1057,931890],["2021-05-31",1099181,367,932257],["2021-06-01",1099181,4062,936319],["2021-06-02",1099181,3765,940084],["2021-06-03",1099181,3804,943888],["2021-06-04",1099181,4016,947904],["2021-06-05",1099181,3350,951254],["2021-06-06",1099181,1793,953047],["2021-06-07",1099181,3483,956530],["2021-06-08",1099181,3678,960208],["2021-06-09",1099181,2995,963203],["2021-06-10",1099181,3253,966456],["2021-06-11",1099181,3094,969550],["2021-06-12",1099181,2396,971946],["2021-06-13",1099181,931,972877],["2021-06-14",1099181,2306,975183],["2021-06-15",1099181,2651,977834],["2021-06-16",1099181,2223,980057],["2021-06-17",1099181,2285,982342],["2021-06-18",1099181,2412,984754],["2021-06-19",1099181,1615,986369],["2021-06-20",1099181,824,987193],["2021-06-21",1099181,1294,988487],["2021-06-22",1099181,2188,990675],["2021-06-23",1099181,1977,992652],["2021-06-24",1099181,1864,994516],["2021-06-25",1099181,2013,996529],["2021-06-26",1099181,1600,998129],["2021-06-27",1099181,862,998991],["2021-06-28",1099181,1637,1000628],["2021-06-29",1099181,1833,1002461],["2021-06-30",1099181,1724,1004185],["2021-07-01",1099181,1757,1005942],["2021-07-02",1099181,1675,1007617],["2021-07-03",1099181,906,1008523],["2021-07-04",1099181,71,1008594],["2021-07-05",1099181,1164,1009758],["2021-07-06",1099181,1599,1011357],["2021-07-07",1099181,1384,1012741],["2021-07-08",1099181,1469,1014210],["2021-07-09",1099181,1638,1015848],["2021-07-10",1099181,1151,1016999],["2021-07-11",1099181,642,1017641],["2021-07-12",1099181,1336,1018977],["2021-07-13",1099181,1504,1020481],["2021-07-14",1099181,1437,1021918],["2021-07-15",1099181,1549,1023467],["2021-07-16",1099181,1582,1025049],["2021-07-17",1099181,1222,1026271],["2021-07-18",1099181,755,1027026],["2021-07-19",1099181,1625,1028651],["2021-07-20",1099181,1714,1030365],["2021-07-21",1099181,1787,1032152],["2021-07-22",1099181,1898,1034050],["2021-07-23",1099181,2070,1036120],["2021-07-24",1099181,1562,1037682],["2021-07-25",1099181,858,1038540],["2021-07-26",1099181,1903,1040443],["2021-07-27",1099181,1982,1042425],["2021-07-28",1099181,1946,1044371],["2021-07-29",1099181,2109,1046480],["2021-07-30",1099181,2229,1048709],["2021-07-31",1099181,1754,1050463],["2021-08-01",1099181,1211,1051674],["2021-08-02",1099181,2118,1053792],["2021-08-03",1099181,2239,1056031],["2021-08-04",1099181,2298,1058329],["2021-08-05",1099181,2226,1060555],["2021-08-06",1099181,2507,1063062],["2021-08-07",1099181,1813,1064875],["2021-08-08",1099181,1153,1066028],["2021-08-09",1099181,2187,1068215],["2021-08-10",1099181,2463,1070678],["2021-08-11",1099181,2244,1072922],["2021-08-12",1099181,2481,1075403],["2021-08-13",1099181,2468,1077871],["2021-08-14",1099181,2315,1080186],["2021-08-15",1099181,1399,1081585],["2021-08-16",1099181,2449,1084034],["2021-08-17",1099181,2457,1086491],["2021-08-18",1099181,2694,1089185],["2021-08-19",1099181,2631,1091816],["2021-08-20",1099181,2961,1094777],["2021-08-21",1099181,2434,1097211],["2021-08-22",1099181,1333,1098544],["2021-08-23",1099181,2532,1101076],["2021-08-24",1099181,2493,1103569],["2021-08-25",1099181,2590,1106159],["2021-08-26",1099181,2730,1108889],["2021-08-27",1099181,2930,1111819],["2021-08-28",1099181,2546,1114365],["2021-08-29",1099181,1385,1115750],["2021-08-30",1099181,2467,1118217],["2021-08-31",1099181,2586,1120803],["2021-09-01",1099181,2759,1123562],["2021-09-02",1099181,2651,1126213],["2021-09-03",1099181,2756,1128969],["2021-09-04",1099181,1684,1130653],["2021-09-05",1099181,1226,1131879],["2021-09-06",1099181,291,1132170],["2021-09-07",1099181,2328,1134498],["2021-09-08",1099181,2182,1136680],["2021-09-09",1099181,2434,1139114],["2021-09-10",1099181,2497,1141611],["2021-09-11",1099181,1699,1143310],["2021-09-12",1099181,1126,1144436],["2021-09-13",1099181,2000,1146436],["2021-09-14",1099181,1875,1148311],["2021-09-15",1099181,1752,1150063],["2021-09-16",1099181,1724,1151787],["2021-09-17",1099181,1991,1153778],["2021-09-18",1099181,1468,1155246],["2021-09-19",1099181,911,1156157],["2021-09-20",1099181,1655,1157812],["2021-09-21",1099181,1629,1159441],["2021-09-22",1099181,1507,1160948],["2021-09-23",1099181,1568,1162516],["2021-09-24",1099181,2175,1164691],["2021-09-25",1099181,1725,1166416],["2021-09-26",1099181,1143,1167559],["2021-09-27",1099181,2569,1170128],["2021-09-28",1099181,2737,1172865],["2021-09-29",1099181,2456,1175321],["2021-09-30",1099181,2579,1177900],["2021-10-01",1099181,3043,1180943],["2021-10-02",1099181,1812,1182755],["2021-10-03",1099181,965,1183720],["2021-10-04",1099181,2177,1185897],["2021-10-05",1099181,2323,1188220],["2021-10-06",1099181,2343,1190563],["2021-10-07",1099181,2179,1192742],["2021-10-08",1099181,2471,1195213],["2021-10-09",1099181,1466,1196679],["2021-10-10",1099181,919,1197598],["2021-10-11",1099181,2130,1199728],["2021-10-12",1099181,2043,1201771],["2021-10-13",1099181,1944,1203715],["2021-10-14",1099181,2054,1205769],["2021-10-15",1099181,2328,1208097],["2021-10-16",1099181,1432,1209529],["2021-10-17",1099181,768,1210297],["2021-10-18",1099181,2031,1212328],["2021-10-19",1099181,1944,1214272],["2021-10-20",1099181,1800,1216072],["2021-10-21",1099181,2206,1218278],["2021-10-22",1099181,3240,1221518],["2021-10-23",1099181,2349,1223867],["2021-10-24",1099181,1291,1225158],["2021-10-25",1099181,3894,1229052],["2021-10-26",1099181,3337,1232389],["2021-10-27",1099181,3774,1236163],["2021-10-28",1099181,3285,1239448],["2021-10-29",1099181,4252,1243700],["2021-10-30",1099181,2314,1246014],["2021-10-31",1099181,1257,1247271],["2021-11-01",1099181,3420,1250691],["2021-11-02",1099181,3272,1253963],["2021-11-03",1099181,3520,1257483],["2021-11-04",1099181,3424,1260907],["2021-11-05",1099181,4162,1265069],["2021-11-06",1099181,2903,1267972],["2021-11-07",1099181,1744,1269716],["2021-11-08",1099181,3154,1272870],["2021-11-09",1099181,3583,1276453],["2021-11-10",1099181,3578,1280031],["2021-11-11",1099181,3711,1283742],["2021-11-12",1099181,4219,1287961],["2021-11-13",1099181,3099,1291060],["2021-11-14",1099181,1828,1292888],["2021-11-15",1099181,3710,1296598],["2021-11-16",1099181,4082,1300680],["2021-11-17",1099181,3862,1304542],["2021-11-18",1099181,3940,1308482],["2021-11-19",1099181,4700,1313182],["2021-11-20",1099181,3713,1316895],["2021-11-21",1099181,2031,1318926],["2021-11-22",1099181,4624,1323550],["2021-11-23",1099181,4690,1328240],["2021-11-24",1099181,3643,1331883],["2021-11-25",1099181,14,1331897],["2021-11-26",1099181,3733,1335630],["2021-11-27",1099181,2742,1338372],["2021-11-28",1099181,2062,1340434],["2021-11-29",1099181,4160,1344594],["2021-11-30",1099181,4696,1349290],["2021-12-01",1099181,5487,1354777],["2021-12-02",1099181,5483,1360260],["2021-12-03",1099181,6231,1366491],["2021-12-04",1099181,4284,1370775],["2021-12-05",1099181,2175,1372950],["2021-12-06",1099181,4741,1377691],["2021-12-07",1099181,5038,1382729],["2021-12-08",1099181,4864,1387593],["2021-12-09",1099181,4913,1392506],["2021-12-10",1099181,5177,1397683],["2021-12-11",1099181,3502,1401185],["2021-12-12",1099181,2089,1403274],["2021-12-13",1099181,4305,1407579],["2021-12-14",1099181,4662,1412241],["2021-12-15",1099181,4451,1416692],["2021-12-16",1099181,4494,1421186],["2021-12-17",1099181,4754,1425940],["2021-12-18",1099181,3448,1429388],["2021-12-19",1099181,2195,1431583],["2021-12-20",1099181,5152,1436735],["2021-12-21",1099181,5594,1442329],["2021-12-22",1099181,5359,1447688],["2021-12-23",1099181,4436,1452124],["2021-12-24",1099181,1339,1453463],["2021-12-25",1099181,3,1453466],["2021-12-26",1099181,1347,1454813],["2021-12-27",1099181,3986,1458799],["2021-12-28",1099181,4386,1463185],["2021-12-29",1099181,4180,1467365],["2021-12-30",1099181,3232,1470597],["2021-12-31",1099181,1485,1472082],["2022-01-01",1099181,173,1472255],["2022-01-02",1099181,966,1473221],["2022-01-03",1099181,1051,1474272]]} \ No newline at end of file diff --git a/public/data/overall/vaccinations/by-county/Gilmer.json b/public/data/overall/vaccinations/by-county/Gilmer.json new file mode 100644 index 000000000..50a5eb05b --- /dev/null +++ b/public/data/overall/vaccinations/by-county/Gilmer.json @@ -0,0 +1 @@ +{"segment":{"county":"Gilmer"},"headers":["report_date","population","vaccinations","total_vaccinations"],"rows":[["2020-12-17",31417,2,2],["2020-12-18",31417,13,15],["2020-12-19",31417,1,16],["2020-12-20",31417,5,21],["2020-12-21",31417,6,27],["2020-12-22",31417,29,56],["2020-12-23",31417,37,93],["2020-12-24",31417,9,102],["2020-12-26",31417,1,103],["2020-12-27",31417,1,104],["2020-12-28",31417,62,166],["2020-12-29",31417,47,213],["2020-12-30",31417,46,259],["2020-12-31",31417,22,281],["2021-01-01",31417,7,288],["2021-01-02",31417,2,290],["2021-01-03",31417,4,294],["2021-01-04",31417,40,334],["2021-01-05",31417,78,412],["2021-01-06",31417,69,481],["2021-01-07",31417,125,606],["2021-01-08",31417,56,662],["2021-01-09",31417,4,666],["2021-01-10",31417,6,672],["2021-01-11",31417,222,894],["2021-01-12",31417,380,1274],["2021-01-13",31417,282,1556],["2021-01-14",31417,331,1887],["2021-01-15",31417,256,2143],["2021-01-16",31417,60,2203],["2021-01-17",31417,23,2226],["2021-01-18",31417,301,2527],["2021-01-19",31417,366,2893],["2021-01-20",31417,345,3238],["2021-01-21",31417,216,3454],["2021-01-22",31417,91,3545],["2021-01-23",31417,12,3557],["2021-01-24",31417,14,3571],["2021-01-25",31417,129,3700],["2021-01-26",31417,106,3806],["2021-01-27",31417,108,3914],["2021-01-28",31417,92,4006],["2021-01-29",31417,51,4057],["2021-01-30",31417,16,4073],["2021-02-01",31417,79,4152],["2021-02-02",31417,124,4276],["2021-02-03",31417,115,4391],["2021-02-04",31417,163,4554],["2021-02-05",31417,104,4658],["2021-02-06",31417,15,4673],["2021-02-07",31417,4,4677],["2021-02-08",31417,232,4909],["2021-02-09",31417,435,5344],["2021-02-10",31417,303,5647],["2021-02-11",31417,329,5976],["2021-02-12",31417,284,6260],["2021-02-13",31417,54,6314],["2021-02-14",31417,25,6339],["2021-02-15",31417,299,6638],["2021-02-16",31417,353,6991],["2021-02-17",31417,405,7396],["2021-02-18",31417,361,7757],["2021-02-19",31417,116,7873],["2021-02-20",31417,24,7897],["2021-02-21",31417,23,7920],["2021-02-22",31417,107,8027],["2021-02-23",31417,158,8185],["2021-02-24",31417,181,8366],["2021-02-25",31417,189,8555],["2021-02-26",31417,122,8677],["2021-02-27",31417,23,8700],["2021-02-28",31417,41,8741],["2021-03-01",31417,175,8916],["2021-03-02",31417,189,9105],["2021-03-03",31417,161,9266],["2021-03-04",31417,129,9395],["2021-03-05",31417,93,9488],["2021-03-06",31417,14,9502],["2021-03-07",31417,30,9532],["2021-03-08",31417,155,9687],["2021-03-09",31417,243,9930],["2021-03-10",31417,147,10077],["2021-03-11",31417,109,10186],["2021-03-12",31417,175,10361],["2021-03-13",31417,27,10388],["2021-03-14",31417,41,10429],["2021-03-15",31417,343,10772],["2021-03-16",31417,310,11082],["2021-03-17",31417,251,11333],["2021-03-18",31417,259,11592],["2021-03-19",31417,255,11847],["2021-03-20",31417,26,11873],["2021-03-21",31417,35,11908],["2021-03-22",31417,178,12086],["2021-03-23",31417,229,12315],["2021-03-24",31417,217,12532],["2021-03-25",31417,253,12785],["2021-03-26",31417,176,12961],["2021-03-27",31417,32,12993],["2021-03-28",31417,57,13050],["2021-03-29",31417,258,13308],["2021-03-30",31417,300,13608],["2021-03-31",31417,227,13835],["2021-04-01",31417,222,14057],["2021-04-02",31417,134,14191],["2021-04-03",31417,41,14232],["2021-04-04",31417,37,14269],["2021-04-05",31417,216,14485],["2021-04-06",31417,213,14698],["2021-04-07",31417,161,14859],["2021-04-08",31417,147,15006],["2021-04-09",31417,222,15228],["2021-04-10",31417,65,15293],["2021-04-11",31417,61,15354],["2021-04-12",31417,363,15717],["2021-04-13",31417,320,16037],["2021-04-14",31417,172,16209],["2021-04-15",31417,169,16378],["2021-04-16",31417,165,16543],["2021-04-17",31417,23,16566],["2021-04-18",31417,18,16584],["2021-04-19",31417,204,16788],["2021-04-20",31417,242,17030],["2021-04-21",31417,190,17220],["2021-04-22",31417,210,17430],["2021-04-23",31417,167,17597],["2021-04-24",31417,26,17623],["2021-04-25",31417,18,17641],["2021-04-26",31417,153,17794],["2021-04-27",31417,133,17927],["2021-04-28",31417,155,18082],["2021-04-29",31417,195,18277],["2021-04-30",31417,88,18365],["2021-05-01",31417,34,18399],["2021-05-02",31417,18,18417],["2021-05-03",31417,103,18520],["2021-05-04",31417,135,18655],["2021-05-05",31417,102,18757],["2021-05-06",31417,129,18886],["2021-05-07",31417,176,19062],["2021-05-08",31417,28,19090],["2021-05-09",31417,15,19105],["2021-05-10",31417,63,19168],["2021-05-11",31417,137,19305],["2021-05-12",31417,64,19369],["2021-05-13",31417,87,19456],["2021-05-14",31417,87,19543],["2021-05-15",31417,38,19581],["2021-05-16",31417,31,19612],["2021-05-17",31417,60,19672],["2021-05-18",31417,91,19763],["2021-05-19",31417,102,19865],["2021-05-20",31417,55,19920],["2021-05-21",31417,50,19970],["2021-05-22",31417,31,20001],["2021-05-23",31417,25,20026],["2021-05-24",31417,49,20075],["2021-05-25",31417,78,20153],["2021-05-26",31417,79,20232],["2021-05-27",31417,49,20281],["2021-05-28",31417,33,20314],["2021-05-29",31417,22,20336],["2021-05-30",31417,12,20348],["2021-05-31",31417,20,20368],["2021-06-01",31417,82,20450],["2021-06-02",31417,57,20507],["2021-06-03",31417,45,20552],["2021-06-04",31417,83,20635],["2021-06-05",31417,17,20652],["2021-06-06",31417,14,20666],["2021-06-07",31417,41,20707],["2021-06-08",31417,63,20770],["2021-06-09",31417,46,20816],["2021-06-10",31417,51,20867],["2021-06-11",31417,49,20916],["2021-06-12",31417,24,20940],["2021-06-13",31417,13,20953],["2021-06-14",31417,27,20980],["2021-06-15",31417,52,21032],["2021-06-16",31417,45,21077],["2021-06-17",31417,29,21106],["2021-06-18",31417,40,21146],["2021-06-19",31417,18,21164],["2021-06-20",31417,12,21176],["2021-06-21",31417,40,21216],["2021-06-22",31417,50,21266],["2021-06-23",31417,33,21299],["2021-06-24",31417,23,21322],["2021-06-25",31417,31,21353],["2021-06-26",31417,16,21369],["2021-06-27",31417,4,21373],["2021-06-28",31417,23,21396],["2021-06-29",31417,43,21439],["2021-06-30",31417,35,21474],["2021-07-01",31417,18,21492],["2021-07-02",31417,22,21514],["2021-07-03",31417,13,21527],["2021-07-04",31417,2,21529],["2021-07-05",31417,15,21544],["2021-07-06",31417,29,21573],["2021-07-07",31417,18,21591],["2021-07-08",31417,25,21616],["2021-07-09",31417,36,21652],["2021-07-10",31417,18,21670],["2021-07-11",31417,6,21676],["2021-07-12",31417,17,21693],["2021-07-13",31417,21,21714],["2021-07-14",31417,15,21729],["2021-07-15",31417,38,21767],["2021-07-16",31417,25,21792],["2021-07-17",31417,17,21809],["2021-07-18",31417,6,21815],["2021-07-19",31417,18,21833],["2021-07-20",31417,34,21867],["2021-07-21",31417,32,21899],["2021-07-22",31417,20,21919],["2021-07-23",31417,46,21965],["2021-07-24",31417,21,21986],["2021-07-25",31417,8,21994],["2021-07-26",31417,31,22025],["2021-07-27",31417,52,22077],["2021-07-28",31417,32,22109],["2021-07-29",31417,43,22152],["2021-07-30",31417,37,22189],["2021-07-31",31417,28,22217],["2021-08-01",31417,18,22235],["2021-08-02",31417,47,22282],["2021-08-03",31417,42,22324],["2021-08-04",31417,35,22359],["2021-08-05",31417,57,22416],["2021-08-06",31417,52,22468],["2021-08-07",31417,27,22495],["2021-08-08",31417,20,22515],["2021-08-09",31417,33,22548],["2021-08-10",31417,62,22610],["2021-08-11",31417,48,22658],["2021-08-12",31417,67,22725],["2021-08-13",31417,68,22793],["2021-08-14",31417,47,22840],["2021-08-15",31417,35,22875],["2021-08-16",31417,56,22931],["2021-08-17",31417,90,23021],["2021-08-18",31417,87,23108],["2021-08-19",31417,58,23166],["2021-08-20",31417,69,23235],["2021-08-21",31417,42,23277],["2021-08-22",31417,26,23303],["2021-08-23",31417,81,23384],["2021-08-24",31417,80,23464],["2021-08-25",31417,60,23524],["2021-08-26",31417,69,23593],["2021-08-27",31417,94,23687],["2021-08-28",31417,27,23714],["2021-08-29",31417,23,23737],["2021-08-30",31417,84,23821],["2021-08-31",31417,75,23896],["2021-09-01",31417,60,23956],["2021-09-02",31417,76,24032],["2021-09-03",31417,84,24116],["2021-09-04",31417,49,24165],["2021-09-05",31417,25,24190],["2021-09-06",31417,11,24201],["2021-09-07",31417,88,24289],["2021-09-08",31417,57,24346],["2021-09-09",31417,72,24418],["2021-09-10",31417,79,24497],["2021-09-11",31417,40,24537],["2021-09-12",31417,31,24568],["2021-09-13",31417,81,24649],["2021-09-14",31417,65,24714],["2021-09-15",31417,59,24773],["2021-09-16",31417,65,24838],["2021-09-17",31417,52,24890],["2021-09-18",31417,29,24919],["2021-09-19",31417,14,24933],["2021-09-20",31417,62,24995],["2021-09-21",31417,65,25060],["2021-09-22",31417,39,25099],["2021-09-23",31417,39,25138],["2021-09-24",31417,53,25191],["2021-09-25",31417,32,25223],["2021-09-26",31417,19,25242],["2021-09-27",31417,52,25294],["2021-09-28",31417,80,25374],["2021-09-29",31417,56,25430],["2021-09-30",31417,62,25492],["2021-10-01",31417,64,25556],["2021-10-02",31417,27,25583],["2021-10-03",31417,10,25593],["2021-10-04",31417,47,25640],["2021-10-05",31417,49,25689],["2021-10-06",31417,45,25734],["2021-10-07",31417,41,25775],["2021-10-08",31417,42,25817],["2021-10-09",31417,11,25828],["2021-10-10",31417,11,25839],["2021-10-11",31417,21,25860],["2021-10-12",31417,48,25908],["2021-10-13",31417,34,25942],["2021-10-14",31417,32,25974],["2021-10-15",31417,29,26003],["2021-10-16",31417,13,26016],["2021-10-17",31417,12,26028],["2021-10-18",31417,37,26065],["2021-10-19",31417,38,26103],["2021-10-20",31417,16,26119],["2021-10-21",31417,26,26145],["2021-10-22",31417,78,26223],["2021-10-23",31417,63,26286],["2021-10-24",31417,49,26335],["2021-10-25",31417,142,26477],["2021-10-26",31417,269,26746],["2021-10-27",31417,186,26932],["2021-10-28",31417,178,27110],["2021-10-29",31417,197,27307],["2021-10-30",31417,42,27349],["2021-10-31",31417,33,27382],["2021-11-01",31417,131,27513],["2021-11-02",31417,143,27656],["2021-11-03",31417,96,27752],["2021-11-04",31417,155,27907],["2021-11-05",31417,136,28043],["2021-11-06",31417,38,28081],["2021-11-07",31417,34,28115],["2021-11-08",31417,122,28237],["2021-11-09",31417,111,28348],["2021-11-10",31417,109,28457],["2021-11-11",31417,92,28549],["2021-11-12",31417,104,28653],["2021-11-13",31417,39,28692],["2021-11-14",31417,17,28709],["2021-11-15",31417,101,28810],["2021-11-16",31417,99,28909],["2021-11-17",31417,115,29024],["2021-11-18",31417,76,29100],["2021-11-19",31417,107,29207],["2021-11-20",31417,42,29249],["2021-11-21",31417,32,29281],["2021-11-22",31417,103,29384],["2021-11-23",31417,72,29456],["2021-11-24",31417,57,29513],["2021-11-26",31417,32,29545],["2021-11-27",31417,35,29580],["2021-11-28",31417,32,29612],["2021-11-29",31417,113,29725],["2021-11-30",31417,117,29842],["2021-12-01",31417,130,29972],["2021-12-02",31417,112,30084],["2021-12-03",31417,129,30213],["2021-12-04",31417,59,30272],["2021-12-05",31417,23,30295],["2021-12-06",31417,66,30361],["2021-12-07",31417,96,30457],["2021-12-08",31417,63,30520],["2021-12-09",31417,67,30587],["2021-12-10",31417,94,30681],["2021-12-11",31417,33,30714],["2021-12-12",31417,13,30727],["2021-12-13",31417,61,30788],["2021-12-14",31417,65,30853],["2021-12-15",31417,47,30900],["2021-12-16",31417,58,30958],["2021-12-17",31417,94,31052],["2021-12-18",31417,28,31080],["2021-12-19",31417,19,31099],["2021-12-20",31417,70,31169],["2021-12-21",31417,120,31289],["2021-12-22",31417,75,31364],["2021-12-23",31417,56,31420],["2021-12-24",31417,13,31433],["2021-12-26",31417,21,31454],["2021-12-27",31417,63,31517],["2021-12-28",31417,90,31607],["2021-12-29",31417,69,31676],["2021-12-30",31417,74,31750],["2021-12-31",31417,35,31785],["2022-01-01",31417,10,31795],["2022-01-02",31417,14,31809],["2022-01-03",31417,16,31825]]} \ No newline at end of file diff --git a/public/data/overall/vaccinations/by-county/Glascock.json b/public/data/overall/vaccinations/by-county/Glascock.json new file mode 100644 index 000000000..90ff5079e --- /dev/null +++ b/public/data/overall/vaccinations/by-county/Glascock.json @@ -0,0 +1 @@ +{"segment":{"county":"Glascock"},"headers":["report_date","population","vaccinations","total_vaccinations"],"rows":[["2020-12-18",3025,1,1],["2020-12-22",3025,1,2],["2020-12-23",3025,1,3],["2020-12-28",3025,7,10],["2020-12-29",3025,10,20],["2020-12-30",3025,1,21],["2021-01-02",3025,2,23],["2021-01-04",3025,3,26],["2021-01-05",3025,3,29],["2021-01-06",3025,28,57],["2021-01-07",3025,3,60],["2021-01-08",3025,2,62],["2021-01-09",3025,25,87],["2021-01-11",3025,3,90],["2021-01-12",3025,3,93],["2021-01-13",3025,96,189],["2021-01-14",3025,11,200],["2021-01-16",3025,3,203],["2021-01-18",3025,4,207],["2021-01-19",3025,16,223],["2021-01-20",3025,52,275],["2021-01-21",3025,2,277],["2021-01-23",3025,1,278],["2021-01-25",3025,6,284],["2021-01-26",3025,7,291],["2021-01-27",3025,40,331],["2021-01-28",3025,8,339],["2021-01-30",3025,1,340],["2021-01-31",3025,24,364],["2021-02-01",3025,5,369],["2021-02-02",3025,3,372],["2021-02-03",3025,46,418],["2021-02-04",3025,3,421],["2021-02-05",3025,6,427],["2021-02-08",3025,2,429],["2021-02-09",3025,8,437],["2021-02-10",3025,100,537],["2021-02-11",3025,8,545],["2021-02-12",3025,2,547],["2021-02-15",3025,1,548],["2021-02-16",3025,20,568],["2021-02-17",3025,60,628],["2021-02-18",3025,2,630],["2021-02-22",3025,13,643],["2021-02-23",3025,4,647],["2021-02-24",3025,42,689],["2021-02-25",3025,13,702],["2021-03-02",3025,3,705],["2021-03-03",3025,28,733],["2021-03-05",3025,6,739],["2021-03-08",3025,2,741],["2021-03-09",3025,3,744],["2021-03-10",3025,49,793],["2021-03-11",3025,8,801],["2021-03-12",3025,2,803],["2021-03-14",3025,1,804],["2021-03-15",3025,4,808],["2021-03-16",3025,20,828],["2021-03-17",3025,33,861],["2021-03-18",3025,7,868],["2021-03-19",3025,4,872],["2021-03-20",3025,1,873],["2021-03-22",3025,6,879],["2021-03-23",3025,12,891],["2021-03-24",3025,24,915],["2021-03-25",3025,10,925],["2021-03-26",3025,3,928],["2021-03-27",3025,4,932],["2021-03-28",3025,2,934],["2021-03-29",3025,4,938],["2021-03-30",3025,11,949],["2021-03-31",3025,37,986],["2021-04-01",3025,6,992],["2021-04-02",3025,3,995],["2021-04-03",3025,2,997],["2021-04-05",3025,7,1004],["2021-04-06",3025,3,1007],["2021-04-07",3025,27,1034],["2021-04-08",3025,8,1042],["2021-04-09",3025,8,1050],["2021-04-10",3025,1,1051],["2021-04-12",3025,9,1060],["2021-04-13",3025,16,1076],["2021-04-14",3025,25,1101],["2021-04-15",3025,6,1107],["2021-04-16",3025,5,1112],["2021-04-17",3025,6,1118],["2021-04-19",3025,9,1127],["2021-04-20",3025,10,1137],["2021-04-21",3025,27,1164],["2021-04-22",3025,9,1173],["2021-04-23",3025,7,1180],["2021-04-26",3025,6,1186],["2021-04-27",3025,11,1197],["2021-04-28",3025,35,1232],["2021-04-29",3025,4,1236],["2021-04-30",3025,8,1244],["2021-05-01",3025,2,1246],["2021-05-03",3025,4,1250],["2021-05-04",3025,3,1253],["2021-05-05",3025,19,1272],["2021-05-06",3025,3,1275],["2021-05-07",3025,5,1280],["2021-05-08",3025,1,1281],["2021-05-09",3025,1,1282],["2021-05-10",3025,4,1286],["2021-05-11",3025,7,1293],["2021-05-12",3025,13,1306],["2021-05-13",3025,7,1313],["2021-05-14",3025,5,1318],["2021-05-15",3025,4,1322],["2021-05-17",3025,5,1327],["2021-05-18",3025,3,1330],["2021-05-19",3025,12,1342],["2021-05-20",3025,5,1347],["2021-05-21",3025,5,1352],["2021-05-22",3025,3,1355],["2021-05-23",3025,2,1357],["2021-05-24",3025,2,1359],["2021-05-25",3025,4,1363],["2021-05-26",3025,14,1377],["2021-05-27",3025,3,1380],["2021-05-28",3025,6,1386],["2021-05-29",3025,1,1387],["2021-06-01",3025,2,1389],["2021-06-02",3025,15,1404],["2021-06-03",3025,3,1407],["2021-06-04",3025,3,1410],["2021-06-05",3025,4,1414],["2021-06-07",3025,5,1419],["2021-06-08",3025,3,1422],["2021-06-09",3025,6,1428],["2021-06-10",3025,4,1432],["2021-06-11",3025,2,1434],["2021-06-12",3025,3,1437],["2021-06-14",3025,2,1439],["2021-06-15",3025,1,1440],["2021-06-16",3025,3,1443],["2021-06-17",3025,4,1447],["2021-06-18",3025,1,1448],["2021-06-21",3025,3,1451],["2021-06-22",3025,1,1452],["2021-06-23",3025,6,1458],["2021-06-24",3025,2,1460],["2021-06-25",3025,7,1467],["2021-06-26",3025,1,1468],["2021-06-29",3025,2,1470],["2021-06-30",3025,11,1481],["2021-07-01",3025,3,1484],["2021-07-05",3025,1,1485],["2021-07-07",3025,3,1488],["2021-07-09",3025,2,1490],["2021-07-12",3025,1,1491],["2021-07-13",3025,1,1492],["2021-07-14",3025,3,1495],["2021-07-15",3025,3,1498],["2021-07-18",3025,1,1499],["2021-07-19",3025,4,1503],["2021-07-21",3025,5,1508],["2021-07-22",3025,5,1513],["2021-07-23",3025,1,1514],["2021-07-24",3025,3,1517],["2021-07-26",3025,5,1522],["2021-07-27",3025,3,1525],["2021-07-28",3025,12,1537],["2021-07-29",3025,7,1544],["2021-07-30",3025,4,1548],["2021-08-02",3025,4,1552],["2021-08-03",3025,2,1554],["2021-08-04",3025,4,1558],["2021-08-05",3025,7,1565],["2021-08-06",3025,1,1566],["2021-08-07",3025,8,1574],["2021-08-08",3025,1,1575],["2021-08-09",3025,10,1585],["2021-08-10",3025,2,1587],["2021-08-11",3025,12,1599],["2021-08-12",3025,3,1602],["2021-08-13",3025,9,1611],["2021-08-14",3025,8,1619],["2021-08-15",3025,3,1622],["2021-08-16",3025,4,1626],["2021-08-17",3025,2,1628],["2021-08-18",3025,12,1640],["2021-08-19",3025,11,1651],["2021-08-20",3025,2,1653],["2021-08-23",3025,8,1661],["2021-08-24",3025,2,1663],["2021-08-25",3025,14,1677],["2021-08-26",3025,14,1691],["2021-08-27",3025,7,1698],["2021-08-28",3025,3,1701],["2021-08-30",3025,9,1710],["2021-08-31",3025,13,1723],["2021-09-01",3025,11,1734],["2021-09-02",3025,5,1739],["2021-09-03",3025,10,1749],["2021-09-04",3025,4,1753],["2021-09-05",3025,5,1758],["2021-09-07",3025,2,1760],["2021-09-08",3025,17,1777],["2021-09-09",3025,5,1782],["2021-09-10",3025,15,1797],["2021-09-11",3025,2,1799],["2021-09-13",3025,4,1803],["2021-09-14",3025,2,1805],["2021-09-15",3025,16,1821],["2021-09-16",3025,10,1831],["2021-09-17",3025,4,1835],["2021-09-18",3025,2,1837],["2021-09-19",3025,1,1838],["2021-09-20",3025,4,1842],["2021-09-21",3025,3,1845],["2021-09-22",3025,6,1851],["2021-09-23",3025,8,1859],["2021-09-24",3025,2,1861],["2021-09-25",3025,3,1864],["2021-09-26",3025,2,1866],["2021-09-27",3025,3,1869],["2021-09-28",3025,6,1875],["2021-09-29",3025,11,1886],["2021-09-30",3025,5,1891],["2021-10-01",3025,3,1894],["2021-10-02",3025,2,1896],["2021-10-03",3025,1,1897],["2021-10-04",3025,2,1899],["2021-10-05",3025,3,1902],["2021-10-06",3025,2,1904],["2021-10-07",3025,2,1906],["2021-10-08",3025,5,1911],["2021-10-09",3025,2,1913],["2021-10-10",3025,1,1914],["2021-10-11",3025,3,1917],["2021-10-12",3025,4,1921],["2021-10-13",3025,4,1925],["2021-10-14",3025,4,1929],["2021-10-15",3025,2,1931],["2021-10-16",3025,1,1932],["2021-10-18",3025,2,1934],["2021-10-19",3025,4,1938],["2021-10-20",3025,6,1944],["2021-10-23",3025,5,1949],["2021-10-24",3025,1,1950],["2021-10-25",3025,3,1953],["2021-10-26",3025,21,1974],["2021-10-27",3025,14,1988],["2021-10-28",3025,3,1991],["2021-10-29",3025,5,1996],["2021-10-31",3025,1,1997],["2021-11-01",3025,7,2004],["2021-11-02",3025,13,2017],["2021-11-03",3025,24,2041],["2021-11-04",3025,2,2043],["2021-11-05",3025,4,2047],["2021-11-06",3025,1,2048],["2021-11-08",3025,2,2050],["2021-11-09",3025,12,2062],["2021-11-10",3025,35,2097],["2021-11-11",3025,13,2110],["2021-11-12",3025,5,2115],["2021-11-13",3025,2,2117],["2021-11-15",3025,5,2122],["2021-11-16",3025,12,2134],["2021-11-17",3025,25,2159],["2021-11-18",3025,3,2162],["2021-11-19",3025,4,2166],["2021-11-21",3025,3,2169],["2021-11-22",3025,8,2177],["2021-11-23",3025,2,2179],["2021-11-24",3025,5,2184],["2021-11-28",3025,1,2185],["2021-11-29",3025,6,2191],["2021-11-30",3025,3,2194],["2021-12-01",3025,30,2224],["2021-12-02",3025,3,2227],["2021-12-03",3025,3,2230],["2021-12-04",3025,2,2232],["2021-12-05",3025,1,2233],["2021-12-06",3025,3,2236],["2021-12-07",3025,5,2241],["2021-12-08",3025,19,2260],["2021-12-09",3025,1,2261],["2021-12-10",3025,6,2267],["2021-12-11",3025,2,2269],["2021-12-12",3025,2,2271],["2021-12-13",3025,1,2272],["2021-12-14",3025,2,2274],["2021-12-15",3025,18,2292],["2021-12-16",3025,3,2295],["2021-12-17",3025,1,2296],["2021-12-18",3025,3,2299],["2021-12-20",3025,4,2303],["2021-12-21",3025,4,2307],["2021-12-22",3025,1,2308],["2021-12-23",3025,7,2315],["2021-12-24",3025,1,2316],["2021-12-27",3025,3,2319],["2021-12-28",3025,10,2329],["2021-12-29",3025,13,2342],["2021-12-30",3025,2,2344],["2021-12-31",3025,1,2345],["2022-01-02",3025,1,2346],["2022-01-03",3025,2,2348]]} \ No newline at end of file diff --git a/public/data/overall/vaccinations/by-county/Glynn.json b/public/data/overall/vaccinations/by-county/Glynn.json new file mode 100644 index 000000000..48d3d2aa7 --- /dev/null +++ b/public/data/overall/vaccinations/by-county/Glynn.json @@ -0,0 +1 @@ +{"segment":{"county":"Glynn"},"headers":["report_date","population","vaccinations","total_vaccinations"],"rows":[["2020-12-15",86047,33,33],["2020-12-16",86047,12,45],["2020-12-17",86047,151,196],["2020-12-18",86047,155,351],["2020-12-19",86047,1,352],["2020-12-20",86047,2,354],["2020-12-21",86047,58,412],["2020-12-22",86047,67,479],["2020-12-23",86047,111,590],["2020-12-24",86047,8,598],["2020-12-25",86047,1,599],["2020-12-26",86047,2,601],["2020-12-27",86047,2,603],["2020-12-28",86047,58,661],["2020-12-29",86047,79,740],["2020-12-30",86047,62,802],["2020-12-31",86047,50,852],["2021-01-01",86047,11,863],["2021-01-02",86047,2,865],["2021-01-03",86047,10,875],["2021-01-04",86047,69,944],["2021-01-05",86047,315,1259],["2021-01-06",86047,279,1538],["2021-01-07",86047,262,1800],["2021-01-08",86047,346,2146],["2021-01-09",86047,4,2150],["2021-01-10",86047,105,2255],["2021-01-11",86047,306,2561],["2021-01-12",86047,596,3157],["2021-01-13",86047,691,3848],["2021-01-14",86047,898,4746],["2021-01-15",86047,376,5122],["2021-01-16",86047,379,5501],["2021-01-17",86047,160,5661],["2021-01-18",86047,458,6119],["2021-01-19",86047,466,6585],["2021-01-20",86047,804,7389],["2021-01-21",86047,662,8051],["2021-01-22",86047,363,8414],["2021-01-23",86047,221,8635],["2021-01-24",86047,16,8651],["2021-01-25",86047,530,9181],["2021-01-26",86047,735,9916],["2021-01-27",86047,262,10178],["2021-01-28",86047,561,10739],["2021-01-29",86047,445,11184],["2021-01-30",86047,608,11792],["2021-01-31",86047,119,11911],["2021-02-01",86047,539,12450],["2021-02-02",86047,1066,13516],["2021-02-03",86047,810,14326],["2021-02-04",86047,1095,15421],["2021-02-05",86047,452,15873],["2021-02-06",86047,361,16234],["2021-02-07",86047,156,16390],["2021-02-08",86047,777,17167],["2021-02-09",86047,760,17927],["2021-02-10",86047,723,18650],["2021-02-11",86047,981,19631],["2021-02-12",86047,456,20087],["2021-02-13",86047,252,20339],["2021-02-14",86047,24,20363],["2021-02-15",86047,524,20887],["2021-02-16",86047,508,21395],["2021-02-17",86047,833,22228],["2021-02-18",86047,547,22775],["2021-02-19",86047,396,23171],["2021-02-20",86047,914,24085],["2021-02-21",86047,79,24164],["2021-02-22",86047,353,24517],["2021-02-23",86047,709,25226],["2021-02-24",86047,647,25873],["2021-02-25",86047,703,26576],["2021-02-26",86047,602,27178],["2021-02-27",86047,377,27555],["2021-02-28",86047,16,27571],["2021-03-01",86047,533,28104],["2021-03-02",86047,729,28833],["2021-03-03",86047,662,29495],["2021-03-04",86047,666,30161],["2021-03-05",86047,281,30442],["2021-03-06",86047,365,30807],["2021-03-07",86047,18,30825],["2021-03-08",86047,428,31253],["2021-03-09",86047,461,31714],["2021-03-10",86047,1095,32809],["2021-03-11",86047,649,33458],["2021-03-12",86047,479,33937],["2021-03-13",86047,812,34749],["2021-03-14",86047,74,34823],["2021-03-15",86047,499,35322],["2021-03-16",86047,734,36056],["2021-03-17",86047,964,37020],["2021-03-18",86047,744,37764],["2021-03-19",86047,416,38180],["2021-03-20",86047,642,38822],["2021-03-21",86047,31,38853],["2021-03-22",86047,410,39263],["2021-03-23",86047,576,39839],["2021-03-24",86047,902,40741],["2021-03-25",86047,807,41548],["2021-03-26",86047,384,41932],["2021-03-27",86047,636,42568],["2021-03-28",86047,59,42627],["2021-03-29",86047,424,43051],["2021-03-30",86047,526,43577],["2021-03-31",86047,982,44559],["2021-04-01",86047,679,45238],["2021-04-02",86047,266,45504],["2021-04-03",86047,539,46043],["2021-04-04",86047,49,46092],["2021-04-05",86047,466,46558],["2021-04-06",86047,981,47539],["2021-04-07",86047,723,48262],["2021-04-08",86047,748,49010],["2021-04-09",86047,398,49408],["2021-04-10",86047,461,49869],["2021-04-11",86047,50,49919],["2021-04-12",86047,349,50268],["2021-04-13",86047,508,50776],["2021-04-14",86047,711,51487],["2021-04-15",86047,601,52088],["2021-04-16",86047,340,52428],["2021-04-17",86047,409,52837],["2021-04-18",86047,28,52865],["2021-04-19",86047,296,53161],["2021-04-20",86047,401,53562],["2021-04-21",86047,697,54259],["2021-04-22",86047,585,54844],["2021-04-23",86047,345,55189],["2021-04-24",86047,331,55520],["2021-04-25",86047,38,55558],["2021-04-26",86047,314,55872],["2021-04-27",86047,517,56389],["2021-04-28",86047,516,56905],["2021-04-29",86047,295,57200],["2021-04-30",86047,282,57482],["2021-05-01",86047,223,57705],["2021-05-02",86047,28,57733],["2021-05-03",86047,187,57920],["2021-05-04",86047,182,58102],["2021-05-05",86047,380,58482],["2021-05-06",86047,316,58798],["2021-05-07",86047,205,59003],["2021-05-08",86047,181,59184],["2021-05-09",86047,11,59195],["2021-05-10",86047,124,59319],["2021-05-11",86047,218,59537],["2021-05-12",86047,247,59784],["2021-05-13",86047,227,60011],["2021-05-14",86047,167,60178],["2021-05-15",86047,237,60415],["2021-05-16",86047,38,60453],["2021-05-17",86047,171,60624],["2021-05-18",86047,205,60829],["2021-05-19",86047,311,61140],["2021-05-20",86047,249,61389],["2021-05-21",86047,143,61532],["2021-05-22",86047,168,61700],["2021-05-23",86047,23,61723],["2021-05-24",86047,120,61843],["2021-05-25",86047,115,61958],["2021-05-26",86047,138,62096],["2021-05-27",86047,262,62358],["2021-05-28",86047,110,62468],["2021-05-29",86047,40,62508],["2021-05-30",86047,18,62526],["2021-05-31",86047,13,62539],["2021-06-01",86047,172,62711],["2021-06-02",86047,207,62918],["2021-06-03",86047,235,63153],["2021-06-04",86047,114,63267],["2021-06-05",86047,195,63462],["2021-06-06",86047,28,63490],["2021-06-07",86047,163,63653],["2021-06-08",86047,190,63843],["2021-06-09",86047,183,64026],["2021-06-10",86047,185,64211],["2021-06-11",86047,127,64338],["2021-06-12",86047,126,64464],["2021-06-13",86047,24,64488],["2021-06-14",86047,95,64583],["2021-06-15",86047,84,64667],["2021-06-16",86047,165,64832],["2021-06-17",86047,130,64962],["2021-06-18",86047,99,65061],["2021-06-19",86047,66,65127],["2021-06-20",86047,15,65142],["2021-06-21",86047,64,65206],["2021-06-22",86047,101,65307],["2021-06-23",86047,154,65461],["2021-06-24",86047,154,65615],["2021-06-25",86047,86,65701],["2021-06-26",86047,71,65772],["2021-06-27",86047,17,65789],["2021-06-28",86047,100,65889],["2021-06-29",86047,148,66037],["2021-06-30",86047,60,66097],["2021-07-01",86047,114,66211],["2021-07-02",86047,70,66281],["2021-07-03",86047,26,66307],["2021-07-04",86047,4,66311],["2021-07-05",86047,49,66360],["2021-07-06",86047,123,66483],["2021-07-07",86047,43,66526],["2021-07-08",86047,67,66593],["2021-07-09",86047,86,66679],["2021-07-10",86047,30,66709],["2021-07-11",86047,15,66724],["2021-07-12",86047,73,66797],["2021-07-13",86047,197,66994],["2021-07-14",86047,88,67082],["2021-07-15",86047,96,67178],["2021-07-16",86047,83,67261],["2021-07-17",86047,30,67291],["2021-07-18",86047,41,67332],["2021-07-19",86047,108,67440],["2021-07-20",86047,169,67609],["2021-07-21",86047,119,67728],["2021-07-22",86047,139,67867],["2021-07-23",86047,156,68023],["2021-07-24",86047,101,68124],["2021-07-25",86047,66,68190],["2021-07-26",86047,153,68343],["2021-07-27",86047,325,68668],["2021-07-28",86047,148,68816],["2021-07-29",86047,253,69069],["2021-07-30",86047,198,69267],["2021-07-31",86047,109,69376],["2021-08-01",86047,60,69436],["2021-08-02",86047,193,69629],["2021-08-03",86047,393,70022],["2021-08-04",86047,174,70196],["2021-08-05",86047,300,70496],["2021-08-06",86047,221,70717],["2021-08-07",86047,119,70836],["2021-08-08",86047,95,70931],["2021-08-09",86047,241,71172],["2021-08-10",86047,359,71531],["2021-08-11",86047,208,71739],["2021-08-12",86047,399,72138],["2021-08-13",86047,251,72389],["2021-08-14",86047,157,72546],["2021-08-15",86047,98,72644],["2021-08-16",86047,251,72895],["2021-08-17",86047,446,73341],["2021-08-18",86047,329,73670],["2021-08-19",86047,543,74213],["2021-08-20",86047,315,74528],["2021-08-21",86047,132,74660],["2021-08-22",86047,100,74760],["2021-08-23",86047,300,75060],["2021-08-24",86047,596,75656],["2021-08-25",86047,266,75922],["2021-08-26",86047,556,76478],["2021-08-27",86047,284,76762],["2021-08-28",86047,158,76920],["2021-08-29",86047,108,77028],["2021-08-30",86047,295,77323],["2021-08-31",86047,472,77795],["2021-09-01",86047,224,78019],["2021-09-02",86047,472,78491],["2021-09-03",86047,305,78796],["2021-09-04",86047,101,78897],["2021-09-05",86047,83,78980],["2021-09-06",86047,33,79013],["2021-09-07",86047,358,79371],["2021-09-08",86047,293,79664],["2021-09-09",86047,452,80116],["2021-09-10",86047,233,80349],["2021-09-11",86047,123,80472],["2021-09-12",86047,78,80550],["2021-09-13",86047,211,80761],["2021-09-14",86047,367,81128],["2021-09-15",86047,216,81344],["2021-09-16",86047,350,81694],["2021-09-17",86047,210,81904],["2021-09-18",86047,113,82017],["2021-09-19",86047,77,82094],["2021-09-20",86047,180,82274],["2021-09-21",86047,271,82545],["2021-09-22",86047,165,82710],["2021-09-23",86047,259,82969],["2021-09-24",86047,184,83153],["2021-09-25",86047,139,83292],["2021-09-26",86047,83,83375],["2021-09-27",86047,410,83785],["2021-09-28",86047,537,84322],["2021-09-29",86047,296,84618],["2021-09-30",86047,720,85338],["2021-10-01",86047,335,85673],["2021-10-02",86047,80,85753],["2021-10-03",86047,54,85807],["2021-10-04",86047,340,86147],["2021-10-05",86047,653,86800],["2021-10-06",86047,266,87066],["2021-10-07",86047,544,87610],["2021-10-08",86047,221,87831],["2021-10-09",86047,58,87889],["2021-10-10",86047,57,87946],["2021-10-11",86047,115,88061],["2021-10-12",86047,420,88481],["2021-10-13",86047,186,88667],["2021-10-14",86047,357,89024],["2021-10-15",86047,151,89175],["2021-10-16",86047,50,89225],["2021-10-17",86047,23,89248],["2021-10-18",86047,182,89430],["2021-10-19",86047,268,89698],["2021-10-20",86047,129,89827],["2021-10-21",86047,299,90126],["2021-10-22",86047,147,90273],["2021-10-23",86047,66,90339],["2021-10-24",86047,50,90389],["2021-10-25",86047,213,90602],["2021-10-26",86047,343,90945],["2021-10-27",86047,186,91131],["2021-10-28",86047,298,91429],["2021-10-29",86047,182,91611],["2021-10-30",86047,71,91682],["2021-10-31",86047,26,91708],["2021-11-01",86047,175,91883],["2021-11-02",86047,281,92164],["2021-11-03",86047,148,92312],["2021-11-04",86047,283,92595],["2021-11-05",86047,165,92760],["2021-11-06",86047,55,92815],["2021-11-07",86047,51,92866],["2021-11-08",86047,286,93152],["2021-11-09",86047,251,93403],["2021-11-10",86047,189,93592],["2021-11-11",86047,269,93861],["2021-11-12",86047,177,94038],["2021-11-13",86047,48,94086],["2021-11-14",86047,54,94140],["2021-11-15",86047,199,94339],["2021-11-16",86047,260,94599],["2021-11-17",86047,151,94750],["2021-11-18",86047,292,95042],["2021-11-19",86047,168,95210],["2021-11-20",86047,98,95308],["2021-11-21",86047,67,95375],["2021-11-22",86047,238,95613],["2021-11-23",86047,310,95923],["2021-11-24",86047,118,96041],["2021-11-26",86047,95,96136],["2021-11-27",86047,74,96210],["2021-11-28",86047,55,96265],["2021-11-29",86047,299,96564],["2021-11-30",86047,400,96964],["2021-12-01",86047,285,97249],["2021-12-02",86047,501,97750],["2021-12-03",86047,255,98005],["2021-12-04",86047,79,98084],["2021-12-05",86047,70,98154],["2021-12-06",86047,257,98411],["2021-12-07",86047,272,98683],["2021-12-08",86047,172,98855],["2021-12-09",86047,320,99175],["2021-12-10",86047,308,99483],["2021-12-11",86047,72,99555],["2021-12-12",86047,62,99617],["2021-12-13",86047,173,99790],["2021-12-14",86047,233,100023],["2021-12-15",86047,165,100188],["2021-12-16",86047,263,100451],["2021-12-17",86047,180,100631],["2021-12-18",86047,82,100713],["2021-12-19",86047,74,100787],["2021-12-20",86047,255,101042],["2021-12-21",86047,319,101361],["2021-12-22",86047,201,101562],["2021-12-23",86047,183,101745],["2021-12-24",86047,26,101771],["2021-12-26",86047,48,101819],["2021-12-27",86047,215,102034],["2021-12-28",86047,176,102210],["2021-12-29",86047,177,102387],["2021-12-30",86047,237,102624],["2021-12-31",86047,48,102672],["2022-01-01",86047,11,102683],["2022-01-02",86047,39,102722],["2022-01-03",86047,41,102763]]} \ No newline at end of file diff --git a/public/data/overall/vaccinations/by-county/Gordon.json b/public/data/overall/vaccinations/by-county/Gordon.json new file mode 100644 index 000000000..11e12f544 --- /dev/null +++ b/public/data/overall/vaccinations/by-county/Gordon.json @@ -0,0 +1 @@ +{"segment":{"county":"Gordon"},"headers":["report_date","population","vaccinations","total_vaccinations"],"rows":[["2020-12-15",58049,1,1],["2020-12-17",58049,2,3],["2020-12-18",58049,17,20],["2020-12-19",58049,3,23],["2020-12-20",58049,4,27],["2020-12-21",58049,27,54],["2020-12-22",58049,36,90],["2020-12-23",58049,43,133],["2020-12-24",58049,9,142],["2020-12-26",58049,3,145],["2020-12-27",58049,43,188],["2020-12-28",58049,60,248],["2020-12-29",58049,49,297],["2020-12-30",58049,68,365],["2020-12-31",58049,41,406],["2021-01-01",58049,21,427],["2021-01-02",58049,8,435],["2021-01-03",58049,55,490],["2021-01-04",58049,27,517],["2021-01-05",58049,114,631],["2021-01-06",58049,112,743],["2021-01-07",58049,113,856],["2021-01-08",58049,124,980],["2021-01-09",58049,5,985],["2021-01-10",58049,10,995],["2021-01-11",58049,186,1181],["2021-01-12",58049,279,1460],["2021-01-13",58049,295,1755],["2021-01-14",58049,389,2144],["2021-01-15",58049,141,2285],["2021-01-16",58049,17,2302],["2021-01-17",58049,43,2345],["2021-01-18",58049,304,2649],["2021-01-19",58049,380,3029],["2021-01-20",58049,439,3468],["2021-01-21",58049,364,3832],["2021-01-22",58049,153,3985],["2021-01-23",58049,6,3991],["2021-01-24",58049,83,4074],["2021-01-25",58049,245,4319],["2021-01-26",58049,248,4567],["2021-01-27",58049,420,4987],["2021-01-28",58049,413,5400],["2021-01-29",58049,295,5695],["2021-01-30",58049,12,5707],["2021-01-31",58049,1,5708],["2021-02-01",58049,342,6050],["2021-02-02",58049,286,6336],["2021-02-03",58049,293,6629],["2021-02-04",58049,257,6886],["2021-02-05",58049,275,7161],["2021-02-06",58049,30,7191],["2021-02-07",58049,14,7205],["2021-02-08",58049,196,7401],["2021-02-09",58049,276,7677],["2021-02-10",58049,332,8009],["2021-02-11",58049,306,8315],["2021-02-12",58049,165,8480],["2021-02-13",58049,19,8499],["2021-02-14",58049,32,8531],["2021-02-15",58049,273,8804],["2021-02-16",58049,65,8869],["2021-02-17",58049,249,9118],["2021-02-18",58049,114,9232],["2021-02-19",58049,190,9422],["2021-02-20",58049,8,9430],["2021-02-21",58049,8,9438],["2021-02-22",58049,52,9490],["2021-02-23",58049,110,9600],["2021-02-24",58049,281,9881],["2021-02-25",58049,448,10329],["2021-02-26",58049,348,10677],["2021-02-27",58049,31,10708],["2021-02-28",58049,26,10734],["2021-03-01",58049,493,11227],["2021-03-02",58049,450,11677],["2021-03-03",58049,472,12149],["2021-03-04",58049,347,12496],["2021-03-05",58049,240,12736],["2021-03-06",58049,39,12775],["2021-03-07",58049,18,12793],["2021-03-08",58049,375,13168],["2021-03-09",58049,373,13541],["2021-03-10",58049,280,13821],["2021-03-11",58049,229,14050],["2021-03-12",58049,507,14557],["2021-03-13",58049,29,14586],["2021-03-14",58049,30,14616],["2021-03-15",58049,341,14957],["2021-03-16",58049,438,15395],["2021-03-17",58049,344,15739],["2021-03-18",58049,166,15905],["2021-03-19",58049,504,16409],["2021-03-20",58049,20,16429],["2021-03-21",58049,39,16468],["2021-03-22",58049,187,16655],["2021-03-23",58049,237,16892],["2021-03-24",58049,271,17163],["2021-03-25",58049,191,17354],["2021-03-26",58049,622,17976],["2021-03-27",58049,103,18079],["2021-03-28",58049,58,18137],["2021-03-29",58049,315,18452],["2021-03-30",58049,487,18939],["2021-03-31",58049,343,19282],["2021-04-01",58049,339,19621],["2021-04-02",58049,579,20200],["2021-04-03",58049,111,20311],["2021-04-04",58049,66,20377],["2021-04-05",58049,362,20739],["2021-04-06",58049,233,20972],["2021-04-07",58049,440,21412],["2021-04-08",58049,280,21692],["2021-04-09",58049,616,22308],["2021-04-10",58049,59,22367],["2021-04-11",58049,52,22419],["2021-04-12",58049,294,22713],["2021-04-13",58049,234,22947],["2021-04-14",58049,384,23331],["2021-04-15",58049,245,23576],["2021-04-16",58049,527,24103],["2021-04-17",58049,48,24151],["2021-04-18",58049,26,24177],["2021-04-19",58049,387,24564],["2021-04-20",58049,452,25016],["2021-04-21",58049,348,25364],["2021-04-22",58049,242,25606],["2021-04-23",58049,607,26213],["2021-04-24",58049,117,26330],["2021-04-25",58049,52,26382],["2021-04-26",58049,222,26604],["2021-04-27",58049,183,26787],["2021-04-28",58049,315,27102],["2021-04-29",58049,248,27350],["2021-04-30",58049,339,27689],["2021-05-01",58049,78,27767],["2021-05-02",58049,60,27827],["2021-05-03",58049,246,28073],["2021-05-04",58049,173,28246],["2021-05-05",58049,321,28567],["2021-05-06",58049,149,28716],["2021-05-07",58049,275,28991],["2021-05-08",58049,60,29051],["2021-05-09",58049,30,29081],["2021-05-10",58049,141,29222],["2021-05-11",58049,126,29348],["2021-05-12",58049,150,29498],["2021-05-13",58049,161,29659],["2021-05-14",58049,246,29905],["2021-05-15",58049,91,29996],["2021-05-16",58049,46,30042],["2021-05-17",58049,164,30206],["2021-05-18",58049,160,30366],["2021-05-19",58049,133,30499],["2021-05-20",58049,144,30643],["2021-05-21",58049,245,30888],["2021-05-22",58049,62,30950],["2021-05-23",58049,32,30982],["2021-05-24",58049,86,31068],["2021-05-25",58049,144,31212],["2021-05-26",58049,89,31301],["2021-05-27",58049,107,31408],["2021-05-28",58049,171,31579],["2021-05-29",58049,54,31633],["2021-05-30",58049,35,31668],["2021-05-31",58049,32,31700],["2021-06-01",58049,119,31819],["2021-06-02",58049,68,31887],["2021-06-03",58049,83,31970],["2021-06-04",58049,148,32118],["2021-06-05",58049,61,32179],["2021-06-06",58049,47,32226],["2021-06-07",58049,80,32306],["2021-06-08",58049,67,32373],["2021-06-09",58049,87,32460],["2021-06-10",58049,76,32536],["2021-06-11",58049,107,32643],["2021-06-12",58049,53,32696],["2021-06-13",58049,30,32726],["2021-06-14",58049,74,32800],["2021-06-15",58049,114,32914],["2021-06-16",58049,64,32978],["2021-06-17",58049,76,33054],["2021-06-18",58049,120,33174],["2021-06-19",58049,34,33208],["2021-06-20",58049,24,33232],["2021-06-21",58049,43,33275],["2021-06-22",58049,88,33363],["2021-06-23",58049,71,33434],["2021-06-24",58049,59,33493],["2021-06-25",58049,118,33611],["2021-06-26",58049,60,33671],["2021-06-27",58049,32,33703],["2021-06-28",58049,43,33746],["2021-06-29",58049,60,33806],["2021-06-30",58049,48,33854],["2021-07-01",58049,41,33895],["2021-07-02",58049,85,33980],["2021-07-03",58049,31,34011],["2021-07-04",58049,3,34014],["2021-07-05",58049,40,34054],["2021-07-06",58049,52,34106],["2021-07-07",58049,46,34152],["2021-07-08",58049,56,34208],["2021-07-09",58049,50,34258],["2021-07-10",58049,20,34278],["2021-07-11",58049,27,34305],["2021-07-12",58049,48,34353],["2021-07-13",58049,65,34418],["2021-07-14",58049,53,34471],["2021-07-15",58049,60,34531],["2021-07-16",58049,91,34622],["2021-07-17",58049,40,34662],["2021-07-18",58049,28,34690],["2021-07-19",58049,42,34732],["2021-07-20",58049,73,34805],["2021-07-21",58049,55,34860],["2021-07-22",58049,75,34935],["2021-07-23",58049,100,35035],["2021-07-24",58049,53,35088],["2021-07-25",58049,34,35122],["2021-07-26",58049,77,35199],["2021-07-27",58049,90,35289],["2021-07-28",58049,121,35410],["2021-07-29",58049,96,35506],["2021-07-30",58049,130,35636],["2021-07-31",58049,89,35725],["2021-08-01",58049,55,35780],["2021-08-02",58049,114,35894],["2021-08-03",58049,137,36031],["2021-08-04",58049,121,36152],["2021-08-05",58049,100,36252],["2021-08-06",58049,168,36420],["2021-08-07",58049,93,36513],["2021-08-08",58049,33,36546],["2021-08-09",58049,94,36640],["2021-08-10",58049,162,36802],["2021-08-11",58049,103,36905],["2021-08-12",58049,154,37059],["2021-08-13",58049,162,37221],["2021-08-14",58049,106,37327],["2021-08-15",58049,62,37389],["2021-08-16",58049,138,37527],["2021-08-17",58049,159,37686],["2021-08-18",58049,123,37809],["2021-08-19",58049,203,38012],["2021-08-20",58049,220,38232],["2021-08-21",58049,124,38356],["2021-08-22",58049,74,38430],["2021-08-23",58049,175,38605],["2021-08-24",58049,227,38832],["2021-08-25",58049,171,39003],["2021-08-26",58049,198,39201],["2021-08-27",58049,222,39423],["2021-08-28",58049,137,39560],["2021-08-29",58049,59,39619],["2021-08-30",58049,174,39793],["2021-08-31",58049,220,40013],["2021-09-01",58049,157,40170],["2021-09-02",58049,245,40415],["2021-09-03",58049,235,40650],["2021-09-04",58049,104,40754],["2021-09-05",58049,63,40817],["2021-09-06",58049,23,40840],["2021-09-07",58049,188,41028],["2021-09-08",58049,161,41189],["2021-09-09",58049,158,41347],["2021-09-10",58049,208,41555],["2021-09-11",58049,122,41677],["2021-09-12",58049,64,41741],["2021-09-13",58049,138,41879],["2021-09-14",58049,176,42055],["2021-09-15",58049,103,42158],["2021-09-16",58049,179,42337],["2021-09-17",58049,226,42563],["2021-09-18",58049,69,42632],["2021-09-19",58049,52,42684],["2021-09-20",58049,132,42816],["2021-09-21",58049,126,42942],["2021-09-22",58049,97,43039],["2021-09-23",58049,128,43167],["2021-09-24",58049,199,43366],["2021-09-25",58049,79,43445],["2021-09-26",58049,50,43495],["2021-09-27",58049,103,43598],["2021-09-28",58049,105,43703],["2021-09-29",58049,115,43818],["2021-09-30",58049,112,43930],["2021-10-01",58049,152,44082],["2021-10-02",58049,49,44131],["2021-10-03",58049,34,44165],["2021-10-04",58049,84,44249],["2021-10-05",58049,147,44396],["2021-10-06",58049,78,44474],["2021-10-07",58049,113,44587],["2021-10-08",58049,110,44697],["2021-10-09",58049,33,44730],["2021-10-10",58049,34,44764],["2021-10-11",58049,71,44835],["2021-10-12",58049,82,44917],["2021-10-13",58049,65,44982],["2021-10-14",58049,91,45073],["2021-10-15",58049,84,45157],["2021-10-16",58049,22,45179],["2021-10-17",58049,26,45205],["2021-10-18",58049,55,45260],["2021-10-19",58049,77,45337],["2021-10-20",58049,56,45393],["2021-10-21",58049,66,45459],["2021-10-22",58049,111,45570],["2021-10-23",58049,66,45636],["2021-10-24",58049,23,45659],["2021-10-25",58049,134,45793],["2021-10-26",58049,159,45952],["2021-10-27",58049,181,46133],["2021-10-28",58049,159,46292],["2021-10-29",58049,185,46477],["2021-10-30",58049,45,46522],["2021-10-31",58049,26,46548],["2021-11-01",58049,162,46710],["2021-11-02",58049,158,46868],["2021-11-03",58049,202,47070],["2021-11-04",58049,156,47226],["2021-11-05",58049,191,47417],["2021-11-06",58049,64,47481],["2021-11-07",58049,40,47521],["2021-11-08",58049,146,47667],["2021-11-09",58049,205,47872],["2021-11-10",58049,143,48015],["2021-11-11",58049,69,48084],["2021-11-12",58049,163,48247],["2021-11-13",58049,33,48280],["2021-11-14",58049,19,48299],["2021-11-15",58049,124,48423],["2021-11-16",58049,133,48556],["2021-11-17",58049,132,48688],["2021-11-18",58049,140,48828],["2021-11-19",58049,178,49006],["2021-11-20",58049,62,49068],["2021-11-21",58049,39,49107],["2021-11-22",58049,169,49276],["2021-11-23",58049,163,49439],["2021-11-24",58049,71,49510],["2021-11-25",58049,1,49511],["2021-11-26",58049,107,49618],["2021-11-27",58049,42,49660],["2021-11-28",58049,44,49704],["2021-11-29",58049,168,49872],["2021-11-30",58049,188,50060],["2021-12-01",58049,180,50240],["2021-12-02",58049,194,50434],["2021-12-03",58049,237,50671],["2021-12-04",58049,66,50737],["2021-12-05",58049,32,50769],["2021-12-06",58049,141,50910],["2021-12-07",58049,161,51071],["2021-12-08",58049,131,51202],["2021-12-09",58049,138,51340],["2021-12-10",58049,178,51518],["2021-12-11",58049,49,51567],["2021-12-12",58049,16,51583],["2021-12-13",58049,82,51665],["2021-12-14",58049,113,51778],["2021-12-15",58049,133,51911],["2021-12-16",58049,75,51986],["2021-12-17",58049,119,52105],["2021-12-18",58049,57,52162],["2021-12-19",58049,33,52195],["2021-12-20",58049,138,52333],["2021-12-21",58049,135,52468],["2021-12-22",58049,117,52585],["2021-12-23",58049,87,52672],["2021-12-24",58049,19,52691],["2021-12-26",58049,35,52726],["2021-12-27",58049,156,52882],["2021-12-28",58049,107,52989],["2021-12-29",58049,136,53125],["2021-12-30",58049,138,53263],["2021-12-31",58049,79,53342],["2022-01-01",58049,12,53354],["2022-01-02",58049,32,53386],["2022-01-03",58049,30,53416]]} \ No newline at end of file diff --git a/public/data/overall/vaccinations/by-county/Grady.json b/public/data/overall/vaccinations/by-county/Grady.json new file mode 100644 index 000000000..a14c9154c --- /dev/null +++ b/public/data/overall/vaccinations/by-county/Grady.json @@ -0,0 +1 @@ +{"segment":{"county":"Grady"},"headers":["report_date","population","vaccinations","total_vaccinations"],"rows":[["2020-12-17",24540,1,1],["2020-12-18",24540,4,5],["2020-12-19",24540,9,14],["2020-12-21",24540,24,38],["2020-12-22",24540,18,56],["2020-12-23",24540,68,124],["2020-12-24",24540,5,129],["2020-12-26",24540,2,131],["2020-12-27",24540,1,132],["2020-12-28",24540,62,194],["2020-12-29",24540,81,275],["2020-12-30",24540,74,349],["2020-12-31",24540,13,362],["2021-01-02",24540,1,363],["2021-01-04",24540,62,425],["2021-01-05",24540,69,494],["2021-01-06",24540,44,538],["2021-01-07",24540,14,552],["2021-01-08",24540,39,591],["2021-01-09",24540,2,593],["2021-01-10",24540,3,596],["2021-01-11",24540,116,712],["2021-01-12",24540,136,848],["2021-01-13",24540,142,990],["2021-01-14",24540,182,1172],["2021-01-15",24540,109,1281],["2021-01-16",24540,37,1318],["2021-01-17",24540,6,1324],["2021-01-18",24540,138,1462],["2021-01-19",24540,169,1631],["2021-01-20",24540,127,1758],["2021-01-21",24540,188,1946],["2021-01-22",24540,124,2070],["2021-01-23",24540,49,2119],["2021-01-25",24540,145,2264],["2021-01-26",24540,192,2456],["2021-01-27",24540,156,2612],["2021-01-28",24540,168,2780],["2021-01-29",24540,121,2901],["2021-01-30",24540,50,2951],["2021-01-31",24540,4,2955],["2021-02-01",24540,97,3052],["2021-02-02",24540,151,3203],["2021-02-03",24540,198,3401],["2021-02-04",24540,201,3602],["2021-02-05",24540,136,3738],["2021-02-06",24540,57,3795],["2021-02-08",24540,171,3966],["2021-02-09",24540,221,4187],["2021-02-10",24540,127,4314],["2021-02-11",24540,119,4433],["2021-02-12",24540,131,4564],["2021-02-13",24540,24,4588],["2021-02-14",24540,7,4595],["2021-02-15",24540,89,4684],["2021-02-16",24540,176,4860],["2021-02-17",24540,95,4955],["2021-02-18",24540,217,5172],["2021-02-19",24540,117,5289],["2021-02-20",24540,56,5345],["2021-02-21",24540,2,5347],["2021-02-22",24540,109,5456],["2021-02-23",24540,176,5632],["2021-02-24",24540,160,5792],["2021-02-25",24540,137,5929],["2021-02-26",24540,76,6005],["2021-02-27",24540,11,6016],["2021-02-28",24540,5,6021],["2021-03-01",24540,112,6133],["2021-03-02",24540,102,6235],["2021-03-03",24540,186,6421],["2021-03-04",24540,151,6572],["2021-03-05",24540,94,6666],["2021-03-06",24540,11,6677],["2021-03-07",24540,5,6682],["2021-03-08",24540,141,6823],["2021-03-09",24540,195,7018],["2021-03-10",24540,106,7124],["2021-03-11",24540,113,7237],["2021-03-12",24540,129,7366],["2021-03-13",24540,35,7401],["2021-03-14",24540,16,7417],["2021-03-15",24540,124,7541],["2021-03-16",24540,149,7690],["2021-03-17",24540,149,7839],["2021-03-18",24540,115,7954],["2021-03-19",24540,131,8085],["2021-03-20",24540,20,8105],["2021-03-21",24540,13,8118],["2021-03-22",24540,137,8255],["2021-03-23",24540,113,8368],["2021-03-24",24540,120,8488],["2021-03-25",24540,137,8625],["2021-03-26",24540,87,8712],["2021-03-27",24540,22,8734],["2021-03-28",24540,23,8757],["2021-03-29",24540,151,8908],["2021-03-30",24540,174,9082],["2021-03-31",24540,134,9216],["2021-04-01",24540,165,9381],["2021-04-02",24540,177,9558],["2021-04-03",24540,15,9573],["2021-04-04",24540,14,9587],["2021-04-05",24540,146,9733],["2021-04-06",24540,108,9841],["2021-04-07",24540,149,9990],["2021-04-08",24540,126,10116],["2021-04-09",24540,112,10228],["2021-04-10",24540,22,10250],["2021-04-11",24540,24,10274],["2021-04-12",24540,126,10400],["2021-04-13",24540,146,10546],["2021-04-14",24540,118,10664],["2021-04-15",24540,129,10793],["2021-04-16",24540,92,10885],["2021-04-17",24540,14,10899],["2021-04-18",24540,9,10908],["2021-04-19",24540,145,11053],["2021-04-20",24540,148,11201],["2021-04-21",24540,102,11303],["2021-04-22",24540,201,11504],["2021-04-23",24540,91,11595],["2021-04-24",24540,9,11604],["2021-04-25",24540,5,11609],["2021-04-26",24540,158,11767],["2021-04-27",24540,136,11903],["2021-04-28",24540,123,12026],["2021-04-29",24540,98,12124],["2021-04-30",24540,57,12181],["2021-05-01",24540,20,12201],["2021-05-02",24540,8,12209],["2021-05-03",24540,79,12288],["2021-05-04",24540,116,12404],["2021-05-05",24540,70,12474],["2021-05-06",24540,85,12559],["2021-05-07",24540,48,12607],["2021-05-08",24540,16,12623],["2021-05-09",24540,2,12625],["2021-05-10",24540,81,12706],["2021-05-11",24540,79,12785],["2021-05-12",24540,56,12841],["2021-05-13",24540,83,12924],["2021-05-14",24540,58,12982],["2021-05-15",24540,13,12995],["2021-05-16",24540,13,13008],["2021-05-17",24540,76,13084],["2021-05-18",24540,78,13162],["2021-05-19",24540,82,13244],["2021-05-20",24540,67,13311],["2021-05-21",24540,68,13379],["2021-05-22",24540,17,13396],["2021-05-23",24540,2,13398],["2021-05-24",24540,45,13443],["2021-05-25",24540,56,13499],["2021-05-26",24540,50,13549],["2021-05-27",24540,50,13599],["2021-05-28",24540,16,13615],["2021-05-29",24540,16,13631],["2021-05-30",24540,6,13637],["2021-05-31",24540,2,13639],["2021-06-01",24540,104,13743],["2021-06-02",24540,52,13795],["2021-06-03",24540,71,13866],["2021-06-04",24540,47,13913],["2021-06-05",24540,24,13937],["2021-06-06",24540,6,13943],["2021-06-07",24540,35,13978],["2021-06-08",24540,50,14028],["2021-06-09",24540,25,14053],["2021-06-10",24540,72,14125],["2021-06-11",24540,45,14170],["2021-06-12",24540,13,14183],["2021-06-13",24540,1,14184],["2021-06-14",24540,34,14218],["2021-06-15",24540,63,14281],["2021-06-16",24540,31,14312],["2021-06-17",24540,30,14342],["2021-06-18",24540,29,14371],["2021-06-19",24540,20,14391],["2021-06-20",24540,2,14393],["2021-06-21",24540,24,14417],["2021-06-22",24540,42,14459],["2021-06-23",24540,44,14503],["2021-06-24",24540,33,14536],["2021-06-25",24540,37,14573],["2021-06-26",24540,7,14580],["2021-06-27",24540,5,14585],["2021-06-28",24540,15,14600],["2021-06-29",24540,40,14640],["2021-06-30",24540,19,14659],["2021-07-01",24540,46,14705],["2021-07-02",24540,37,14742],["2021-07-03",24540,8,14750],["2021-07-04",24540,1,14751],["2021-07-05",24540,22,14773],["2021-07-06",24540,37,14810],["2021-07-07",24540,9,14819],["2021-07-08",24540,39,14858],["2021-07-09",24540,28,14886],["2021-07-10",24540,12,14898],["2021-07-11",24540,8,14906],["2021-07-12",24540,16,14922],["2021-07-13",24540,51,14973],["2021-07-14",24540,26,14999],["2021-07-15",24540,31,15030],["2021-07-16",24540,40,15070],["2021-07-17",24540,8,15078],["2021-07-18",24540,6,15084],["2021-07-19",24540,28,15112],["2021-07-20",24540,43,15155],["2021-07-21",24540,63,15218],["2021-07-22",24540,50,15268],["2021-07-23",24540,57,15325],["2021-07-24",24540,16,15341],["2021-07-25",24540,7,15348],["2021-07-26",24540,72,15420],["2021-07-27",24540,79,15499],["2021-07-28",24540,72,15571],["2021-07-29",24540,126,15697],["2021-07-30",24540,70,15767],["2021-07-31",24540,34,15801],["2021-08-01",24540,17,15818],["2021-08-02",24540,81,15899],["2021-08-03",24540,79,15978],["2021-08-04",24540,133,16111],["2021-08-05",24540,97,16208],["2021-08-06",24540,76,16284],["2021-08-07",24540,39,16323],["2021-08-08",24540,24,16347],["2021-08-09",24540,107,16454],["2021-08-10",24540,79,16533],["2021-08-11",24540,132,16665],["2021-08-12",24540,128,16793],["2021-08-13",24540,101,16894],["2021-08-14",24540,36,16930],["2021-08-15",24540,36,16966],["2021-08-16",24540,78,17044],["2021-08-17",24540,127,17171],["2021-08-18",24540,156,17327],["2021-08-19",24540,146,17473],["2021-08-20",24540,138,17611],["2021-08-21",24540,68,17679],["2021-08-22",24540,21,17700],["2021-08-23",24540,126,17826],["2021-08-24",24540,120,17946],["2021-08-25",24540,165,18111],["2021-08-26",24540,127,18238],["2021-08-27",24540,95,18333],["2021-08-28",24540,51,18384],["2021-08-29",24540,28,18412],["2021-08-30",24540,138,18550],["2021-08-31",24540,115,18665],["2021-09-01",24540,176,18841],["2021-09-02",24540,117,18958],["2021-09-03",24540,99,19057],["2021-09-04",24540,44,19101],["2021-09-05",24540,26,19127],["2021-09-06",24540,5,19132],["2021-09-07",24540,100,19232],["2021-09-08",24540,119,19351],["2021-09-09",24540,113,19464],["2021-09-10",24540,82,19546],["2021-09-11",24540,65,19611],["2021-09-12",24540,38,19649],["2021-09-13",24540,85,19734],["2021-09-14",24540,94,19828],["2021-09-15",24540,89,19917],["2021-09-16",24540,103,20020],["2021-09-17",24540,91,20111],["2021-09-18",24540,33,20144],["2021-09-19",24540,19,20163],["2021-09-20",24540,60,20223],["2021-09-21",24540,77,20300],["2021-09-22",24540,79,20379],["2021-09-23",24540,66,20445],["2021-09-24",24540,59,20504],["2021-09-25",24540,25,20529],["2021-09-26",24540,13,20542],["2021-09-27",24540,81,20623],["2021-09-28",24540,79,20702],["2021-09-29",24540,115,20817],["2021-09-30",24540,72,20889],["2021-10-01",24540,62,20951],["2021-10-02",24540,23,20974],["2021-10-03",24540,7,20981],["2021-10-04",24540,39,21020],["2021-10-05",24540,54,21074],["2021-10-06",24540,83,21157],["2021-10-07",24540,41,21198],["2021-10-08",24540,42,21240],["2021-10-09",24540,19,21259],["2021-10-10",24540,4,21263],["2021-10-11",24540,26,21289],["2021-10-12",24540,30,21319],["2021-10-13",24540,63,21382],["2021-10-14",24540,26,21408],["2021-10-15",24540,26,21434],["2021-10-16",24540,9,21443],["2021-10-17",24540,6,21449],["2021-10-18",24540,28,21477],["2021-10-19",24540,14,21491],["2021-10-20",24540,47,21538],["2021-10-21",24540,23,21561],["2021-10-22",24540,27,21588],["2021-10-23",24540,18,21606],["2021-10-24",24540,7,21613],["2021-10-25",24540,35,21648],["2021-10-26",24540,66,21714],["2021-10-27",24540,92,21806],["2021-10-28",24540,100,21906],["2021-10-29",24540,65,21971],["2021-10-30",24540,11,21982],["2021-10-31",24540,3,21985],["2021-11-01",24540,101,22086],["2021-11-02",24540,98,22184],["2021-11-03",24540,100,22284],["2021-11-04",24540,35,22319],["2021-11-05",24540,29,22348],["2021-11-06",24540,21,22369],["2021-11-07",24540,8,22377],["2021-11-08",24540,75,22452],["2021-11-09",24540,62,22514],["2021-11-10",24540,111,22625],["2021-11-11",24540,58,22683],["2021-11-12",24540,59,22742],["2021-11-13",24540,17,22759],["2021-11-14",24540,7,22766],["2021-11-15",24540,64,22830],["2021-11-16",24540,80,22910],["2021-11-17",24540,97,23007],["2021-11-18",24540,47,23054],["2021-11-19",24540,53,23107],["2021-11-20",24540,23,23130],["2021-11-21",24540,6,23136],["2021-11-22",24540,82,23218],["2021-11-23",24540,79,23297],["2021-11-24",24540,54,23351],["2021-11-26",24540,14,23365],["2021-11-27",24540,25,23390],["2021-11-28",24540,5,23395],["2021-11-29",24540,86,23481],["2021-11-30",24540,68,23549],["2021-12-01",24540,157,23706],["2021-12-02",24540,111,23817],["2021-12-03",24540,58,23875],["2021-12-04",24540,22,23897],["2021-12-05",24540,4,23901],["2021-12-06",24540,74,23975],["2021-12-07",24540,117,24092],["2021-12-08",24540,94,24186],["2021-12-09",24540,89,24275],["2021-12-10",24540,63,24338],["2021-12-11",24540,22,24360],["2021-12-12",24540,4,24364],["2021-12-13",24540,50,24414],["2021-12-14",24540,75,24489],["2021-12-15",24540,62,24551],["2021-12-16",24540,48,24599],["2021-12-17",24540,38,24637],["2021-12-18",24540,24,24661],["2021-12-19",24540,8,24669],["2021-12-20",24540,66,24735],["2021-12-21",24540,80,24815],["2021-12-22",24540,87,24902],["2021-12-23",24540,42,24944],["2021-12-24",24540,14,24958],["2021-12-26",24540,7,24965],["2021-12-27",24540,39,25004],["2021-12-28",24540,76,25080],["2021-12-29",24540,88,25168],["2021-12-30",24540,83,25251],["2021-12-31",24540,38,25289],["2022-01-02",24540,20,25309],["2022-01-03",24540,10,25319]]} \ No newline at end of file diff --git a/public/data/overall/vaccinations/by-county/Greene.json b/public/data/overall/vaccinations/by-county/Greene.json new file mode 100644 index 000000000..c09f9440b --- /dev/null +++ b/public/data/overall/vaccinations/by-county/Greene.json @@ -0,0 +1 @@ +{"segment":{"county":"Greene"},"headers":["report_date","population","vaccinations","total_vaccinations"],"rows":[["2020-12-16",18717,1,1],["2020-12-18",18717,2,3],["2020-12-19",18717,1,4],["2020-12-20",18717,1,5],["2020-12-21",18717,3,8],["2020-12-22",18717,7,15],["2020-12-23",18717,28,43],["2020-12-24",18717,2,45],["2020-12-25",18717,1,46],["2020-12-26",18717,1,47],["2020-12-27",18717,1,48],["2020-12-28",18717,17,65],["2020-12-29",18717,24,89],["2020-12-30",18717,21,110],["2020-12-31",18717,9,119],["2021-01-01",18717,6,125],["2021-01-02",18717,8,133],["2021-01-03",18717,28,161],["2021-01-04",18717,63,224],["2021-01-05",18717,36,260],["2021-01-06",18717,28,288],["2021-01-07",18717,45,333],["2021-01-08",18717,21,354],["2021-01-09",18717,7,361],["2021-01-10",18717,7,368],["2021-01-11",18717,71,439],["2021-01-12",18717,102,541],["2021-01-13",18717,71,612],["2021-01-14",18717,111,723],["2021-01-15",18717,86,809],["2021-01-16",18717,58,867],["2021-01-17",18717,111,978],["2021-01-18",18717,124,1102],["2021-01-19",18717,173,1275],["2021-01-20",18717,70,1345],["2021-01-21",18717,147,1492],["2021-01-22",18717,143,1635],["2021-01-23",18717,77,1712],["2021-01-24",18717,12,1724],["2021-01-25",18717,272,1996],["2021-01-26",18717,116,2112],["2021-01-27",18717,77,2189],["2021-01-28",18717,124,2313],["2021-01-29",18717,129,2442],["2021-01-30",18717,19,2461],["2021-01-31",18717,23,2484],["2021-02-01",18717,187,2671],["2021-02-02",18717,99,2770],["2021-02-03",18717,79,2849],["2021-02-04",18717,95,2944],["2021-02-05",18717,84,3028],["2021-02-06",18717,30,3058],["2021-02-07",18717,104,3162],["2021-02-08",18717,155,3317],["2021-02-09",18717,182,3499],["2021-02-10",18717,67,3566],["2021-02-11",18717,174,3740],["2021-02-12",18717,118,3858],["2021-02-13",18717,110,3968],["2021-02-14",18717,66,4034],["2021-02-15",18717,244,4278],["2021-02-16",18717,222,4500],["2021-02-17",18717,130,4630],["2021-02-18",18717,197,4827],["2021-02-19",18717,144,4971],["2021-02-20",18717,41,5012],["2021-02-21",18717,9,5021],["2021-02-22",18717,179,5200],["2021-02-23",18717,185,5385],["2021-02-24",18717,124,5509],["2021-02-25",18717,207,5716],["2021-02-26",18717,157,5873],["2021-02-27",18717,111,5984],["2021-02-28",18717,24,6008],["2021-03-01",18717,196,6204],["2021-03-02",18717,81,6285],["2021-03-03",18717,135,6420],["2021-03-04",18717,136,6556],["2021-03-05",18717,146,6702],["2021-03-06",18717,65,6767],["2021-03-07",18717,31,6798],["2021-03-08",18717,261,7059],["2021-03-09",18717,231,7290],["2021-03-10",18717,139,7429],["2021-03-11",18717,196,7625],["2021-03-12",18717,99,7724],["2021-03-13",18717,41,7765],["2021-03-14",18717,15,7780],["2021-03-15",18717,197,7977],["2021-03-16",18717,316,8293],["2021-03-17",18717,146,8439],["2021-03-18",18717,162,8601],["2021-03-19",18717,122,8723],["2021-03-20",18717,114,8837],["2021-03-21",18717,27,8864],["2021-03-22",18717,173,9037],["2021-03-23",18717,262,9299],["2021-03-24",18717,139,9438],["2021-03-25",18717,215,9653],["2021-03-26",18717,146,9799],["2021-03-27",18717,56,9855],["2021-03-28",18717,21,9876],["2021-03-29",18717,235,10111],["2021-03-30",18717,221,10332],["2021-03-31",18717,152,10484],["2021-04-01",18717,233,10717],["2021-04-02",18717,126,10843],["2021-04-03",18717,36,10879],["2021-04-04",18717,27,10906],["2021-04-05",18717,150,11056],["2021-04-06",18717,185,11241],["2021-04-07",18717,149,11390],["2021-04-08",18717,219,11609],["2021-04-09",18717,99,11708],["2021-04-10",18717,34,11742],["2021-04-11",18717,33,11775],["2021-04-12",18717,219,11994],["2021-04-13",18717,273,12267],["2021-04-14",18717,156,12423],["2021-04-15",18717,142,12565],["2021-04-16",18717,126,12691],["2021-04-17",18717,44,12735],["2021-04-18",18717,13,12748],["2021-04-19",18717,106,12854],["2021-04-20",18717,230,13084],["2021-04-21",18717,86,13170],["2021-04-22",18717,141,13311],["2021-04-23",18717,119,13430],["2021-04-24",18717,17,13447],["2021-04-25",18717,11,13458],["2021-04-26",18717,136,13594],["2021-04-27",18717,140,13734],["2021-04-28",18717,127,13861],["2021-04-29",18717,100,13961],["2021-04-30",18717,150,14111],["2021-05-01",18717,47,14158],["2021-05-02",18717,17,14175],["2021-05-03",18717,100,14275],["2021-05-04",18717,113,14388],["2021-05-05",18717,69,14457],["2021-05-06",18717,174,14631],["2021-05-07",18717,71,14702],["2021-05-08",18717,32,14734],["2021-05-09",18717,6,14740],["2021-05-10",18717,132,14872],["2021-05-11",18717,97,14969],["2021-05-12",18717,55,15024],["2021-05-13",18717,45,15069],["2021-05-14",18717,45,15114],["2021-05-15",18717,21,15135],["2021-05-16",18717,11,15146],["2021-05-17",18717,68,15214],["2021-05-18",18717,61,15275],["2021-05-19",18717,38,15313],["2021-05-20",18717,51,15364],["2021-05-21",18717,45,15409],["2021-05-22",18717,11,15420],["2021-05-23",18717,5,15425],["2021-05-24",18717,59,15484],["2021-05-25",18717,63,15547],["2021-05-26",18717,40,15587],["2021-05-27",18717,40,15627],["2021-05-28",18717,25,15652],["2021-05-29",18717,12,15664],["2021-05-30",18717,13,15677],["2021-05-31",18717,10,15687],["2021-06-01",18717,49,15736],["2021-06-02",18717,54,15790],["2021-06-03",18717,53,15843],["2021-06-04",18717,47,15890],["2021-06-05",18717,26,15916],["2021-06-06",18717,5,15921],["2021-06-07",18717,33,15954],["2021-06-08",18717,34,15988],["2021-06-09",18717,39,16027],["2021-06-10",18717,34,16061],["2021-06-11",18717,22,16083],["2021-06-12",18717,17,16100],["2021-06-13",18717,13,16113],["2021-06-14",18717,28,16141],["2021-06-15",18717,41,16182],["2021-06-16",18717,23,16205],["2021-06-17",18717,30,16235],["2021-06-18",18717,14,16249],["2021-06-19",18717,13,16262],["2021-06-20",18717,7,16269],["2021-06-21",18717,37,16306],["2021-06-22",18717,32,16338],["2021-06-23",18717,22,16360],["2021-06-24",18717,25,16385],["2021-06-25",18717,17,16402],["2021-06-26",18717,26,16428],["2021-06-27",18717,5,16433],["2021-06-28",18717,22,16455],["2021-06-29",18717,26,16481],["2021-06-30",18717,23,16504],["2021-07-01",18717,32,16536],["2021-07-02",18717,20,16556],["2021-07-03",18717,7,16563],["2021-07-05",18717,16,16579],["2021-07-06",18717,21,16600],["2021-07-07",18717,17,16617],["2021-07-08",18717,18,16635],["2021-07-09",18717,14,16649],["2021-07-10",18717,9,16658],["2021-07-11",18717,4,16662],["2021-07-12",18717,16,16678],["2021-07-13",18717,16,16694],["2021-07-14",18717,13,16707],["2021-07-15",18717,29,16736],["2021-07-16",18717,20,16756],["2021-07-17",18717,28,16784],["2021-07-18",18717,8,16792],["2021-07-19",18717,28,16820],["2021-07-20",18717,30,16850],["2021-07-21",18717,24,16874],["2021-07-22",18717,51,16925],["2021-07-23",18717,32,16957],["2021-07-24",18717,22,16979],["2021-07-25",18717,3,16982],["2021-07-26",18717,36,17018],["2021-07-27",18717,40,17058],["2021-07-28",18717,37,17095],["2021-07-29",18717,45,17140],["2021-07-30",18717,44,17184],["2021-07-31",18717,20,17204],["2021-08-01",18717,11,17215],["2021-08-02",18717,34,17249],["2021-08-03",18717,35,17284],["2021-08-04",18717,33,17317],["2021-08-05",18717,39,17356],["2021-08-06",18717,53,17409],["2021-08-07",18717,17,17426],["2021-08-08",18717,38,17464],["2021-08-09",18717,44,17508],["2021-08-10",18717,30,17538],["2021-08-11",18717,49,17587],["2021-08-12",18717,51,17638],["2021-08-13",18717,55,17693],["2021-08-14",18717,31,17724],["2021-08-15",18717,10,17734],["2021-08-16",18717,51,17785],["2021-08-17",18717,46,17831],["2021-08-18",18717,39,17870],["2021-08-19",18717,51,17921],["2021-08-20",18717,53,17974],["2021-08-21",18717,26,18000],["2021-08-22",18717,30,18030],["2021-08-23",18717,47,18077],["2021-08-24",18717,63,18140],["2021-08-25",18717,47,18187],["2021-08-26",18717,56,18243],["2021-08-27",18717,73,18316],["2021-08-28",18717,30,18346],["2021-08-29",18717,51,18397],["2021-08-30",18717,55,18452],["2021-08-31",18717,62,18514],["2021-09-01",18717,61,18575],["2021-09-02",18717,60,18635],["2021-09-03",18717,51,18686],["2021-09-04",18717,19,18705],["2021-09-05",18717,24,18729],["2021-09-06",18717,5,18734],["2021-09-07",18717,58,18792],["2021-09-08",18717,46,18838],["2021-09-09",18717,53,18891],["2021-09-10",18717,45,18936],["2021-09-11",18717,24,18960],["2021-09-12",18717,29,18989],["2021-09-13",18717,46,19035],["2021-09-14",18717,40,19075],["2021-09-15",18717,39,19114],["2021-09-16",18717,47,19161],["2021-09-17",18717,34,19195],["2021-09-18",18717,19,19214],["2021-09-19",18717,22,19236],["2021-09-20",18717,29,19265],["2021-09-21",18717,50,19315],["2021-09-22",18717,36,19351],["2021-09-23",18717,53,19404],["2021-09-24",18717,32,19436],["2021-09-25",18717,27,19463],["2021-09-26",18717,19,19482],["2021-09-27",18717,48,19530],["2021-09-28",18717,60,19590],["2021-09-29",18717,53,19643],["2021-09-30",18717,56,19699],["2021-10-01",18717,41,19740],["2021-10-02",18717,16,19756],["2021-10-03",18717,13,19769],["2021-10-04",18717,42,19811],["2021-10-05",18717,45,19856],["2021-10-06",18717,44,19900],["2021-10-07",18717,28,19928],["2021-10-08",18717,52,19980],["2021-10-09",18717,15,19995],["2021-10-10",18717,16,20011],["2021-10-11",18717,17,20028],["2021-10-12",18717,19,20047],["2021-10-13",18717,32,20079],["2021-10-14",18717,24,20103],["2021-10-15",18717,18,20121],["2021-10-16",18717,8,20129],["2021-10-17",18717,12,20141],["2021-10-18",18717,44,20185],["2021-10-19",18717,22,20207],["2021-10-20",18717,49,20256],["2021-10-21",18717,24,20280],["2021-10-22",18717,47,20327],["2021-10-23",18717,43,20370],["2021-10-24",18717,27,20397],["2021-10-25",18717,75,20472],["2021-10-26",18717,74,20546],["2021-10-27",18717,78,20624],["2021-10-28",18717,117,20741],["2021-10-29",18717,82,20823],["2021-10-30",18717,28,20851],["2021-10-31",18717,24,20875],["2021-11-01",18717,82,20957],["2021-11-02",18717,103,21060],["2021-11-03",18717,88,21148],["2021-11-04",18717,104,21252],["2021-11-05",18717,87,21339],["2021-11-06",18717,42,21381],["2021-11-07",18717,21,21402],["2021-11-08",18717,87,21489],["2021-11-09",18717,93,21582],["2021-11-10",18717,74,21656],["2021-11-11",18717,87,21743],["2021-11-12",18717,65,21808],["2021-11-13",18717,17,21825],["2021-11-14",18717,29,21854],["2021-11-15",18717,83,21937],["2021-11-16",18717,81,22018],["2021-11-17",18717,66,22084],["2021-11-18",18717,94,22178],["2021-11-19",18717,54,22232],["2021-11-20",18717,31,22263],["2021-11-21",18717,18,22281],["2021-11-22",18717,68,22349],["2021-11-23",18717,68,22417],["2021-11-24",18717,26,22443],["2021-11-26",18717,42,22485],["2021-11-27",18717,37,22522],["2021-11-28",18717,20,22542],["2021-11-29",18717,58,22600],["2021-11-30",18717,58,22658],["2021-12-01",18717,92,22750],["2021-12-02",18717,95,22845],["2021-12-03",18717,89,22934],["2021-12-04",18717,45,22979],["2021-12-05",18717,25,23004],["2021-12-06",18717,67,23071],["2021-12-07",18717,73,23144],["2021-12-08",18717,79,23223],["2021-12-09",18717,66,23289],["2021-12-10",18717,65,23354],["2021-12-11",18717,35,23389],["2021-12-12",18717,22,23411],["2021-12-13",18717,42,23453],["2021-12-14",18717,72,23525],["2021-12-15",18717,39,23564],["2021-12-16",18717,76,23640],["2021-12-17",18717,51,23691],["2021-12-18",18717,46,23737],["2021-12-19",18717,30,23767],["2021-12-20",18717,70,23837],["2021-12-21",18717,76,23913],["2021-12-22",18717,67,23980],["2021-12-23",18717,34,24014],["2021-12-24",18717,22,24036],["2021-12-26",18717,11,24047],["2021-12-27",18717,66,24113],["2021-12-28",18717,69,24182],["2021-12-29",18717,58,24240],["2021-12-30",18717,42,24282],["2021-12-31",18717,15,24297],["2022-01-01",18717,2,24299],["2022-01-02",18717,12,24311],["2022-01-03",18717,4,24315]]} \ No newline at end of file diff --git a/public/data/overall/vaccinations/by-county/Gwinnett.json b/public/data/overall/vaccinations/by-county/Gwinnett.json new file mode 100644 index 000000000..ecd29ae79 --- /dev/null +++ b/public/data/overall/vaccinations/by-county/Gwinnett.json @@ -0,0 +1 @@ +{"segment":{"county":"Gwinnett"},"headers":["report_date","population","vaccinations","total_vaccinations"],"rows":[["2020-12-14",971145,2,2],["2020-12-15",971145,2,4],["2020-12-16",971145,35,39],["2020-12-17",971145,246,285],["2020-12-18",971145,448,733],["2020-12-19",971145,348,1081],["2020-12-20",971145,372,1453],["2020-12-21",971145,493,1946],["2020-12-22",971145,758,2704],["2020-12-23",971145,988,3692],["2020-12-24",971145,224,3916],["2020-12-25",971145,13,3929],["2020-12-26",971145,141,4070],["2020-12-27",971145,218,4288],["2020-12-28",971145,978,5266],["2020-12-29",971145,1147,6413],["2020-12-30",971145,1231,7644],["2020-12-31",971145,660,8304],["2021-01-01",971145,254,8558],["2021-01-02",971145,351,8909],["2021-01-03",971145,280,9189],["2021-01-04",971145,1140,10329],["2021-01-05",971145,1295,11624],["2021-01-06",971145,1378,13002],["2021-01-07",971145,1565,14567],["2021-01-08",971145,1875,16442],["2021-01-09",971145,1104,17546],["2021-01-10",971145,558,18104],["2021-01-11",971145,1657,19761],["2021-01-12",971145,1695,21456],["2021-01-13",971145,2657,24113],["2021-01-14",971145,2085,26198],["2021-01-15",971145,2335,28533],["2021-01-16",971145,2140,30673],["2021-01-17",971145,838,31511],["2021-01-18",971145,2557,34068],["2021-01-19",971145,3039,37107],["2021-01-20",971145,3180,40287],["2021-01-21",971145,3095,43382],["2021-01-22",971145,3016,46398],["2021-01-23",971145,1627,48025],["2021-01-24",971145,727,48752],["2021-01-25",971145,2437,51189],["2021-01-26",971145,2779,53968],["2021-01-27",971145,2661,56629],["2021-01-28",971145,3920,60549],["2021-01-29",971145,3827,64376],["2021-01-30",971145,1114,65490],["2021-01-31",971145,414,65904],["2021-02-01",971145,2270,68174],["2021-02-02",971145,2512,70686],["2021-02-03",971145,2532,73218],["2021-02-04",971145,2924,76142],["2021-02-05",971145,2946,79088],["2021-02-06",971145,1725,80813],["2021-02-07",971145,409,81222],["2021-02-08",971145,3052,84274],["2021-02-09",971145,3059,87333],["2021-02-10",971145,2986,90319],["2021-02-11",971145,3706,94025],["2021-02-12",971145,3496,97521],["2021-02-13",971145,3106,100627],["2021-02-14",971145,915,101542],["2021-02-15",971145,4144,105686],["2021-02-16",971145,3733,109419],["2021-02-17",971145,3629,113048],["2021-02-18",971145,3391,116439],["2021-02-19",971145,3550,119989],["2021-02-20",971145,1961,121950],["2021-02-21",971145,589,122539],["2021-02-22",971145,2706,125245],["2021-02-23",971145,3445,128690],["2021-02-24",971145,3821,132511],["2021-02-25",971145,5249,137760],["2021-02-26",971145,5326,143086],["2021-02-27",971145,2573,145659],["2021-02-28",971145,768,146427],["2021-03-01",971145,4956,151383],["2021-03-02",971145,4880,156263],["2021-03-03",971145,4725,160988],["2021-03-04",971145,5316,166304],["2021-03-05",971145,5540,171844],["2021-03-06",971145,2874,174718],["2021-03-07",971145,1044,175762],["2021-03-08",971145,5874,181636],["2021-03-09",971145,6426,188062],["2021-03-10",971145,6030,194092],["2021-03-11",971145,6168,200260],["2021-03-12",971145,6613,206873],["2021-03-13",971145,3328,210201],["2021-03-14",971145,1996,212197],["2021-03-15",971145,6888,219085],["2021-03-16",971145,7873,226958],["2021-03-17",971145,7918,234876],["2021-03-18",971145,7716,242592],["2021-03-19",971145,8240,250832],["2021-03-20",971145,5310,256142],["2021-03-21",971145,2039,258181],["2021-03-22",971145,6980,265161],["2021-03-23",971145,8407,273568],["2021-03-24",971145,9055,282623],["2021-03-25",971145,9350,291973],["2021-03-26",971145,9574,301547],["2021-03-27",971145,6160,307707],["2021-03-28",971145,2877,310584],["2021-03-29",971145,9310,319894],["2021-03-30",971145,12036,331930],["2021-03-31",971145,12346,344276],["2021-04-01",971145,11809,356085],["2021-04-02",971145,10172,366257],["2021-04-03",971145,5826,372083],["2021-04-04",971145,2546,374629],["2021-04-05",971145,9616,384245],["2021-04-06",971145,12582,396827],["2021-04-07",971145,12683,409510],["2021-04-08",971145,11470,420980],["2021-04-09",971145,11828,432808],["2021-04-10",971145,8085,440893],["2021-04-11",971145,3080,443973],["2021-04-12",971145,10343,454316],["2021-04-13",971145,11310,465626],["2021-04-14",971145,12051,477677],["2021-04-15",971145,10617,488294],["2021-04-16",971145,9735,498029],["2021-04-17",971145,6363,504392],["2021-04-18",971145,4334,508726],["2021-04-19",971145,10009,518735],["2021-04-20",971145,10894,529629],["2021-04-21",971145,11237,540866],["2021-04-22",971145,10274,551140],["2021-04-23",971145,9770,560910],["2021-04-24",971145,6667,567577],["2021-04-25",971145,2980,570557],["2021-04-26",971145,8005,578562],["2021-04-27",971145,8861,587423],["2021-04-28",971145,10666,598089],["2021-04-29",971145,9856,607945],["2021-04-30",971145,9908,617853],["2021-05-01",971145,7711,625564],["2021-05-02",971145,2291,627855],["2021-05-03",971145,6193,634048],["2021-05-04",971145,7785,641833],["2021-05-05",971145,8346,650179],["2021-05-06",971145,6387,656566],["2021-05-07",971145,6821,663387],["2021-05-08",971145,4229,667616],["2021-05-09",971145,1671,669287],["2021-05-10",971145,4275,673562],["2021-05-11",971145,5587,679149],["2021-05-12",971145,5434,684583],["2021-05-13",971145,5169,689752],["2021-05-14",971145,5841,695593],["2021-05-15",971145,5338,700931],["2021-05-16",971145,2876,703807],["2021-05-17",971145,4961,708768],["2021-05-18",971145,4879,713647],["2021-05-19",971145,5978,719625],["2021-05-20",971145,4362,723987],["2021-05-21",971145,5122,729109],["2021-05-22",971145,4481,733590],["2021-05-23",971145,2077,735667],["2021-05-24",971145,3298,738965],["2021-05-25",971145,3526,742491],["2021-05-26",971145,4279,746770],["2021-05-27",971145,3576,750346],["2021-05-28",971145,3662,754008],["2021-05-29",971145,2377,756385],["2021-05-30",971145,1382,757767],["2021-05-31",971145,563,758330],["2021-06-01",971145,3620,761950],["2021-06-02",971145,3727,765677],["2021-06-03",971145,3412,769089],["2021-06-04",971145,3939,773028],["2021-06-05",971145,3463,776491],["2021-06-06",971145,1868,778359],["2021-06-07",971145,3096,781455],["2021-06-08",971145,3225,784680],["2021-06-09",971145,3560,788240],["2021-06-10",971145,2959,791199],["2021-06-11",971145,3400,794599],["2021-06-12",971145,2898,797497],["2021-06-13",971145,1452,798949],["2021-06-14",971145,2346,801295],["2021-06-15",971145,2461,803756],["2021-06-16",971145,2937,806693],["2021-06-17",971145,2373,809066],["2021-06-18",971145,2764,811830],["2021-06-19",971145,1899,813729],["2021-06-20",971145,1074,814803],["2021-06-21",971145,1660,816463],["2021-06-22",971145,2270,818733],["2021-06-23",971145,2611,821344],["2021-06-24",971145,1803,823147],["2021-06-25",971145,2421,825568],["2021-06-26",971145,2135,827703],["2021-06-27",971145,1193,828896],["2021-06-28",971145,1630,830526],["2021-06-29",971145,1846,832372],["2021-06-30",971145,2262,834634],["2021-07-01",971145,1643,836277],["2021-07-02",971145,2013,838290],["2021-07-03",971145,1539,839829],["2021-07-04",971145,121,839950],["2021-07-05",971145,1310,841260],["2021-07-06",971145,1579,842839],["2021-07-07",971145,1960,844799],["2021-07-08",971145,1525,846324],["2021-07-09",971145,1740,848064],["2021-07-10",971145,1460,849524],["2021-07-11",971145,881,850405],["2021-07-12",971145,1564,851969],["2021-07-13",971145,1343,853312],["2021-07-14",971145,1807,855119],["2021-07-15",971145,1476,856595],["2021-07-16",971145,1827,858422],["2021-07-17",971145,1578,860000],["2021-07-18",971145,1009,861009],["2021-07-19",971145,1726,862735],["2021-07-20",971145,1737,864472],["2021-07-21",971145,2227,866699],["2021-07-22",971145,1730,868429],["2021-07-23",971145,2140,870569],["2021-07-24",971145,1776,872345],["2021-07-25",971145,1063,873408],["2021-07-26",971145,1793,875201],["2021-07-27",971145,1921,877122],["2021-07-28",971145,2269,879391],["2021-07-29",971145,1976,881367],["2021-07-30",971145,2361,883728],["2021-07-31",971145,1803,885531],["2021-08-01",971145,1330,886861],["2021-08-02",971145,2290,889151],["2021-08-03",971145,2171,891322],["2021-08-04",971145,2390,893712],["2021-08-05",971145,1933,895645],["2021-08-06",971145,2513,898158],["2021-08-07",971145,2283,900441],["2021-08-08",971145,1463,901904],["2021-08-09",971145,2148,904052],["2021-08-10",971145,2144,906196],["2021-08-11",971145,2564,908760],["2021-08-12",971145,2085,910845],["2021-08-13",971145,2418,913263],["2021-08-14",971145,2133,915396],["2021-08-15",971145,1413,916809],["2021-08-16",971145,2065,918874],["2021-08-17",971145,2060,920934],["2021-08-18",971145,2482,923416],["2021-08-19",971145,2130,925546],["2021-08-20",971145,2708,928254],["2021-08-21",971145,2410,930664],["2021-08-22",971145,1433,932097],["2021-08-23",971145,2180,934277],["2021-08-24",971145,2063,936340],["2021-08-25",971145,2470,938810],["2021-08-26",971145,2230,941040],["2021-08-27",971145,2727,943767],["2021-08-28",971145,2476,946243],["2021-08-29",971145,1371,947614],["2021-08-30",971145,2131,949745],["2021-08-31",971145,2133,951878],["2021-09-01",971145,2474,954352],["2021-09-02",971145,2078,956430],["2021-09-03",971145,2444,958874],["2021-09-04",971145,1762,960636],["2021-09-05",971145,1134,961770],["2021-09-06",971145,312,962082],["2021-09-07",971145,1970,964052],["2021-09-08",971145,2102,966154],["2021-09-09",971145,1864,968018],["2021-09-10",971145,2161,970179],["2021-09-11",971145,1742,971921],["2021-09-12",971145,1176,973097],["2021-09-13",971145,1689,974786],["2021-09-14",971145,1565,976351],["2021-09-15",971145,1762,978113],["2021-09-16",971145,1468,979581],["2021-09-17",971145,1804,981385],["2021-09-18",971145,1380,982765],["2021-09-19",971145,886,983651],["2021-09-20",971145,1525,985176],["2021-09-21",971145,1367,986543],["2021-09-22",971145,1460,988003],["2021-09-23",971145,1243,989246],["2021-09-24",971145,1784,991030],["2021-09-25",971145,1429,992459],["2021-09-26",971145,913,993372],["2021-09-27",971145,1861,995233],["2021-09-28",971145,2100,997333],["2021-09-29",971145,2124,999457],["2021-09-30",971145,2009,1001466],["2021-10-01",971145,2369,1003835],["2021-10-02",971145,1451,1005286],["2021-10-03",971145,767,1006053],["2021-10-04",971145,1738,1007791],["2021-10-05",971145,1814,1009605],["2021-10-06",971145,1804,1011409],["2021-10-07",971145,1591,1013000],["2021-10-08",971145,2097,1015097],["2021-10-09",971145,1196,1016293],["2021-10-10",971145,914,1017207],["2021-10-11",971145,1450,1018657],["2021-10-12",971145,1507,1020164],["2021-10-13",971145,1676,1021840],["2021-10-14",971145,1411,1023251],["2021-10-15",971145,1868,1025119],["2021-10-16",971145,1131,1026250],["2021-10-17",971145,726,1026976],["2021-10-18",971145,1318,1028294],["2021-10-19",971145,1300,1029594],["2021-10-20",971145,1412,1031006],["2021-10-21",971145,1538,1032544],["2021-10-22",971145,2684,1035228],["2021-10-23",971145,2767,1037995],["2021-10-24",971145,1261,1039256],["2021-10-25",971145,2844,1042100],["2021-10-26",971145,2367,1044467],["2021-10-27",971145,2859,1047326],["2021-10-28",971145,2481,1049807],["2021-10-29",971145,3293,1053100],["2021-10-30",971145,2003,1055103],["2021-10-31",971145,1145,1056248],["2021-11-01",971145,2587,1058835],["2021-11-02",971145,2360,1061195],["2021-11-03",971145,2490,1063685],["2021-11-04",971145,2378,1066063],["2021-11-05",971145,3261,1069324],["2021-11-06",971145,2166,1071490],["2021-11-07",971145,1307,1072797],["2021-11-08",971145,2423,1075220],["2021-11-09",971145,2711,1077931],["2021-11-10",971145,2586,1080517],["2021-11-11",971145,2407,1082924],["2021-11-12",971145,3175,1086099],["2021-11-13",971145,2361,1088460],["2021-11-14",971145,1133,1089593],["2021-11-15",971145,2651,1092244],["2021-11-16",971145,2619,1094863],["2021-11-17",971145,2516,1097379],["2021-11-18",971145,2674,1100053],["2021-11-19",971145,3441,1103494],["2021-11-20",971145,2778,1106272],["2021-11-21",971145,1739,1108011],["2021-11-22",971145,3740,1111751],["2021-11-23",971145,3451,1115202],["2021-11-24",971145,2648,1117850],["2021-11-25",971145,13,1117863],["2021-11-26",971145,3167,1121030],["2021-11-27",971145,2313,1123343],["2021-11-28",971145,1396,1124739],["2021-11-29",971145,3212,1127951],["2021-11-30",971145,3642,1131593],["2021-12-01",971145,4017,1135610],["2021-12-02",971145,4257,1139867],["2021-12-03",971145,5158,1145025],["2021-12-04",971145,3901,1148926],["2021-12-05",971145,1664,1150590],["2021-12-06",971145,3644,1154234],["2021-12-07",971145,3531,1157765],["2021-12-08",971145,3551,1161316],["2021-12-09",971145,3476,1164792],["2021-12-10",971145,4966,1169758],["2021-12-11",971145,3559,1173317],["2021-12-12",971145,2230,1175547],["2021-12-13",971145,3079,1178626],["2021-12-14",971145,3179,1181805],["2021-12-15",971145,2874,1184679],["2021-12-16",971145,2986,1187665],["2021-12-17",971145,3731,1191396],["2021-12-18",971145,3046,1194442],["2021-12-19",971145,1676,1196118],["2021-12-20",971145,3834,1199952],["2021-12-21",971145,4026,1203978],["2021-12-22",971145,3965,1207943],["2021-12-23",971145,3158,1211101],["2021-12-24",971145,1229,1212330],["2021-12-25",971145,4,1212334],["2021-12-26",971145,1207,1213541],["2021-12-27",971145,3382,1216923],["2021-12-28",971145,3796,1220719],["2021-12-29",971145,3767,1224486],["2021-12-30",971145,3086,1227572],["2021-12-31",971145,1584,1229156],["2022-01-01",971145,237,1229393],["2022-01-02",971145,912,1230305],["2022-01-03",971145,1199,1231504]]} \ No newline at end of file diff --git a/public/data/overall/vaccinations/by-county/Habersham.json b/public/data/overall/vaccinations/by-county/Habersham.json new file mode 100644 index 000000000..7bf246bb1 --- /dev/null +++ b/public/data/overall/vaccinations/by-county/Habersham.json @@ -0,0 +1 @@ +{"segment":{"county":"Habersham"},"headers":["report_date","population","vaccinations","total_vaccinations"],"rows":[["2020-12-16",45800,2,2],["2020-12-17",45800,2,4],["2020-12-18",45800,9,13],["2020-12-19",45800,5,18],["2020-12-20",45800,6,24],["2020-12-21",45800,12,36],["2020-12-22",45800,33,69],["2020-12-23",45800,58,127],["2020-12-24",45800,4,131],["2020-12-26",45800,4,135],["2020-12-27",45800,2,137],["2020-12-28",45800,60,197],["2020-12-29",45800,87,284],["2020-12-30",45800,78,362],["2020-12-31",45800,13,375],["2021-01-01",45800,11,386],["2021-01-02",45800,3,389],["2021-01-03",45800,2,391],["2021-01-04",45800,50,441],["2021-01-05",45800,62,503],["2021-01-06",45800,53,556],["2021-01-07",45800,42,598],["2021-01-08",45800,38,636],["2021-01-09",45800,10,646],["2021-01-10",45800,16,662],["2021-01-11",45800,141,803],["2021-01-12",45800,171,974],["2021-01-13",45800,267,1241],["2021-01-14",45800,431,1672],["2021-01-15",45800,311,1983],["2021-01-16",45800,105,2088],["2021-01-17",45800,29,2117],["2021-01-18",45800,207,2324],["2021-01-19",45800,251,2575],["2021-01-20",45800,275,2850],["2021-01-21",45800,185,3035],["2021-01-22",45800,169,3204],["2021-01-23",45800,58,3262],["2021-01-24",45800,46,3308],["2021-01-25",45800,165,3473],["2021-01-26",45800,227,3700],["2021-01-27",45800,249,3949],["2021-01-28",45800,147,4096],["2021-01-29",45800,159,4255],["2021-01-30",45800,37,4292],["2021-01-31",45800,25,4317],["2021-02-01",45800,121,4438],["2021-02-02",45800,138,4576],["2021-02-03",45800,257,4833],["2021-02-04",45800,145,4978],["2021-02-05",45800,133,5111],["2021-02-06",45800,28,5139],["2021-02-07",45800,10,5149],["2021-02-08",45800,183,5332],["2021-02-09",45800,219,5551],["2021-02-10",45800,237,5788],["2021-02-11",45800,417,6205],["2021-02-12",45800,229,6434],["2021-02-13",45800,82,6516],["2021-02-14",45800,23,6539],["2021-02-15",45800,290,6829],["2021-02-16",45800,238,7067],["2021-02-17",45800,178,7245],["2021-02-18",45800,215,7460],["2021-02-19",45800,209,7669],["2021-02-20",45800,42,7711],["2021-02-21",45800,40,7751],["2021-02-22",45800,325,8076],["2021-02-23",45800,309,8385],["2021-02-24",45800,299,8684],["2021-02-25",45800,313,8997],["2021-02-26",45800,311,9308],["2021-02-27",45800,109,9417],["2021-02-28",45800,38,9455],["2021-03-01",45800,246,9701],["2021-03-02",45800,291,9992],["2021-03-03",45800,389,10381],["2021-03-04",45800,223,10604],["2021-03-05",45800,203,10807],["2021-03-06",45800,28,10835],["2021-03-07",45800,35,10870],["2021-03-08",45800,264,11134],["2021-03-09",45800,195,11329],["2021-03-10",45800,241,11570],["2021-03-11",45800,360,11930],["2021-03-12",45800,245,12175],["2021-03-13",45800,70,12245],["2021-03-14",45800,46,12291],["2021-03-15",45800,372,12663],["2021-03-16",45800,350,13013],["2021-03-17",45800,312,13325],["2021-03-18",45800,288,13613],["2021-03-19",45800,256,13869],["2021-03-20",45800,51,13920],["2021-03-21",45800,71,13991],["2021-03-22",45800,214,14205],["2021-03-23",45800,201,14406],["2021-03-24",45800,266,14672],["2021-03-25",45800,302,14974],["2021-03-26",45800,263,15237],["2021-03-27",45800,83,15320],["2021-03-28",45800,55,15375],["2021-03-29",45800,349,15724],["2021-03-30",45800,314,16038],["2021-03-31",45800,317,16355],["2021-04-01",45800,275,16630],["2021-04-02",45800,269,16899],["2021-04-03",45800,83,16982],["2021-04-04",45800,53,17035],["2021-04-05",45800,321,17356],["2021-04-06",45800,230,17586],["2021-04-07",45800,307,17893],["2021-04-08",45800,265,18158],["2021-04-09",45800,318,18476],["2021-04-10",45800,83,18559],["2021-04-11",45800,60,18619],["2021-04-12",45800,365,18984],["2021-04-13",45800,200,19184],["2021-04-14",45800,307,19491],["2021-04-15",45800,284,19775],["2021-04-16",45800,298,20073],["2021-04-17",45800,95,20168],["2021-04-18",45800,48,20216],["2021-04-19",45800,253,20469],["2021-04-20",45800,239,20708],["2021-04-21",45800,443,21151],["2021-04-22",45800,253,21404],["2021-04-23",45800,480,21884],["2021-04-24",45800,69,21953],["2021-04-25",45800,24,21977],["2021-04-26",45800,223,22200],["2021-04-27",45800,190,22390],["2021-04-28",45800,244,22634],["2021-04-29",45800,194,22828],["2021-04-30",45800,303,23131],["2021-05-01",45800,74,23205],["2021-05-02",45800,29,23234],["2021-05-03",45800,202,23436],["2021-05-04",45800,126,23562],["2021-05-05",45800,159,23721],["2021-05-06",45800,166,23887],["2021-05-07",45800,194,24081],["2021-05-08",45800,65,24146],["2021-05-09",45800,28,24174],["2021-05-10",45800,116,24290],["2021-05-11",45800,101,24391],["2021-05-12",45800,120,24511],["2021-05-13",45800,133,24644],["2021-05-14",45800,188,24832],["2021-05-15",45800,78,24910],["2021-05-16",45800,40,24950],["2021-05-17",45800,108,25058],["2021-05-18",45800,124,25182],["2021-05-19",45800,346,25528],["2021-05-20",45800,99,25627],["2021-05-21",45800,279,25906],["2021-05-22",45800,46,25952],["2021-05-23",45800,29,25981],["2021-05-24",45800,67,26048],["2021-05-25",45800,78,26126],["2021-05-26",45800,109,26235],["2021-05-27",45800,77,26312],["2021-05-28",45800,116,26428],["2021-05-29",45800,33,26461],["2021-05-30",45800,26,26487],["2021-05-31",45800,23,26510],["2021-06-01",45800,67,26577],["2021-06-02",45800,88,26665],["2021-06-03",45800,69,26734],["2021-06-04",45800,88,26822],["2021-06-05",45800,49,26871],["2021-06-06",45800,28,26899],["2021-06-07",45800,47,26946],["2021-06-08",45800,47,26993],["2021-06-09",45800,79,27072],["2021-06-10",45800,56,27128],["2021-06-11",45800,79,27207],["2021-06-12",45800,47,27254],["2021-06-13",45800,15,27269],["2021-06-14",45800,46,27315],["2021-06-15",45800,58,27373],["2021-06-16",45800,60,27433],["2021-06-17",45800,41,27474],["2021-06-18",45800,66,27540],["2021-06-19",45800,24,27564],["2021-06-20",45800,16,27580],["2021-06-21",45800,30,27610],["2021-06-22",45800,108,27718],["2021-06-23",45800,60,27778],["2021-06-24",45800,49,27827],["2021-06-25",45800,70,27897],["2021-06-26",45800,30,27927],["2021-06-27",45800,14,27941],["2021-06-28",45800,33,27974],["2021-06-29",45800,22,27996],["2021-06-30",45800,40,28036],["2021-07-01",45800,29,28065],["2021-07-02",45800,50,28115],["2021-07-03",45800,18,28133],["2021-07-04",45800,3,28136],["2021-07-05",45800,26,28162],["2021-07-06",45800,34,28196],["2021-07-07",45800,50,28246],["2021-07-08",45800,36,28282],["2021-07-09",45800,31,28313],["2021-07-10",45800,26,28339],["2021-07-11",45800,8,28347],["2021-07-12",45800,39,28386],["2021-07-13",45800,38,28424],["2021-07-14",45800,36,28460],["2021-07-15",45800,30,28490],["2021-07-16",45800,54,28544],["2021-07-17",45800,30,28574],["2021-07-18",45800,14,28588],["2021-07-19",45800,32,28620],["2021-07-20",45800,41,28661],["2021-07-21",45800,58,28719],["2021-07-22",45800,33,28752],["2021-07-23",45800,79,28831],["2021-07-24",45800,38,28869],["2021-07-25",45800,16,28885],["2021-07-26",45800,57,28942],["2021-07-27",45800,52,28994],["2021-07-28",45800,71,29065],["2021-07-29",45800,61,29126],["2021-07-30",45800,83,29209],["2021-07-31",45800,41,29250],["2021-08-01",45800,54,29304],["2021-08-02",45800,78,29382],["2021-08-03",45800,81,29463],["2021-08-04",45800,116,29579],["2021-08-05",45800,72,29651],["2021-08-06",45800,114,29765],["2021-08-07",45800,56,29821],["2021-08-08",45800,30,29851],["2021-08-09",45800,72,29923],["2021-08-10",45800,84,30007],["2021-08-11",45800,90,30097],["2021-08-12",45800,83,30180],["2021-08-13",45800,135,30315],["2021-08-14",45800,73,30388],["2021-08-15",45800,43,30431],["2021-08-16",45800,112,30543],["2021-08-17",45800,92,30635],["2021-08-18",45800,138,30773],["2021-08-19",45800,99,30872],["2021-08-20",45800,160,31032],["2021-08-21",45800,80,31112],["2021-08-22",45800,40,31152],["2021-08-23",45800,102,31254],["2021-08-24",45800,134,31388],["2021-08-25",45800,159,31547],["2021-08-26",45800,143,31690],["2021-08-27",45800,249,31939],["2021-08-28",45800,102,32041],["2021-08-29",45800,81,32122],["2021-08-30",45800,127,32249],["2021-08-31",45800,137,32386],["2021-09-01",45800,148,32534],["2021-09-02",45800,120,32654],["2021-09-03",45800,184,32838],["2021-09-04",45800,88,32926],["2021-09-05",45800,61,32987],["2021-09-06",45800,25,33012],["2021-09-07",45800,97,33109],["2021-09-08",45800,114,33223],["2021-09-09",45800,113,33336],["2021-09-10",45800,164,33500],["2021-09-11",45800,81,33581],["2021-09-12",45800,42,33623],["2021-09-13",45800,88,33711],["2021-09-14",45800,100,33811],["2021-09-15",45800,116,33927],["2021-09-16",45800,120,34047],["2021-09-17",45800,165,34212],["2021-09-18",45800,67,34279],["2021-09-19",45800,32,34311],["2021-09-20",45800,72,34383],["2021-09-21",45800,107,34490],["2021-09-22",45800,118,34608],["2021-09-23",45800,60,34668],["2021-09-24",45800,169,34837],["2021-09-25",45800,75,34912],["2021-09-26",45800,30,34942],["2021-09-27",45800,85,35027],["2021-09-28",45800,83,35110],["2021-09-29",45800,76,35186],["2021-09-30",45800,92,35278],["2021-10-01",45800,133,35411],["2021-10-02",45800,59,35470],["2021-10-03",45800,23,35493],["2021-10-04",45800,60,35553],["2021-10-05",45800,61,35614],["2021-10-06",45800,65,35679],["2021-10-07",45800,63,35742],["2021-10-08",45800,112,35854],["2021-10-09",45800,50,35904],["2021-10-10",45800,19,35923],["2021-10-11",45800,44,35967],["2021-10-12",45800,51,36018],["2021-10-13",45800,49,36067],["2021-10-14",45800,64,36131],["2021-10-15",45800,64,36195],["2021-10-16",45800,34,36229],["2021-10-17",45800,13,36242],["2021-10-18",45800,50,36292],["2021-10-19",45800,46,36338],["2021-10-20",45800,53,36391],["2021-10-21",45800,53,36444],["2021-10-22",45800,93,36537],["2021-10-23",45800,83,36620],["2021-10-24",45800,72,36692],["2021-10-25",45800,172,36864],["2021-10-26",45800,290,37154],["2021-10-27",45800,193,37347],["2021-10-28",45800,166,37513],["2021-10-29",45800,195,37708],["2021-10-30",45800,65,37773],["2021-10-31",45800,30,37803],["2021-11-01",45800,151,37954],["2021-11-02",45800,189,38143],["2021-11-03",45800,112,38255],["2021-11-04",45800,147,38402],["2021-11-05",45800,139,38541],["2021-11-06",45800,56,38597],["2021-11-07",45800,23,38620],["2021-11-08",45800,101,38721],["2021-11-09",45800,115,38836],["2021-11-10",45800,125,38961],["2021-11-11",45800,120,39081],["2021-11-12",45800,154,39235],["2021-11-13",45800,46,39281],["2021-11-14",45800,15,39296],["2021-11-15",45800,110,39406],["2021-11-16",45800,121,39527],["2021-11-17",45800,159,39686],["2021-11-18",45800,107,39793],["2021-11-19",45800,130,39923],["2021-11-20",45800,62,39985],["2021-11-21",45800,28,40013],["2021-11-22",45800,141,40154],["2021-11-23",45800,107,40261],["2021-11-24",45800,79,40340],["2021-11-26",45800,72,40412],["2021-11-27",45800,57,40469],["2021-11-28",45800,28,40497],["2021-11-29",45800,117,40614],["2021-11-30",45800,172,40786],["2021-12-01",45800,152,40938],["2021-12-02",45800,126,41064],["2021-12-03",45800,193,41257],["2021-12-04",45800,71,41328],["2021-12-05",45800,37,41365],["2021-12-06",45800,114,41479],["2021-12-07",45800,122,41601],["2021-12-08",45800,118,41719],["2021-12-09",45800,227,41946],["2021-12-10",45800,182,42128],["2021-12-11",45800,57,42185],["2021-12-12",45800,26,42211],["2021-12-13",45800,81,42292],["2021-12-14",45800,81,42373],["2021-12-15",45800,94,42467],["2021-12-16",45800,88,42555],["2021-12-17",45800,101,42656],["2021-12-18",45800,58,42714],["2021-12-19",45800,38,42752],["2021-12-20",45800,121,42873],["2021-12-21",45800,144,43017],["2021-12-22",45800,129,43146],["2021-12-23",45800,84,43230],["2021-12-24",45800,14,43244],["2021-12-26",45800,28,43272],["2021-12-27",45800,89,43361],["2021-12-28",45800,98,43459],["2021-12-29",45800,113,43572],["2021-12-30",45800,99,43671],["2021-12-31",45800,44,43715],["2022-01-01",45800,34,43749],["2022-01-02",45800,32,43781],["2022-01-03",45800,36,43817]]} \ No newline at end of file diff --git a/public/data/overall/vaccinations/by-county/Hall.json b/public/data/overall/vaccinations/by-county/Hall.json new file mode 100644 index 000000000..0132297fb --- /dev/null +++ b/public/data/overall/vaccinations/by-county/Hall.json @@ -0,0 +1 @@ +{"segment":{"county":"Hall"},"headers":["report_date","population","vaccinations","total_vaccinations"],"rows":[["2020-12-12",206349,1,1],["2020-12-14",206349,1,2],["2020-12-15",206349,1,3],["2020-12-16",206349,4,7],["2020-12-17",206349,13,20],["2020-12-18",206349,148,168],["2020-12-19",206349,62,230],["2020-12-20",206349,65,295],["2020-12-21",206349,177,472],["2020-12-22",206349,237,709],["2020-12-23",206349,296,1005],["2020-12-24",206349,19,1024],["2020-12-26",206349,42,1066],["2020-12-27",206349,37,1103],["2020-12-28",206349,345,1448],["2020-12-29",206349,336,1784],["2020-12-30",206349,221,2005],["2020-12-31",206349,158,2163],["2021-01-01",206349,154,2317],["2021-01-02",206349,11,2328],["2021-01-03",206349,24,2352],["2021-01-04",206349,188,2540],["2021-01-05",206349,183,2723],["2021-01-06",206349,199,2922],["2021-01-07",206349,282,3204],["2021-01-08",206349,266,3470],["2021-01-09",206349,121,3591],["2021-01-10",206349,44,3635],["2021-01-11",206349,829,4464],["2021-01-12",206349,453,4917],["2021-01-13",206349,719,5636],["2021-01-14",206349,825,6461],["2021-01-15",206349,647,7108],["2021-01-16",206349,952,8060],["2021-01-17",206349,340,8400],["2021-01-18",206349,1157,9557],["2021-01-19",206349,1115,10672],["2021-01-20",206349,873,11545],["2021-01-21",206349,454,11999],["2021-01-22",206349,928,12927],["2021-01-23",206349,708,13635],["2021-01-24",206349,173,13808],["2021-01-25",206349,765,14573],["2021-01-26",206349,818,15391],["2021-01-27",206349,1324,16715],["2021-01-28",206349,630,17345],["2021-01-29",206349,894,18239],["2021-01-30",206349,679,18918],["2021-01-31",206349,32,18950],["2021-02-01",206349,638,19588],["2021-02-02",206349,690,20278],["2021-02-03",206349,654,20932],["2021-02-04",206349,672,21604],["2021-02-05",206349,595,22199],["2021-02-06",206349,530,22729],["2021-02-07",206349,50,22779],["2021-02-08",206349,841,23620],["2021-02-09",206349,744,24364],["2021-02-10",206349,825,25189],["2021-02-11",206349,968,26157],["2021-02-12",206349,715,26872],["2021-02-13",206349,1408,28280],["2021-02-14",206349,320,28600],["2021-02-15",206349,1185,29785],["2021-02-16",206349,1204,30989],["2021-02-17",206349,1055,32044],["2021-02-18",206349,617,32661],["2021-02-19",206349,791,33452],["2021-02-20",206349,744,34196],["2021-02-21",206349,284,34480],["2021-02-22",206349,472,34952],["2021-02-23",206349,933,35885],["2021-02-24",206349,1184,37069],["2021-02-25",206349,1035,38104],["2021-02-26",206349,766,38870],["2021-02-27",206349,878,39748],["2021-02-28",206349,175,39923],["2021-03-01",206349,752,40675],["2021-03-02",206349,820,41495],["2021-03-03",206349,716,42211],["2021-03-04",206349,883,43094],["2021-03-05",206349,776,43870],["2021-03-06",206349,612,44482],["2021-03-07",206349,364,44846],["2021-03-08",206349,657,45503],["2021-03-09",206349,1024,46527],["2021-03-10",206349,1227,47754],["2021-03-11",206349,1300,49054],["2021-03-12",206349,1349,50403],["2021-03-13",206349,1307,51710],["2021-03-14",206349,152,51862],["2021-03-15",206349,1072,52934],["2021-03-16",206349,1461,54395],["2021-03-17",206349,1360,55755],["2021-03-18",206349,1206,56961],["2021-03-19",206349,868,57829],["2021-03-20",206349,695,58524],["2021-03-21",206349,607,59131],["2021-03-22",206349,703,59834],["2021-03-23",206349,1075,60909],["2021-03-24",206349,1326,62235],["2021-03-25",206349,1653,63888],["2021-03-26",206349,1077,64965],["2021-03-27",206349,976,65941],["2021-03-28",206349,464,66405],["2021-03-29",206349,1113,67518],["2021-03-30",206349,1970,69488],["2021-03-31",206349,2001,71489],["2021-04-01",206349,1693,73182],["2021-04-02",206349,1261,74443],["2021-04-03",206349,843,75286],["2021-04-04",206349,301,75587],["2021-04-05",206349,1743,77330],["2021-04-06",206349,1931,79261],["2021-04-07",206349,1926,81187],["2021-04-08",206349,1762,82949],["2021-04-09",206349,1659,84608],["2021-04-10",206349,1058,85666],["2021-04-11",206349,700,86366],["2021-04-12",206349,1171,87537],["2021-04-13",206349,1436,88973],["2021-04-14",206349,1684,90657],["2021-04-15",206349,1432,92089],["2021-04-16",206349,1519,93608],["2021-04-17",206349,683,94291],["2021-04-18",206349,366,94657],["2021-04-19",206349,1042,95699],["2021-04-20",206349,1585,97284],["2021-04-21",206349,1519,98803],["2021-04-22",206349,1616,100419],["2021-04-23",206349,1465,101884],["2021-04-24",206349,919,102803],["2021-04-25",206349,289,103092],["2021-04-26",206349,1039,104131],["2021-04-27",206349,1442,105573],["2021-04-28",206349,1682,107255],["2021-04-29",206349,1445,108700],["2021-04-30",206349,1608,110308],["2021-05-01",206349,786,111094],["2021-05-02",206349,479,111573],["2021-05-03",206349,832,112405],["2021-05-04",206349,1189,113594],["2021-05-05",206349,1060,114654],["2021-05-06",206349,1088,115742],["2021-05-07",206349,1202,116944],["2021-05-08",206349,514,117458],["2021-05-09",206349,146,117604],["2021-05-10",206349,517,118121],["2021-05-11",206349,755,118876],["2021-05-12",206349,656,119532],["2021-05-13",206349,834,120366],["2021-05-14",206349,900,121266],["2021-05-15",206349,768,122034],["2021-05-16",206349,339,122373],["2021-05-17",206349,636,123009],["2021-05-18",206349,891,123900],["2021-05-19",206349,916,124816],["2021-05-20",206349,922,125738],["2021-05-21",206349,638,126376],["2021-05-22",206349,497,126873],["2021-05-23",206349,314,127187],["2021-05-24",206349,480,127667],["2021-05-25",206349,658,128325],["2021-05-26",206349,679,129004],["2021-05-27",206349,714,129718],["2021-05-28",206349,839,130557],["2021-05-29",206349,311,130868],["2021-05-30",206349,156,131024],["2021-05-31",206349,91,131115],["2021-06-01",206349,570,131685],["2021-06-02",206349,457,132142],["2021-06-03",206349,508,132650],["2021-06-04",206349,608,133258],["2021-06-05",206349,372,133630],["2021-06-06",206349,299,133929],["2021-06-07",206349,368,134297],["2021-06-08",206349,480,134777],["2021-06-09",206349,447,135224],["2021-06-10",206349,427,135651],["2021-06-11",206349,496,136147],["2021-06-12",206349,244,136391],["2021-06-13",206349,196,136587],["2021-06-14",206349,330,136917],["2021-06-15",206349,384,137301],["2021-06-16",206349,338,137639],["2021-06-17",206349,344,137983],["2021-06-18",206349,474,138457],["2021-06-19",206349,218,138675],["2021-06-20",206349,169,138844],["2021-06-21",206349,187,139031],["2021-06-22",206349,345,139376],["2021-06-23",206349,332,139708],["2021-06-24",206349,482,140190],["2021-06-25",206349,393,140583],["2021-06-26",206349,232,140815],["2021-06-27",206349,217,141032],["2021-06-28",206349,234,141266],["2021-06-29",206349,286,141552],["2021-06-30",206349,313,141865],["2021-07-01",206349,269,142134],["2021-07-02",206349,368,142502],["2021-07-03",206349,139,142641],["2021-07-04",206349,18,142659],["2021-07-05",206349,164,142823],["2021-07-06",206349,216,143039],["2021-07-07",206349,273,143312],["2021-07-08",206349,209,143521],["2021-07-09",206349,300,143821],["2021-07-10",206349,197,144018],["2021-07-11",206349,140,144158],["2021-07-12",206349,204,144362],["2021-07-13",206349,205,144567],["2021-07-14",206349,267,144834],["2021-07-15",206349,295,145129],["2021-07-16",206349,296,145425],["2021-07-17",206349,194,145619],["2021-07-18",206349,299,145918],["2021-07-19",206349,246,146164],["2021-07-20",206349,313,146477],["2021-07-21",206349,295,146772],["2021-07-22",206349,341,147113],["2021-07-23",206349,462,147575],["2021-07-24",206349,250,147825],["2021-07-25",206349,171,147996],["2021-07-26",206349,336,148332],["2021-07-27",206349,324,148656],["2021-07-28",206349,441,149097],["2021-07-29",206349,412,149509],["2021-07-30",206349,538,150047],["2021-07-31",206349,359,150406],["2021-08-01",206349,213,150619],["2021-08-02",206349,409,151028],["2021-08-03",206349,489,151517],["2021-08-04",206349,467,151984],["2021-08-05",206349,503,152487],["2021-08-06",206349,528,153015],["2021-08-07",206349,454,153469],["2021-08-08",206349,418,153887],["2021-08-09",206349,436,154323],["2021-08-10",206349,481,154804],["2021-08-11",206349,442,155246],["2021-08-12",206349,459,155705],["2021-08-13",206349,574,156279],["2021-08-14",206349,395,156674],["2021-08-15",206349,320,156994],["2021-08-16",206349,480,157474],["2021-08-17",206349,545,158019],["2021-08-18",206349,503,158522],["2021-08-19",206349,542,159064],["2021-08-20",206349,772,159836],["2021-08-21",206349,474,160310],["2021-08-22",206349,277,160587],["2021-08-23",206349,523,161110],["2021-08-24",206349,543,161653],["2021-08-25",206349,576,162229],["2021-08-26",206349,729,162958],["2021-08-27",206349,736,163694],["2021-08-28",206349,555,164249],["2021-08-29",206349,494,164743],["2021-08-30",206349,571,165314],["2021-08-31",206349,561,165875],["2021-09-01",206349,574,166449],["2021-09-02",206349,599,167048],["2021-09-03",206349,686,167734],["2021-09-04",206349,406,168140],["2021-09-05",206349,235,168375],["2021-09-06",206349,97,168472],["2021-09-07",206349,562,169034],["2021-09-08",206349,499,169533],["2021-09-09",206349,509,170042],["2021-09-10",206349,638,170680],["2021-09-11",206349,355,171035],["2021-09-12",206349,252,171287],["2021-09-13",206349,421,171708],["2021-09-14",206349,440,172148],["2021-09-15",206349,414,172562],["2021-09-16",206349,456,173018],["2021-09-17",206349,558,173576],["2021-09-18",206349,325,173901],["2021-09-19",206349,335,174236],["2021-09-20",206349,454,174690],["2021-09-21",206349,386,175076],["2021-09-22",206349,385,175461],["2021-09-23",206349,341,175802],["2021-09-24",206349,627,176429],["2021-09-25",206349,357,176786],["2021-09-26",206349,211,176997],["2021-09-27",206349,500,177497],["2021-09-28",206349,540,178037],["2021-09-29",206349,545,178582],["2021-09-30",206349,576,179158],["2021-10-01",206349,622,179780],["2021-10-02",206349,233,180013],["2021-10-03",206349,158,180171],["2021-10-04",206349,412,180583],["2021-10-05",206349,432,181015],["2021-10-06",206349,587,181602],["2021-10-07",206349,449,182051],["2021-10-08",206349,576,182627],["2021-10-09",206349,256,182883],["2021-10-10",206349,183,183066],["2021-10-11",206349,358,183424],["2021-10-12",206349,388,183812],["2021-10-13",206349,353,184165],["2021-10-14",206349,551,184716],["2021-10-15",206349,465,185181],["2021-10-16",206349,205,185386],["2021-10-17",206349,93,185479],["2021-10-18",206349,316,185795],["2021-10-19",206349,303,186098],["2021-10-20",206349,279,186377],["2021-10-21",206349,312,186689],["2021-10-22",206349,510,187199],["2021-10-23",206349,337,187536],["2021-10-24",206349,231,187767],["2021-10-25",206349,699,188466],["2021-10-26",206349,533,188999],["2021-10-27",206349,652,189651],["2021-10-28",206349,591,190242],["2021-10-29",206349,619,190861],["2021-10-30",206349,264,191125],["2021-10-31",206349,164,191289],["2021-11-01",206349,472,191761],["2021-11-02",206349,511,192272],["2021-11-03",206349,450,192722],["2021-11-04",206349,471,193193],["2021-11-05",206349,580,193773],["2021-11-06",206349,250,194023],["2021-11-07",206349,173,194196],["2021-11-08",206349,426,194622],["2021-11-09",206349,489,195111],["2021-11-10",206349,752,195863],["2021-11-11",206349,578,196441],["2021-11-12",206349,542,196983],["2021-11-13",206349,250,197233],["2021-11-14",206349,169,197402],["2021-11-15",206349,412,197814],["2021-11-16",206349,505,198319],["2021-11-17",206349,483,198802],["2021-11-18",206349,506,199308],["2021-11-19",206349,717,200025],["2021-11-20",206349,326,200351],["2021-11-21",206349,179,200530],["2021-11-22",206349,539,201069],["2021-11-23",206349,450,201519],["2021-11-24",206349,360,201879],["2021-11-25",206349,3,201882],["2021-11-26",206349,347,202229],["2021-11-27",206349,266,202495],["2021-11-28",206349,200,202695],["2021-11-29",206349,603,203298],["2021-11-30",206349,640,203938],["2021-12-01",206349,692,204630],["2021-12-02",206349,655,205285],["2021-12-03",206349,739,206024],["2021-12-04",206349,361,206385],["2021-12-05",206349,216,206601],["2021-12-06",206349,510,207111],["2021-12-07",206349,650,207761],["2021-12-08",206349,634,208395],["2021-12-09",206349,627,209022],["2021-12-10",206349,523,209545],["2021-12-11",206349,324,209869],["2021-12-12",206349,207,210076],["2021-12-13",206349,515,210591],["2021-12-14",206349,437,211028],["2021-12-15",206349,433,211461],["2021-12-16",206349,464,211925],["2021-12-17",206349,536,212461],["2021-12-18",206349,306,212767],["2021-12-19",206349,207,212974],["2021-12-20",206349,514,213488],["2021-12-21",206349,616,214104],["2021-12-22",206349,572,214676],["2021-12-23",206349,488,215164],["2021-12-24",206349,127,215291],["2021-12-26",206349,143,215434],["2021-12-27",206349,491,215925],["2021-12-28",206349,565,216490],["2021-12-29",206349,582,217072],["2021-12-30",206349,596,217668],["2021-12-31",206349,199,217867],["2022-01-01",206349,52,217919],["2022-01-02",206349,153,218072],["2022-01-03",206349,231,218303]]} \ No newline at end of file diff --git a/public/data/overall/vaccinations/by-county/Hancock.json b/public/data/overall/vaccinations/by-county/Hancock.json new file mode 100644 index 000000000..ab4bc2044 --- /dev/null +++ b/public/data/overall/vaccinations/by-county/Hancock.json @@ -0,0 +1 @@ +{"segment":{"county":"Hancock"},"headers":["report_date","population","vaccinations","total_vaccinations"],"rows":[["2020-12-17",8193,2,2],["2020-12-21",8193,2,4],["2020-12-22",8193,1,5],["2020-12-23",8193,6,11],["2020-12-24",8193,1,12],["2020-12-27",8193,1,13],["2020-12-28",8193,34,47],["2020-12-29",8193,4,51],["2020-12-30",8193,5,56],["2020-12-31",8193,1,57],["2021-01-01",8193,1,58],["2021-01-04",8193,15,73],["2021-01-05",8193,8,81],["2021-01-06",8193,6,87],["2021-01-07",8193,46,133],["2021-01-08",8193,8,141],["2021-01-09",8193,1,142],["2021-01-10",8193,21,163],["2021-01-11",8193,8,171],["2021-01-12",8193,20,191],["2021-01-13",8193,16,207],["2021-01-14",8193,22,229],["2021-01-15",8193,15,244],["2021-01-16",8193,5,249],["2021-01-17",8193,1,250],["2021-01-18",8193,50,300],["2021-01-19",8193,79,379],["2021-01-20",8193,26,405],["2021-01-21",8193,55,460],["2021-01-22",8193,32,492],["2021-01-23",8193,10,502],["2021-01-24",8193,6,508],["2021-01-25",8193,44,552],["2021-01-26",8193,19,571],["2021-01-27",8193,33,604],["2021-01-28",8193,71,675],["2021-01-29",8193,49,724],["2021-01-30",8193,2,726],["2021-01-31",8193,32,758],["2021-02-01",8193,61,819],["2021-02-02",8193,52,871],["2021-02-03",8193,48,919],["2021-02-04",8193,84,1003],["2021-02-05",8193,108,1111],["2021-02-06",8193,2,1113],["2021-02-07",8193,2,1115],["2021-02-08",8193,33,1148],["2021-02-09",8193,56,1204],["2021-02-10",8193,34,1238],["2021-02-11",8193,65,1303],["2021-02-12",8193,28,1331],["2021-02-13",8193,6,1337],["2021-02-14",8193,1,1338],["2021-02-15",8193,23,1361],["2021-02-16",8193,105,1466],["2021-02-17",8193,48,1514],["2021-02-18",8193,87,1601],["2021-02-19",8193,29,1630],["2021-02-20",8193,18,1648],["2021-02-21",8193,3,1651],["2021-02-22",8193,36,1687],["2021-02-23",8193,24,1711],["2021-02-24",8193,34,1745],["2021-02-25",8193,105,1850],["2021-02-26",8193,68,1918],["2021-02-27",8193,2,1920],["2021-02-28",8193,6,1926],["2021-03-01",8193,54,1980],["2021-03-02",8193,85,2065],["2021-03-03",8193,58,2123],["2021-03-04",8193,69,2192],["2021-03-05",8193,131,2323],["2021-03-06",8193,6,2329],["2021-03-07",8193,3,2332],["2021-03-08",8193,32,2364],["2021-03-09",8193,117,2481],["2021-03-10",8193,44,2525],["2021-03-11",8193,110,2635],["2021-03-12",8193,47,2682],["2021-03-13",8193,6,2688],["2021-03-14",8193,2,2690],["2021-03-15",8193,29,2719],["2021-03-16",8193,168,2887],["2021-03-17",8193,55,2942],["2021-03-18",8193,30,2972],["2021-03-19",8193,134,3106],["2021-03-20",8193,12,3118],["2021-03-21",8193,1,3119],["2021-03-22",8193,14,3133],["2021-03-23",8193,79,3212],["2021-03-24",8193,33,3245],["2021-03-25",8193,107,3352],["2021-03-26",8193,79,3431],["2021-03-27",8193,18,3449],["2021-03-28",8193,6,3455],["2021-03-29",8193,23,3478],["2021-03-30",8193,132,3610],["2021-03-31",8193,35,3645],["2021-04-01",8193,107,3752],["2021-04-02",8193,116,3868],["2021-04-03",8193,17,3885],["2021-04-04",8193,2,3887],["2021-04-05",8193,26,3913],["2021-04-06",8193,111,4024],["2021-04-07",8193,35,4059],["2021-04-08",8193,113,4172],["2021-04-09",8193,49,4221],["2021-04-10",8193,16,4237],["2021-04-11",8193,7,4244],["2021-04-12",8193,24,4268],["2021-04-13",8193,146,4414],["2021-04-14",8193,41,4455],["2021-04-15",8193,32,4487],["2021-04-16",8193,53,4540],["2021-04-17",8193,15,4555],["2021-04-18",8193,1,4556],["2021-04-19",8193,17,4573],["2021-04-20",8193,140,4713],["2021-04-21",8193,37,4750],["2021-04-22",8193,83,4833],["2021-04-23",8193,57,4890],["2021-04-24",8193,12,4902],["2021-04-25",8193,2,4904],["2021-04-26",8193,23,4927],["2021-04-27",8193,99,5026],["2021-04-28",8193,18,5044],["2021-04-29",8193,74,5118],["2021-04-30",8193,106,5224],["2021-05-01",8193,18,5242],["2021-05-02",8193,5,5247],["2021-05-03",8193,8,5255],["2021-05-04",8193,67,5322],["2021-05-05",8193,24,5346],["2021-05-06",8193,60,5406],["2021-05-07",8193,19,5425],["2021-05-08",8193,12,5437],["2021-05-09",8193,6,5443],["2021-05-10",8193,8,5451],["2021-05-11",8193,80,5531],["2021-05-12",8193,23,5554],["2021-05-13",8193,23,5577],["2021-05-14",8193,10,5587],["2021-05-15",8193,14,5601],["2021-05-16",8193,3,5604],["2021-05-17",8193,18,5622],["2021-05-18",8193,66,5688],["2021-05-19",8193,18,5706],["2021-05-20",8193,20,5726],["2021-05-21",8193,21,5747],["2021-05-22",8193,4,5751],["2021-05-23",8193,2,5753],["2021-05-24",8193,12,5765],["2021-05-25",8193,51,5816],["2021-05-26",8193,15,5831],["2021-05-27",8193,16,5847],["2021-05-28",8193,14,5861],["2021-05-29",8193,6,5867],["2021-05-30",8193,3,5870],["2021-05-31",8193,2,5872],["2021-06-01",8193,44,5916],["2021-06-02",8193,27,5943],["2021-06-03",8193,11,5954],["2021-06-04",8193,23,5977],["2021-06-05",8193,5,5982],["2021-06-06",8193,5,5987],["2021-06-07",8193,8,5995],["2021-06-08",8193,46,6041],["2021-06-09",8193,16,6057],["2021-06-10",8193,14,6071],["2021-06-11",8193,8,6079],["2021-06-12",8193,5,6084],["2021-06-13",8193,2,6086],["2021-06-14",8193,11,6097],["2021-06-15",8193,46,6143],["2021-06-16",8193,23,6166],["2021-06-17",8193,20,6186],["2021-06-18",8193,19,6205],["2021-06-19",8193,16,6221],["2021-06-20",8193,2,6223],["2021-06-21",8193,6,6229],["2021-06-22",8193,27,6256],["2021-06-23",8193,9,6265],["2021-06-24",8193,12,6277],["2021-06-25",8193,15,6292],["2021-06-26",8193,7,6299],["2021-06-27",8193,2,6301],["2021-06-28",8193,5,6306],["2021-06-29",8193,20,6326],["2021-06-30",8193,14,6340],["2021-07-01",8193,15,6355],["2021-07-02",8193,12,6367],["2021-07-03",8193,4,6371],["2021-07-05",8193,4,6375],["2021-07-06",8193,23,6398],["2021-07-07",8193,13,6411],["2021-07-08",8193,6,6417],["2021-07-09",8193,11,6428],["2021-07-10",8193,4,6432],["2021-07-11",8193,1,6433],["2021-07-12",8193,2,6435],["2021-07-13",8193,20,6455],["2021-07-14",8193,6,6461],["2021-07-15",8193,15,6476],["2021-07-16",8193,9,6485],["2021-07-17",8193,2,6487],["2021-07-18",8193,2,6489],["2021-07-19",8193,5,6494],["2021-07-20",8193,24,6518],["2021-07-21",8193,18,6536],["2021-07-22",8193,13,6549],["2021-07-23",8193,15,6564],["2021-07-24",8193,8,6572],["2021-07-25",8193,5,6577],["2021-07-26",8193,16,6593],["2021-07-27",8193,56,6649],["2021-07-28",8193,19,6668],["2021-07-29",8193,21,6689],["2021-07-30",8193,47,6736],["2021-07-31",8193,9,6745],["2021-08-01",8193,4,6749],["2021-08-02",8193,8,6757],["2021-08-03",8193,35,6792],["2021-08-04",8193,14,6806],["2021-08-05",8193,10,6816],["2021-08-06",8193,13,6829],["2021-08-07",8193,6,6835],["2021-08-08",8193,2,6837],["2021-08-09",8193,16,6853],["2021-08-10",8193,23,6876],["2021-08-11",8193,28,6904],["2021-08-12",8193,19,6923],["2021-08-13",8193,15,6938],["2021-08-14",8193,9,6947],["2021-08-15",8193,7,6954],["2021-08-16",8193,12,6966],["2021-08-17",8193,34,7000],["2021-08-18",8193,15,7015],["2021-08-19",8193,20,7035],["2021-08-20",8193,10,7045],["2021-08-21",8193,18,7063],["2021-08-22",8193,7,7070],["2021-08-23",8193,12,7082],["2021-08-24",8193,68,7150],["2021-08-25",8193,28,7178],["2021-08-26",8193,16,7194],["2021-08-27",8193,40,7234],["2021-08-28",8193,12,7246],["2021-08-29",8193,9,7255],["2021-08-30",8193,15,7270],["2021-08-31",8193,56,7326],["2021-09-01",8193,24,7350],["2021-09-02",8193,18,7368],["2021-09-03",8193,19,7387],["2021-09-04",8193,9,7396],["2021-09-05",8193,7,7403],["2021-09-06",8193,2,7405],["2021-09-07",8193,41,7446],["2021-09-08",8193,21,7467],["2021-09-09",8193,14,7481],["2021-09-10",8193,19,7500],["2021-09-11",8193,7,7507],["2021-09-12",8193,6,7513],["2021-09-13",8193,12,7525],["2021-09-14",8193,71,7596],["2021-09-15",8193,15,7611],["2021-09-16",8193,12,7623],["2021-09-17",8193,14,7637],["2021-09-18",8193,13,7650],["2021-09-19",8193,5,7655],["2021-09-20",8193,8,7663],["2021-09-21",8193,62,7725],["2021-09-22",8193,18,7743],["2021-09-23",8193,7,7750],["2021-09-24",8193,16,7766],["2021-09-25",8193,4,7770],["2021-09-26",8193,3,7773],["2021-09-27",8193,7,7780],["2021-09-28",8193,41,7821],["2021-09-29",8193,14,7835],["2021-09-30",8193,10,7845],["2021-10-01",8193,14,7859],["2021-10-02",8193,2,7861],["2021-10-03",8193,2,7863],["2021-10-04",8193,11,7874],["2021-10-05",8193,37,7911],["2021-10-06",8193,10,7921],["2021-10-07",8193,10,7931],["2021-10-08",8193,7,7938],["2021-10-09",8193,5,7943],["2021-10-10",8193,3,7946],["2021-10-11",8193,9,7955],["2021-10-12",8193,34,7989],["2021-10-13",8193,7,7996],["2021-10-14",8193,7,8003],["2021-10-15",8193,6,8009],["2021-10-16",8193,11,8020],["2021-10-17",8193,3,8023],["2021-10-18",8193,6,8029],["2021-10-19",8193,29,8058],["2021-10-20",8193,9,8067],["2021-10-21",8193,10,8077],["2021-10-22",8193,5,8082],["2021-10-23",8193,10,8092],["2021-10-24",8193,2,8094],["2021-10-25",8193,14,8108],["2021-10-26",8193,94,8202],["2021-10-27",8193,23,8225],["2021-10-28",8193,24,8249],["2021-10-29",8193,38,8287],["2021-10-30",8193,8,8295],["2021-10-31",8193,5,8300],["2021-11-01",8193,13,8313],["2021-11-02",8193,164,8477],["2021-11-03",8193,38,8515],["2021-11-04",8193,12,8527],["2021-11-05",8193,75,8602],["2021-11-06",8193,5,8607],["2021-11-07",8193,2,8609],["2021-11-08",8193,11,8620],["2021-11-09",8193,138,8758],["2021-11-10",8193,25,8783],["2021-11-11",8193,13,8796],["2021-11-12",8193,40,8836],["2021-11-13",8193,4,8840],["2021-11-14",8193,5,8845],["2021-11-15",8193,8,8853],["2021-11-16",8193,115,8968],["2021-11-17",8193,29,8997],["2021-11-18",8193,33,9030],["2021-11-19",8193,15,9045],["2021-11-20",8193,5,9050],["2021-11-21",8193,4,9054],["2021-11-22",8193,29,9083],["2021-11-23",8193,115,9198],["2021-11-24",8193,9,9207],["2021-11-26",8193,6,9213],["2021-11-27",8193,4,9217],["2021-11-28",8193,7,9224],["2021-11-29",8193,8,9232],["2021-11-30",8193,110,9342],["2021-12-01",8193,30,9372],["2021-12-02",8193,22,9394],["2021-12-03",8193,18,9412],["2021-12-04",8193,64,9476],["2021-12-05",8193,10,9486],["2021-12-06",8193,7,9493],["2021-12-07",8193,78,9571],["2021-12-08",8193,29,9600],["2021-12-09",8193,14,9614],["2021-12-10",8193,7,9621],["2021-12-11",8193,9,9630],["2021-12-12",8193,2,9632],["2021-12-13",8193,9,9641],["2021-12-14",8193,59,9700],["2021-12-15",8193,32,9732],["2021-12-16",8193,11,9743],["2021-12-17",8193,11,9754],["2021-12-18",8193,3,9757],["2021-12-19",8193,2,9759],["2021-12-20",8193,2,9761],["2021-12-21",8193,84,9845],["2021-12-22",8193,23,9868],["2021-12-23",8193,28,9896],["2021-12-24",8193,1,9897],["2021-12-26",8193,6,9903],["2021-12-27",8193,11,9914],["2021-12-28",8193,83,9997],["2021-12-29",8193,29,10026],["2021-12-30",8193,15,10041],["2021-12-31",8193,6,10047],["2022-01-01",8193,1,10048],["2022-01-02",8193,4,10052],["2022-01-03",8193,2,10054]]} \ No newline at end of file diff --git a/public/data/overall/vaccinations/by-county/Haralson.json b/public/data/overall/vaccinations/by-county/Haralson.json new file mode 100644 index 000000000..72dbb82da --- /dev/null +++ b/public/data/overall/vaccinations/by-county/Haralson.json @@ -0,0 +1 @@ +{"segment":{"county":"Haralson"},"headers":["report_date","population","vaccinations","total_vaccinations"],"rows":[["2020-12-19",30722,2,2],["2020-12-20",30722,1,3],["2020-12-21",30722,1,4],["2020-12-22",30722,21,25],["2020-12-23",30722,39,64],["2020-12-24",30722,5,69],["2020-12-28",30722,20,89],["2020-12-29",30722,24,113],["2020-12-30",30722,40,153],["2020-12-31",30722,19,172],["2021-01-01",30722,2,174],["2021-01-02",30722,4,178],["2021-01-03",30722,7,185],["2021-01-04",30722,46,231],["2021-01-05",30722,35,266],["2021-01-06",30722,90,356],["2021-01-07",30722,94,450],["2021-01-08",30722,76,526],["2021-01-09",30722,1,527],["2021-01-10",30722,62,589],["2021-01-11",30722,98,687],["2021-01-12",30722,160,847],["2021-01-13",30722,146,993],["2021-01-14",30722,209,1202],["2021-01-15",30722,134,1336],["2021-01-16",30722,22,1358],["2021-01-17",30722,5,1363],["2021-01-18",30722,189,1552],["2021-01-19",30722,145,1697],["2021-01-20",30722,190,1887],["2021-01-21",30722,106,1993],["2021-01-22",30722,20,2013],["2021-01-23",30722,8,2021],["2021-01-24",30722,16,2037],["2021-01-25",30722,93,2130],["2021-01-26",30722,76,2206],["2021-01-27",30722,190,2396],["2021-01-28",30722,177,2573],["2021-01-29",30722,94,2667],["2021-01-30",30722,4,2671],["2021-01-31",30722,61,2732],["2021-02-01",30722,92,2824],["2021-02-02",30722,74,2898],["2021-02-03",30722,139,3037],["2021-02-04",30722,187,3224],["2021-02-05",30722,95,3319],["2021-02-06",30722,6,3325],["2021-02-07",30722,2,3327],["2021-02-08",30722,112,3439],["2021-02-09",30722,151,3590],["2021-02-10",30722,163,3753],["2021-02-11",30722,190,3943],["2021-02-12",30722,137,4080],["2021-02-13",30722,33,4113],["2021-02-14",30722,2,4115],["2021-02-15",30722,188,4303],["2021-02-16",30722,21,4324],["2021-02-17",30722,309,4633],["2021-02-18",30722,103,4736],["2021-02-19",30722,33,4769],["2021-02-20",30722,11,4780],["2021-02-21",30722,7,4787],["2021-02-22",30722,67,4854],["2021-02-23",30722,133,4987],["2021-02-24",30722,132,5119],["2021-02-25",30722,135,5254],["2021-02-26",30722,136,5390],["2021-02-27",30722,27,5417],["2021-02-28",30722,20,5437],["2021-03-01",30722,87,5524],["2021-03-02",30722,173,5697],["2021-03-03",30722,138,5835],["2021-03-04",30722,104,5939],["2021-03-05",30722,93,6032],["2021-03-06",30722,24,6056],["2021-03-07",30722,24,6080],["2021-03-08",30722,83,6163],["2021-03-09",30722,86,6249],["2021-03-10",30722,166,6415],["2021-03-11",30722,85,6500],["2021-03-12",30722,168,6668],["2021-03-13",30722,49,6717],["2021-03-14",30722,23,6740],["2021-03-15",30722,143,6883],["2021-03-16",30722,197,7080],["2021-03-17",30722,226,7306],["2021-03-18",30722,102,7408],["2021-03-19",30722,125,7533],["2021-03-20",30722,23,7556],["2021-03-21",30722,14,7570],["2021-03-22",30722,64,7634],["2021-03-23",30722,107,7741],["2021-03-24",30722,93,7834],["2021-03-25",30722,105,7939],["2021-03-26",30722,106,8045],["2021-03-27",30722,46,8091],["2021-03-28",30722,39,8130],["2021-03-29",30722,132,8262],["2021-03-30",30722,170,8432],["2021-03-31",30722,268,8700],["2021-04-01",30722,152,8852],["2021-04-02",30722,97,8949],["2021-04-03",30722,46,8995],["2021-04-04",30722,41,9036],["2021-04-05",30722,171,9207],["2021-04-06",30722,139,9346],["2021-04-07",30722,143,9489],["2021-04-08",30722,125,9614],["2021-04-09",30722,103,9717],["2021-04-10",30722,51,9768],["2021-04-11",30722,46,9814],["2021-04-12",30722,231,10045],["2021-04-13",30722,123,10168],["2021-04-14",30722,312,10480],["2021-04-15",30722,144,10624],["2021-04-16",30722,155,10779],["2021-04-17",30722,26,10805],["2021-04-18",30722,15,10820],["2021-04-19",30722,137,10957],["2021-04-20",30722,97,11054],["2021-04-21",30722,227,11281],["2021-04-22",30722,128,11409],["2021-04-23",30722,103,11512],["2021-04-24",30722,38,11550],["2021-04-25",30722,20,11570],["2021-04-26",30722,121,11691],["2021-04-27",30722,88,11779],["2021-04-28",30722,129,11908],["2021-04-29",30722,103,12011],["2021-04-30",30722,135,12146],["2021-05-01",30722,45,12191],["2021-05-02",30722,21,12212],["2021-05-03",30722,96,12308],["2021-05-04",30722,57,12365],["2021-05-05",30722,96,12461],["2021-05-06",30722,81,12542],["2021-05-07",30722,79,12621],["2021-05-08",30722,34,12655],["2021-05-09",30722,12,12667],["2021-05-10",30722,93,12760],["2021-05-11",30722,58,12818],["2021-05-12",30722,107,12925],["2021-05-13",30722,82,13007],["2021-05-14",30722,57,13064],["2021-05-15",30722,48,13112],["2021-05-16",30722,25,13137],["2021-05-17",30722,66,13203],["2021-05-18",30722,71,13274],["2021-05-19",30722,107,13381],["2021-05-20",30722,44,13425],["2021-05-21",30722,73,13498],["2021-05-22",30722,40,13538],["2021-05-23",30722,17,13555],["2021-05-24",30722,47,13602],["2021-05-25",30722,50,13652],["2021-05-26",30722,67,13719],["2021-05-27",30722,44,13763],["2021-05-28",30722,53,13816],["2021-05-29",30722,23,13839],["2021-05-30",30722,11,13850],["2021-05-31",30722,6,13856],["2021-06-01",30722,40,13896],["2021-06-02",30722,50,13946],["2021-06-03",30722,31,13977],["2021-06-04",30722,29,14006],["2021-06-05",30722,24,14030],["2021-06-06",30722,17,14047],["2021-06-07",30722,37,14084],["2021-06-08",30722,28,14112],["2021-06-09",30722,49,14161],["2021-06-10",30722,40,14201],["2021-06-11",30722,46,14247],["2021-06-12",30722,31,14278],["2021-06-13",30722,17,14295],["2021-06-14",30722,30,14325],["2021-06-15",30722,45,14370],["2021-06-16",30722,27,14397],["2021-06-17",30722,41,14438],["2021-06-18",30722,40,14478],["2021-06-19",30722,21,14499],["2021-06-20",30722,13,14512],["2021-06-21",30722,32,14544],["2021-06-22",30722,43,14587],["2021-06-23",30722,33,14620],["2021-06-24",30722,20,14640],["2021-06-25",30722,26,14666],["2021-06-26",30722,19,14685],["2021-06-27",30722,5,14690],["2021-06-28",30722,33,14723],["2021-06-29",30722,27,14750],["2021-06-30",30722,13,14763],["2021-07-01",30722,23,14786],["2021-07-02",30722,24,14810],["2021-07-03",30722,12,14822],["2021-07-05",30722,10,14832],["2021-07-06",30722,19,14851],["2021-07-07",30722,24,14875],["2021-07-08",30722,33,14908],["2021-07-09",30722,28,14936],["2021-07-10",30722,15,14951],["2021-07-11",30722,1,14952],["2021-07-12",30722,20,14972],["2021-07-13",30722,29,15001],["2021-07-14",30722,27,15028],["2021-07-15",30722,38,15066],["2021-07-16",30722,27,15093],["2021-07-17",30722,28,15121],["2021-07-18",30722,10,15131],["2021-07-19",30722,25,15156],["2021-07-20",30722,35,15191],["2021-07-21",30722,34,15225],["2021-07-22",30722,39,15264],["2021-07-23",30722,43,15307],["2021-07-24",30722,42,15349],["2021-07-25",30722,13,15362],["2021-07-26",30722,31,15393],["2021-07-27",30722,49,15442],["2021-07-28",30722,45,15487],["2021-07-29",30722,63,15550],["2021-07-30",30722,58,15608],["2021-07-31",30722,24,15632],["2021-08-01",30722,17,15649],["2021-08-02",30722,40,15689],["2021-08-03",30722,58,15747],["2021-08-04",30722,52,15799],["2021-08-05",30722,62,15861],["2021-08-06",30722,86,15947],["2021-08-07",30722,39,15986],["2021-08-08",30722,19,16005],["2021-08-09",30722,59,16064],["2021-08-10",30722,70,16134],["2021-08-11",30722,45,16179],["2021-08-12",30722,84,16263],["2021-08-13",30722,70,16333],["2021-08-14",30722,56,16389],["2021-08-15",30722,21,16410],["2021-08-16",30722,57,16467],["2021-08-17",30722,51,16518],["2021-08-18",30722,62,16580],["2021-08-19",30722,65,16645],["2021-08-20",30722,90,16735],["2021-08-21",30722,54,16789],["2021-08-22",30722,33,16822],["2021-08-23",30722,74,16896],["2021-08-24",30722,91,16987],["2021-08-25",30722,78,17065],["2021-08-26",30722,81,17146],["2021-08-27",30722,107,17253],["2021-08-28",30722,48,17301],["2021-08-29",30722,42,17343],["2021-08-30",30722,75,17418],["2021-08-31",30722,87,17505],["2021-09-01",30722,71,17576],["2021-09-02",30722,88,17664],["2021-09-03",30722,82,17746],["2021-09-04",30722,48,17794],["2021-09-05",30722,40,17834],["2021-09-06",30722,31,17865],["2021-09-07",30722,45,17910],["2021-09-08",30722,64,17974],["2021-09-09",30722,73,18047],["2021-09-10",30722,75,18122],["2021-09-11",30722,53,18175],["2021-09-12",30722,32,18207],["2021-09-13",30722,72,18279],["2021-09-14",30722,75,18354],["2021-09-15",30722,66,18420],["2021-09-16",30722,67,18487],["2021-09-17",30722,90,18577],["2021-09-18",30722,37,18614],["2021-09-19",30722,24,18638],["2021-09-20",30722,62,18700],["2021-09-21",30722,78,18778],["2021-09-22",30722,40,18818],["2021-09-23",30722,63,18881],["2021-09-24",30722,55,18936],["2021-09-25",30722,30,18966],["2021-09-26",30722,40,19006],["2021-09-27",30722,49,19055],["2021-09-28",30722,53,19108],["2021-09-29",30722,65,19173],["2021-09-30",30722,44,19217],["2021-10-01",30722,62,19279],["2021-10-02",30722,14,19293],["2021-10-03",30722,19,19312],["2021-10-04",30722,44,19356],["2021-10-05",30722,40,19396],["2021-10-06",30722,51,19447],["2021-10-07",30722,32,19479],["2021-10-08",30722,43,19522],["2021-10-09",30722,24,19546],["2021-10-10",30722,4,19550],["2021-10-11",30722,28,19578],["2021-10-12",30722,36,19614],["2021-10-13",30722,24,19638],["2021-10-14",30722,30,19668],["2021-10-15",30722,37,19705],["2021-10-16",30722,15,19720],["2021-10-17",30722,10,19730],["2021-10-18",30722,35,19765],["2021-10-19",30722,29,19794],["2021-10-20",30722,18,19812],["2021-10-21",30722,31,19843],["2021-10-22",30722,46,19889],["2021-10-23",30722,36,19925],["2021-10-24",30722,35,19960],["2021-10-25",30722,57,20017],["2021-10-26",30722,118,20135],["2021-10-27",30722,139,20274],["2021-10-28",30722,127,20401],["2021-10-29",30722,104,20505],["2021-10-30",30722,36,20541],["2021-10-31",30722,22,20563],["2021-11-01",30722,104,20667],["2021-11-02",30722,94,20761],["2021-11-03",30722,100,20861],["2021-11-04",30722,98,20959],["2021-11-05",30722,76,21035],["2021-11-06",30722,26,21061],["2021-11-07",30722,20,21081],["2021-11-08",30722,83,21164],["2021-11-09",30722,66,21230],["2021-11-10",30722,62,21292],["2021-11-11",30722,22,21314],["2021-11-12",30722,86,21400],["2021-11-13",30722,22,21422],["2021-11-14",30722,11,21433],["2021-11-15",30722,79,21512],["2021-11-16",30722,61,21573],["2021-11-17",30722,85,21658],["2021-11-18",30722,74,21732],["2021-11-19",30722,66,21798],["2021-11-20",30722,25,21823],["2021-11-21",30722,18,21841],["2021-11-22",30722,41,21882],["2021-11-23",30722,41,21923],["2021-11-24",30722,50,21973],["2021-11-26",30722,47,22020],["2021-11-27",30722,24,22044],["2021-11-28",30722,16,22060],["2021-11-29",30722,73,22133],["2021-11-30",30722,90,22223],["2021-12-01",30722,90,22313],["2021-12-02",30722,67,22380],["2021-12-03",30722,114,22494],["2021-12-04",30722,38,22532],["2021-12-05",30722,10,22542],["2021-12-06",30722,42,22584],["2021-12-07",30722,73,22657],["2021-12-08",30722,52,22709],["2021-12-09",30722,66,22775],["2021-12-10",30722,79,22854],["2021-12-11",30722,25,22879],["2021-12-12",30722,8,22887],["2021-12-13",30722,33,22920],["2021-12-14",30722,58,22978],["2021-12-15",30722,38,23016],["2021-12-16",30722,44,23060],["2021-12-17",30722,60,23120],["2021-12-18",30722,30,23150],["2021-12-19",30722,10,23160],["2021-12-20",30722,49,23209],["2021-12-21",30722,79,23288],["2021-12-22",30722,47,23335],["2021-12-23",30722,23,23358],["2021-12-24",30722,10,23368],["2021-12-26",30722,22,23390],["2021-12-27",30722,59,23449],["2021-12-28",30722,57,23506],["2021-12-29",30722,50,23556],["2021-12-30",30722,62,23618],["2021-12-31",30722,32,23650],["2022-01-01",30722,17,23667],["2022-01-02",30722,12,23679],["2022-01-03",30722,6,23685]]} \ No newline at end of file diff --git a/public/data/overall/vaccinations/by-county/Harris.json b/public/data/overall/vaccinations/by-county/Harris.json new file mode 100644 index 000000000..7f470e5e2 --- /dev/null +++ b/public/data/overall/vaccinations/by-county/Harris.json @@ -0,0 +1 @@ +{"segment":{"county":"Harris"},"headers":["report_date","population","vaccinations","total_vaccinations"],"rows":[["2020-12-17",34712,1,1],["2020-12-18",34712,3,4],["2020-12-19",34712,4,8],["2020-12-20",34712,6,14],["2020-12-21",34712,17,31],["2020-12-22",34712,20,51],["2020-12-23",34712,40,91],["2020-12-26",34712,9,100],["2020-12-27",34712,3,103],["2020-12-28",34712,46,149],["2020-12-29",34712,78,227],["2020-12-30",34712,60,287],["2020-12-31",34712,50,337],["2021-01-01",34712,3,340],["2021-01-02",34712,3,343],["2021-01-03",34712,3,346],["2021-01-04",34712,43,389],["2021-01-05",34712,86,475],["2021-01-06",34712,68,543],["2021-01-07",34712,85,628],["2021-01-08",34712,58,686],["2021-01-09",34712,7,693],["2021-01-10",34712,10,703],["2021-01-11",34712,120,823],["2021-01-12",34712,141,964],["2021-01-13",34712,179,1143],["2021-01-14",34712,148,1291],["2021-01-15",34712,58,1349],["2021-01-16",34712,168,1517],["2021-01-17",34712,23,1540],["2021-01-18",34712,119,1659],["2021-01-19",34712,146,1805],["2021-01-20",34712,191,1996],["2021-01-21",34712,122,2118],["2021-01-22",34712,79,2197],["2021-01-23",34712,91,2288],["2021-01-24",34712,5,2293],["2021-01-25",34712,76,2369],["2021-01-26",34712,134,2503],["2021-01-27",34712,138,2641],["2021-01-28",34712,181,2822],["2021-01-29",34712,203,3025],["2021-01-30",34712,31,3056],["2021-01-31",34712,9,3065],["2021-02-01",34712,129,3194],["2021-02-02",34712,132,3326],["2021-02-03",34712,107,3433],["2021-02-04",34712,152,3585],["2021-02-05",34712,90,3675],["2021-02-06",34712,6,3681],["2021-02-07",34712,7,3688],["2021-02-08",34712,112,3800],["2021-02-09",34712,625,4425],["2021-02-10",34712,227,4652],["2021-02-11",34712,222,4874],["2021-02-12",34712,153,5027],["2021-02-13",34712,56,5083],["2021-02-14",34712,25,5108],["2021-02-15",34712,120,5228],["2021-02-16",34712,222,5450],["2021-02-17",34712,289,5739],["2021-02-18",34712,202,5941],["2021-02-19",34712,145,6086],["2021-02-20",34712,77,6163],["2021-02-21",34712,5,6168],["2021-02-22",34712,137,6305],["2021-02-23",34712,83,6388],["2021-02-24",34712,94,6482],["2021-02-25",34712,157,6639],["2021-02-26",34712,383,7022],["2021-02-27",34712,60,7082],["2021-02-28",34712,15,7097],["2021-03-01",34712,102,7199],["2021-03-02",34712,88,7287],["2021-03-03",34712,173,7460],["2021-03-04",34712,144,7604],["2021-03-05",34712,176,7780],["2021-03-06",34712,42,7822],["2021-03-07",34712,18,7840],["2021-03-08",34712,148,7988],["2021-03-09",34712,557,8545],["2021-03-10",34712,175,8720],["2021-03-11",34712,279,8999],["2021-03-12",34712,187,9186],["2021-03-13",34712,75,9261],["2021-03-14",34712,25,9286],["2021-03-15",34712,261,9547],["2021-03-16",34712,159,9706],["2021-03-17",34712,310,10016],["2021-03-18",34712,210,10226],["2021-03-19",34712,263,10489],["2021-03-20",34712,121,10610],["2021-03-21",34712,49,10659],["2021-03-22",34712,149,10808],["2021-03-23",34712,168,10976],["2021-03-24",34712,241,11217],["2021-03-25",34712,385,11602],["2021-03-26",34712,548,12150],["2021-03-27",34712,91,12241],["2021-03-28",34712,52,12293],["2021-03-29",34712,237,12530],["2021-03-30",34712,329,12859],["2021-03-31",34712,292,13151],["2021-04-01",34712,268,13419],["2021-04-02",34712,244,13663],["2021-04-03",34712,48,13711],["2021-04-04",34712,34,13745],["2021-04-05",34712,230,13975],["2021-04-06",34712,220,14195],["2021-04-07",34712,346,14541],["2021-04-08",34712,249,14790],["2021-04-09",34712,349,15139],["2021-04-10",34712,101,15240],["2021-04-11",34712,38,15278],["2021-04-12",34712,325,15603],["2021-04-13",34712,253,15856],["2021-04-14",34712,289,16145],["2021-04-15",34712,232,16377],["2021-04-16",34712,289,16666],["2021-04-17",34712,116,16782],["2021-04-18",34712,43,16825],["2021-04-19",34712,210,17035],["2021-04-20",34712,203,17238],["2021-04-21",34712,271,17509],["2021-04-22",34712,214,17723],["2021-04-23",34712,285,18008],["2021-04-24",34712,56,18064],["2021-04-25",34712,29,18093],["2021-04-26",34712,212,18305],["2021-04-27",34712,185,18490],["2021-04-28",34712,226,18716],["2021-04-29",34712,148,18864],["2021-04-30",34712,312,19176],["2021-05-01",34712,59,19235],["2021-05-02",34712,48,19283],["2021-05-03",34712,134,19417],["2021-05-04",34712,131,19548],["2021-05-05",34712,170,19718],["2021-05-06",34712,133,19851],["2021-05-07",34712,148,19999],["2021-05-08",34712,46,20045],["2021-05-09",34712,12,20057],["2021-05-10",34712,78,20135],["2021-05-11",34712,103,20238],["2021-05-12",34712,86,20324],["2021-05-13",34712,92,20416],["2021-05-14",34712,121,20537],["2021-05-15",34712,49,20586],["2021-05-16",34712,31,20617],["2021-05-17",34712,128,20745],["2021-05-18",34712,204,20949],["2021-05-19",34712,108,21057],["2021-05-20",34712,92,21149],["2021-05-21",34712,150,21299],["2021-05-22",34712,43,21342],["2021-05-23",34712,32,21374],["2021-05-24",34712,66,21440],["2021-05-25",34712,62,21502],["2021-05-26",34712,63,21565],["2021-05-27",34712,49,21614],["2021-05-28",34712,84,21698],["2021-05-29",34712,59,21757],["2021-05-30",34712,15,21772],["2021-05-31",34712,13,21785],["2021-06-01",34712,107,21892],["2021-06-02",34712,90,21982],["2021-06-03",34712,65,22047],["2021-06-04",34712,109,22156],["2021-06-05",34712,45,22201],["2021-06-06",34712,18,22219],["2021-06-07",34712,71,22290],["2021-06-08",34712,100,22390],["2021-06-09",34712,70,22460],["2021-06-10",34712,47,22507],["2021-06-11",34712,93,22600],["2021-06-12",34712,51,22651],["2021-06-13",34712,45,22696],["2021-06-14",34712,63,22759],["2021-06-15",34712,90,22849],["2021-06-16",34712,45,22894],["2021-06-17",34712,90,22984],["2021-06-18",34712,126,23110],["2021-06-19",34712,44,23154],["2021-06-20",34712,16,23170],["2021-06-21",34712,37,23207],["2021-06-22",34712,78,23285],["2021-06-23",34712,71,23356],["2021-06-24",34712,51,23407],["2021-06-25",34712,77,23484],["2021-06-26",34712,47,23531],["2021-06-27",34712,13,23544],["2021-06-28",34712,54,23598],["2021-06-29",34712,38,23636],["2021-06-30",34712,65,23701],["2021-07-01",34712,60,23761],["2021-07-02",34712,70,23831],["2021-07-03",34712,36,23867],["2021-07-05",34712,27,23894],["2021-07-06",34712,70,23964],["2021-07-07",34712,62,24026],["2021-07-08",34712,82,24108],["2021-07-09",34712,72,24180],["2021-07-10",34712,26,24206],["2021-07-11",34712,14,24220],["2021-07-12",34712,42,24262],["2021-07-13",34712,52,24314],["2021-07-14",34712,38,24352],["2021-07-15",34712,53,24405],["2021-07-16",34712,83,24488],["2021-07-17",34712,35,24523],["2021-07-18",34712,23,24546],["2021-07-19",34712,65,24611],["2021-07-20",34712,44,24655],["2021-07-21",34712,64,24719],["2021-07-22",34712,81,24800],["2021-07-23",34712,118,24918],["2021-07-24",34712,62,24980],["2021-07-25",34712,35,25015],["2021-07-26",34712,95,25110],["2021-07-27",34712,62,25172],["2021-07-28",34712,59,25231],["2021-07-29",34712,69,25300],["2021-07-30",34712,98,25398],["2021-07-31",34712,42,25440],["2021-08-01",34712,30,25470],["2021-08-02",34712,60,25530],["2021-08-03",34712,117,25647],["2021-08-04",34712,65,25712],["2021-08-05",34712,77,25789],["2021-08-06",34712,102,25891],["2021-08-07",34712,46,25937],["2021-08-08",34712,33,25970],["2021-08-09",34712,55,26025],["2021-08-10",34712,59,26084],["2021-08-11",34712,59,26143],["2021-08-12",34712,73,26216],["2021-08-13",34712,119,26335],["2021-08-14",34712,68,26403],["2021-08-15",34712,33,26436],["2021-08-16",34712,74,26510],["2021-08-17",34712,88,26598],["2021-08-18",34712,73,26671],["2021-08-19",34712,82,26753],["2021-08-20",34712,127,26880],["2021-08-21",34712,43,26923],["2021-08-22",34712,42,26965],["2021-08-23",34712,82,27047],["2021-08-24",34712,111,27158],["2021-08-25",34712,85,27243],["2021-08-26",34712,87,27330],["2021-08-27",34712,153,27483],["2021-08-28",34712,42,27525],["2021-08-29",34712,36,27561],["2021-08-30",34712,87,27648],["2021-08-31",34712,78,27726],["2021-09-01",34712,82,27808],["2021-09-02",34712,92,27900],["2021-09-03",34712,112,28012],["2021-09-04",34712,48,28060],["2021-09-05",34712,41,28101],["2021-09-06",34712,11,28112],["2021-09-07",34712,52,28164],["2021-09-08",34712,71,28235],["2021-09-09",34712,65,28300],["2021-09-10",34712,108,28408],["2021-09-11",34712,40,28448],["2021-09-12",34712,27,28475],["2021-09-13",34712,77,28552],["2021-09-14",34712,76,28628],["2021-09-15",34712,57,28685],["2021-09-16",34712,51,28736],["2021-09-17",34712,110,28846],["2021-09-18",34712,40,28886],["2021-09-19",34712,19,28905],["2021-09-20",34712,36,28941],["2021-09-21",34712,49,28990],["2021-09-22",34712,47,29037],["2021-09-23",34712,42,29079],["2021-09-24",34712,51,29130],["2021-09-25",34712,26,29156],["2021-09-26",34712,26,29182],["2021-09-27",34712,65,29247],["2021-09-28",34712,54,29301],["2021-09-29",34712,75,29376],["2021-09-30",34712,74,29450],["2021-10-01",34712,105,29555],["2021-10-02",34712,24,29579],["2021-10-03",34712,17,29596],["2021-10-04",34712,56,29652],["2021-10-05",34712,63,29715],["2021-10-06",34712,58,29773],["2021-10-07",34712,69,29842],["2021-10-08",34712,87,29929],["2021-10-09",34712,30,29959],["2021-10-10",34712,14,29973],["2021-10-11",34712,44,30017],["2021-10-12",34712,41,30058],["2021-10-13",34712,35,30093],["2021-10-14",34712,47,30140],["2021-10-15",34712,64,30204],["2021-10-16",34712,24,30228],["2021-10-17",34712,15,30243],["2021-10-18",34712,40,30283],["2021-10-19",34712,35,30318],["2021-10-20",34712,30,30348],["2021-10-21",34712,45,30393],["2021-10-22",34712,89,30482],["2021-10-23",34712,82,30564],["2021-10-24",34712,38,30602],["2021-10-25",34712,115,30717],["2021-10-26",34712,80,30797],["2021-10-27",34712,154,30951],["2021-10-28",34712,131,31082],["2021-10-29",34712,151,31233],["2021-10-30",34712,43,31276],["2021-10-31",34712,28,31304],["2021-11-01",34712,86,31390],["2021-11-02",34712,108,31498],["2021-11-03",34712,96,31594],["2021-11-04",34712,68,31662],["2021-11-05",34712,191,31853],["2021-11-06",34712,48,31901],["2021-11-07",34712,25,31926],["2021-11-08",34712,130,32056],["2021-11-09",34712,98,32154],["2021-11-10",34712,90,32244],["2021-11-11",34712,94,32338],["2021-11-12",34712,153,32491],["2021-11-13",34712,44,32535],["2021-11-14",34712,15,32550],["2021-11-15",34712,73,32623],["2021-11-16",34712,88,32711],["2021-11-17",34712,112,32823],["2021-11-18",34712,106,32929],["2021-11-19",34712,139,33068],["2021-11-20",34712,50,33118],["2021-11-21",34712,37,33155],["2021-11-22",34712,121,33276],["2021-11-23",34712,75,33351],["2021-11-24",34712,62,33413],["2021-11-26",34712,56,33469],["2021-11-27",34712,46,33515],["2021-11-28",34712,41,33556],["2021-11-29",34712,90,33646],["2021-11-30",34712,109,33755],["2021-12-01",34712,133,33888],["2021-12-02",34712,128,34016],["2021-12-03",34712,210,34226],["2021-12-04",34712,47,34273],["2021-12-05",34712,31,34304],["2021-12-06",34712,96,34400],["2021-12-07",34712,127,34527],["2021-12-08",34712,85,34612],["2021-12-09",34712,68,34680],["2021-12-10",34712,134,34814],["2021-12-11",34712,41,34855],["2021-12-12",34712,28,34883],["2021-12-13",34712,64,34947],["2021-12-14",34712,71,35018],["2021-12-15",34712,43,35061],["2021-12-16",34712,90,35151],["2021-12-17",34712,92,35243],["2021-12-18",34712,53,35296],["2021-12-19",34712,42,35338],["2021-12-20",34712,88,35426],["2021-12-21",34712,84,35510],["2021-12-22",34712,89,35599],["2021-12-23",34712,55,35654],["2021-12-24",34712,18,35672],["2021-12-26",34712,16,35688],["2021-12-27",34712,78,35766],["2021-12-28",34712,100,35866],["2021-12-29",34712,83,35949],["2021-12-30",34712,89,36038],["2021-12-31",34712,57,36095],["2022-01-01",34712,8,36103],["2022-01-02",34712,17,36120],["2022-01-03",34712,30,36150]]} \ No newline at end of file diff --git a/public/data/overall/vaccinations/by-county/Hart.json b/public/data/overall/vaccinations/by-county/Hart.json new file mode 100644 index 000000000..df75225e0 --- /dev/null +++ b/public/data/overall/vaccinations/by-county/Hart.json @@ -0,0 +1 @@ +{"segment":{"county":"Hart"},"headers":["report_date","population","vaccinations","total_vaccinations"],"rows":[["2020-12-15",26107,1,1],["2020-12-17",26107,1,2],["2020-12-18",26107,5,7],["2020-12-19",26107,1,8],["2020-12-21",26107,8,16],["2020-12-22",26107,12,28],["2020-12-23",26107,15,43],["2020-12-24",26107,22,65],["2020-12-28",26107,13,78],["2020-12-29",26107,73,151],["2020-12-30",26107,36,187],["2020-12-31",26107,4,191],["2021-01-01",26107,3,194],["2021-01-02",26107,2,196],["2021-01-03",26107,1,197],["2021-01-04",26107,30,227],["2021-01-05",26107,40,267],["2021-01-06",26107,54,321],["2021-01-07",26107,26,347],["2021-01-08",26107,31,378],["2021-01-09",26107,1,379],["2021-01-10",26107,6,385],["2021-01-11",26107,104,489],["2021-01-12",26107,72,561],["2021-01-13",26107,76,637],["2021-01-14",26107,109,746],["2021-01-15",26107,155,901],["2021-01-16",26107,35,936],["2021-01-17",26107,24,960],["2021-01-18",26107,112,1072],["2021-01-19",26107,151,1223],["2021-01-20",26107,214,1437],["2021-01-21",26107,111,1548],["2021-01-22",26107,102,1650],["2021-01-23",26107,15,1665],["2021-01-24",26107,30,1695],["2021-01-25",26107,141,1836],["2021-01-26",26107,206,2042],["2021-01-27",26107,150,2192],["2021-01-28",26107,135,2327],["2021-01-29",26107,51,2378],["2021-01-30",26107,2,2380],["2021-01-31",26107,13,2393],["2021-02-01",26107,175,2568],["2021-02-02",26107,137,2705],["2021-02-03",26107,140,2845],["2021-02-04",26107,133,2978],["2021-02-05",26107,142,3120],["2021-02-06",26107,11,3131],["2021-02-07",26107,1,3132],["2021-02-08",26107,115,3247],["2021-02-09",26107,136,3383],["2021-02-10",26107,135,3518],["2021-02-11",26107,121,3639],["2021-02-12",26107,229,3868],["2021-02-13",26107,53,3921],["2021-02-14",26107,47,3968],["2021-02-15",26107,126,4094],["2021-02-16",26107,116,4210],["2021-02-17",26107,161,4371],["2021-02-18",26107,221,4592],["2021-02-19",26107,190,4782],["2021-02-20",26107,25,4807],["2021-02-21",26107,19,4826],["2021-02-22",26107,68,4894],["2021-02-23",26107,377,5271],["2021-02-24",26107,169,5440],["2021-02-25",26107,153,5593],["2021-02-26",26107,93,5686],["2021-02-27",26107,36,5722],["2021-02-28",26107,25,5747],["2021-03-01",26107,178,5925],["2021-03-02",26107,151,6076],["2021-03-03",26107,180,6256],["2021-03-04",26107,143,6399],["2021-03-05",26107,299,6698],["2021-03-06",26107,24,6722],["2021-03-07",26107,17,6739],["2021-03-08",26107,128,6867],["2021-03-09",26107,161,7028],["2021-03-10",26107,162,7190],["2021-03-11",26107,144,7334],["2021-03-12",26107,156,7490],["2021-03-13",26107,38,7528],["2021-03-14",26107,22,7550],["2021-03-15",26107,116,7666],["2021-03-16",26107,187,7853],["2021-03-17",26107,143,7996],["2021-03-18",26107,217,8213],["2021-03-19",26107,282,8495],["2021-03-20",26107,41,8536],["2021-03-21",26107,21,8557],["2021-03-22",26107,98,8655],["2021-03-23",26107,124,8779],["2021-03-24",26107,119,8898],["2021-03-25",26107,136,9034],["2021-03-26",26107,161,9195],["2021-03-27",26107,35,9230],["2021-03-28",26107,33,9263],["2021-03-29",26107,120,9383],["2021-03-30",26107,156,9539],["2021-03-31",26107,162,9701],["2021-04-01",26107,144,9845],["2021-04-02",26107,219,10064],["2021-04-03",26107,29,10093],["2021-04-04",26107,33,10126],["2021-04-05",26107,136,10262],["2021-04-06",26107,172,10434],["2021-04-07",26107,159,10593],["2021-04-08",26107,205,10798],["2021-04-09",26107,166,10964],["2021-04-10",26107,30,10994],["2021-04-11",26107,17,11011],["2021-04-12",26107,139,11150],["2021-04-13",26107,237,11387],["2021-04-14",26107,143,11530],["2021-04-15",26107,115,11645],["2021-04-16",26107,248,11893],["2021-04-17",26107,44,11937],["2021-04-18",26107,13,11950],["2021-04-19",26107,108,12058],["2021-04-20",26107,96,12154],["2021-04-21",26107,164,12318],["2021-04-22",26107,150,12468],["2021-04-23",26107,161,12629],["2021-04-24",26107,31,12660],["2021-04-25",26107,12,12672],["2021-04-26",26107,116,12788],["2021-04-27",26107,130,12918],["2021-04-28",26107,115,13033],["2021-04-29",26107,105,13138],["2021-04-30",26107,91,13229],["2021-05-01",26107,43,13272],["2021-05-02",26107,13,13285],["2021-05-03",26107,57,13342],["2021-05-04",26107,122,13464],["2021-05-05",26107,77,13541],["2021-05-06",26107,94,13635],["2021-05-07",26107,106,13741],["2021-05-08",26107,44,13785],["2021-05-09",26107,7,13792],["2021-05-10",26107,71,13863],["2021-05-11",26107,67,13930],["2021-05-12",26107,70,14000],["2021-05-13",26107,129,14129],["2021-05-14",26107,98,14227],["2021-05-15",26107,32,14259],["2021-05-16",26107,13,14272],["2021-05-17",26107,46,14318],["2021-05-18",26107,59,14377],["2021-05-19",26107,70,14447],["2021-05-20",26107,74,14521],["2021-05-21",26107,110,14631],["2021-05-22",26107,30,14661],["2021-05-23",26107,11,14672],["2021-05-24",26107,39,14711],["2021-05-25",26107,40,14751],["2021-05-26",26107,46,14797],["2021-05-27",26107,57,14854],["2021-05-28",26107,24,14878],["2021-05-29",26107,27,14905],["2021-05-30",26107,9,14914],["2021-05-31",26107,7,14921],["2021-06-01",26107,42,14963],["2021-06-02",26107,30,14993],["2021-06-03",26107,37,15030],["2021-06-04",26107,46,15076],["2021-06-05",26107,21,15097],["2021-06-06",26107,18,15115],["2021-06-07",26107,47,15162],["2021-06-08",26107,26,15188],["2021-06-09",26107,52,15240],["2021-06-10",26107,22,15262],["2021-06-11",26107,52,15314],["2021-06-12",26107,29,15343],["2021-06-13",26107,6,15349],["2021-06-14",26107,25,15374],["2021-06-15",26107,35,15409],["2021-06-16",26107,39,15448],["2021-06-17",26107,22,15470],["2021-06-18",26107,58,15528],["2021-06-19",26107,17,15545],["2021-06-20",26107,3,15548],["2021-06-21",26107,19,15567],["2021-06-22",26107,34,15601],["2021-06-23",26107,24,15625],["2021-06-24",26107,25,15650],["2021-06-25",26107,28,15678],["2021-06-26",26107,13,15691],["2021-06-27",26107,5,15696],["2021-06-28",26107,13,15709],["2021-06-29",26107,30,15739],["2021-06-30",26107,25,15764],["2021-07-01",26107,28,15792],["2021-07-02",26107,21,15813],["2021-07-03",26107,10,15823],["2021-07-04",26107,1,15824],["2021-07-05",26107,19,15843],["2021-07-06",26107,20,15863],["2021-07-07",26107,26,15889],["2021-07-08",26107,15,15904],["2021-07-09",26107,22,15926],["2021-07-10",26107,15,15941],["2021-07-11",26107,4,15945],["2021-07-12",26107,11,15956],["2021-07-13",26107,16,15972],["2021-07-14",26107,37,16009],["2021-07-15",26107,16,16025],["2021-07-16",26107,59,16084],["2021-07-17",26107,7,16091],["2021-07-18",26107,5,16096],["2021-07-19",26107,26,16122],["2021-07-20",26107,26,16148],["2021-07-21",26107,60,16208],["2021-07-22",26107,25,16233],["2021-07-23",26107,32,16265],["2021-07-24",26107,21,16286],["2021-07-25",26107,15,16301],["2021-07-26",26107,24,16325],["2021-07-27",26107,30,16355],["2021-07-28",26107,40,16395],["2021-07-29",26107,39,16434],["2021-07-30",26107,37,16471],["2021-07-31",26107,30,16501],["2021-08-01",26107,16,16517],["2021-08-02",26107,34,16551],["2021-08-03",26107,39,16590],["2021-08-04",26107,41,16631],["2021-08-05",26107,62,16693],["2021-08-06",26107,46,16739],["2021-08-07",26107,18,16757],["2021-08-08",26107,13,16770],["2021-08-09",26107,39,16809],["2021-08-10",26107,66,16875],["2021-08-11",26107,52,16927],["2021-08-12",26107,45,16972],["2021-08-13",26107,81,17053],["2021-08-14",26107,31,17084],["2021-08-15",26107,27,17111],["2021-08-16",26107,48,17159],["2021-08-17",26107,54,17213],["2021-08-18",26107,83,17296],["2021-08-19",26107,57,17353],["2021-08-20",26107,55,17408],["2021-08-21",26107,36,17444],["2021-08-22",26107,28,17472],["2021-08-23",26107,56,17528],["2021-08-24",26107,69,17597],["2021-08-25",26107,58,17655],["2021-08-26",26107,89,17744],["2021-08-27",26107,94,17838],["2021-08-28",26107,46,17884],["2021-08-29",26107,19,17903],["2021-08-30",26107,74,17977],["2021-08-31",26107,56,18033],["2021-09-01",26107,91,18124],["2021-09-02",26107,62,18186],["2021-09-03",26107,65,18251],["2021-09-04",26107,23,18274],["2021-09-05",26107,12,18286],["2021-09-06",26107,11,18297],["2021-09-07",26107,68,18365],["2021-09-08",26107,63,18428],["2021-09-09",26107,60,18488],["2021-09-10",26107,74,18562],["2021-09-11",26107,25,18587],["2021-09-12",26107,25,18612],["2021-09-13",26107,56,18668],["2021-09-14",26107,31,18699],["2021-09-15",26107,50,18749],["2021-09-16",26107,52,18801],["2021-09-17",26107,74,18875],["2021-09-18",26107,18,18893],["2021-09-19",26107,20,18913],["2021-09-20",26107,50,18963],["2021-09-21",26107,42,19005],["2021-09-22",26107,78,19083],["2021-09-23",26107,47,19130],["2021-09-24",26107,55,19185],["2021-09-25",26107,19,19204],["2021-09-26",26107,13,19217],["2021-09-27",26107,47,19264],["2021-09-28",26107,57,19321],["2021-09-29",26107,65,19386],["2021-09-30",26107,32,19418],["2021-10-01",26107,53,19471],["2021-10-02",26107,12,19483],["2021-10-03",26107,7,19490],["2021-10-04",26107,70,19560],["2021-10-05",26107,29,19589],["2021-10-06",26107,40,19629],["2021-10-07",26107,25,19654],["2021-10-08",26107,42,19696],["2021-10-09",26107,11,19707],["2021-10-10",26107,12,19719],["2021-10-11",26107,25,19744],["2021-10-12",26107,27,19771],["2021-10-13",26107,37,19808],["2021-10-14",26107,33,19841],["2021-10-15",26107,37,19878],["2021-10-16",26107,5,19883],["2021-10-17",26107,6,19889],["2021-10-18",26107,21,19910],["2021-10-19",26107,58,19968],["2021-10-20",26107,46,20014],["2021-10-21",26107,23,20037],["2021-10-22",26107,38,20075],["2021-10-23",26107,57,20132],["2021-10-24",26107,29,20161],["2021-10-25",26107,100,20261],["2021-10-26",26107,162,20423],["2021-10-27",26107,149,20572],["2021-10-28",26107,103,20675],["2021-10-29",26107,109,20784],["2021-10-30",26107,24,20808],["2021-10-31",26107,29,20837],["2021-11-01",26107,111,20948],["2021-11-02",26107,145,21093],["2021-11-03",26107,90,21183],["2021-11-04",26107,73,21256],["2021-11-05",26107,68,21324],["2021-11-06",26107,29,21353],["2021-11-07",26107,14,21367],["2021-11-08",26107,56,21423],["2021-11-09",26107,105,21528],["2021-11-10",26107,80,21608],["2021-11-11",26107,42,21650],["2021-11-12",26107,69,21719],["2021-11-13",26107,26,21745],["2021-11-14",26107,9,21754],["2021-11-15",26107,56,21810],["2021-11-16",26107,73,21883],["2021-11-17",26107,56,21939],["2021-11-18",26107,64,22003],["2021-11-19",26107,77,22080],["2021-11-20",26107,22,22102],["2021-11-21",26107,22,22124],["2021-11-22",26107,68,22192],["2021-11-23",26107,89,22281],["2021-11-24",26107,44,22325],["2021-11-26",26107,34,22359],["2021-11-27",26107,27,22386],["2021-11-28",26107,15,22401],["2021-11-29",26107,67,22468],["2021-11-30",26107,107,22575],["2021-12-01",26107,81,22656],["2021-12-02",26107,98,22754],["2021-12-03",26107,100,22854],["2021-12-04",26107,30,22884],["2021-12-05",26107,12,22896],["2021-12-06",26107,54,22950],["2021-12-07",26107,55,23005],["2021-12-08",26107,84,23089],["2021-12-09",26107,58,23147],["2021-12-10",26107,84,23231],["2021-12-11",26107,16,23247],["2021-12-12",26107,11,23258],["2021-12-13",26107,35,23293],["2021-12-14",26107,96,23389],["2021-12-15",26107,55,23444],["2021-12-16",26107,47,23491],["2021-12-17",26107,61,23552],["2021-12-18",26107,23,23575],["2021-12-19",26107,16,23591],["2021-12-20",26107,68,23659],["2021-12-21",26107,73,23732],["2021-12-22",26107,76,23808],["2021-12-23",26107,45,23853],["2021-12-24",26107,15,23868],["2021-12-26",26107,8,23876],["2021-12-27",26107,64,23940],["2021-12-28",26107,74,24014],["2021-12-29",26107,55,24069],["2021-12-30",26107,69,24138],["2021-12-31",26107,50,24188],["2022-01-01",26107,7,24195],["2022-01-02",26107,17,24212],["2022-01-03",26107,13,24225]]} \ No newline at end of file diff --git a/public/data/overall/vaccinations/by-county/Heard.json b/public/data/overall/vaccinations/by-county/Heard.json new file mode 100644 index 000000000..f47825c80 --- /dev/null +++ b/public/data/overall/vaccinations/by-county/Heard.json @@ -0,0 +1 @@ +{"segment":{"county":"Heard"},"headers":["report_date","population","vaccinations","total_vaccinations"],"rows":[["2020-12-21",12370,3,3],["2020-12-22",12370,4,7],["2020-12-23",12370,13,20],["2020-12-24",12370,2,22],["2020-12-26",12370,1,23],["2020-12-27",12370,1,24],["2020-12-28",12370,11,35],["2020-12-29",12370,12,47],["2020-12-30",12370,25,72],["2020-12-31",12370,10,82],["2021-01-01",12370,4,86],["2021-01-02",12370,1,87],["2021-01-03",12370,2,89],["2021-01-04",12370,10,99],["2021-01-05",12370,4,103],["2021-01-06",12370,22,125],["2021-01-07",12370,4,129],["2021-01-08",12370,14,143],["2021-01-09",12370,5,148],["2021-01-10",12370,18,166],["2021-01-11",12370,8,174],["2021-01-12",12370,26,200],["2021-01-13",12370,20,220],["2021-01-14",12370,157,377],["2021-01-15",12370,21,398],["2021-01-16",12370,6,404],["2021-01-17",12370,2,406],["2021-01-18",12370,13,419],["2021-01-19",12370,23,442],["2021-01-20",12370,55,497],["2021-01-21",12370,24,521],["2021-01-22",12370,21,542],["2021-01-23",12370,16,558],["2021-01-24",12370,2,560],["2021-01-25",12370,19,579],["2021-01-26",12370,18,597],["2021-01-27",12370,32,629],["2021-01-28",12370,21,650],["2021-01-29",12370,23,673],["2021-01-30",12370,1,674],["2021-01-31",12370,32,706],["2021-02-01",12370,9,715],["2021-02-02",12370,46,761],["2021-02-03",12370,21,782],["2021-02-04",12370,32,814],["2021-02-05",12370,14,828],["2021-02-08",12370,11,839],["2021-02-09",12370,31,870],["2021-02-10",12370,22,892],["2021-02-11",12370,8,900],["2021-02-12",12370,182,1082],["2021-02-13",12370,7,1089],["2021-02-14",12370,2,1091],["2021-02-15",12370,21,1112],["2021-02-16",12370,40,1152],["2021-02-17",12370,70,1222],["2021-02-18",12370,37,1259],["2021-02-19",12370,14,1273],["2021-02-20",12370,14,1287],["2021-02-22",12370,18,1305],["2021-02-23",12370,40,1345],["2021-02-24",12370,36,1381],["2021-02-25",12370,30,1411],["2021-02-26",12370,20,1431],["2021-02-27",12370,3,1434],["2021-02-28",12370,1,1435],["2021-03-01",12370,13,1448],["2021-03-02",12370,55,1503],["2021-03-03",12370,44,1547],["2021-03-04",12370,37,1584],["2021-03-05",12370,17,1601],["2021-03-06",12370,1,1602],["2021-03-07",12370,2,1604],["2021-03-08",12370,10,1614],["2021-03-09",12370,26,1640],["2021-03-10",12370,55,1695],["2021-03-11",12370,38,1733],["2021-03-12",12370,26,1759],["2021-03-13",12370,2,1761],["2021-03-14",12370,5,1766],["2021-03-15",12370,44,1810],["2021-03-16",12370,82,1892],["2021-03-17",12370,34,1926],["2021-03-18",12370,40,1966],["2021-03-19",12370,102,2068],["2021-03-20",12370,6,2074],["2021-03-21",12370,9,2083],["2021-03-22",12370,31,2114],["2021-03-23",12370,43,2157],["2021-03-24",12370,50,2207],["2021-03-25",12370,40,2247],["2021-03-26",12370,33,2280],["2021-03-27",12370,37,2317],["2021-03-28",12370,6,2323],["2021-03-29",12370,9,2332],["2021-03-30",12370,70,2402],["2021-03-31",12370,101,2503],["2021-04-01",12370,54,2557],["2021-04-02",12370,30,2587],["2021-04-03",12370,21,2608],["2021-04-04",12370,15,2623],["2021-04-05",12370,37,2660],["2021-04-06",12370,46,2706],["2021-04-07",12370,40,2746],["2021-04-08",12370,61,2807],["2021-04-09",12370,35,2842],["2021-04-10",12370,24,2866],["2021-04-11",12370,14,2880],["2021-04-12",12370,40,2920],["2021-04-13",12370,86,3006],["2021-04-14",12370,45,3051],["2021-04-15",12370,26,3077],["2021-04-16",12370,57,3134],["2021-04-17",12370,29,3163],["2021-04-18",12370,6,3169],["2021-04-19",12370,37,3206],["2021-04-20",12370,64,3270],["2021-04-21",12370,68,3338],["2021-04-22",12370,35,3373],["2021-04-23",12370,39,3412],["2021-04-24",12370,25,3437],["2021-04-25",12370,7,3444],["2021-04-26",12370,19,3463],["2021-04-27",12370,73,3536],["2021-04-28",12370,45,3581],["2021-04-29",12370,31,3612],["2021-04-30",12370,22,3634],["2021-05-01",12370,15,3649],["2021-05-02",12370,9,3658],["2021-05-03",12370,32,3690],["2021-05-04",12370,44,3734],["2021-05-05",12370,43,3777],["2021-05-06",12370,19,3796],["2021-05-07",12370,26,3822],["2021-05-08",12370,18,3840],["2021-05-09",12370,8,3848],["2021-05-10",12370,31,3879],["2021-05-11",12370,44,3923],["2021-05-12",12370,41,3964],["2021-05-13",12370,42,4006],["2021-05-14",12370,21,4027],["2021-05-15",12370,18,4045],["2021-05-16",12370,10,4055],["2021-05-17",12370,23,4078],["2021-05-18",12370,62,4140],["2021-05-19",12370,45,4185],["2021-05-20",12370,31,4216],["2021-05-21",12370,42,4258],["2021-05-22",12370,15,4273],["2021-05-23",12370,8,4281],["2021-05-24",12370,23,4304],["2021-05-25",12370,46,4350],["2021-05-26",12370,24,4374],["2021-05-27",12370,29,4403],["2021-05-28",12370,17,4420],["2021-05-29",12370,13,4433],["2021-05-30",12370,5,4438],["2021-05-31",12370,3,4441],["2021-06-01",12370,12,4453],["2021-06-02",12370,19,4472],["2021-06-03",12370,19,4491],["2021-06-04",12370,23,4514],["2021-06-05",12370,15,4529],["2021-06-06",12370,7,4536],["2021-06-07",12370,12,4548],["2021-06-08",12370,22,4570],["2021-06-09",12370,25,4595],["2021-06-10",12370,27,4622],["2021-06-11",12370,22,4644],["2021-06-12",12370,18,4662],["2021-06-13",12370,3,4665],["2021-06-14",12370,32,4697],["2021-06-15",12370,22,4719],["2021-06-16",12370,20,4739],["2021-06-17",12370,13,4752],["2021-06-18",12370,28,4780],["2021-06-19",12370,13,4793],["2021-06-20",12370,4,4797],["2021-06-21",12370,13,4810],["2021-06-22",12370,12,4822],["2021-06-23",12370,9,4831],["2021-06-24",12370,6,4837],["2021-06-25",12370,17,4854],["2021-06-26",12370,7,4861],["2021-06-27",12370,2,4863],["2021-06-28",12370,8,4871],["2021-06-29",12370,12,4883],["2021-06-30",12370,10,4893],["2021-07-01",12370,15,4908],["2021-07-02",12370,18,4926],["2021-07-03",12370,5,4931],["2021-07-05",12370,4,4935],["2021-07-06",12370,8,4943],["2021-07-07",12370,13,4956],["2021-07-08",12370,11,4967],["2021-07-09",12370,9,4976],["2021-07-10",12370,6,4982],["2021-07-11",12370,4,4986],["2021-07-12",12370,16,5002],["2021-07-13",12370,13,5015],["2021-07-14",12370,12,5027],["2021-07-15",12370,9,5036],["2021-07-16",12370,11,5047],["2021-07-17",12370,3,5050],["2021-07-18",12370,1,5051],["2021-07-19",12370,15,5066],["2021-07-20",12370,8,5074],["2021-07-21",12370,6,5080],["2021-07-22",12370,8,5088],["2021-07-23",12370,19,5107],["2021-07-24",12370,12,5119],["2021-07-25",12370,3,5122],["2021-07-26",12370,13,5135],["2021-07-27",12370,14,5149],["2021-07-28",12370,16,5165],["2021-07-29",12370,14,5179],["2021-07-30",12370,31,5210],["2021-07-31",12370,9,5219],["2021-08-01",12370,3,5222],["2021-08-02",12370,12,5234],["2021-08-03",12370,23,5257],["2021-08-04",12370,28,5285],["2021-08-05",12370,26,5311],["2021-08-06",12370,19,5330],["2021-08-07",12370,14,5344],["2021-08-08",12370,7,5351],["2021-08-09",12370,18,5369],["2021-08-10",12370,23,5392],["2021-08-11",12370,28,5420],["2021-08-12",12370,15,5435],["2021-08-13",12370,26,5461],["2021-08-14",12370,17,5478],["2021-08-15",12370,5,5483],["2021-08-16",12370,12,5495],["2021-08-17",12370,22,5517],["2021-08-18",12370,25,5542],["2021-08-19",12370,21,5563],["2021-08-20",12370,43,5606],["2021-08-21",12370,18,5624],["2021-08-22",12370,6,5630],["2021-08-23",12370,26,5656],["2021-08-24",12370,18,5674],["2021-08-25",12370,23,5697],["2021-08-26",12370,34,5731],["2021-08-27",12370,42,5773],["2021-08-28",12370,17,5790],["2021-08-29",12370,14,5804],["2021-08-30",12370,25,5829],["2021-08-31",12370,26,5855],["2021-09-01",12370,41,5896],["2021-09-02",12370,42,5938],["2021-09-03",12370,24,5962],["2021-09-04",12370,20,5982],["2021-09-05",12370,13,5995],["2021-09-06",12370,4,5999],["2021-09-07",12370,26,6025],["2021-09-08",12370,30,6055],["2021-09-09",12370,24,6079],["2021-09-10",12370,31,6110],["2021-09-11",12370,12,6122],["2021-09-12",12370,5,6127],["2021-09-13",12370,25,6152],["2021-09-14",12370,20,6172],["2021-09-15",12370,27,6199],["2021-09-16",12370,34,6233],["2021-09-17",12370,42,6275],["2021-09-18",12370,16,6291],["2021-09-19",12370,7,6298],["2021-09-20",12370,14,6312],["2021-09-21",12370,14,6326],["2021-09-22",12370,20,6346],["2021-09-23",12370,24,6370],["2021-09-24",12370,34,6404],["2021-09-25",12370,13,6417],["2021-09-26",12370,3,6420],["2021-09-27",12370,19,6439],["2021-09-28",12370,21,6460],["2021-09-29",12370,32,6492],["2021-09-30",12370,19,6511],["2021-10-01",12370,26,6537],["2021-10-02",12370,7,6544],["2021-10-03",12370,4,6548],["2021-10-04",12370,17,6565],["2021-10-05",12370,22,6587],["2021-10-06",12370,17,6604],["2021-10-07",12370,21,6625],["2021-10-08",12370,17,6642],["2021-10-09",12370,8,6650],["2021-10-10",12370,7,6657],["2021-10-11",12370,8,6665],["2021-10-12",12370,5,6670],["2021-10-13",12370,8,6678],["2021-10-14",12370,11,6689],["2021-10-15",12370,27,6716],["2021-10-16",12370,5,6721],["2021-10-17",12370,5,6726],["2021-10-18",12370,10,6736],["2021-10-19",12370,8,6744],["2021-10-20",12370,9,6753],["2021-10-21",12370,12,6765],["2021-10-22",12370,14,6779],["2021-10-23",12370,15,6794],["2021-10-24",12370,7,6801],["2021-10-25",12370,22,6823],["2021-10-26",12370,36,6859],["2021-10-27",12370,28,6887],["2021-10-28",12370,34,6921],["2021-10-29",12370,26,6947],["2021-10-30",12370,6,6953],["2021-10-31",12370,5,6958],["2021-11-01",12370,14,6972],["2021-11-02",12370,16,6988],["2021-11-03",12370,27,7015],["2021-11-04",12370,26,7041],["2021-11-05",12370,36,7077],["2021-11-06",12370,6,7083],["2021-11-07",12370,6,7089],["2021-11-08",12370,11,7100],["2021-11-09",12370,11,7111],["2021-11-10",12370,34,7145],["2021-11-11",12370,15,7160],["2021-11-12",12370,28,7188],["2021-11-13",12370,7,7195],["2021-11-14",12370,3,7198],["2021-11-15",12370,13,7211],["2021-11-16",12370,16,7227],["2021-11-17",12370,25,7252],["2021-11-18",12370,22,7274],["2021-11-19",12370,48,7322],["2021-11-20",12370,4,7326],["2021-11-21",12370,7,7333],["2021-11-22",12370,27,7360],["2021-11-23",12370,23,7383],["2021-11-24",12370,12,7395],["2021-11-26",12370,10,7405],["2021-11-27",12370,8,7413],["2021-11-28",12370,2,7415],["2021-11-29",12370,17,7432],["2021-11-30",12370,29,7461],["2021-12-01",12370,29,7490],["2021-12-02",12370,31,7521],["2021-12-03",12370,37,7558],["2021-12-04",12370,9,7567],["2021-12-05",12370,3,7570],["2021-12-06",12370,13,7583],["2021-12-07",12370,17,7600],["2021-12-08",12370,21,7621],["2021-12-09",12370,30,7651],["2021-12-10",12370,26,7677],["2021-12-11",12370,9,7686],["2021-12-12",12370,3,7689],["2021-12-13",12370,9,7698],["2021-12-14",12370,6,7704],["2021-12-15",12370,15,7719],["2021-12-16",12370,21,7740],["2021-12-17",12370,18,7758],["2021-12-18",12370,6,7764],["2021-12-19",12370,1,7765],["2021-12-20",12370,32,7797],["2021-12-21",12370,15,7812],["2021-12-22",12370,24,7836],["2021-12-23",12370,20,7856],["2021-12-24",12370,3,7859],["2021-12-26",12370,7,7866],["2021-12-27",12370,17,7883],["2021-12-28",12370,13,7896],["2021-12-29",12370,33,7929],["2021-12-30",12370,21,7950],["2021-12-31",12370,10,7960],["2022-01-02",12370,4,7964],["2022-01-03",12370,3,7967]]} \ No newline at end of file diff --git a/public/data/overall/vaccinations/by-county/Henry.json b/public/data/overall/vaccinations/by-county/Henry.json new file mode 100644 index 000000000..0100c82a6 --- /dev/null +++ b/public/data/overall/vaccinations/by-county/Henry.json @@ -0,0 +1 @@ +{"segment":{"county":"Henry"},"headers":["report_date","population","vaccinations","total_vaccinations"],"rows":[["2020-12-16",239866,5,5],["2020-12-17",239866,10,15],["2020-12-18",239866,101,116],["2020-12-19",239866,42,158],["2020-12-20",239866,36,194],["2020-12-21",239866,72,266],["2020-12-22",239866,118,384],["2020-12-23",239866,133,517],["2020-12-24",239866,31,548],["2020-12-25",239866,1,549],["2020-12-26",239866,12,561],["2020-12-27",239866,16,577],["2020-12-28",239866,334,911],["2020-12-29",239866,429,1340],["2020-12-30",239866,277,1617],["2020-12-31",239866,157,1774],["2021-01-01",239866,53,1827],["2021-01-02",239866,28,1855],["2021-01-03",239866,33,1888],["2021-01-04",239866,155,2043],["2021-01-05",239866,243,2286],["2021-01-06",239866,276,2562],["2021-01-07",239866,186,2748],["2021-01-08",239866,325,3073],["2021-01-09",239866,148,3221],["2021-01-10",239866,83,3304],["2021-01-11",239866,380,3684],["2021-01-12",239866,808,4492],["2021-01-13",239866,535,5027],["2021-01-14",239866,613,5640],["2021-01-15",239866,872,6512],["2021-01-16",239866,428,6940],["2021-01-17",239866,178,7118],["2021-01-18",239866,637,7755],["2021-01-19",239866,639,8394],["2021-01-20",239866,672,9066],["2021-01-21",239866,556,9622],["2021-01-22",239866,634,10256],["2021-01-23",239866,260,10516],["2021-01-24",239866,88,10604],["2021-01-25",239866,512,11116],["2021-01-26",239866,612,11728],["2021-01-27",239866,604,12332],["2021-01-28",239866,751,13083],["2021-01-29",239866,643,13726],["2021-01-30",239866,193,13919],["2021-01-31",239866,64,13983],["2021-02-01",239866,445,14428],["2021-02-02",239866,516,14944],["2021-02-03",239866,499,15443],["2021-02-04",239866,700,16143],["2021-02-05",239866,805,16948],["2021-02-06",239866,324,17272],["2021-02-07",239866,87,17359],["2021-02-08",239866,456,17815],["2021-02-09",239866,1042,18857],["2021-02-10",239866,728,19585],["2021-02-11",239866,837,20422],["2021-02-12",239866,1041,21463],["2021-02-13",239866,455,21918],["2021-02-14",239866,210,22128],["2021-02-15",239866,676,22804],["2021-02-16",239866,1014,23818],["2021-02-17",239866,923,24741],["2021-02-18",239866,644,25385],["2021-02-19",239866,789,26174],["2021-02-20",239866,283,26457],["2021-02-21",239866,130,26587],["2021-02-22",239866,469,27056],["2021-02-23",239866,1042,28098],["2021-02-24",239866,875,28973],["2021-02-25",239866,1150,30123],["2021-02-26",239866,1232,31355],["2021-02-27",239866,303,31658],["2021-02-28",239866,208,31866],["2021-03-01",239866,674,32540],["2021-03-02",239866,1067,33607],["2021-03-03",239866,1071,34678],["2021-03-04",239866,1191,35869],["2021-03-05",239866,1288,37157],["2021-03-06",239866,382,37539],["2021-03-07",239866,293,37832],["2021-03-08",239866,988,38820],["2021-03-09",239866,1410,40230],["2021-03-10",239866,1415,41645],["2021-03-11",239866,1495,43140],["2021-03-12",239866,1837,44977],["2021-03-13",239866,750,45727],["2021-03-14",239866,523,46250],["2021-03-15",239866,1304,47554],["2021-03-16",239866,1962,49516],["2021-03-17",239866,1613,51129],["2021-03-18",239866,1373,52502],["2021-03-19",239866,1841,54343],["2021-03-20",239866,679,55022],["2021-03-21",239866,490,55512],["2021-03-22",239866,1065,56577],["2021-03-23",239866,1688,58265],["2021-03-24",239866,1713,59978],["2021-03-25",239866,2320,62298],["2021-03-26",239866,1883,64181],["2021-03-27",239866,791,64972],["2021-03-28",239866,633,65605],["2021-03-29",239866,1564,67169],["2021-03-30",239866,2294,69463],["2021-03-31",239866,1983,71446],["2021-04-01",239866,2352,73798],["2021-04-02",239866,1675,75473],["2021-04-03",239866,842,76315],["2021-04-04",239866,481,76796],["2021-04-05",239866,1615,78411],["2021-04-06",239866,2652,81063],["2021-04-07",239866,2155,83218],["2021-04-08",239866,1813,85031],["2021-04-09",239866,2615,87646],["2021-04-10",239866,1189,88835],["2021-04-11",239866,599,89434],["2021-04-12",239866,1622,91056],["2021-04-13",239866,1948,93004],["2021-04-14",239866,1963,94967],["2021-04-15",239866,2367,97334],["2021-04-16",239866,1944,99278],["2021-04-17",239866,698,99976],["2021-04-18",239866,642,100618],["2021-04-19",239866,1520,102138],["2021-04-20",239866,2311,104449],["2021-04-21",239866,1624,106073],["2021-04-22",239866,1628,107701],["2021-04-23",239866,1855,109556],["2021-04-24",239866,809,110365],["2021-04-25",239866,417,110782],["2021-04-26",239866,1246,112028],["2021-04-27",239866,1873,113901],["2021-04-28",239866,1619,115520],["2021-04-29",239866,1395,116915],["2021-04-30",239866,2091,119006],["2021-05-01",239866,1015,120021],["2021-05-02",239866,428,120449],["2021-05-03",239866,998,121447],["2021-05-04",239866,1427,122874],["2021-05-05",239866,1336,124210],["2021-05-06",239866,1135,125345],["2021-05-07",239866,1632,126977],["2021-05-08",239866,558,127535],["2021-05-09",239866,294,127829],["2021-05-10",239866,766,128595],["2021-05-11",239866,1137,129732],["2021-05-12",239866,851,130583],["2021-05-13",239866,875,131458],["2021-05-14",239866,1203,132661],["2021-05-15",239866,782,133443],["2021-05-16",239866,499,133942],["2021-05-17",239866,911,134853],["2021-05-18",239866,1076,135929],["2021-05-19",239866,928,136857],["2021-05-20",239866,871,137728],["2021-05-21",239866,947,138675],["2021-05-22",239866,605,139280],["2021-05-23",239866,363,139643],["2021-05-24",239866,581,140224],["2021-05-25",239866,744,140968],["2021-05-26",239866,683,141651],["2021-05-27",239866,686,142337],["2021-05-28",239866,692,143029],["2021-05-29",239866,363,143392],["2021-05-30",239866,272,143664],["2021-05-31",239866,71,143735],["2021-06-01",239866,781,144516],["2021-06-02",239866,681,145197],["2021-06-03",239866,588,145785],["2021-06-04",239866,728,146513],["2021-06-05",239866,461,146974],["2021-06-06",239866,357,147331],["2021-06-07",239866,625,147956],["2021-06-08",239866,666,148622],["2021-06-09",239866,533,149155],["2021-06-10",239866,522,149677],["2021-06-11",239866,604,150281],["2021-06-12",239866,423,150704],["2021-06-13",239866,213,150917],["2021-06-14",239866,473,151390],["2021-06-15",239866,489,151879],["2021-06-16",239866,440,152319],["2021-06-17",239866,458,152777],["2021-06-18",239866,491,153268],["2021-06-19",239866,292,153560],["2021-06-20",239866,217,153777],["2021-06-21",239866,329,154106],["2021-06-22",239866,444,154550],["2021-06-23",239866,431,154981],["2021-06-24",239866,384,155365],["2021-06-25",239866,483,155848],["2021-06-26",239866,307,156155],["2021-06-27",239866,220,156375],["2021-06-28",239866,345,156720],["2021-06-29",239866,309,157029],["2021-06-30",239866,330,157359],["2021-07-01",239866,347,157706],["2021-07-02",239866,354,158060],["2021-07-03",239866,213,158273],["2021-07-04",239866,29,158302],["2021-07-05",239866,283,158585],["2021-07-06",239866,322,158907],["2021-07-07",239866,318,159225],["2021-07-08",239866,322,159547],["2021-07-09",239866,360,159907],["2021-07-10",239866,273,160180],["2021-07-11",239866,193,160373],["2021-07-12",239866,340,160713],["2021-07-13",239866,300,161013],["2021-07-14",239866,288,161301],["2021-07-15",239866,299,161600],["2021-07-16",239866,381,161981],["2021-07-17",239866,264,162245],["2021-07-18",239866,202,162447],["2021-07-19",239866,343,162790],["2021-07-20",239866,368,163158],["2021-07-21",239866,388,163546],["2021-07-22",239866,435,163981],["2021-07-23",239866,453,164434],["2021-07-24",239866,320,164754],["2021-07-25",239866,205,164959],["2021-07-26",239866,444,165403],["2021-07-27",239866,469,165872],["2021-07-28",239866,452,166324],["2021-07-29",239866,474,166798],["2021-07-30",239866,567,167365],["2021-07-31",239866,422,167787],["2021-08-01",239866,326,168113],["2021-08-02",239866,526,168639],["2021-08-03",239866,548,169187],["2021-08-04",239866,500,169687],["2021-08-05",239866,575,170262],["2021-08-06",239866,687,170949],["2021-08-07",239866,487,171436],["2021-08-08",239866,339,171775],["2021-08-09",239866,572,172347],["2021-08-10",239866,601,172948],["2021-08-11",239866,568,173516],["2021-08-12",239866,549,174065],["2021-08-13",239866,658,174723],["2021-08-14",239866,498,175221],["2021-08-15",239866,358,175579],["2021-08-16",239866,527,176106],["2021-08-17",239866,491,176597],["2021-08-18",239866,507,177104],["2021-08-19",239866,522,177626],["2021-08-20",239866,628,178254],["2021-08-21",239866,478,178732],["2021-08-22",239866,300,179032],["2021-08-23",239866,568,179600],["2021-08-24",239866,549,180149],["2021-08-25",239866,561,180710],["2021-08-26",239866,631,181341],["2021-08-27",239866,722,182063],["2021-08-28",239866,623,182686],["2021-08-29",239866,351,183037],["2021-08-30",239866,612,183649],["2021-08-31",239866,582,184231],["2021-09-01",239866,639,184870],["2021-09-02",239866,559,185429],["2021-09-03",239866,699,186128],["2021-09-04",239866,399,186527],["2021-09-05",239866,340,186867],["2021-09-06",239866,92,186959],["2021-09-07",239866,572,187531],["2021-09-08",239866,553,188084],["2021-09-09",239866,515,188599],["2021-09-10",239866,583,189182],["2021-09-11",239866,426,189608],["2021-09-12",239866,250,189858],["2021-09-13",239866,474,190332],["2021-09-14",239866,411,190743],["2021-09-15",239866,406,191149],["2021-09-16",239866,374,191523],["2021-09-17",239866,483,192006],["2021-09-18",239866,362,192368],["2021-09-19",239866,213,192581],["2021-09-20",239866,407,192988],["2021-09-21",239866,375,193363],["2021-09-22",239866,397,193760],["2021-09-23",239866,419,194179],["2021-09-24",239866,452,194631],["2021-09-25",239866,297,194928],["2021-09-26",239866,240,195168],["2021-09-27",239866,480,195648],["2021-09-28",239866,527,196175],["2021-09-29",239866,489,196664],["2021-09-30",239866,531,197195],["2021-10-01",239866,614,197809],["2021-10-02",239866,350,198159],["2021-10-03",239866,203,198362],["2021-10-04",239866,397,198759],["2021-10-05",239866,440,199199],["2021-10-06",239866,436,199635],["2021-10-07",239866,452,200087],["2021-10-08",239866,481,200568],["2021-10-09",239866,347,200915],["2021-10-10",239866,167,201082],["2021-10-11",239866,414,201496],["2021-10-12",239866,383,201879],["2021-10-13",239866,423,202302],["2021-10-14",239866,418,202720],["2021-10-15",239866,459,203179],["2021-10-16",239866,284,203463],["2021-10-17",239866,155,203618],["2021-10-18",239866,382,204000],["2021-10-19",239866,379,204379],["2021-10-20",239866,379,204758],["2021-10-21",239866,394,205152],["2021-10-22",239866,580,205732],["2021-10-23",239866,433,206165],["2021-10-24",239866,261,206426],["2021-10-25",239866,644,207070],["2021-10-26",239866,574,207644],["2021-10-27",239866,649,208293],["2021-10-28",239866,647,208940],["2021-10-29",239866,740,209680],["2021-10-30",239866,445,210125],["2021-10-31",239866,190,210315],["2021-11-01",239866,536,210851],["2021-11-02",239866,584,211435],["2021-11-03",239866,548,211983],["2021-11-04",239866,540,212523],["2021-11-05",239866,617,213140],["2021-11-06",239866,393,213533],["2021-11-07",239866,274,213807],["2021-11-08",239866,457,214264],["2021-11-09",239866,560,214824],["2021-11-10",239866,505,215329],["2021-11-11",239866,548,215877],["2021-11-12",239866,626,216503],["2021-11-13",239866,441,216944],["2021-11-14",239866,230,217174],["2021-11-15",239866,467,217641],["2021-11-16",239866,574,218215],["2021-11-17",239866,562,218777],["2021-11-18",239866,535,219312],["2021-11-19",239866,750,220062],["2021-11-20",239866,505,220567],["2021-11-21",239866,313,220880],["2021-11-22",239866,661,221541],["2021-11-23",239866,626,222167],["2021-11-24",239866,517,222684],["2021-11-25",239866,2,222686],["2021-11-26",239866,539,223225],["2021-11-27",239866,411,223636],["2021-11-28",239866,281,223917],["2021-11-29",239866,572,224489],["2021-11-30",239866,704,225193],["2021-12-01",239866,757,225950],["2021-12-02",239866,838,226788],["2021-12-03",239866,928,227716],["2021-12-04",239866,593,228309],["2021-12-05",239866,320,228629],["2021-12-06",239866,662,229291],["2021-12-07",239866,645,229936],["2021-12-08",239866,697,230633],["2021-12-09",239866,720,231353],["2021-12-10",239866,787,232140],["2021-12-11",239866,551,232691],["2021-12-12",239866,312,233003],["2021-12-13",239866,580,233583],["2021-12-14",239866,548,234131],["2021-12-15",239866,538,234669],["2021-12-16",239866,535,235204],["2021-12-17",239866,765,235969],["2021-12-18",239866,510,236479],["2021-12-19",239866,323,236802],["2021-12-20",239866,608,237410],["2021-12-21",239866,753,238163],["2021-12-22",239866,733,238896],["2021-12-23",239866,676,239572],["2021-12-24",239866,222,239794],["2021-12-25",239866,2,239796],["2021-12-26",239866,214,240010],["2021-12-27",239866,643,240653],["2021-12-28",239866,637,241290],["2021-12-29",239866,695,241985],["2021-12-30",239866,542,242527],["2021-12-31",239866,319,242846],["2022-01-01",239866,51,242897],["2022-01-02",239866,163,243060],["2022-01-03",239866,196,243256]]} \ No newline at end of file diff --git a/public/data/overall/vaccinations/by-county/Houston.json b/public/data/overall/vaccinations/by-county/Houston.json new file mode 100644 index 000000000..75bfd94d9 --- /dev/null +++ b/public/data/overall/vaccinations/by-county/Houston.json @@ -0,0 +1 @@ +{"segment":{"county":"Houston"},"headers":["report_date","population","vaccinations","total_vaccinations"],"rows":[["2020-12-16",157039,3,3],["2020-12-17",157039,6,9],["2020-12-18",157039,10,19],["2020-12-19",157039,4,23],["2020-12-20",157039,5,28],["2020-12-21",157039,12,40],["2020-12-22",157039,62,102],["2020-12-23",157039,217,319],["2020-12-24",157039,152,471],["2020-12-25",157039,13,484],["2020-12-26",157039,75,559],["2020-12-27",157039,25,584],["2020-12-28",157039,207,791],["2020-12-29",157039,344,1135],["2020-12-30",157039,211,1346],["2020-12-31",157039,102,1448],["2021-01-01",157039,29,1477],["2021-01-02",157039,35,1512],["2021-01-03",157039,29,1541],["2021-01-04",157039,128,1669],["2021-01-05",157039,335,2004],["2021-01-06",157039,214,2218],["2021-01-07",157039,310,2528],["2021-01-08",157039,132,2660],["2021-01-09",157039,44,2704],["2021-01-10",157039,14,2718],["2021-01-11",157039,213,2931],["2021-01-12",157039,474,3405],["2021-01-13",157039,654,4059],["2021-01-14",157039,574,4633],["2021-01-15",157039,410,5043],["2021-01-16",157039,284,5327],["2021-01-17",157039,92,5419],["2021-01-18",157039,564,5983],["2021-01-19",157039,332,6315],["2021-01-20",157039,901,7216],["2021-01-21",157039,402,7618],["2021-01-22",157039,758,8376],["2021-01-23",157039,141,8517],["2021-01-24",157039,59,8576],["2021-01-25",157039,688,9264],["2021-01-26",157039,580,9844],["2021-01-27",157039,1129,10973],["2021-01-28",157039,664,11637],["2021-01-29",157039,919,12556],["2021-01-30",157039,73,12629],["2021-01-31",157039,14,12643],["2021-02-01",157039,536,13179],["2021-02-02",157039,302,13481],["2021-02-03",157039,740,14221],["2021-02-04",157039,403,14624],["2021-02-05",157039,594,15218],["2021-02-06",157039,113,15331],["2021-02-07",157039,37,15368],["2021-02-08",157039,714,16082],["2021-02-09",157039,454,16536],["2021-02-10",157039,841,17377],["2021-02-11",157039,612,17989],["2021-02-12",157039,806,18795],["2021-02-13",157039,260,19055],["2021-02-14",157039,85,19140],["2021-02-15",157039,756,19896],["2021-02-16",157039,484,20380],["2021-02-17",157039,723,21103],["2021-02-18",157039,544,21647],["2021-02-19",157039,706,22353],["2021-02-20",157039,108,22461],["2021-02-21",157039,44,22505],["2021-02-22",157039,266,22771],["2021-02-23",157039,300,23071],["2021-02-24",157039,900,23971],["2021-02-25",157039,801,24772],["2021-02-26",157039,1315,26087],["2021-02-27",157039,112,26199],["2021-02-28",157039,105,26304],["2021-03-01",157039,1377,27681],["2021-03-02",157039,653,28334],["2021-03-03",157039,1111,29445],["2021-03-04",157039,769,30214],["2021-03-05",157039,1022,31236],["2021-03-06",157039,100,31336],["2021-03-07",157039,122,31458],["2021-03-08",157039,1176,32634],["2021-03-09",157039,909,33543],["2021-03-10",157039,1309,34852],["2021-03-11",157039,821,35673],["2021-03-12",157039,1143,36816],["2021-03-13",157039,217,37033],["2021-03-14",157039,169,37202],["2021-03-15",157039,1845,39047],["2021-03-16",157039,1224,40271],["2021-03-17",157039,1441,41712],["2021-03-18",157039,898,42610],["2021-03-19",157039,1568,44178],["2021-03-20",157039,235,44413],["2021-03-21",157039,191,44604],["2021-03-22",157039,1076,45680],["2021-03-23",157039,744,46424],["2021-03-24",157039,1034,47458],["2021-03-25",157039,1187,48645],["2021-03-26",157039,1358,50003],["2021-03-27",157039,331,50334],["2021-03-28",157039,239,50573],["2021-03-29",157039,1434,52007],["2021-03-30",157039,1097,53104],["2021-03-31",157039,1494,54598],["2021-04-01",157039,1359,55957],["2021-04-02",157039,1074,57031],["2021-04-03",157039,419,57450],["2021-04-04",157039,234,57684],["2021-04-05",157039,1707,59391],["2021-04-06",157039,1430,60821],["2021-04-07",157039,1654,62475],["2021-04-08",157039,1214,63689],["2021-04-09",157039,1654,65343],["2021-04-10",157039,360,65703],["2021-04-11",157039,249,65952],["2021-04-12",157039,1701,67653],["2021-04-13",157039,1080,68733],["2021-04-14",157039,1357,70090],["2021-04-15",157039,1089,71179],["2021-04-16",157039,1319,72498],["2021-04-17",157039,298,72796],["2021-04-18",157039,186,72982],["2021-04-19",157039,1135,74117],["2021-04-20",157039,848,74965],["2021-04-21",157039,935,75900],["2021-04-22",157039,972,76872],["2021-04-23",157039,1433,78305],["2021-04-24",157039,341,78646],["2021-04-25",157039,134,78780],["2021-04-26",157039,1083,79863],["2021-04-27",157039,800,80663],["2021-04-28",157039,999,81662],["2021-04-29",157039,760,82422],["2021-04-30",157039,937,83359],["2021-05-01",157039,339,83698],["2021-05-02",157039,136,83834],["2021-05-03",157039,616,84450],["2021-05-04",157039,595,85045],["2021-05-05",157039,828,85873],["2021-05-06",157039,580,86453],["2021-05-07",157039,824,87277],["2021-05-08",157039,219,87496],["2021-05-09",157039,91,87587],["2021-05-10",157039,423,88010],["2021-05-11",157039,465,88475],["2021-05-12",157039,466,88941],["2021-05-13",157039,514,89455],["2021-05-14",157039,649,90104],["2021-05-15",157039,257,90361],["2021-05-16",157039,199,90560],["2021-05-17",157039,609,91169],["2021-05-18",157039,594,91763],["2021-05-19",157039,731,92494],["2021-05-20",157039,578,93072],["2021-05-21",157039,613,93685],["2021-05-22",157039,234,93919],["2021-05-23",157039,140,94059],["2021-05-24",157039,349,94408],["2021-05-25",157039,342,94750],["2021-05-26",157039,388,95138],["2021-05-27",157039,251,95389],["2021-05-28",157039,311,95700],["2021-05-29",157039,157,95857],["2021-05-30",157039,112,95969],["2021-05-31",157039,57,96026],["2021-06-01",157039,332,96358],["2021-06-02",157039,397,96755],["2021-06-03",157039,283,97038],["2021-06-04",157039,377,97415],["2021-06-05",157039,201,97616],["2021-06-06",157039,153,97769],["2021-06-07",157039,412,98181],["2021-06-08",157039,286,98467],["2021-06-09",157039,442,98909],["2021-06-10",157039,364,99273],["2021-06-11",157039,396,99669],["2021-06-12",157039,232,99901],["2021-06-13",157039,103,100004],["2021-06-14",157039,339,100343],["2021-06-15",157039,281,100624],["2021-06-16",157039,257,100881],["2021-06-17",157039,282,101163],["2021-06-18",157039,272,101435],["2021-06-19",157039,146,101581],["2021-06-20",157039,87,101668],["2021-06-21",157039,210,101878],["2021-06-22",157039,209,102087],["2021-06-23",157039,300,102387],["2021-06-24",157039,200,102587],["2021-06-25",157039,255,102842],["2021-06-26",157039,137,102979],["2021-06-27",157039,81,103060],["2021-06-28",157039,218,103278],["2021-06-29",157039,185,103463],["2021-06-30",157039,212,103675],["2021-07-01",157039,199,103874],["2021-07-02",157039,176,104050],["2021-07-03",157039,123,104173],["2021-07-04",157039,25,104198],["2021-07-05",157039,138,104336],["2021-07-06",157039,158,104494],["2021-07-07",157039,213,104707],["2021-07-08",157039,165,104872],["2021-07-09",157039,191,105063],["2021-07-10",157039,113,105176],["2021-07-11",157039,68,105244],["2021-07-12",157039,171,105415],["2021-07-13",157039,136,105551],["2021-07-14",157039,206,105757],["2021-07-15",157039,193,105950],["2021-07-16",157039,206,106156],["2021-07-17",157039,157,106313],["2021-07-18",157039,66,106379],["2021-07-19",157039,199,106578],["2021-07-20",157039,209,106787],["2021-07-21",157039,311,107098],["2021-07-22",157039,257,107355],["2021-07-23",157039,354,107709],["2021-07-24",157039,251,107960],["2021-07-25",157039,124,108084],["2021-07-26",157039,324,108408],["2021-07-27",157039,287,108695],["2021-07-28",157039,362,109057],["2021-07-29",157039,373,109430],["2021-07-30",157039,473,109903],["2021-07-31",157039,268,110171],["2021-08-01",157039,203,110374],["2021-08-02",157039,274,110648],["2021-08-03",157039,302,110950],["2021-08-04",157039,338,111288],["2021-08-05",157039,297,111585],["2021-08-06",157039,439,112024],["2021-08-07",157039,276,112300],["2021-08-08",157039,218,112518],["2021-08-09",157039,383,112901],["2021-08-10",157039,385,113286],["2021-08-11",157039,406,113692],["2021-08-12",157039,424,114116],["2021-08-13",157039,536,114652],["2021-08-14",157039,350,115002],["2021-08-15",157039,232,115234],["2021-08-16",157039,449,115683],["2021-08-17",157039,376,116059],["2021-08-18",157039,451,116510],["2021-08-19",157039,397,116907],["2021-08-20",157039,576,117483],["2021-08-21",157039,347,117830],["2021-08-22",157039,220,118050],["2021-08-23",157039,457,118507],["2021-08-24",157039,449,118956],["2021-08-25",157039,456,119412],["2021-08-26",157039,437,119849],["2021-08-27",157039,594,120443],["2021-08-28",157039,361,120804],["2021-08-29",157039,269,121073],["2021-08-30",157039,479,121552],["2021-08-31",157039,450,122002],["2021-09-01",157039,480,122482],["2021-09-02",157039,407,122889],["2021-09-03",157039,552,123441],["2021-09-04",157039,325,123766],["2021-09-05",157039,199,123965],["2021-09-06",157039,81,124046],["2021-09-07",157039,476,124522],["2021-09-08",157039,407,124929],["2021-09-09",157039,426,125355],["2021-09-10",157039,541,125896],["2021-09-11",157039,276,126172],["2021-09-12",157039,178,126350],["2021-09-13",157039,418,126768],["2021-09-14",157039,320,127088],["2021-09-15",157039,317,127405],["2021-09-16",157039,351,127756],["2021-09-17",157039,404,128160],["2021-09-18",157039,223,128383],["2021-09-19",157039,132,128515],["2021-09-20",157039,295,128810],["2021-09-21",157039,273,129083],["2021-09-22",157039,279,129362],["2021-09-23",157039,270,129632],["2021-09-24",157039,406,130038],["2021-09-25",157039,182,130220],["2021-09-26",157039,112,130332],["2021-09-27",157039,303,130635],["2021-09-28",157039,338,130973],["2021-09-29",157039,435,131408],["2021-09-30",157039,314,131722],["2021-10-01",157039,460,132182],["2021-10-02",157039,142,132324],["2021-10-03",157039,96,132420],["2021-10-04",157039,295,132715],["2021-10-05",157039,353,133068],["2021-10-06",157039,277,133345],["2021-10-07",157039,328,133673],["2021-10-08",157039,360,134033],["2021-10-09",157039,143,134176],["2021-10-10",157039,97,134273],["2021-10-11",157039,261,134534],["2021-10-12",157039,255,134789],["2021-10-13",157039,232,135021],["2021-10-14",157039,259,135280],["2021-10-15",157039,316,135596],["2021-10-16",157039,103,135699],["2021-10-17",157039,76,135775],["2021-10-18",157039,279,136054],["2021-10-19",157039,203,136257],["2021-10-20",157039,218,136475],["2021-10-21",157039,195,136670],["2021-10-22",157039,470,137140],["2021-10-23",157039,294,137434],["2021-10-24",157039,133,137567],["2021-10-25",157039,603,138170],["2021-10-26",157039,588,138758],["2021-10-27",157039,594,139352],["2021-10-28",157039,473,139825],["2021-10-29",157039,642,140467],["2021-10-30",157039,220,140687],["2021-10-31",157039,111,140798],["2021-11-01",157039,478,141276],["2021-11-02",157039,431,141707],["2021-11-03",157039,473,142180],["2021-11-04",157039,445,142625],["2021-11-05",157039,514,143139],["2021-11-06",157039,221,143360],["2021-11-07",157039,136,143496],["2021-11-08",157039,484,143980],["2021-11-09",157039,390,144370],["2021-11-10",157039,460,144830],["2021-11-11",157039,416,145246],["2021-11-12",157039,594,145840],["2021-11-13",157039,230,146070],["2021-11-14",157039,117,146187],["2021-11-15",157039,416,146603],["2021-11-16",157039,462,147065],["2021-11-17",157039,449,147514],["2021-11-18",157039,456,147970],["2021-11-19",157039,493,148463],["2021-11-20",157039,269,148732],["2021-11-21",157039,172,148904],["2021-11-22",157039,540,149444],["2021-11-23",157039,411,149855],["2021-11-24",157039,276,150131],["2021-11-25",157039,1,150132],["2021-11-26",157039,329,150461],["2021-11-27",157039,251,150712],["2021-11-28",157039,150,150862],["2021-11-29",157039,533,151395],["2021-11-30",157039,594,151989],["2021-12-01",157039,588,152577],["2021-12-02",157039,610,153187],["2021-12-03",157039,732,153919],["2021-12-04",157039,366,154285],["2021-12-05",157039,188,154473],["2021-12-06",157039,415,154888],["2021-12-07",157039,459,155347],["2021-12-08",157039,413,155760],["2021-12-09",157039,484,156244],["2021-12-10",157039,528,156772],["2021-12-11",157039,260,157032],["2021-12-12",157039,132,157164],["2021-12-13",157039,309,157473],["2021-12-14",157039,427,157900],["2021-12-15",157039,368,158268],["2021-12-16",157039,367,158635],["2021-12-17",157039,501,159136],["2021-12-18",157039,220,159356],["2021-12-19",157039,142,159498],["2021-12-20",157039,481,159979],["2021-12-21",157039,446,160425],["2021-12-22",157039,459,160884],["2021-12-23",157039,380,161264],["2021-12-24",157039,110,161374],["2021-12-26",157039,135,161509],["2021-12-27",157039,452,161961],["2021-12-28",157039,451,162412],["2021-12-29",157039,464,162876],["2021-12-30",157039,408,163284],["2021-12-31",157039,286,163570],["2022-01-01",157039,20,163590],["2022-01-02",157039,103,163693],["2022-01-03",157039,132,163825]]} \ No newline at end of file diff --git a/public/data/overall/vaccinations/by-county/Irwin.json b/public/data/overall/vaccinations/by-county/Irwin.json new file mode 100644 index 000000000..9912b8e34 --- /dev/null +++ b/public/data/overall/vaccinations/by-county/Irwin.json @@ -0,0 +1 @@ +{"segment":{"county":"Irwin"},"headers":["report_date","population","vaccinations","total_vaccinations"],"rows":[["2020-12-18",9433,1,1],["2020-12-19",9433,1,2],["2020-12-21",9433,1,3],["2020-12-22",9433,6,9],["2020-12-23",9433,12,21],["2020-12-24",9433,1,22],["2020-12-26",9433,1,23],["2020-12-28",9433,38,61],["2020-12-29",9433,20,81],["2020-12-30",9433,15,96],["2020-12-31",9433,14,110],["2021-01-03",9433,1,111],["2021-01-04",9433,29,140],["2021-01-05",9433,20,160],["2021-01-06",9433,26,186],["2021-01-07",9433,20,206],["2021-01-08",9433,25,231],["2021-01-09",9433,1,232],["2021-01-10",9433,4,236],["2021-01-11",9433,46,282],["2021-01-12",9433,64,346],["2021-01-13",9433,71,417],["2021-01-14",9433,89,506],["2021-01-15",9433,52,558],["2021-01-16",9433,3,561],["2021-01-18",9433,63,624],["2021-01-19",9433,53,677],["2021-01-20",9433,53,730],["2021-01-21",9433,46,776],["2021-01-22",9433,53,829],["2021-01-24",9433,5,834],["2021-01-25",9433,33,867],["2021-01-26",9433,84,951],["2021-01-27",9433,70,1021],["2021-01-28",9433,65,1086],["2021-01-29",9433,30,1116],["2021-01-30",9433,1,1117],["2021-01-31",9433,2,1119],["2021-02-01",9433,45,1164],["2021-02-02",9433,26,1190],["2021-02-03",9433,72,1262],["2021-02-04",9433,44,1306],["2021-02-05",9433,39,1345],["2021-02-06",9433,3,1348],["2021-02-08",9433,69,1417],["2021-02-09",9433,68,1485],["2021-02-10",9433,75,1560],["2021-02-11",9433,96,1656],["2021-02-12",9433,46,1702],["2021-02-14",9433,1,1703],["2021-02-15",9433,71,1774],["2021-02-16",9433,67,1841],["2021-02-17",9433,69,1910],["2021-02-18",9433,53,1963],["2021-02-19",9433,51,2014],["2021-02-21",9433,3,2017],["2021-02-22",9433,32,2049],["2021-02-23",9433,81,2130],["2021-02-24",9433,63,2193],["2021-02-25",9433,83,2276],["2021-02-26",9433,20,2296],["2021-02-27",9433,4,2300],["2021-03-01",9433,41,2341],["2021-03-02",9433,20,2361],["2021-03-03",9433,37,2398],["2021-03-04",9433,29,2427],["2021-03-05",9433,15,2442],["2021-03-06",9433,2,2444],["2021-03-07",9433,1,2445],["2021-03-08",9433,34,2479],["2021-03-09",9433,37,2516],["2021-03-10",9433,53,2569],["2021-03-11",9433,98,2667],["2021-03-12",9433,37,2704],["2021-03-13",9433,2,2706],["2021-03-15",9433,54,2760],["2021-03-16",9433,45,2805],["2021-03-17",9433,71,2876],["2021-03-18",9433,67,2943],["2021-03-19",9433,53,2996],["2021-03-20",9433,5,3001],["2021-03-22",9433,31,3032],["2021-03-23",9433,64,3096],["2021-03-24",9433,36,3132],["2021-03-25",9433,72,3204],["2021-03-26",9433,57,3261],["2021-03-27",9433,15,3276],["2021-03-29",9433,42,3318],["2021-03-30",9433,37,3355],["2021-03-31",9433,43,3398],["2021-04-01",9433,38,3436],["2021-04-02",9433,37,3473],["2021-04-03",9433,4,3477],["2021-04-04",9433,2,3479],["2021-04-05",9433,49,3528],["2021-04-06",9433,67,3595],["2021-04-07",9433,53,3648],["2021-04-08",9433,48,3696],["2021-04-09",9433,67,3763],["2021-04-10",9433,2,3765],["2021-04-12",9433,37,3802],["2021-04-13",9433,43,3845],["2021-04-14",9433,45,3890],["2021-04-15",9433,50,3940],["2021-04-16",9433,59,3999],["2021-04-17",9433,12,4011],["2021-04-18",9433,1,4012],["2021-04-19",9433,54,4066],["2021-04-20",9433,25,4091],["2021-04-21",9433,28,4119],["2021-04-22",9433,34,4153],["2021-04-23",9433,54,4207],["2021-04-24",9433,4,4211],["2021-04-26",9433,27,4238],["2021-04-27",9433,29,4267],["2021-04-28",9433,33,4300],["2021-04-29",9433,21,4321],["2021-04-30",9433,24,4345],["2021-05-01",9433,6,4351],["2021-05-02",9433,1,4352],["2021-05-03",9433,36,4388],["2021-05-04",9433,18,4406],["2021-05-05",9433,26,4432],["2021-05-06",9433,20,4452],["2021-05-07",9433,18,4470],["2021-05-08",9433,4,4474],["2021-05-10",9433,16,4490],["2021-05-11",9433,14,4504],["2021-05-12",9433,26,4530],["2021-05-13",9433,6,4536],["2021-05-14",9433,28,4564],["2021-05-15",9433,3,4567],["2021-05-16",9433,2,4569],["2021-05-17",9433,18,4587],["2021-05-18",9433,30,4617],["2021-05-19",9433,13,4630],["2021-05-20",9433,13,4643],["2021-05-21",9433,19,4662],["2021-05-22",9433,7,4669],["2021-05-23",9433,2,4671],["2021-05-24",9433,32,4703],["2021-05-25",9433,9,4712],["2021-05-26",9433,27,4739],["2021-05-27",9433,12,4751],["2021-05-28",9433,11,4762],["2021-05-29",9433,1,4763],["2021-05-31",9433,3,4766],["2021-06-01",9433,8,4774],["2021-06-02",9433,8,4782],["2021-06-03",9433,12,4794],["2021-06-04",9433,27,4821],["2021-06-05",9433,2,4823],["2021-06-06",9433,1,4824],["2021-06-07",9433,15,4839],["2021-06-08",9433,7,4846],["2021-06-09",9433,16,4862],["2021-06-10",9433,9,4871],["2021-06-11",9433,13,4884],["2021-06-12",9433,6,4890],["2021-06-13",9433,1,4891],["2021-06-14",9433,18,4909],["2021-06-15",9433,7,4916],["2021-06-16",9433,12,4928],["2021-06-17",9433,8,4936],["2021-06-18",9433,12,4948],["2021-06-19",9433,7,4955],["2021-06-20",9433,3,4958],["2021-06-21",9433,21,4979],["2021-06-22",9433,8,4987],["2021-06-23",9433,13,5000],["2021-06-24",9433,12,5012],["2021-06-25",9433,14,5026],["2021-06-26",9433,7,5033],["2021-06-28",9433,9,5042],["2021-06-29",9433,4,5046],["2021-06-30",9433,6,5052],["2021-07-01",9433,7,5059],["2021-07-02",9433,7,5066],["2021-07-03",9433,1,5067],["2021-07-05",9433,3,5070],["2021-07-06",9433,14,5084],["2021-07-07",9433,4,5088],["2021-07-08",9433,2,5090],["2021-07-09",9433,9,5099],["2021-07-10",9433,4,5103],["2021-07-11",9433,1,5104],["2021-07-12",9433,15,5119],["2021-07-13",9433,4,5123],["2021-07-14",9433,7,5130],["2021-07-15",9433,10,5140],["2021-07-16",9433,7,5147],["2021-07-17",9433,9,5156],["2021-07-18",9433,5,5161],["2021-07-19",9433,14,5175],["2021-07-20",9433,7,5182],["2021-07-21",9433,19,5201],["2021-07-22",9433,8,5209],["2021-07-23",9433,25,5234],["2021-07-24",9433,27,5261],["2021-07-25",9433,1,5262],["2021-07-26",9433,19,5281],["2021-07-27",9433,29,5310],["2021-07-28",9433,19,5329],["2021-07-29",9433,11,5340],["2021-07-30",9433,40,5380],["2021-07-31",9433,9,5389],["2021-08-01",9433,7,5396],["2021-08-02",9433,29,5425],["2021-08-03",9433,19,5444],["2021-08-04",9433,39,5483],["2021-08-05",9433,33,5516],["2021-08-06",9433,41,5557],["2021-08-07",9433,24,5581],["2021-08-08",9433,3,5584],["2021-08-09",9433,31,5615],["2021-08-10",9433,23,5638],["2021-08-11",9433,28,5666],["2021-08-12",9433,25,5691],["2021-08-13",9433,37,5728],["2021-08-14",9433,22,5750],["2021-08-15",9433,7,5757],["2021-08-16",9433,27,5784],["2021-08-17",9433,41,5825],["2021-08-18",9433,39,5864],["2021-08-19",9433,16,5880],["2021-08-20",9433,53,5933],["2021-08-21",9433,29,5962],["2021-08-22",9433,9,5971],["2021-08-23",9433,31,6002],["2021-08-24",9433,35,6037],["2021-08-25",9433,38,6075],["2021-08-26",9433,25,6100],["2021-08-27",9433,55,6155],["2021-08-28",9433,16,6171],["2021-08-29",9433,15,6186],["2021-08-30",9433,40,6226],["2021-08-31",9433,25,6251],["2021-09-01",9433,21,6272],["2021-09-02",9433,18,6290],["2021-09-03",9433,28,6318],["2021-09-04",9433,12,6330],["2021-09-05",9433,4,6334],["2021-09-06",9433,2,6336],["2021-09-07",9433,23,6359],["2021-09-08",9433,23,6382],["2021-09-09",9433,21,6403],["2021-09-10",9433,48,6451],["2021-09-11",9433,11,6462],["2021-09-12",9433,9,6471],["2021-09-13",9433,23,6494],["2021-09-14",9433,30,6524],["2021-09-15",9433,47,6571],["2021-09-16",9433,17,6588],["2021-09-17",9433,33,6621],["2021-09-18",9433,8,6629],["2021-09-19",9433,3,6632],["2021-09-20",9433,16,6648],["2021-09-21",9433,13,6661],["2021-09-22",9433,13,6674],["2021-09-23",9433,8,6682],["2021-09-24",9433,19,6701],["2021-09-25",9433,2,6703],["2021-09-26",9433,6,6709],["2021-09-27",9433,18,6727],["2021-09-28",9433,17,6744],["2021-09-29",9433,16,6760],["2021-09-30",9433,15,6775],["2021-10-01",9433,12,6787],["2021-10-02",9433,12,6799],["2021-10-03",9433,1,6800],["2021-10-04",9433,5,6805],["2021-10-05",9433,16,6821],["2021-10-06",9433,10,6831],["2021-10-07",9433,8,6839],["2021-10-08",9433,13,6852],["2021-10-09",9433,1,6853],["2021-10-10",9433,1,6854],["2021-10-11",9433,8,6862],["2021-10-12",9433,8,6870],["2021-10-13",9433,15,6885],["2021-10-14",9433,11,6896],["2021-10-15",9433,15,6911],["2021-10-16",9433,2,6913],["2021-10-18",9433,5,6918],["2021-10-19",9433,5,6923],["2021-10-20",9433,14,6937],["2021-10-21",9433,25,6962],["2021-10-22",9433,10,6972],["2021-10-23",9433,10,6982],["2021-10-24",9433,3,6985],["2021-10-25",9433,7,6992],["2021-10-26",9433,9,7001],["2021-10-27",9433,12,7013],["2021-10-28",9433,19,7032],["2021-10-29",9433,10,7042],["2021-10-30",9433,5,7047],["2021-11-01",9433,26,7073],["2021-11-02",9433,12,7085],["2021-11-03",9433,28,7113],["2021-11-04",9433,19,7132],["2021-11-05",9433,10,7142],["2021-11-06",9433,3,7145],["2021-11-07",9433,1,7146],["2021-11-08",9433,63,7209],["2021-11-09",9433,20,7229],["2021-11-10",9433,31,7260],["2021-11-11",9433,6,7266],["2021-11-12",9433,12,7278],["2021-11-13",9433,2,7280],["2021-11-14",9433,6,7286],["2021-11-15",9433,30,7316],["2021-11-16",9433,9,7325],["2021-11-17",9433,20,7345],["2021-11-18",9433,30,7375],["2021-11-19",9433,28,7403],["2021-11-20",9433,7,7410],["2021-11-21",9433,2,7412],["2021-11-22",9433,14,7426],["2021-11-23",9433,27,7453],["2021-11-24",9433,20,7473],["2021-11-26",9433,1,7474],["2021-11-27",9433,2,7476],["2021-11-28",9433,4,7480],["2021-11-29",9433,13,7493],["2021-11-30",9433,28,7521],["2021-12-01",9433,33,7554],["2021-12-02",9433,29,7583],["2021-12-03",9433,40,7623],["2021-12-04",9433,8,7631],["2021-12-05",9433,9,7640],["2021-12-06",9433,24,7664],["2021-12-07",9433,13,7677],["2021-12-08",9433,25,7702],["2021-12-09",9433,13,7715],["2021-12-10",9433,15,7730],["2021-12-11",9433,4,7734],["2021-12-12",9433,2,7736],["2021-12-13",9433,24,7760],["2021-12-14",9433,8,7768],["2021-12-15",9433,40,7808],["2021-12-16",9433,20,7828],["2021-12-17",9433,19,7847],["2021-12-18",9433,3,7850],["2021-12-19",9433,1,7851],["2021-12-20",9433,28,7879],["2021-12-21",9433,22,7901],["2021-12-22",9433,17,7918],["2021-12-23",9433,5,7923],["2021-12-24",9433,3,7926],["2021-12-26",9433,1,7927],["2021-12-27",9433,13,7940],["2021-12-28",9433,19,7959],["2021-12-29",9433,20,7979],["2021-12-30",9433,28,8007],["2021-12-31",9433,5,8012],["2022-01-01",9433,1,8013],["2022-01-02",9433,5,8018],["2022-01-03",9433,6,8024]]} \ No newline at end of file diff --git a/public/data/overall/vaccinations/by-county/Jackson.json b/public/data/overall/vaccinations/by-county/Jackson.json new file mode 100644 index 000000000..82dcc6bcb --- /dev/null +++ b/public/data/overall/vaccinations/by-county/Jackson.json @@ -0,0 +1 @@ +{"segment":{"county":"Jackson"},"headers":["report_date","population","vaccinations","total_vaccinations"],"rows":[["2020-12-16",74700,2,2],["2020-12-17",74700,1,3],["2020-12-18",74700,29,32],["2020-12-19",74700,27,59],["2020-12-20",74700,11,70],["2020-12-21",74700,45,115],["2020-12-22",74700,61,176],["2020-12-23",74700,96,272],["2020-12-24",74700,14,286],["2020-12-25",74700,1,287],["2020-12-26",74700,9,296],["2020-12-27",74700,8,304],["2020-12-28",74700,123,427],["2020-12-29",74700,109,536],["2020-12-30",74700,80,616],["2020-12-31",74700,60,676],["2021-01-01",74700,13,689],["2021-01-02",74700,21,710],["2021-01-03",74700,9,719],["2021-01-04",74700,82,801],["2021-01-05",74700,71,872],["2021-01-06",74700,115,987],["2021-01-07",74700,62,1049],["2021-01-08",74700,96,1145],["2021-01-09",74700,47,1192],["2021-01-10",74700,24,1216],["2021-01-11",74700,136,1352],["2021-01-12",74700,189,1541],["2021-01-13",74700,167,1708],["2021-01-14",74700,328,2036],["2021-01-15",74700,216,2252],["2021-01-16",74700,159,2411],["2021-01-17",74700,71,2482],["2021-01-18",74700,227,2709],["2021-01-19",74700,306,3015],["2021-01-20",74700,338,3353],["2021-01-21",74700,276,3629],["2021-01-22",74700,235,3864],["2021-01-23",74700,191,4055],["2021-01-24",74700,43,4098],["2021-01-25",74700,200,4298],["2021-01-26",74700,327,4625],["2021-01-27",74700,465,5090],["2021-01-28",74700,311,5401],["2021-01-29",74700,427,5828],["2021-01-30",74700,90,5918],["2021-01-31",74700,33,5951],["2021-02-01",74700,183,6134],["2021-02-02",74700,181,6315],["2021-02-03",74700,366,6681],["2021-02-04",74700,380,7061],["2021-02-05",74700,184,7245],["2021-02-06",74700,83,7328],["2021-02-07",74700,11,7339],["2021-02-08",74700,152,7491],["2021-02-09",74700,225,7716],["2021-02-10",74700,362,8078],["2021-02-11",74700,333,8411],["2021-02-12",74700,219,8630],["2021-02-13",74700,251,8881],["2021-02-14",74700,83,8964],["2021-02-15",74700,295,9259],["2021-02-16",74700,284,9543],["2021-02-17",74700,720,10263],["2021-02-18",74700,312,10575],["2021-02-19",74700,409,10984],["2021-02-20",74700,196,11180],["2021-02-21",74700,42,11222],["2021-02-22",74700,183,11405],["2021-02-23",74700,248,11653],["2021-02-24",74700,698,12351],["2021-02-25",74700,453,12804],["2021-02-26",74700,232,13036],["2021-02-27",74700,130,13166],["2021-02-28",74700,65,13231],["2021-03-01",74700,302,13533],["2021-03-02",74700,347,13880],["2021-03-03",74700,685,14565],["2021-03-04",74700,413,14978],["2021-03-05",74700,242,15220],["2021-03-06",74700,116,15336],["2021-03-07",74700,86,15422],["2021-03-08",74700,315,15737],["2021-03-09",74700,313,16050],["2021-03-10",74700,793,16843],["2021-03-11",74700,497,17340],["2021-03-12",74700,325,17665],["2021-03-13",74700,459,18124],["2021-03-14",74700,69,18193],["2021-03-15",74700,376,18569],["2021-03-16",74700,407,18976],["2021-03-17",74700,827,19803],["2021-03-18",74700,461,20264],["2021-03-19",74700,323,20587],["2021-03-20",74700,145,20732],["2021-03-21",74700,96,20828],["2021-03-22",74700,290,21118],["2021-03-23",74700,447,21565],["2021-03-24",74700,504,22069],["2021-03-25",74700,739,22808],["2021-03-26",74700,347,23155],["2021-03-27",74700,213,23368],["2021-03-28",74700,136,23504],["2021-03-29",74700,469,23973],["2021-03-30",74700,576,24549],["2021-03-31",74700,702,25251],["2021-04-01",74700,711,25962],["2021-04-02",74700,466,26428],["2021-04-03",74700,198,26626],["2021-04-04",74700,131,26757],["2021-04-05",74700,468,27225],["2021-04-06",74700,608,27833],["2021-04-07",74700,561,28394],["2021-04-08",74700,556,28950],["2021-04-09",74700,441,29391],["2021-04-10",74700,247,29638],["2021-04-11",74700,156,29794],["2021-04-12",74700,507,30301],["2021-04-13",74700,523,30824],["2021-04-14",74700,585,31409],["2021-04-15",74700,565,31974],["2021-04-16",74700,483,32457],["2021-04-17",74700,181,32638],["2021-04-18",74700,109,32747],["2021-04-19",74700,395,33142],["2021-04-20",74700,625,33767],["2021-04-21",74700,569,34336],["2021-04-22",74700,590,34926],["2021-04-23",74700,497,35423],["2021-04-24",74700,165,35588],["2021-04-25",74700,85,35673],["2021-04-26",74700,406,36079],["2021-04-27",74700,508,36587],["2021-04-28",74700,500,37087],["2021-04-29",74700,484,37571],["2021-04-30",74700,431,38002],["2021-05-01",74700,179,38181],["2021-05-02",74700,88,38269],["2021-05-03",74700,315,38584],["2021-05-04",74700,371,38955],["2021-05-05",74700,373,39328],["2021-05-06",74700,348,39676],["2021-05-07",74700,318,39994],["2021-05-08",74700,162,40156],["2021-05-09",74700,55,40211],["2021-05-10",74700,216,40427],["2021-05-11",74700,263,40690],["2021-05-12",74700,221,40911],["2021-05-13",74700,283,41194],["2021-05-14",74700,299,41493],["2021-05-15",74700,142,41635],["2021-05-16",74700,110,41745],["2021-05-17",74700,222,41967],["2021-05-18",74700,275,42242],["2021-05-19",74700,292,42534],["2021-05-20",74700,253,42787],["2021-05-21",74700,210,42997],["2021-05-22",74700,110,43107],["2021-05-23",74700,83,43190],["2021-05-24",74700,204,43394],["2021-05-25",74700,209,43603],["2021-05-26",74700,179,43782],["2021-05-27",74700,196,43978],["2021-05-28",74700,204,44182],["2021-05-29",74700,84,44266],["2021-05-30",74700,36,44302],["2021-05-31",74700,39,44341],["2021-06-01",74700,217,44558],["2021-06-02",74700,168,44726],["2021-06-03",74700,199,44925],["2021-06-04",74700,198,45123],["2021-06-05",74700,114,45237],["2021-06-06",74700,79,45316],["2021-06-07",74700,167,45483],["2021-06-08",74700,167,45650],["2021-06-09",74700,138,45788],["2021-06-10",74700,140,45928],["2021-06-11",74700,148,46076],["2021-06-12",74700,95,46171],["2021-06-13",74700,58,46229],["2021-06-14",74700,127,46356],["2021-06-15",74700,147,46503],["2021-06-16",74700,92,46595],["2021-06-17",74700,131,46726],["2021-06-18",74700,149,46875],["2021-06-19",74700,69,46944],["2021-06-20",74700,41,46985],["2021-06-21",74700,80,47065],["2021-06-22",74700,111,47176],["2021-06-23",74700,92,47268],["2021-06-24",74700,95,47363],["2021-06-25",74700,125,47488],["2021-06-26",74700,55,47543],["2021-06-27",74700,33,47576],["2021-06-28",74700,94,47670],["2021-06-29",74700,72,47742],["2021-06-30",74700,105,47847],["2021-07-01",74700,94,47941],["2021-07-02",74700,96,48037],["2021-07-03",74700,42,48079],["2021-07-04",74700,5,48084],["2021-07-05",74700,62,48146],["2021-07-06",74700,65,48211],["2021-07-07",74700,65,48276],["2021-07-08",74700,115,48391],["2021-07-09",74700,92,48483],["2021-07-10",74700,68,48551],["2021-07-11",74700,31,48582],["2021-07-12",74700,70,48652],["2021-07-13",74700,60,48712],["2021-07-14",74700,69,48781],["2021-07-15",74700,69,48850],["2021-07-16",74700,92,48942],["2021-07-17",74700,64,49006],["2021-07-18",74700,49,49055],["2021-07-19",74700,88,49143],["2021-07-20",74700,84,49227],["2021-07-21",74700,94,49321],["2021-07-22",74700,100,49421],["2021-07-23",74700,107,49528],["2021-07-24",74700,93,49621],["2021-07-25",74700,51,49672],["2021-07-26",74700,109,49781],["2021-07-27",74700,115,49896],["2021-07-28",74700,80,49976],["2021-07-29",74700,136,50112],["2021-07-30",74700,155,50267],["2021-07-31",74700,99,50366],["2021-08-01",74700,79,50445],["2021-08-02",74700,103,50548],["2021-08-03",74700,112,50660],["2021-08-04",74700,132,50792],["2021-08-05",74700,144,50936],["2021-08-06",74700,196,51132],["2021-08-07",74700,122,51254],["2021-08-08",74700,89,51343],["2021-08-09",74700,154,51497],["2021-08-10",74700,169,51666],["2021-08-11",74700,176,51842],["2021-08-12",74700,163,52005],["2021-08-13",74700,182,52187],["2021-08-14",74700,130,52317],["2021-08-15",74700,96,52413],["2021-08-16",74700,168,52581],["2021-08-17",74700,142,52723],["2021-08-18",74700,156,52879],["2021-08-19",74700,166,53045],["2021-08-20",74700,232,53277],["2021-08-21",74700,138,53415],["2021-08-22",74700,82,53497],["2021-08-23",74700,162,53659],["2021-08-24",74700,180,53839],["2021-08-25",74700,218,54057],["2021-08-26",74700,219,54276],["2021-08-27",74700,293,54569],["2021-08-28",74700,180,54749],["2021-08-29",74700,110,54859],["2021-08-30",74700,203,55062],["2021-08-31",74700,228,55290],["2021-09-01",74700,200,55490],["2021-09-02",74700,209,55699],["2021-09-03",74700,215,55914],["2021-09-04",74700,144,56058],["2021-09-05",74700,87,56145],["2021-09-06",74700,29,56174],["2021-09-07",74700,180,56354],["2021-09-08",74700,187,56541],["2021-09-09",74700,182,56723],["2021-09-10",74700,212,56935],["2021-09-11",74700,123,57058],["2021-09-12",74700,79,57137],["2021-09-13",74700,168,57305],["2021-09-14",74700,151,57456],["2021-09-15",74700,179,57635],["2021-09-16",74700,164,57799],["2021-09-17",74700,222,58021],["2021-09-18",74700,115,58136],["2021-09-19",74700,79,58215],["2021-09-20",74700,146,58361],["2021-09-21",74700,148,58509],["2021-09-22",74700,146,58655],["2021-09-23",74700,139,58794],["2021-09-24",74700,194,58988],["2021-09-25",74700,96,59084],["2021-09-26",74700,70,59154],["2021-09-27",74700,162,59316],["2021-09-28",74700,181,59497],["2021-09-29",74700,210,59707],["2021-09-30",74700,186,59893],["2021-10-01",74700,186,60079],["2021-10-02",74700,90,60169],["2021-10-03",74700,61,60230],["2021-10-04",74700,166,60396],["2021-10-05",74700,113,60509],["2021-10-06",74700,149,60658],["2021-10-07",74700,155,60813],["2021-10-08",74700,172,60985],["2021-10-09",74700,77,61062],["2021-10-10",74700,41,61103],["2021-10-11",74700,96,61199],["2021-10-12",74700,127,61326],["2021-10-13",74700,166,61492],["2021-10-14",74700,162,61654],["2021-10-15",74700,162,61816],["2021-10-16",74700,39,61855],["2021-10-17",74700,33,61888],["2021-10-18",74700,122,62010],["2021-10-19",74700,105,62115],["2021-10-20",74700,113,62228],["2021-10-21",74700,103,62331],["2021-10-22",74700,148,62479],["2021-10-23",74700,104,62583],["2021-10-24",74700,78,62661],["2021-10-25",74700,219,62880],["2021-10-26",74700,220,63100],["2021-10-27",74700,276,63376],["2021-10-28",74700,206,63582],["2021-10-29",74700,255,63837],["2021-10-30",74700,90,63927],["2021-10-31",74700,72,63999],["2021-11-01",74700,188,64187],["2021-11-02",74700,183,64370],["2021-11-03",74700,248,64618],["2021-11-04",74700,176,64794],["2021-11-05",74700,203,64997],["2021-11-06",74700,74,65071],["2021-11-07",74700,54,65125],["2021-11-08",74700,161,65286],["2021-11-09",74700,186,65472],["2021-11-10",74700,199,65671],["2021-11-11",74700,177,65848],["2021-11-12",74700,180,66028],["2021-11-13",74700,81,66109],["2021-11-14",74700,57,66166],["2021-11-15",74700,155,66321],["2021-11-16",74700,169,66490],["2021-11-17",74700,168,66658],["2021-11-18",74700,151,66809],["2021-11-19",74700,255,67064],["2021-11-20",74700,114,67178],["2021-11-21",74700,68,67246],["2021-11-22",74700,176,67422],["2021-11-23",74700,173,67595],["2021-11-24",74700,114,67709],["2021-11-26",74700,140,67849],["2021-11-27",74700,89,67938],["2021-11-28",74700,74,68012],["2021-11-29",74700,181,68193],["2021-11-30",74700,206,68399],["2021-12-01",74700,267,68666],["2021-12-02",74700,247,68913],["2021-12-03",74700,288,69201],["2021-12-04",74700,134,69335],["2021-12-05",74700,87,69422],["2021-12-06",74700,194,69616],["2021-12-07",74700,190,69806],["2021-12-08",74700,238,70044],["2021-12-09",74700,163,70207],["2021-12-10",74700,206,70413],["2021-12-11",74700,106,70519],["2021-12-12",74700,66,70585],["2021-12-13",74700,140,70725],["2021-12-14",74700,126,70851],["2021-12-15",74700,169,71020],["2021-12-16",74700,172,71192],["2021-12-17",74700,209,71401],["2021-12-18",74700,115,71516],["2021-12-19",74700,88,71604],["2021-12-20",74700,211,71815],["2021-12-21",74700,221,72036],["2021-12-22",74700,230,72266],["2021-12-23",74700,140,72406],["2021-12-24",74700,47,72453],["2021-12-26",74700,68,72521],["2021-12-27",74700,164,72685],["2021-12-28",74700,199,72884],["2021-12-29",74700,230,73114],["2021-12-30",74700,141,73255],["2021-12-31",74700,94,73349],["2022-01-01",74700,24,73373],["2022-01-02",74700,54,73427],["2022-01-03",74700,78,73505]]} \ No newline at end of file diff --git a/public/data/overall/vaccinations/by-county/Jasper.json b/public/data/overall/vaccinations/by-county/Jasper.json new file mode 100644 index 000000000..a02306c87 --- /dev/null +++ b/public/data/overall/vaccinations/by-county/Jasper.json @@ -0,0 +1 @@ +{"segment":{"county":"Jasper"},"headers":["report_date","population","vaccinations","total_vaccinations"],"rows":[["2020-12-16",14199,1,1],["2020-12-17",14199,5,6],["2020-12-18",14199,1,7],["2020-12-19",14199,1,8],["2020-12-21",14199,1,9],["2020-12-22",14199,5,14],["2020-12-23",14199,13,27],["2020-12-24",14199,1,28],["2020-12-26",14199,4,32],["2020-12-27",14199,1,33],["2020-12-28",14199,16,49],["2020-12-29",14199,26,75],["2020-12-30",14199,10,85],["2020-12-31",14199,15,100],["2021-01-01",14199,1,101],["2021-01-03",14199,2,103],["2021-01-04",14199,19,122],["2021-01-05",14199,12,134],["2021-01-06",14199,21,155],["2021-01-07",14199,16,171],["2021-01-08",14199,17,188],["2021-01-09",14199,6,194],["2021-01-10",14199,1,195],["2021-01-11",14199,38,233],["2021-01-12",14199,30,263],["2021-01-13",14199,46,309],["2021-01-14",14199,38,347],["2021-01-15",14199,71,418],["2021-01-16",14199,25,443],["2021-01-17",14199,5,448],["2021-01-18",14199,52,500],["2021-01-19",14199,18,518],["2021-01-20",14199,55,573],["2021-01-21",14199,23,596],["2021-01-22",14199,27,623],["2021-01-23",14199,8,631],["2021-01-24",14199,4,635],["2021-01-25",14199,40,675],["2021-01-26",14199,30,705],["2021-01-27",14199,53,758],["2021-01-28",14199,30,788],["2021-01-29",14199,34,822],["2021-01-30",14199,14,836],["2021-02-01",14199,44,880],["2021-02-02",14199,18,898],["2021-02-03",14199,94,992],["2021-02-04",14199,29,1021],["2021-02-05",14199,34,1055],["2021-02-06",14199,15,1070],["2021-02-07",14199,1,1071],["2021-02-08",14199,72,1143],["2021-02-09",14199,85,1228],["2021-02-10",14199,69,1297],["2021-02-11",14199,65,1362],["2021-02-12",14199,88,1450],["2021-02-13",14199,18,1468],["2021-02-14",14199,3,1471],["2021-02-15",14199,74,1545],["2021-02-16",14199,43,1588],["2021-02-17",14199,106,1694],["2021-02-18",14199,41,1735],["2021-02-19",14199,45,1780],["2021-02-20",14199,22,1802],["2021-02-21",14199,2,1804],["2021-02-22",14199,32,1836],["2021-02-23",14199,24,1860],["2021-02-24",14199,61,1921],["2021-02-25",14199,45,1966],["2021-02-26",14199,70,2036],["2021-02-27",14199,9,2045],["2021-02-28",14199,4,2049],["2021-03-01",14199,50,2099],["2021-03-02",14199,68,2167],["2021-03-03",14199,94,2261],["2021-03-04",14199,35,2296],["2021-03-05",14199,53,2349],["2021-03-06",14199,4,2353],["2021-03-07",14199,4,2357],["2021-03-08",14199,91,2448],["2021-03-09",14199,74,2522],["2021-03-10",14199,110,2632],["2021-03-11",14199,78,2710],["2021-03-12",14199,80,2790],["2021-03-13",14199,6,2796],["2021-03-15",14199,70,2866],["2021-03-16",14199,174,3040],["2021-03-17",14199,131,3171],["2021-03-18",14199,51,3222],["2021-03-19",14199,194,3416],["2021-03-20",14199,23,3439],["2021-03-21",14199,3,3442],["2021-03-22",14199,72,3514],["2021-03-23",14199,92,3606],["2021-03-24",14199,117,3723],["2021-03-25",14199,70,3793],["2021-03-26",14199,78,3871],["2021-03-27",14199,9,3880],["2021-03-28",14199,5,3885],["2021-03-29",14199,92,3977],["2021-03-30",14199,118,4095],["2021-03-31",14199,73,4168],["2021-04-01",14199,68,4236],["2021-04-02",14199,58,4294],["2021-04-03",14199,7,4301],["2021-04-04",14199,7,4308],["2021-04-05",14199,108,4416],["2021-04-06",14199,63,4479],["2021-04-07",14199,124,4603],["2021-04-08",14199,64,4667],["2021-04-09",14199,81,4748],["2021-04-10",14199,20,4768],["2021-04-11",14199,7,4775],["2021-04-12",14199,63,4838],["2021-04-13",14199,148,4986],["2021-04-14",14199,100,5086],["2021-04-15",14199,70,5156],["2021-04-16",14199,122,5278],["2021-04-17",14199,15,5293],["2021-04-18",14199,8,5301],["2021-04-19",14199,79,5380],["2021-04-20",14199,99,5479],["2021-04-21",14199,101,5580],["2021-04-22",14199,59,5639],["2021-04-23",14199,67,5706],["2021-04-24",14199,20,5726],["2021-04-25",14199,6,5732],["2021-04-26",14199,74,5806],["2021-04-27",14199,63,5869],["2021-04-28",14199,105,5974],["2021-04-29",14199,52,6026],["2021-04-30",14199,58,6084],["2021-05-01",14199,14,6098],["2021-05-02",14199,8,6106],["2021-05-03",14199,72,6178],["2021-05-04",14199,38,6216],["2021-05-05",14199,46,6262],["2021-05-06",14199,50,6312],["2021-05-07",14199,44,6356],["2021-05-08",14199,15,6371],["2021-05-09",14199,4,6375],["2021-05-10",14199,55,6430],["2021-05-11",14199,32,6462],["2021-05-12",14199,26,6488],["2021-05-13",14199,44,6532],["2021-05-14",14199,43,6575],["2021-05-15",14199,13,6588],["2021-05-16",14199,10,6598],["2021-05-17",14199,36,6634],["2021-05-18",14199,25,6659],["2021-05-19",14199,44,6703],["2021-05-20",14199,36,6739],["2021-05-21",14199,33,6772],["2021-05-22",14199,19,6791],["2021-05-23",14199,4,6795],["2021-05-24",14199,31,6826],["2021-05-25",14199,20,6846],["2021-05-26",14199,18,6864],["2021-05-27",14199,20,6884],["2021-05-28",14199,26,6910],["2021-05-29",14199,11,6921],["2021-05-30",14199,7,6928],["2021-05-31",14199,5,6933],["2021-06-01",14199,17,6950],["2021-06-02",14199,39,6989],["2021-06-03",14199,28,7017],["2021-06-04",14199,32,7049],["2021-06-05",14199,18,7067],["2021-06-06",14199,4,7071],["2021-06-07",14199,30,7101],["2021-06-08",14199,29,7130],["2021-06-09",14199,16,7146],["2021-06-10",14199,12,7158],["2021-06-11",14199,31,7189],["2021-06-12",14199,14,7203],["2021-06-13",14199,3,7206],["2021-06-14",14199,16,7222],["2021-06-15",14199,12,7234],["2021-06-16",14199,18,7252],["2021-06-17",14199,12,7264],["2021-06-18",14199,28,7292],["2021-06-19",14199,15,7307],["2021-06-20",14199,1,7308],["2021-06-21",14199,10,7318],["2021-06-22",14199,12,7330],["2021-06-23",14199,25,7355],["2021-06-24",14199,9,7364],["2021-06-25",14199,11,7375],["2021-06-26",14199,4,7379],["2021-06-27",14199,3,7382],["2021-06-28",14199,14,7396],["2021-06-29",14199,13,7409],["2021-06-30",14199,17,7426],["2021-07-01",14199,7,7433],["2021-07-02",14199,19,7452],["2021-07-03",14199,7,7459],["2021-07-04",14199,1,7460],["2021-07-05",14199,5,7465],["2021-07-06",14199,9,7474],["2021-07-07",14199,17,7491],["2021-07-08",14199,9,7500],["2021-07-09",14199,15,7515],["2021-07-10",14199,7,7522],["2021-07-11",14199,1,7523],["2021-07-12",14199,11,7534],["2021-07-13",14199,14,7548],["2021-07-14",14199,12,7560],["2021-07-15",14199,11,7571],["2021-07-16",14199,13,7584],["2021-07-17",14199,12,7596],["2021-07-18",14199,3,7599],["2021-07-19",14199,10,7609],["2021-07-20",14199,4,7613],["2021-07-21",14199,26,7639],["2021-07-22",14199,9,7648],["2021-07-23",14199,27,7675],["2021-07-24",14199,9,7684],["2021-07-25",14199,7,7691],["2021-07-26",14199,16,7707],["2021-07-27",14199,22,7729],["2021-07-28",14199,17,7746],["2021-07-29",14199,14,7760],["2021-07-30",14199,33,7793],["2021-07-31",14199,6,7799],["2021-08-01",14199,11,7810],["2021-08-02",14199,24,7834],["2021-08-03",14199,15,7849],["2021-08-04",14199,31,7880],["2021-08-05",14199,11,7891],["2021-08-06",14199,30,7921],["2021-08-07",14199,27,7948],["2021-08-08",14199,11,7959],["2021-08-09",14199,32,7991],["2021-08-10",14199,19,8010],["2021-08-11",14199,51,8061],["2021-08-12",14199,20,8081],["2021-08-13",14199,43,8124],["2021-08-14",14199,28,8152],["2021-08-15",14199,10,8162],["2021-08-16",14199,34,8196],["2021-08-17",14199,15,8211],["2021-08-18",14199,35,8246],["2021-08-19",14199,30,8276],["2021-08-20",14199,66,8342],["2021-08-21",14199,20,8362],["2021-08-22",14199,13,8375],["2021-08-23",14199,34,8409],["2021-08-24",14199,18,8427],["2021-08-25",14199,47,8474],["2021-08-26",14199,41,8515],["2021-08-27",14199,69,8584],["2021-08-28",14199,31,8615],["2021-08-29",14199,11,8626],["2021-08-30",14199,50,8676],["2021-08-31",14199,33,8709],["2021-09-01",14199,70,8779],["2021-09-02",14199,29,8808],["2021-09-03",14199,35,8843],["2021-09-04",14199,20,8863],["2021-09-05",14199,12,8875],["2021-09-06",14199,5,8880],["2021-09-07",14199,24,8904],["2021-09-08",14199,48,8952],["2021-09-09",14199,23,8975],["2021-09-10",14199,58,9033],["2021-09-11",14199,39,9072],["2021-09-12",14199,8,9080],["2021-09-13",14199,40,9120],["2021-09-14",14199,21,9141],["2021-09-15",14199,39,9180],["2021-09-16",14199,25,9205],["2021-09-17",14199,30,9235],["2021-09-18",14199,34,9269],["2021-09-19",14199,9,9278],["2021-09-20",14199,39,9317],["2021-09-21",14199,15,9332],["2021-09-22",14199,42,9374],["2021-09-23",14199,22,9396],["2021-09-24",14199,27,9423],["2021-09-25",14199,11,9434],["2021-09-26",14199,7,9441],["2021-09-27",14199,19,9460],["2021-09-28",14199,16,9476],["2021-09-29",14199,35,9511],["2021-09-30",14199,19,9530],["2021-10-01",14199,27,9557],["2021-10-02",14199,20,9577],["2021-10-03",14199,7,9584],["2021-10-04",14199,23,9607],["2021-10-05",14199,12,9619],["2021-10-06",14199,30,9649],["2021-10-07",14199,17,9666],["2021-10-08",14199,13,9679],["2021-10-09",14199,14,9693],["2021-10-10",14199,4,9697],["2021-10-11",14199,4,9701],["2021-10-12",14199,16,9717],["2021-10-13",14199,15,9732],["2021-10-14",14199,18,9750],["2021-10-15",14199,24,9774],["2021-10-16",14199,7,9781],["2021-10-17",14199,3,9784],["2021-10-18",14199,10,9794],["2021-10-19",14199,8,9802],["2021-10-20",14199,27,9829],["2021-10-21",14199,11,9840],["2021-10-22",14199,17,9857],["2021-10-23",14199,10,9867],["2021-10-24",14199,7,9874],["2021-10-25",14199,22,9896],["2021-10-26",14199,35,9931],["2021-10-27",14199,44,9975],["2021-10-28",14199,30,10005],["2021-10-29",14199,35,10040],["2021-10-30",14199,12,10052],["2021-10-31",14199,5,10057],["2021-11-01",14199,56,10113],["2021-11-02",14199,18,10131],["2021-11-03",14199,53,10184],["2021-11-04",14199,35,10219],["2021-11-05",14199,28,10247],["2021-11-06",14199,5,10252],["2021-11-07",14199,3,10255],["2021-11-08",14199,63,10318],["2021-11-09",14199,16,10334],["2021-11-10",14199,25,10359],["2021-11-11",14199,15,10374],["2021-11-12",14199,71,10445],["2021-11-13",14199,13,10458],["2021-11-14",14199,6,10464],["2021-11-15",14199,54,10518],["2021-11-16",14199,12,10530],["2021-11-17",14199,39,10569],["2021-11-18",14199,17,10586],["2021-11-19",14199,51,10637],["2021-11-20",14199,19,10656],["2021-11-21",14199,8,10664],["2021-11-22",14199,76,10740],["2021-11-23",14199,15,10755],["2021-11-24",14199,22,10777],["2021-11-26",14199,8,10785],["2021-11-27",14199,5,10790],["2021-11-28",14199,5,10795],["2021-11-29",14199,58,10853],["2021-11-30",14199,20,10873],["2021-12-01",14199,48,10921],["2021-12-02",14199,13,10934],["2021-12-03",14199,58,10992],["2021-12-04",14199,15,11007],["2021-12-05",14199,7,11014],["2021-12-06",14199,76,11090],["2021-12-07",14199,9,11099],["2021-12-08",14199,53,11152],["2021-12-09",14199,13,11165],["2021-12-10",14199,36,11201],["2021-12-11",14199,13,11214],["2021-12-12",14199,9,11223],["2021-12-13",14199,69,11292],["2021-12-14",14199,15,11307],["2021-12-15",14199,28,11335],["2021-12-16",14199,6,11341],["2021-12-17",14199,38,11379],["2021-12-18",14199,11,11390],["2021-12-19",14199,8,11398],["2021-12-20",14199,63,11461],["2021-12-21",14199,20,11481],["2021-12-22",14199,26,11507],["2021-12-23",14199,19,11526],["2021-12-24",14199,2,11528],["2021-12-26",14199,9,11537],["2021-12-27",14199,81,11618],["2021-12-28",14199,14,11632],["2021-12-29",14199,20,11652],["2021-12-30",14199,20,11672],["2021-12-31",14199,5,11677],["2022-01-01",14199,3,11680],["2022-01-02",14199,1,11681],["2022-01-03",14199,26,11707]]} \ No newline at end of file diff --git a/public/data/overall/vaccinations/by-county/Jeff Davis.json b/public/data/overall/vaccinations/by-county/Jeff Davis.json new file mode 100644 index 000000000..1cb5a6ad6 --- /dev/null +++ b/public/data/overall/vaccinations/by-county/Jeff Davis.json @@ -0,0 +1 @@ +{"segment":{"county":"Jeff Davis"},"headers":["report_date","population","vaccinations","total_vaccinations"],"rows":[["2020-12-17",15148,1,1],["2020-12-18",15148,2,3],["2020-12-19",15148,1,4],["2020-12-21",15148,1,5],["2020-12-22",15148,4,9],["2020-12-23",15148,8,17],["2020-12-24",15148,11,28],["2020-12-26",15148,1,29],["2020-12-28",15148,19,48],["2020-12-29",15148,9,57],["2020-12-30",15148,27,84],["2020-12-31",15148,4,88],["2021-01-01",15148,2,90],["2021-01-02",15148,1,91],["2021-01-03",15148,2,93],["2021-01-04",15148,27,120],["2021-01-05",15148,8,128],["2021-01-06",15148,39,167],["2021-01-07",15148,10,177],["2021-01-08",15148,8,185],["2021-01-10",15148,5,190],["2021-01-11",15148,51,241],["2021-01-12",15148,12,253],["2021-01-13",15148,102,355],["2021-01-14",15148,60,415],["2021-01-15",15148,25,440],["2021-01-16",15148,4,444],["2021-01-17",15148,1,445],["2021-01-18",15148,125,570],["2021-01-19",15148,46,616],["2021-01-20",15148,63,679],["2021-01-21",15148,86,765],["2021-01-22",15148,19,784],["2021-01-23",15148,13,797],["2021-01-24",15148,1,798],["2021-01-25",15148,136,934],["2021-01-26",15148,30,964],["2021-01-27",15148,49,1013],["2021-01-28",15148,75,1088],["2021-01-29",15148,17,1105],["2021-01-30",15148,1,1106],["2021-01-31",15148,5,1111],["2021-02-01",15148,85,1196],["2021-02-02",15148,54,1250],["2021-02-03",15148,41,1291],["2021-02-04",15148,38,1329],["2021-02-05",15148,16,1345],["2021-02-06",15148,15,1360],["2021-02-07",15148,2,1362],["2021-02-08",15148,110,1472],["2021-02-09",15148,62,1534],["2021-02-10",15148,117,1651],["2021-02-11",15148,93,1744],["2021-02-12",15148,40,1784],["2021-02-13",15148,19,1803],["2021-02-14",15148,9,1812],["2021-02-15",15148,174,1986],["2021-02-16",15148,105,2091],["2021-02-17",15148,64,2155],["2021-02-18",15148,52,2207],["2021-02-19",15148,60,2267],["2021-02-20",15148,24,2291],["2021-02-21",15148,2,2293],["2021-02-22",15148,113,2406],["2021-02-23",15148,64,2470],["2021-02-24",15148,51,2521],["2021-02-25",15148,76,2597],["2021-02-26",15148,15,2612],["2021-02-27",15148,9,2621],["2021-02-28",15148,2,2623],["2021-03-01",15148,93,2716],["2021-03-02",15148,75,2791],["2021-03-03",15148,62,2853],["2021-03-04",15148,36,2889],["2021-03-05",15148,13,2902],["2021-03-06",15148,3,2905],["2021-03-07",15148,8,2913],["2021-03-08",15148,56,2969],["2021-03-09",15148,86,3055],["2021-03-10",15148,48,3103],["2021-03-11",15148,73,3176],["2021-03-12",15148,39,3215],["2021-03-13",15148,13,3228],["2021-03-14",15148,9,3237],["2021-03-15",15148,91,3328],["2021-03-16",15148,89,3417],["2021-03-17",15148,123,3540],["2021-03-18",15148,75,3615],["2021-03-19",15148,47,3662],["2021-03-20",15148,18,3680],["2021-03-21",15148,11,3691],["2021-03-22",15148,58,3749],["2021-03-23",15148,81,3830],["2021-03-24",15148,35,3865],["2021-03-25",15148,87,3952],["2021-03-26",15148,21,3973],["2021-03-27",15148,29,4002],["2021-03-28",15148,7,4009],["2021-03-29",15148,76,4085],["2021-03-30",15148,54,4139],["2021-03-31",15148,29,4168],["2021-04-01",15148,59,4227],["2021-04-02",15148,29,4256],["2021-04-03",15148,10,4266],["2021-04-04",15148,11,4277],["2021-04-05",15148,51,4328],["2021-04-06",15148,123,4451],["2021-04-07",15148,35,4486],["2021-04-08",15148,80,4566],["2021-04-09",15148,35,4601],["2021-04-10",15148,10,4611],["2021-04-11",15148,3,4614],["2021-04-12",15148,61,4675],["2021-04-13",15148,56,4731],["2021-04-14",15148,40,4771],["2021-04-15",15148,116,4887],["2021-04-16",15148,67,4954],["2021-04-17",15148,13,4967],["2021-04-18",15148,11,4978],["2021-04-19",15148,67,5045],["2021-04-20",15148,52,5097],["2021-04-21",15148,35,5132],["2021-04-22",15148,59,5191],["2021-04-23",15148,23,5214],["2021-04-24",15148,18,5232],["2021-04-25",15148,7,5239],["2021-04-26",15148,56,5295],["2021-04-27",15148,27,5322],["2021-04-28",15148,26,5348],["2021-04-29",15148,41,5389],["2021-04-30",15148,27,5416],["2021-05-01",15148,8,5424],["2021-05-02",15148,7,5431],["2021-05-03",15148,48,5479],["2021-05-04",15148,36,5515],["2021-05-05",15148,30,5545],["2021-05-06",15148,35,5580],["2021-05-07",15148,21,5601],["2021-05-08",15148,12,5613],["2021-05-09",15148,1,5614],["2021-05-10",15148,33,5647],["2021-05-11",15148,33,5680],["2021-05-12",15148,26,5706],["2021-05-13",15148,24,5730],["2021-05-14",15148,25,5755],["2021-05-15",15148,10,5765],["2021-05-16",15148,2,5767],["2021-05-17",15148,41,5808],["2021-05-18",15148,42,5850],["2021-05-19",15148,35,5885],["2021-05-20",15148,18,5903],["2021-05-21",15148,8,5911],["2021-05-22",15148,15,5926],["2021-05-23",15148,12,5938],["2021-05-24",15148,29,5967],["2021-05-25",15148,29,5996],["2021-05-26",15148,27,6023],["2021-05-27",15148,20,6043],["2021-05-28",15148,8,6051],["2021-05-29",15148,5,6056],["2021-05-30",15148,7,6063],["2021-05-31",15148,8,6071],["2021-06-01",15148,18,6089],["2021-06-02",15148,17,6106],["2021-06-03",15148,32,6138],["2021-06-04",15148,14,6152],["2021-06-05",15148,7,6159],["2021-06-06",15148,4,6163],["2021-06-07",15148,34,6197],["2021-06-08",15148,9,6206],["2021-06-09",15148,17,6223],["2021-06-10",15148,13,6236],["2021-06-11",15148,10,6246],["2021-06-12",15148,16,6262],["2021-06-13",15148,3,6265],["2021-06-14",15148,15,6280],["2021-06-15",15148,16,6296],["2021-06-16",15148,11,6307],["2021-06-17",15148,18,6325],["2021-06-18",15148,16,6341],["2021-06-19",15148,15,6356],["2021-06-20",15148,10,6366],["2021-06-21",15148,15,6381],["2021-06-22",15148,12,6393],["2021-06-23",15148,10,6403],["2021-06-24",15148,14,6417],["2021-06-25",15148,14,6431],["2021-06-26",15148,12,6443],["2021-06-27",15148,6,6449],["2021-06-28",15148,10,6459],["2021-06-29",15148,6,6465],["2021-06-30",15148,13,6478],["2021-07-01",15148,19,6497],["2021-07-02",15148,3,6500],["2021-07-03",15148,4,6504],["2021-07-04",15148,1,6505],["2021-07-05",15148,8,6513],["2021-07-06",15148,11,6524],["2021-07-07",15148,7,6531],["2021-07-08",15148,9,6540],["2021-07-09",15148,6,6546],["2021-07-10",15148,9,6555],["2021-07-11",15148,5,6560],["2021-07-12",15148,21,6581],["2021-07-13",15148,8,6589],["2021-07-14",15148,19,6608],["2021-07-15",15148,14,6622],["2021-07-16",15148,11,6633],["2021-07-17",15148,6,6639],["2021-07-18",15148,7,6646],["2021-07-19",15148,29,6675],["2021-07-20",15148,15,6690],["2021-07-21",15148,25,6715],["2021-07-22",15148,15,6730],["2021-07-23",15148,16,6746],["2021-07-24",15148,21,6767],["2021-07-25",15148,4,6771],["2021-07-26",15148,25,6796],["2021-07-27",15148,43,6839],["2021-07-28",15148,33,6872],["2021-07-29",15148,35,6907],["2021-07-30",15148,67,6974],["2021-07-31",15148,18,6992],["2021-08-01",15148,8,7000],["2021-08-02",15148,52,7052],["2021-08-03",15148,31,7083],["2021-08-04",15148,37,7120],["2021-08-05",15148,51,7171],["2021-08-06",15148,49,7220],["2021-08-07",15148,27,7247],["2021-08-08",15148,18,7265],["2021-08-09",15148,43,7308],["2021-08-10",15148,41,7349],["2021-08-11",15148,58,7407],["2021-08-12",15148,38,7445],["2021-08-13",15148,56,7501],["2021-08-14",15148,20,7521],["2021-08-15",15148,13,7534],["2021-08-16",15148,54,7588],["2021-08-17",15148,55,7643],["2021-08-18",15148,45,7688],["2021-08-19",15148,44,7732],["2021-08-20",15148,48,7780],["2021-08-21",15148,25,7805],["2021-08-22",15148,19,7824],["2021-08-23",15148,37,7861],["2021-08-24",15148,48,7909],["2021-08-25",15148,38,7947],["2021-08-26",15148,66,8013],["2021-08-27",15148,73,8086],["2021-08-28",15148,24,8110],["2021-08-29",15148,18,8128],["2021-08-30",15148,44,8172],["2021-08-31",15148,55,8227],["2021-09-01",15148,57,8284],["2021-09-02",15148,38,8322],["2021-09-03",15148,58,8380],["2021-09-04",15148,24,8404],["2021-09-05",15148,17,8421],["2021-09-06",15148,10,8431],["2021-09-07",15148,42,8473],["2021-09-08",15148,60,8533],["2021-09-09",15148,34,8567],["2021-09-10",15148,69,8636],["2021-09-11",15148,24,8660],["2021-09-12",15148,20,8680],["2021-09-13",15148,29,8709],["2021-09-14",15148,37,8746],["2021-09-15",15148,38,8784],["2021-09-16",15148,27,8811],["2021-09-17",15148,51,8862],["2021-09-18",15148,14,8876],["2021-09-19",15148,14,8890],["2021-09-20",15148,22,8912],["2021-09-21",15148,30,8942],["2021-09-22",15148,24,8966],["2021-09-23",15148,29,8995],["2021-09-24",15148,35,9030],["2021-09-25",15148,12,9042],["2021-09-26",15148,10,9052],["2021-09-27",15148,13,9065],["2021-09-28",15148,30,9095],["2021-09-29",15148,18,9113],["2021-09-30",15148,16,9129],["2021-10-01",15148,27,9156],["2021-10-02",15148,7,9163],["2021-10-03",15148,7,9170],["2021-10-04",15148,21,9191],["2021-10-05",15148,11,9202],["2021-10-06",15148,11,9213],["2021-10-07",15148,10,9223],["2021-10-08",15148,15,9238],["2021-10-09",15148,5,9243],["2021-10-10",15148,8,9251],["2021-10-11",15148,6,9257],["2021-10-12",15148,17,9274],["2021-10-13",15148,13,9287],["2021-10-14",15148,5,9292],["2021-10-15",15148,20,9312],["2021-10-16",15148,3,9315],["2021-10-17",15148,1,9316],["2021-10-18",15148,6,9322],["2021-10-19",15148,9,9331],["2021-10-20",15148,9,9340],["2021-10-21",15148,9,9349],["2021-10-22",15148,17,9366],["2021-10-23",15148,4,9370],["2021-10-24",15148,4,9374],["2021-10-25",15148,31,9405],["2021-10-26",15148,29,9434],["2021-10-27",15148,44,9478],["2021-10-28",15148,20,9498],["2021-10-29",15148,36,9534],["2021-10-30",15148,11,9545],["2021-10-31",15148,4,9549],["2021-11-01",15148,29,9578],["2021-11-02",15148,64,9642],["2021-11-03",15148,38,9680],["2021-11-04",15148,38,9718],["2021-11-05",15148,30,9748],["2021-11-06",15148,9,9757],["2021-11-07",15148,3,9760],["2021-11-08",15148,26,9786],["2021-11-09",15148,37,9823],["2021-11-10",15148,46,9869],["2021-11-11",15148,14,9883],["2021-11-12",15148,30,9913],["2021-11-13",15148,4,9917],["2021-11-14",15148,4,9921],["2021-11-15",15148,26,9947],["2021-11-16",15148,30,9977],["2021-11-17",15148,29,10006],["2021-11-18",15148,26,10032],["2021-11-19",15148,44,10076],["2021-11-20",15148,9,10085],["2021-11-21",15148,8,10093],["2021-11-22",15148,27,10120],["2021-11-23",15148,37,10157],["2021-11-24",15148,20,10177],["2021-11-26",15148,8,10185],["2021-11-27",15148,8,10193],["2021-11-28",15148,3,10196],["2021-11-29",15148,28,10224],["2021-11-30",15148,67,10291],["2021-12-01",15148,45,10336],["2021-12-02",15148,34,10370],["2021-12-03",15148,38,10408],["2021-12-04",15148,14,10422],["2021-12-05",15148,7,10429],["2021-12-06",15148,21,10450],["2021-12-07",15148,22,10472],["2021-12-08",15148,20,10492],["2021-12-09",15148,14,10506],["2021-12-10",15148,27,10533],["2021-12-11",15148,13,10546],["2021-12-12",15148,4,10550],["2021-12-13",15148,27,10577],["2021-12-14",15148,27,10604],["2021-12-15",15148,25,10629],["2021-12-16",15148,28,10657],["2021-12-17",15148,20,10677],["2021-12-18",15148,9,10686],["2021-12-20",15148,24,10710],["2021-12-21",15148,33,10743],["2021-12-22",15148,25,10768],["2021-12-23",15148,17,10785],["2021-12-24",15148,7,10792],["2021-12-27",15148,25,10817],["2021-12-28",15148,30,10847],["2021-12-29",15148,24,10871],["2021-12-30",15148,34,10905],["2021-12-31",15148,17,10922],["2022-01-01",15148,6,10928],["2022-01-02",15148,3,10931],["2022-01-03",15148,16,10947]]} \ No newline at end of file diff --git a/public/data/overall/vaccinations/by-county/Jefferson.json b/public/data/overall/vaccinations/by-county/Jefferson.json new file mode 100644 index 000000000..986f21343 --- /dev/null +++ b/public/data/overall/vaccinations/by-county/Jefferson.json @@ -0,0 +1 @@ +{"segment":{"county":"Jefferson"},"headers":["report_date","population","vaccinations","total_vaccinations"],"rows":[["2020-12-17",15313,3,3],["2020-12-18",15313,4,7],["2020-12-19",15313,3,10],["2020-12-22",15313,15,25],["2020-12-23",15313,17,42],["2020-12-24",15313,3,45],["2020-12-28",15313,8,53],["2020-12-29",15313,29,82],["2020-12-30",15313,13,95],["2020-12-31",15313,14,109],["2021-01-01",15313,2,111],["2021-01-02",15313,4,115],["2021-01-03",15313,1,116],["2021-01-04",15313,9,125],["2021-01-05",15313,16,141],["2021-01-06",15313,29,170],["2021-01-07",15313,136,306],["2021-01-08",15313,31,337],["2021-01-09",15313,8,345],["2021-01-11",15313,33,378],["2021-01-12",15313,66,444],["2021-01-13",15313,177,621],["2021-01-14",15313,79,700],["2021-01-15",15313,30,730],["2021-01-16",15313,5,735],["2021-01-17",15313,1,736],["2021-01-18",15313,20,756],["2021-01-19",15313,60,816],["2021-01-20",15313,222,1038],["2021-01-21",15313,226,1264],["2021-01-22",15313,9,1273],["2021-01-23",15313,6,1279],["2021-01-24",15313,2,1281],["2021-01-25",15313,40,1321],["2021-01-26",15313,52,1373],["2021-01-27",15313,128,1501],["2021-01-28",15313,66,1567],["2021-01-29",15313,21,1588],["2021-01-30",15313,11,1599],["2021-01-31",15313,5,1604],["2021-02-01",15313,51,1655],["2021-02-02",15313,85,1740],["2021-02-03",15313,195,1935],["2021-02-04",15313,295,2230],["2021-02-05",15313,43,2273],["2021-02-06",15313,6,2279],["2021-02-07",15313,2,2281],["2021-02-08",15313,42,2323],["2021-02-09",15313,67,2390],["2021-02-10",15313,215,2605],["2021-02-11",15313,114,2719],["2021-02-12",15313,37,2756],["2021-02-13",15313,8,2764],["2021-02-14",15313,3,2767],["2021-02-15",15313,38,2805],["2021-02-16",15313,67,2872],["2021-02-17",15313,275,3147],["2021-02-18",15313,245,3392],["2021-02-19",15313,23,3415],["2021-02-20",15313,10,3425],["2021-02-22",15313,35,3460],["2021-02-23",15313,55,3515],["2021-02-24",15313,111,3626],["2021-02-25",15313,77,3703],["2021-02-26",15313,56,3759],["2021-02-27",15313,10,3769],["2021-02-28",15313,1,3770],["2021-03-01",15313,58,3828],["2021-03-02",15313,66,3894],["2021-03-03",15313,249,4143],["2021-03-04",15313,178,4321],["2021-03-05",15313,22,4343],["2021-03-06",15313,19,4362],["2021-03-07",15313,3,4365],["2021-03-08",15313,48,4413],["2021-03-09",15313,48,4461],["2021-03-10",15313,210,4671],["2021-03-11",15313,134,4805],["2021-03-12",15313,70,4875],["2021-03-13",15313,13,4888],["2021-03-14",15313,9,4897],["2021-03-15",15313,70,4967],["2021-03-16",15313,50,5017],["2021-03-17",15313,217,5234],["2021-03-18",15313,186,5420],["2021-03-19",15313,124,5544],["2021-03-20",15313,18,5562],["2021-03-21",15313,8,5570],["2021-03-22",15313,94,5664],["2021-03-23",15313,57,5721],["2021-03-24",15313,148,5869],["2021-03-25",15313,180,6049],["2021-03-26",15313,41,6090],["2021-03-27",15313,26,6116],["2021-03-28",15313,14,6130],["2021-03-29",15313,63,6193],["2021-03-30",15313,90,6283],["2021-03-31",15313,189,6472],["2021-04-01",15313,202,6674],["2021-04-02",15313,41,6715],["2021-04-03",15313,80,6795],["2021-04-04",15313,14,6809],["2021-04-05",15313,78,6887],["2021-04-06",15313,100,6987],["2021-04-07",15313,248,7235],["2021-04-08",15313,76,7311],["2021-04-09",15313,75,7386],["2021-04-10",15313,19,7405],["2021-04-11",15313,6,7411],["2021-04-12",15313,116,7527],["2021-04-13",15313,85,7612],["2021-04-14",15313,198,7810],["2021-04-15",15313,215,8025],["2021-04-16",15313,104,8129],["2021-04-17",15313,25,8154],["2021-04-18",15313,7,8161],["2021-04-19",15313,98,8259],["2021-04-20",15313,78,8337],["2021-04-21",15313,253,8590],["2021-04-22",15313,168,8758],["2021-04-23",15313,46,8804],["2021-04-24",15313,22,8826],["2021-04-25",15313,9,8835],["2021-04-26",15313,77,8912],["2021-04-27",15313,99,9011],["2021-04-28",15313,161,9172],["2021-04-29",15313,87,9259],["2021-04-30",15313,70,9329],["2021-05-01",15313,32,9361],["2021-05-02",15313,8,9369],["2021-05-03",15313,48,9417],["2021-05-04",15313,62,9479],["2021-05-05",15313,118,9597],["2021-05-06",15313,98,9695],["2021-05-07",15313,55,9750],["2021-05-08",15313,57,9807],["2021-05-09",15313,4,9811],["2021-05-10",15313,76,9887],["2021-05-11",15313,44,9931],["2021-05-12",15313,82,10013],["2021-05-13",15313,87,10100],["2021-05-14",15313,28,10128],["2021-05-15",15313,26,10154],["2021-05-16",15313,7,10161],["2021-05-17",15313,59,10220],["2021-05-18",15313,60,10280],["2021-05-19",15313,143,10423],["2021-05-20",15313,72,10495],["2021-05-21",15313,42,10537],["2021-05-22",15313,11,10548],["2021-05-23",15313,9,10557],["2021-05-24",15313,33,10590],["2021-05-25",15313,46,10636],["2021-05-26",15313,67,10703],["2021-05-27",15313,67,10770],["2021-05-28",15313,32,10802],["2021-05-29",15313,12,10814],["2021-05-30",15313,6,10820],["2021-05-31",15313,3,10823],["2021-06-01",15313,36,10859],["2021-06-02",15313,51,10910],["2021-06-03",15313,71,10981],["2021-06-04",15313,21,11002],["2021-06-05",15313,67,11069],["2021-06-06",15313,6,11075],["2021-06-07",15313,54,11129],["2021-06-08",15313,19,11148],["2021-06-09",15313,71,11219],["2021-06-10",15313,36,11255],["2021-06-11",15313,33,11288],["2021-06-12",15313,17,11305],["2021-06-13",15313,10,11315],["2021-06-14",15313,51,11366],["2021-06-15",15313,23,11389],["2021-06-16",15313,37,11426],["2021-06-17",15313,52,11478],["2021-06-18",15313,13,11491],["2021-06-19",15313,3,11494],["2021-06-20",15313,1,11495],["2021-06-21",15313,17,11512],["2021-06-22",15313,19,11531],["2021-06-23",15313,27,11558],["2021-06-24",15313,36,11594],["2021-06-25",15313,7,11601],["2021-06-26",15313,25,11626],["2021-06-27",15313,3,11629],["2021-06-28",15313,23,11652],["2021-06-29",15313,27,11679],["2021-06-30",15313,30,11709],["2021-07-01",15313,17,11726],["2021-07-02",15313,16,11742],["2021-07-03",15313,9,11751],["2021-07-04",15313,2,11753],["2021-07-05",15313,17,11770],["2021-07-06",15313,7,11777],["2021-07-07",15313,41,11818],["2021-07-08",15313,44,11862],["2021-07-09",15313,15,11877],["2021-07-10",15313,28,11905],["2021-07-11",15313,2,11907],["2021-07-12",15313,20,11927],["2021-07-13",15313,13,11940],["2021-07-14",15313,20,11960],["2021-07-15",15313,36,11996],["2021-07-16",15313,17,12013],["2021-07-17",15313,8,12021],["2021-07-18",15313,3,12024],["2021-07-19",15313,26,12050],["2021-07-20",15313,22,12072],["2021-07-21",15313,48,12120],["2021-07-22",15313,30,12150],["2021-07-23",15313,21,12171],["2021-07-24",15313,13,12184],["2021-07-25",15313,7,12191],["2021-07-26",15313,36,12227],["2021-07-27",15313,46,12273],["2021-07-28",15313,56,12329],["2021-07-29",15313,86,12415],["2021-07-30",15313,55,12470],["2021-07-31",15313,26,12496],["2021-08-01",15313,4,12500],["2021-08-02",15313,60,12560],["2021-08-03",15313,29,12589],["2021-08-04",15313,56,12645],["2021-08-05",15313,86,12731],["2021-08-06",15313,45,12776],["2021-08-07",15313,45,12821],["2021-08-08",15313,7,12828],["2021-08-09",15313,67,12895],["2021-08-10",15313,43,12938],["2021-08-11",15313,53,12991],["2021-08-12",15313,112,13103],["2021-08-13",15313,61,13164],["2021-08-14",15313,20,13184],["2021-08-15",15313,13,13197],["2021-08-16",15313,67,13264],["2021-08-17",15313,41,13305],["2021-08-18",15313,55,13360],["2021-08-19",15313,97,13457],["2021-08-20",15313,58,13515],["2021-08-21",15313,18,13533],["2021-08-22",15313,8,13541],["2021-08-23",15313,64,13605],["2021-08-24",15313,52,13657],["2021-08-25",15313,86,13743],["2021-08-26",15313,125,13868],["2021-08-27",15313,82,13950],["2021-08-28",15313,33,13983],["2021-08-29",15313,12,13995],["2021-08-30",15313,89,14084],["2021-08-31",15313,84,14168],["2021-09-01",15313,73,14241],["2021-09-02",15313,90,14331],["2021-09-03",15313,85,14416],["2021-09-04",15313,17,14433],["2021-09-05",15313,8,14441],["2021-09-06",15313,5,14446],["2021-09-07",15313,53,14499],["2021-09-08",15313,85,14584],["2021-09-09",15313,81,14665],["2021-09-10",15313,77,14742],["2021-09-11",15313,33,14775],["2021-09-12",15313,10,14785],["2021-09-13",15313,56,14841],["2021-09-14",15313,49,14890],["2021-09-15",15313,67,14957],["2021-09-16",15313,65,15022],["2021-09-17",15313,69,15091],["2021-09-18",15313,12,15103],["2021-09-19",15313,6,15109],["2021-09-20",15313,64,15173],["2021-09-21",15313,63,15236],["2021-09-22",15313,62,15298],["2021-09-23",15313,73,15371],["2021-09-24",15313,46,15417],["2021-09-25",15313,17,15434],["2021-09-26",15313,9,15443],["2021-09-27",15313,43,15486],["2021-09-28",15313,48,15534],["2021-09-29",15313,70,15604],["2021-09-30",15313,50,15654],["2021-10-01",15313,54,15708],["2021-10-02",15313,16,15724],["2021-10-03",15313,3,15727],["2021-10-04",15313,33,15760],["2021-10-05",15313,21,15781],["2021-10-06",15313,57,15838],["2021-10-07",15313,36,15874],["2021-10-08",15313,54,15928],["2021-10-09",15313,10,15938],["2021-10-10",15313,8,15946],["2021-10-11",15313,17,15963],["2021-10-12",15313,16,15979],["2021-10-13",15313,37,16016],["2021-10-14",15313,30,16046],["2021-10-15",15313,36,16082],["2021-10-16",15313,5,16087],["2021-10-17",15313,7,16094],["2021-10-18",15313,27,16121],["2021-10-19",15313,30,16151],["2021-10-20",15313,41,16192],["2021-10-21",15313,27,16219],["2021-10-22",15313,43,16262],["2021-10-23",15313,8,16270],["2021-10-24",15313,4,16274],["2021-10-25",15313,66,16340],["2021-10-26",15313,103,16443],["2021-10-27",15313,142,16585],["2021-10-28",15313,38,16623],["2021-10-29",15313,71,16694],["2021-10-30",15313,8,16702],["2021-10-31",15313,7,16709],["2021-11-01",15313,88,16797],["2021-11-02",15313,80,16877],["2021-11-03",15313,135,17012],["2021-11-04",15313,47,17059],["2021-11-05",15313,39,17098],["2021-11-06",15313,12,17110],["2021-11-07",15313,11,17121],["2021-11-08",15313,65,17186],["2021-11-09",15313,70,17256],["2021-11-10",15313,133,17389],["2021-11-11",15313,34,17423],["2021-11-12",15313,54,17477],["2021-11-13",15313,5,17482],["2021-11-14",15313,9,17491],["2021-11-15",15313,83,17574],["2021-11-16",15313,72,17646],["2021-11-17",15313,120,17766],["2021-11-18",15313,51,17817],["2021-11-19",15313,84,17901],["2021-11-20",15313,11,17912],["2021-11-21",15313,7,17919],["2021-11-22",15313,90,18009],["2021-11-23",15313,64,18073],["2021-11-24",15313,51,18124],["2021-11-26",15313,9,18133],["2021-11-27",15313,7,18140],["2021-11-28",15313,7,18147],["2021-11-29",15313,69,18216],["2021-11-30",15313,78,18294],["2021-12-01",15313,169,18463],["2021-12-02",15313,45,18508],["2021-12-03",15313,67,18575],["2021-12-04",15313,9,18584],["2021-12-05",15313,7,18591],["2021-12-06",15313,49,18640],["2021-12-07",15313,72,18712],["2021-12-08",15313,146,18858],["2021-12-09",15313,49,18907],["2021-12-10",15313,69,18976],["2021-12-11",15313,8,18984],["2021-12-12",15313,5,18989],["2021-12-13",15313,51,19040],["2021-12-14",15313,55,19095],["2021-12-15",15313,120,19215],["2021-12-16",15313,30,19245],["2021-12-17",15313,68,19313],["2021-12-18",15313,9,19322],["2021-12-19",15313,2,19324],["2021-12-20",15313,60,19384],["2021-12-21",15313,54,19438],["2021-12-22",15313,81,19519],["2021-12-23",15313,42,19561],["2021-12-24",15313,1,19562],["2021-12-25",15313,1,19563],["2021-12-26",15313,4,19567],["2021-12-27",15313,28,19595],["2021-12-28",15313,42,19637],["2021-12-29",15313,114,19751],["2021-12-30",15313,41,19792],["2021-12-31",15313,22,19814],["2022-01-01",15313,1,19815],["2022-01-02",15313,7,19822],["2022-01-03",15313,21,19843]]} \ No newline at end of file diff --git a/public/data/overall/vaccinations/by-county/Jenkins.json b/public/data/overall/vaccinations/by-county/Jenkins.json new file mode 100644 index 000000000..46ae71c6a --- /dev/null +++ b/public/data/overall/vaccinations/by-county/Jenkins.json @@ -0,0 +1 @@ +{"segment":{"county":"Jenkins"},"headers":["report_date","population","vaccinations","total_vaccinations"],"rows":[["2020-12-17",8576,1,1],["2020-12-19",8576,1,2],["2020-12-20",8576,1,3],["2020-12-22",8576,2,5],["2020-12-23",8576,8,13],["2020-12-28",8576,12,25],["2020-12-29",8576,14,39],["2020-12-30",8576,20,59],["2020-12-31",8576,6,65],["2021-01-01",8576,1,66],["2021-01-04",8576,9,75],["2021-01-05",8576,21,96],["2021-01-06",8576,30,126],["2021-01-07",8576,21,147],["2021-01-08",8576,19,166],["2021-01-09",8576,1,167],["2021-01-10",8576,1,168],["2021-01-11",8576,45,213],["2021-01-12",8576,29,242],["2021-01-13",8576,73,315],["2021-01-14",8576,45,360],["2021-01-15",8576,25,385],["2021-01-16",8576,3,388],["2021-01-17",8576,2,390],["2021-01-18",8576,9,399],["2021-01-19",8576,21,420],["2021-01-20",8576,20,440],["2021-01-21",8576,90,530],["2021-01-22",8576,7,537],["2021-01-23",8576,6,543],["2021-01-25",8576,40,583],["2021-01-26",8576,109,692],["2021-01-27",8576,47,739],["2021-01-28",8576,31,770],["2021-01-29",8576,12,782],["2021-02-01",8576,59,841],["2021-02-02",8576,33,874],["2021-02-03",8576,64,938],["2021-02-04",8576,101,1039],["2021-02-05",8576,50,1089],["2021-02-06",8576,7,1096],["2021-02-08",8576,38,1134],["2021-02-09",8576,42,1176],["2021-02-10",8576,75,1251],["2021-02-11",8576,64,1315],["2021-02-12",8576,34,1349],["2021-02-13",8576,8,1357],["2021-02-14",8576,1,1358],["2021-02-15",8576,8,1366],["2021-02-16",8576,35,1401],["2021-02-17",8576,36,1437],["2021-02-18",8576,132,1569],["2021-02-19",8576,28,1597],["2021-02-20",8576,3,1600],["2021-02-21",8576,2,1602],["2021-02-22",8576,75,1677],["2021-02-23",8576,109,1786],["2021-02-24",8576,55,1841],["2021-02-25",8576,13,1854],["2021-02-26",8576,20,1874],["2021-02-27",8576,1,1875],["2021-02-28",8576,3,1878],["2021-03-01",8576,12,1890],["2021-03-02",8576,34,1924],["2021-03-03",8576,49,1973],["2021-03-04",8576,86,2059],["2021-03-05",8576,26,2085],["2021-03-06",8576,11,2096],["2021-03-07",8576,1,2097],["2021-03-08",8576,29,2126],["2021-03-09",8576,28,2154],["2021-03-10",8576,45,2199],["2021-03-11",8576,74,2273],["2021-03-12",8576,39,2312],["2021-03-13",8576,6,2318],["2021-03-14",8576,2,2320],["2021-03-15",8576,12,2332],["2021-03-16",8576,36,2368],["2021-03-17",8576,62,2430],["2021-03-18",8576,57,2487],["2021-03-19",8576,39,2526],["2021-03-20",8576,3,2529],["2021-03-21",8576,2,2531],["2021-03-22",8576,45,2576],["2021-03-23",8576,82,2658],["2021-03-24",8576,70,2728],["2021-03-25",8576,50,2778],["2021-03-26",8576,30,2808],["2021-03-27",8576,12,2820],["2021-03-28",8576,4,2824],["2021-03-29",8576,12,2836],["2021-03-30",8576,25,2861],["2021-03-31",8576,51,2912],["2021-04-01",8576,42,2954],["2021-04-02",8576,35,2989],["2021-04-03",8576,7,2996],["2021-04-05",8576,13,3009],["2021-04-06",8576,29,3038],["2021-04-07",8576,52,3090],["2021-04-08",8576,60,3150],["2021-04-09",8576,39,3189],["2021-04-10",8576,8,3197],["2021-04-11",8576,1,3198],["2021-04-12",8576,15,3213],["2021-04-13",8576,39,3252],["2021-04-14",8576,41,3293],["2021-04-15",8576,39,3332],["2021-04-16",8576,44,3376],["2021-04-17",8576,7,3383],["2021-04-18",8576,1,3384],["2021-04-19",8576,33,3417],["2021-04-20",8576,67,3484],["2021-04-21",8576,56,3540],["2021-04-22",8576,48,3588],["2021-04-23",8576,33,3621],["2021-04-24",8576,11,3632],["2021-04-25",8576,1,3633],["2021-04-26",8576,9,3642],["2021-04-27",8576,19,3661],["2021-04-28",8576,37,3698],["2021-04-29",8576,41,3739],["2021-04-30",8576,36,3775],["2021-05-01",8576,12,3787],["2021-05-02",8576,2,3789],["2021-05-03",8576,11,3800],["2021-05-04",8576,22,3822],["2021-05-05",8576,28,3850],["2021-05-06",8576,29,3879],["2021-05-07",8576,27,3906],["2021-05-08",8576,2,3908],["2021-05-09",8576,1,3909],["2021-05-10",8576,9,3918],["2021-05-11",8576,21,3939],["2021-05-12",8576,18,3957],["2021-05-13",8576,23,3980],["2021-05-14",8576,14,3994],["2021-05-15",8576,3,3997],["2021-05-16",8576,2,3999],["2021-05-17",8576,10,4009],["2021-05-18",8576,30,4039],["2021-05-19",8576,25,4064],["2021-05-20",8576,35,4099],["2021-05-21",8576,18,4117],["2021-05-22",8576,10,4127],["2021-05-23",8576,2,4129],["2021-05-24",8576,10,4139],["2021-05-25",8576,30,4169],["2021-05-26",8576,20,4189],["2021-05-27",8576,11,4200],["2021-05-28",8576,15,4215],["2021-05-29",8576,4,4219],["2021-05-30",8576,2,4221],["2021-06-01",8576,16,4237],["2021-06-02",8576,13,4250],["2021-06-03",8576,14,4264],["2021-06-04",8576,15,4279],["2021-06-05",8576,10,4289],["2021-06-06",8576,2,4291],["2021-06-07",8576,4,4295],["2021-06-08",8576,14,4309],["2021-06-09",8576,13,4322],["2021-06-10",8576,15,4337],["2021-06-11",8576,14,4351],["2021-06-12",8576,9,4360],["2021-06-13",8576,2,4362],["2021-06-14",8576,4,4366],["2021-06-15",8576,15,4381],["2021-06-16",8576,11,4392],["2021-06-17",8576,8,4400],["2021-06-18",8576,13,4413],["2021-06-19",8576,8,4421],["2021-06-20",8576,1,4422],["2021-06-21",8576,3,4425],["2021-06-22",8576,14,4439],["2021-06-23",8576,16,4455],["2021-06-24",8576,11,4466],["2021-06-25",8576,14,4480],["2021-06-26",8576,3,4483],["2021-06-28",8576,4,4487],["2021-06-29",8576,11,4498],["2021-06-30",8576,8,4506],["2021-07-01",8576,8,4514],["2021-07-02",8576,8,4522],["2021-07-03",8576,3,4525],["2021-07-06",8576,10,4535],["2021-07-07",8576,6,4541],["2021-07-08",8576,1,4542],["2021-07-09",8576,3,4545],["2021-07-10",8576,8,4553],["2021-07-12",8576,4,4557],["2021-07-13",8576,15,4572],["2021-07-14",8576,12,4584],["2021-07-15",8576,11,4595],["2021-07-16",8576,10,4605],["2021-07-19",8576,7,4612],["2021-07-20",8576,26,4638],["2021-07-21",8576,17,4655],["2021-07-22",8576,14,4669],["2021-07-23",8576,30,4699],["2021-07-24",8576,2,4701],["2021-07-25",8576,6,4707],["2021-07-26",8576,8,4715],["2021-07-27",8576,19,4734],["2021-07-28",8576,18,4752],["2021-07-29",8576,28,4780],["2021-07-30",8576,17,4797],["2021-07-31",8576,7,4804],["2021-08-01",8576,2,4806],["2021-08-02",8576,13,4819],["2021-08-03",8576,16,4835],["2021-08-04",8576,19,4854],["2021-08-05",8576,14,4868],["2021-08-06",8576,15,4883],["2021-08-07",8576,11,4894],["2021-08-08",8576,3,4897],["2021-08-09",8576,14,4911],["2021-08-10",8576,54,4965],["2021-08-11",8576,35,5000],["2021-08-12",8576,54,5054],["2021-08-13",8576,31,5085],["2021-08-14",8576,11,5096],["2021-08-15",8576,6,5102],["2021-08-16",8576,17,5119],["2021-08-17",8576,40,5159],["2021-08-18",8576,33,5192],["2021-08-19",8576,27,5219],["2021-08-20",8576,43,5262],["2021-08-21",8576,11,5273],["2021-08-22",8576,6,5279],["2021-08-23",8576,24,5303],["2021-08-24",8576,50,5353],["2021-08-25",8576,22,5375],["2021-08-26",8576,36,5411],["2021-08-27",8576,31,5442],["2021-08-28",8576,13,5455],["2021-08-29",8576,6,5461],["2021-08-30",8576,34,5495],["2021-08-31",8576,37,5532],["2021-09-01",8576,27,5559],["2021-09-02",8576,33,5592],["2021-09-03",8576,34,5626],["2021-09-04",8576,9,5635],["2021-09-05",8576,9,5644],["2021-09-06",8576,6,5650],["2021-09-07",8576,40,5690],["2021-09-08",8576,28,5718],["2021-09-09",8576,32,5750],["2021-09-10",8576,64,5814],["2021-09-11",8576,7,5821],["2021-09-12",8576,4,5825],["2021-09-13",8576,25,5850],["2021-09-14",8576,37,5887],["2021-09-15",8576,44,5931],["2021-09-16",8576,22,5953],["2021-09-17",8576,39,5992],["2021-09-18",8576,4,5996],["2021-09-19",8576,2,5998],["2021-09-20",8576,31,6029],["2021-09-21",8576,41,6070],["2021-09-22",8576,11,6081],["2021-09-23",8576,23,6104],["2021-09-24",8576,30,6134],["2021-09-25",8576,6,6140],["2021-09-26",8576,2,6142],["2021-09-27",8576,19,6161],["2021-09-28",8576,15,6176],["2021-09-29",8576,22,6198],["2021-09-30",8576,12,6210],["2021-10-01",8576,22,6232],["2021-10-02",8576,8,6240],["2021-10-03",8576,1,6241],["2021-10-04",8576,14,6255],["2021-10-05",8576,29,6284],["2021-10-06",8576,18,6302],["2021-10-07",8576,18,6320],["2021-10-08",8576,20,6340],["2021-10-09",8576,5,6345],["2021-10-11",8576,12,6357],["2021-10-12",8576,17,6374],["2021-10-13",8576,6,6380],["2021-10-14",8576,11,6391],["2021-10-15",8576,12,6403],["2021-10-16",8576,5,6408],["2021-10-17",8576,2,6410],["2021-10-18",8576,6,6416],["2021-10-19",8576,5,6421],["2021-10-20",8576,12,6433],["2021-10-21",8576,16,6449],["2021-10-22",8576,20,6469],["2021-10-23",8576,9,6478],["2021-10-25",8576,35,6513],["2021-10-26",8576,45,6558],["2021-10-27",8576,42,6600],["2021-10-28",8576,33,6633],["2021-10-29",8576,37,6670],["2021-10-30",8576,6,6676],["2021-10-31",8576,1,6677],["2021-11-01",8576,35,6712],["2021-11-02",8576,33,6745],["2021-11-03",8576,36,6781],["2021-11-04",8576,16,6797],["2021-11-05",8576,24,6821],["2021-11-06",8576,21,6842],["2021-11-07",8576,3,6845],["2021-11-08",8576,45,6890],["2021-11-09",8576,19,6909],["2021-11-10",8576,30,6939],["2021-11-11",8576,37,6976],["2021-11-12",8576,33,7009],["2021-11-13",8576,8,7017],["2021-11-14",8576,2,7019],["2021-11-15",8576,28,7047],["2021-11-16",8576,29,7076],["2021-11-17",8576,28,7104],["2021-11-18",8576,30,7134],["2021-11-19",8576,26,7160],["2021-11-20",8576,7,7167],["2021-11-21",8576,2,7169],["2021-11-22",8576,29,7198],["2021-11-23",8576,22,7220],["2021-11-24",8576,13,7233],["2021-11-26",8576,8,7241],["2021-11-27",8576,4,7245],["2021-11-28",8576,3,7248],["2021-11-29",8576,44,7292],["2021-11-30",8576,21,7313],["2021-12-01",8576,30,7343],["2021-12-02",8576,26,7369],["2021-12-03",8576,36,7405],["2021-12-04",8576,11,7416],["2021-12-05",8576,3,7419],["2021-12-06",8576,26,7445],["2021-12-07",8576,27,7472],["2021-12-08",8576,28,7500],["2021-12-09",8576,38,7538],["2021-12-10",8576,29,7567],["2021-12-11",8576,3,7570],["2021-12-12",8576,2,7572],["2021-12-13",8576,22,7594],["2021-12-14",8576,14,7608],["2021-12-15",8576,12,7620],["2021-12-16",8576,21,7641],["2021-12-17",8576,22,7663],["2021-12-18",8576,3,7666],["2021-12-19",8576,1,7667],["2021-12-20",8576,26,7693],["2021-12-21",8576,33,7726],["2021-12-22",8576,22,7748],["2021-12-23",8576,13,7761],["2021-12-24",8576,4,7765],["2021-12-26",8576,3,7768],["2021-12-27",8576,12,7780],["2021-12-28",8576,46,7826],["2021-12-29",8576,17,7843],["2021-12-30",8576,19,7862],["2021-12-31",8576,8,7870],["2022-01-01",8576,1,7871],["2022-01-02",8576,1,7872],["2022-01-03",8576,21,7893]]} \ No newline at end of file diff --git a/public/data/overall/vaccinations/by-county/Johnson.json b/public/data/overall/vaccinations/by-county/Johnson.json new file mode 100644 index 000000000..03c5b6500 --- /dev/null +++ b/public/data/overall/vaccinations/by-county/Johnson.json @@ -0,0 +1 @@ +{"segment":{"county":"Johnson"},"headers":["report_date","population","vaccinations","total_vaccinations"],"rows":[["2020-12-17",9661,1,1],["2020-12-18",9661,1,2],["2020-12-19",9661,1,3],["2020-12-21",9661,1,4],["2020-12-22",9661,9,13],["2020-12-23",9661,6,19],["2020-12-24",9661,4,23],["2020-12-26",9661,1,24],["2020-12-28",9661,29,53],["2020-12-29",9661,8,61],["2020-12-30",9661,7,68],["2020-12-31",9661,7,75],["2021-01-02",9661,2,77],["2021-01-04",9661,10,87],["2021-01-05",9661,30,117],["2021-01-06",9661,10,127],["2021-01-07",9661,30,157],["2021-01-08",9661,32,189],["2021-01-09",9661,1,190],["2021-01-11",9661,10,200],["2021-01-12",9661,35,235],["2021-01-13",9661,36,271],["2021-01-14",9661,27,298],["2021-01-15",9661,143,441],["2021-01-16",9661,2,443],["2021-01-17",9661,3,446],["2021-01-18",9661,21,467],["2021-01-19",9661,58,525],["2021-01-20",9661,67,592],["2021-01-21",9661,27,619],["2021-01-22",9661,126,745],["2021-01-23",9661,2,747],["2021-01-24",9661,1,748],["2021-01-25",9661,45,793],["2021-01-26",9661,26,819],["2021-01-27",9661,17,836],["2021-01-28",9661,12,848],["2021-01-29",9661,146,994],["2021-01-30",9661,3,997],["2021-02-01",9661,5,1002],["2021-02-02",9661,25,1027],["2021-02-03",9661,35,1062],["2021-02-04",9661,32,1094],["2021-02-05",9661,113,1207],["2021-02-06",9661,2,1209],["2021-02-07",9661,6,1215],["2021-02-08",9661,23,1238],["2021-02-09",9661,125,1363],["2021-02-10",9661,47,1410],["2021-02-11",9661,21,1431],["2021-02-12",9661,176,1607],["2021-02-13",9661,3,1610],["2021-02-14",9661,9,1619],["2021-02-15",9661,33,1652],["2021-02-16",9661,13,1665],["2021-02-17",9661,151,1816],["2021-02-18",9661,15,1831],["2021-02-19",9661,5,1836],["2021-02-22",9661,5,1841],["2021-02-23",9661,20,1861],["2021-02-24",9661,161,2022],["2021-02-25",9661,38,2060],["2021-02-26",9661,6,2066],["2021-02-27",9661,1,2067],["2021-03-01",9661,5,2072],["2021-03-02",9661,27,2099],["2021-03-03",9661,135,2234],["2021-03-04",9661,16,2250],["2021-03-05",9661,15,2265],["2021-03-08",9661,13,2278],["2021-03-09",9661,56,2334],["2021-03-10",9661,71,2405],["2021-03-11",9661,17,2422],["2021-03-12",9661,41,2463],["2021-03-13",9661,2,2465],["2021-03-15",9661,25,2490],["2021-03-16",9661,18,2508],["2021-03-17",9661,193,2701],["2021-03-18",9661,23,2724],["2021-03-19",9661,28,2752],["2021-03-20",9661,4,2756],["2021-03-21",9661,1,2757],["2021-03-22",9661,9,2766],["2021-03-23",9661,15,2781],["2021-03-24",9661,93,2874],["2021-03-25",9661,29,2903],["2021-03-26",9661,29,2932],["2021-03-27",9661,11,2943],["2021-03-28",9661,2,2945],["2021-03-29",9661,6,2951],["2021-03-30",9661,31,2982],["2021-03-31",9661,68,3050],["2021-04-01",9661,30,3080],["2021-04-02",9661,25,3105],["2021-04-03",9661,5,3110],["2021-04-05",9661,19,3129],["2021-04-06",9661,63,3192],["2021-04-07",9661,84,3276],["2021-04-08",9661,17,3293],["2021-04-09",9661,81,3374],["2021-04-10",9661,7,3381],["2021-04-11",9661,1,3382],["2021-04-12",9661,7,3389],["2021-04-13",9661,23,3412],["2021-04-14",9661,114,3526],["2021-04-15",9661,20,3546],["2021-04-16",9661,27,3573],["2021-04-17",9661,9,3582],["2021-04-18",9661,1,3583],["2021-04-19",9661,6,3589],["2021-04-20",9661,18,3607],["2021-04-21",9661,108,3715],["2021-04-22",9661,19,3734],["2021-04-23",9661,22,3756],["2021-04-24",9661,13,3769],["2021-04-25",9661,1,3770],["2021-04-26",9661,10,3780],["2021-04-27",9661,36,3816],["2021-04-28",9661,56,3872],["2021-04-29",9661,12,3884],["2021-04-30",9661,32,3916],["2021-05-01",9661,12,3928],["2021-05-02",9661,1,3929],["2021-05-03",9661,3,3932],["2021-05-04",9661,53,3985],["2021-05-05",9661,21,4006],["2021-05-06",9661,17,4023],["2021-05-07",9661,40,4063],["2021-05-08",9661,8,4071],["2021-05-10",9661,8,4079],["2021-05-11",9661,37,4116],["2021-05-12",9661,20,4136],["2021-05-13",9661,78,4214],["2021-05-14",9661,14,4228],["2021-05-15",9661,5,4233],["2021-05-16",9661,1,4234],["2021-05-17",9661,18,4252],["2021-05-18",9661,37,4289],["2021-05-19",9661,19,4308],["2021-05-20",9661,21,4329],["2021-05-21",9661,11,4340],["2021-05-22",9661,4,4344],["2021-05-23",9661,1,4345],["2021-05-24",9661,5,4350],["2021-05-25",9661,31,4381],["2021-05-26",9661,19,4400],["2021-05-27",9661,14,4414],["2021-05-28",9661,7,4421],["2021-05-29",9661,4,4425],["2021-05-30",9661,2,4427],["2021-05-31",9661,1,4428],["2021-06-01",9661,27,4455],["2021-06-02",9661,28,4483],["2021-06-03",9661,12,4495],["2021-06-04",9661,10,4505],["2021-06-05",9661,2,4507],["2021-06-07",9661,15,4522],["2021-06-08",9661,13,4535],["2021-06-09",9661,14,4549],["2021-06-10",9661,5,4554],["2021-06-11",9661,13,4567],["2021-06-12",9661,9,4576],["2021-06-13",9661,1,4577],["2021-06-14",9661,11,4588],["2021-06-15",9661,25,4613],["2021-06-16",9661,26,4639],["2021-06-17",9661,7,4646],["2021-06-18",9661,10,4656],["2021-06-19",9661,2,4658],["2021-06-20",9661,1,4659],["2021-06-21",9661,8,4667],["2021-06-22",9661,10,4677],["2021-06-23",9661,12,4689],["2021-06-24",9661,8,4697],["2021-06-25",9661,8,4705],["2021-06-26",9661,4,4709],["2021-06-27",9661,1,4710],["2021-06-28",9661,2,4712],["2021-06-29",9661,16,4728],["2021-06-30",9661,15,4743],["2021-07-01",9661,6,4749],["2021-07-02",9661,6,4755],["2021-07-03",9661,3,4758],["2021-07-05",9661,1,4759],["2021-07-06",9661,4,4763],["2021-07-07",9661,8,4771],["2021-07-08",9661,15,4786],["2021-07-09",9661,8,4794],["2021-07-10",9661,1,4795],["2021-07-11",9661,1,4796],["2021-07-12",9661,4,4800],["2021-07-13",9661,8,4808],["2021-07-14",9661,15,4823],["2021-07-15",9661,5,4828],["2021-07-16",9661,8,4836],["2021-07-17",9661,4,4840],["2021-07-19",9661,6,4846],["2021-07-20",9661,11,4857],["2021-07-21",9661,6,4863],["2021-07-22",9661,13,4876],["2021-07-23",9661,14,4890],["2021-07-24",9661,8,4898],["2021-07-25",9661,5,4903],["2021-07-26",9661,15,4918],["2021-07-27",9661,11,4929],["2021-07-28",9661,28,4957],["2021-07-29",9661,16,4973],["2021-07-30",9661,15,4988],["2021-07-31",9661,7,4995],["2021-08-01",9661,6,5001],["2021-08-02",9661,20,5021],["2021-08-03",9661,21,5042],["2021-08-04",9661,23,5065],["2021-08-05",9661,10,5075],["2021-08-06",9661,27,5102],["2021-08-07",9661,10,5112],["2021-08-08",9661,6,5118],["2021-08-09",9661,33,5151],["2021-08-10",9661,25,5176],["2021-08-11",9661,26,5202],["2021-08-12",9661,20,5222],["2021-08-13",9661,25,5247],["2021-08-14",9661,13,5260],["2021-08-15",9661,8,5268],["2021-08-16",9661,29,5297],["2021-08-17",9661,33,5330],["2021-08-18",9661,26,5356],["2021-08-19",9661,36,5392],["2021-08-20",9661,39,5431],["2021-08-21",9661,19,5450],["2021-08-22",9661,5,5455],["2021-08-23",9661,37,5492],["2021-08-24",9661,31,5523],["2021-08-25",9661,65,5588],["2021-08-26",9661,33,5621],["2021-08-27",9661,39,5660],["2021-08-28",9661,11,5671],["2021-08-29",9661,7,5678],["2021-08-30",9661,44,5722],["2021-08-31",9661,30,5752],["2021-09-01",9661,63,5815],["2021-09-02",9661,34,5849],["2021-09-03",9661,21,5870],["2021-09-04",9661,13,5883],["2021-09-05",9661,9,5892],["2021-09-06",9661,4,5896],["2021-09-07",9661,32,5928],["2021-09-08",9661,43,5971],["2021-09-09",9661,52,6023],["2021-09-10",9661,31,6054],["2021-09-11",9661,17,6071],["2021-09-12",9661,6,6077],["2021-09-13",9661,37,6114],["2021-09-14",9661,31,6145],["2021-09-15",9661,38,6183],["2021-09-16",9661,21,6204],["2021-09-17",9661,32,6236],["2021-09-18",9661,12,6248],["2021-09-19",9661,2,6250],["2021-09-20",9661,49,6299],["2021-09-21",9661,21,6320],["2021-09-22",9661,56,6376],["2021-09-23",9661,22,6398],["2021-09-24",9661,29,6427],["2021-09-25",9661,6,6433],["2021-09-26",9661,2,6435],["2021-09-27",9661,29,6464],["2021-09-28",9661,18,6482],["2021-09-29",9661,31,6513],["2021-09-30",9661,18,6531],["2021-10-01",9661,21,6552],["2021-10-02",9661,5,6557],["2021-10-03",9661,2,6559],["2021-10-04",9661,20,6579],["2021-10-05",9661,10,6589],["2021-10-06",9661,17,6606],["2021-10-07",9661,53,6659],["2021-10-08",9661,17,6676],["2021-10-09",9661,4,6680],["2021-10-10",9661,3,6683],["2021-10-11",9661,8,6691],["2021-10-12",9661,11,6702],["2021-10-13",9661,32,6734],["2021-10-14",9661,6,6740],["2021-10-15",9661,19,6759],["2021-10-16",9661,2,6761],["2021-10-18",9661,16,6777],["2021-10-19",9661,9,6786],["2021-10-20",9661,11,6797],["2021-10-21",9661,11,6808],["2021-10-22",9661,14,6822],["2021-10-23",9661,3,6825],["2021-10-24",9661,3,6828],["2021-10-25",9661,14,6842],["2021-10-26",9661,9,6851],["2021-10-27",9661,54,6905],["2021-10-28",9661,24,6929],["2021-10-29",9661,15,6944],["2021-10-30",9661,2,6946],["2021-10-31",9661,1,6947],["2021-11-01",9661,39,6986],["2021-11-02",9661,36,7022],["2021-11-03",9661,48,7070],["2021-11-04",9661,15,7085],["2021-11-05",9661,19,7104],["2021-11-06",9661,5,7109],["2021-11-07",9661,1,7110],["2021-11-08",9661,24,7134],["2021-11-09",9661,12,7146],["2021-11-10",9661,61,7207],["2021-11-11",9661,8,7215],["2021-11-12",9661,18,7233],["2021-11-13",9661,1,7234],["2021-11-14",9661,2,7236],["2021-11-15",9661,46,7282],["2021-11-16",9661,25,7307],["2021-11-17",9661,23,7330],["2021-11-18",9661,32,7362],["2021-11-19",9661,14,7376],["2021-11-20",9661,8,7384],["2021-11-21",9661,3,7387],["2021-11-22",9661,19,7406],["2021-11-23",9661,15,7421],["2021-11-24",9661,10,7431],["2021-11-26",9661,5,7436],["2021-11-27",9661,3,7439],["2021-11-29",9661,44,7483],["2021-11-30",9661,25,7508],["2021-12-01",9661,92,7600],["2021-12-02",9661,30,7630],["2021-12-03",9661,27,7657],["2021-12-04",9661,3,7660],["2021-12-05",9661,2,7662],["2021-12-06",9661,36,7698],["2021-12-07",9661,21,7719],["2021-12-08",9661,35,7754],["2021-12-09",9661,17,7771],["2021-12-10",9661,18,7789],["2021-12-12",9661,2,7791],["2021-12-13",9661,32,7823],["2021-12-14",9661,11,7834],["2021-12-15",9661,28,7862],["2021-12-16",9661,21,7883],["2021-12-17",9661,18,7901],["2021-12-18",9661,2,7903],["2021-12-19",9661,1,7904],["2021-12-20",9661,31,7935],["2021-12-21",9661,16,7951],["2021-12-22",9661,19,7970],["2021-12-23",9661,10,7980],["2021-12-24",9661,1,7981],["2021-12-26",9661,4,7985],["2021-12-27",9661,9,7994],["2021-12-28",9661,17,8011],["2021-12-29",9661,45,8056],["2021-12-30",9661,30,8086],["2021-12-31",9661,14,8100],["2022-01-02",9661,2,8102],["2022-01-03",9661,14,8116]]} \ No newline at end of file diff --git a/public/data/overall/vaccinations/by-county/Jones.json b/public/data/overall/vaccinations/by-county/Jones.json new file mode 100644 index 000000000..30aaa70e5 --- /dev/null +++ b/public/data/overall/vaccinations/by-county/Jones.json @@ -0,0 +1 @@ +{"segment":{"county":"Jones"},"headers":["report_date","population","vaccinations","total_vaccinations"],"rows":[["2020-12-17",28591,2,2],["2020-12-18",28591,1,3],["2020-12-19",28591,1,4],["2020-12-20",28591,1,5],["2020-12-21",28591,6,11],["2020-12-22",28591,14,25],["2020-12-23",28591,23,48],["2020-12-24",28591,35,83],["2020-12-26",28591,21,104],["2020-12-27",28591,7,111],["2020-12-28",28591,83,194],["2020-12-29",28591,43,237],["2020-12-30",28591,48,285],["2020-12-31",28591,6,291],["2021-01-01",28591,2,293],["2021-01-02",28591,2,295],["2021-01-03",28591,3,298],["2021-01-04",28591,42,340],["2021-01-05",28591,94,434],["2021-01-06",28591,56,490],["2021-01-07",28591,49,539],["2021-01-08",28591,32,571],["2021-01-09",28591,6,577],["2021-01-10",28591,4,581],["2021-01-11",28591,71,652],["2021-01-12",28591,76,728],["2021-01-13",28591,82,810],["2021-01-14",28591,141,951],["2021-01-15",28591,97,1048],["2021-01-16",28591,20,1068],["2021-01-17",28591,16,1084],["2021-01-18",28591,96,1180],["2021-01-19",28591,142,1322],["2021-01-20",28591,158,1480],["2021-01-21",28591,172,1652],["2021-01-22",28591,169,1821],["2021-01-23",28591,89,1910],["2021-01-24",28591,22,1932],["2021-01-25",28591,151,2083],["2021-01-26",28591,123,2206],["2021-01-27",28591,192,2398],["2021-01-28",28591,92,2490],["2021-01-29",28591,163,2653],["2021-01-30",28591,13,2666],["2021-01-31",28591,7,2673],["2021-02-01",28591,90,2763],["2021-02-02",28591,112,2875],["2021-02-03",28591,102,2977],["2021-02-04",28591,227,3204],["2021-02-05",28591,145,3349],["2021-02-06",28591,16,3365],["2021-02-07",28591,4,3369],["2021-02-08",28591,78,3447],["2021-02-09",28591,93,3540],["2021-02-10",28591,212,3752],["2021-02-11",28591,133,3885],["2021-02-12",28591,167,4052],["2021-02-13",28591,35,4087],["2021-02-14",28591,26,4113],["2021-02-15",28591,127,4240],["2021-02-16",28591,176,4416],["2021-02-17",28591,191,4607],["2021-02-18",28591,212,4819],["2021-02-19",28591,130,4949],["2021-02-20",28591,54,5003],["2021-02-21",28591,21,5024],["2021-02-22",28591,126,5150],["2021-02-23",28591,102,5252],["2021-02-24",28591,261,5513],["2021-02-25",28591,221,5734],["2021-02-26",28591,236,5970],["2021-02-27",28591,39,6009],["2021-02-28",28591,26,6035],["2021-03-01",28591,229,6264],["2021-03-02",28591,173,6437],["2021-03-03",28591,192,6629],["2021-03-04",28591,279,6908],["2021-03-05",28591,218,7126],["2021-03-06",28591,26,7152],["2021-03-07",28591,32,7184],["2021-03-08",28591,186,7370],["2021-03-09",28591,153,7523],["2021-03-10",28591,269,7792],["2021-03-11",28591,195,7987],["2021-03-12",28591,190,8177],["2021-03-13",28591,81,8258],["2021-03-14",28591,41,8299],["2021-03-15",28591,226,8525],["2021-03-16",28591,254,8779],["2021-03-17",28591,238,9017],["2021-03-18",28591,180,9197],["2021-03-19",28591,226,9423],["2021-03-20",28591,83,9506],["2021-03-21",28591,32,9538],["2021-03-22",28591,201,9739],["2021-03-23",28591,142,9881],["2021-03-24",28591,143,10024],["2021-03-25",28591,215,10239],["2021-03-26",28591,177,10416],["2021-03-27",28591,37,10453],["2021-03-28",28591,47,10500],["2021-03-29",28591,258,10758],["2021-03-30",28591,198,10956],["2021-03-31",28591,203,11159],["2021-04-01",28591,290,11449],["2021-04-02",28591,223,11672],["2021-04-03",28591,81,11753],["2021-04-04",28591,50,11803],["2021-04-05",28591,183,11986],["2021-04-06",28591,206,12192],["2021-04-07",28591,213,12405],["2021-04-08",28591,213,12618],["2021-04-09",28591,231,12849],["2021-04-10",28591,58,12907],["2021-04-11",28591,42,12949],["2021-04-12",28591,159,13108],["2021-04-13",28591,200,13308],["2021-04-14",28591,179,13487],["2021-04-15",28591,195,13682],["2021-04-16",28591,196,13878],["2021-04-17",28591,38,13916],["2021-04-18",28591,26,13942],["2021-04-19",28591,141,14083],["2021-04-20",28591,186,14269],["2021-04-21",28591,133,14402],["2021-04-22",28591,202,14604],["2021-04-23",28591,189,14793],["2021-04-24",28591,30,14823],["2021-04-25",28591,18,14841],["2021-04-26",28591,176,15017],["2021-04-27",28591,125,15142],["2021-04-28",28591,122,15264],["2021-04-29",28591,213,15477],["2021-04-30",28591,144,15621],["2021-05-01",28591,38,15659],["2021-05-02",28591,25,15684],["2021-05-03",28591,67,15751],["2021-05-04",28591,96,15847],["2021-05-05",28591,105,15952],["2021-05-06",28591,96,16048],["2021-05-07",28591,79,16127],["2021-05-08",28591,30,16157],["2021-05-09",28591,9,16166],["2021-05-10",28591,50,16216],["2021-05-11",28591,85,16301],["2021-05-12",28591,55,16356],["2021-05-13",28591,86,16442],["2021-05-14",28591,89,16531],["2021-05-15",28591,37,16568],["2021-05-16",28591,31,16599],["2021-05-17",28591,53,16652],["2021-05-18",28591,68,16720],["2021-05-19",28591,76,16796],["2021-05-20",28591,71,16867],["2021-05-21",28591,82,16949],["2021-05-22",28591,27,16976],["2021-05-23",28591,17,16993],["2021-05-24",28591,53,17046],["2021-05-25",28591,67,17113],["2021-05-26",28591,58,17171],["2021-05-27",28591,58,17229],["2021-05-28",28591,50,17279],["2021-05-29",28591,31,17310],["2021-05-30",28591,21,17331],["2021-05-31",28591,12,17343],["2021-06-01",28591,57,17400],["2021-06-02",28591,50,17450],["2021-06-03",28591,47,17497],["2021-06-04",28591,44,17541],["2021-06-05",28591,37,17578],["2021-06-06",28591,32,17610],["2021-06-07",28591,44,17654],["2021-06-08",28591,55,17709],["2021-06-09",28591,40,17749],["2021-06-10",28591,50,17799],["2021-06-11",28591,40,17839],["2021-06-12",28591,23,17862],["2021-06-13",28591,23,17885],["2021-06-14",28591,36,17921],["2021-06-15",28591,41,17962],["2021-06-16",28591,30,17992],["2021-06-17",28591,32,18024],["2021-06-18",28591,34,18058],["2021-06-19",28591,21,18079],["2021-06-20",28591,16,18095],["2021-06-21",28591,25,18120],["2021-06-22",28591,27,18147],["2021-06-23",28591,39,18186],["2021-06-24",28591,31,18217],["2021-06-25",28591,39,18256],["2021-06-26",28591,18,18274],["2021-06-27",28591,12,18286],["2021-06-28",28591,30,18316],["2021-06-29",28591,35,18351],["2021-06-30",28591,29,18380],["2021-07-01",28591,30,18410],["2021-07-02",28591,25,18435],["2021-07-03",28591,16,18451],["2021-07-04",28591,6,18457],["2021-07-05",28591,22,18479],["2021-07-06",28591,33,18512],["2021-07-07",28591,29,18541],["2021-07-08",28591,26,18567],["2021-07-09",28591,32,18599],["2021-07-10",28591,25,18624],["2021-07-11",28591,17,18641],["2021-07-12",28591,24,18665],["2021-07-13",28591,36,18701],["2021-07-14",28591,34,18735],["2021-07-15",28591,24,18759],["2021-07-16",28591,29,18788],["2021-07-17",28591,20,18808],["2021-07-18",28591,17,18825],["2021-07-19",28591,39,18864],["2021-07-20",28591,38,18902],["2021-07-21",28591,43,18945],["2021-07-22",28591,38,18983],["2021-07-23",28591,63,19046],["2021-07-24",28591,43,19089],["2021-07-25",28591,24,19113],["2021-07-26",28591,47,19160],["2021-07-27",28591,55,19215],["2021-07-28",28591,60,19275],["2021-07-29",28591,72,19347],["2021-07-30",28591,88,19435],["2021-07-31",28591,54,19489],["2021-08-01",28591,29,19518],["2021-08-02",28591,81,19599],["2021-08-03",28591,55,19654],["2021-08-04",28591,68,19722],["2021-08-05",28591,68,19790],["2021-08-06",28591,99,19889],["2021-08-07",28591,66,19955],["2021-08-08",28591,33,19988],["2021-08-09",28591,94,20082],["2021-08-10",28591,90,20172],["2021-08-11",28591,89,20261],["2021-08-12",28591,96,20357],["2021-08-13",28591,101,20458],["2021-08-14",28591,54,20512],["2021-08-15",28591,39,20551],["2021-08-16",28591,98,20649],["2021-08-17",28591,74,20723],["2021-08-18",28591,81,20804],["2021-08-19",28591,93,20897],["2021-08-20",28591,131,21028],["2021-08-21",28591,87,21115],["2021-08-22",28591,45,21160],["2021-08-23",28591,90,21250],["2021-08-24",28591,104,21354],["2021-08-25",28591,96,21450],["2021-08-26",28591,106,21556],["2021-08-27",28591,108,21664],["2021-08-28",28591,77,21741],["2021-08-29",28591,64,21805],["2021-08-30",28591,89,21894],["2021-08-31",28591,84,21978],["2021-09-01",28591,123,22101],["2021-09-02",28591,86,22187],["2021-09-03",28591,142,22329],["2021-09-04",28591,63,22392],["2021-09-05",28591,45,22437],["2021-09-06",28591,26,22463],["2021-09-07",28591,78,22541],["2021-09-08",28591,104,22645],["2021-09-09",28591,105,22750],["2021-09-10",28591,95,22845],["2021-09-11",28591,66,22911],["2021-09-12",28591,47,22958],["2021-09-13",28591,67,23025],["2021-09-14",28591,98,23123],["2021-09-15",28591,63,23186],["2021-09-16",28591,72,23258],["2021-09-17",28591,99,23357],["2021-09-18",28591,63,23420],["2021-09-19",28591,31,23451],["2021-09-20",28591,63,23514],["2021-09-21",28591,65,23579],["2021-09-22",28591,74,23653],["2021-09-23",28591,70,23723],["2021-09-24",28591,63,23786],["2021-09-25",28591,50,23836],["2021-09-26",28591,29,23865],["2021-09-27",28591,54,23919],["2021-09-28",28591,59,23978],["2021-09-29",28591,75,24053],["2021-09-30",28591,66,24119],["2021-10-01",28591,90,24209],["2021-10-02",28591,28,24237],["2021-10-03",28591,30,24267],["2021-10-04",28591,46,24313],["2021-10-05",28591,51,24364],["2021-10-06",28591,48,24412],["2021-10-07",28591,63,24475],["2021-10-08",28591,85,24560],["2021-10-09",28591,21,24581],["2021-10-10",28591,18,24599],["2021-10-11",28591,37,24636],["2021-10-12",28591,46,24682],["2021-10-13",28591,38,24720],["2021-10-14",28591,47,24767],["2021-10-15",28591,46,24813],["2021-10-16",28591,17,24830],["2021-10-17",28591,14,24844],["2021-10-18",28591,25,24869],["2021-10-19",28591,35,24904],["2021-10-20",28591,45,24949],["2021-10-21",28591,43,24992],["2021-10-22",28591,61,25053],["2021-10-23",28591,26,25079],["2021-10-24",28591,17,25096],["2021-10-25",28591,59,25155],["2021-10-26",28591,135,25290],["2021-10-27",28591,111,25401],["2021-10-28",28591,86,25487],["2021-10-29",28591,122,25609],["2021-10-30",28591,38,25647],["2021-10-31",28591,33,25680],["2021-11-01",28591,92,25772],["2021-11-02",28591,193,25965],["2021-11-03",28591,107,26072],["2021-11-04",28591,101,26173],["2021-11-05",28591,93,26266],["2021-11-06",28591,39,26305],["2021-11-07",28591,29,26334],["2021-11-08",28591,116,26450],["2021-11-09",28591,139,26589],["2021-11-10",28591,98,26687],["2021-11-11",28591,72,26759],["2021-11-12",28591,84,26843],["2021-11-13",28591,41,26884],["2021-11-14",28591,30,26914],["2021-11-15",28591,59,26973],["2021-11-16",28591,208,27181],["2021-11-17",28591,81,27262],["2021-11-18",28591,75,27337],["2021-11-19",28591,73,27410],["2021-11-20",28591,40,27450],["2021-11-21",28591,31,27481],["2021-11-22",28591,65,27546],["2021-11-23",28591,132,27678],["2021-11-24",28591,68,27746],["2021-11-26",28591,34,27780],["2021-11-27",28591,30,27810],["2021-11-28",28591,30,27840],["2021-11-29",28591,59,27899],["2021-11-30",28591,135,28034],["2021-12-01",28591,102,28136],["2021-12-02",28591,104,28240],["2021-12-03",28591,93,28333],["2021-12-04",28591,47,28380],["2021-12-05",28591,24,28404],["2021-12-06",28591,73,28477],["2021-12-07",28591,121,28598],["2021-12-08",28591,86,28684],["2021-12-09",28591,74,28758],["2021-12-10",28591,98,28856],["2021-12-11",28591,50,28906],["2021-12-12",28591,30,28936],["2021-12-13",28591,40,28976],["2021-12-14",28591,103,29079],["2021-12-15",28591,66,29145],["2021-12-16",28591,56,29201],["2021-12-17",28591,74,29275],["2021-12-18",28591,24,29299],["2021-12-19",28591,27,29326],["2021-12-20",28591,57,29383],["2021-12-21",28591,114,29497],["2021-12-22",28591,87,29584],["2021-12-23",28591,62,29646],["2021-12-24",28591,17,29663],["2021-12-26",28591,28,29691],["2021-12-27",28591,48,29739],["2021-12-28",28591,105,29844],["2021-12-29",28591,82,29926],["2021-12-30",28591,70,29996],["2021-12-31",28591,45,30041],["2022-01-01",28591,18,30059],["2022-01-02",28591,20,30079],["2022-01-03",28591,7,30086]]} \ No newline at end of file diff --git a/public/data/overall/vaccinations/by-county/Lamar.json b/public/data/overall/vaccinations/by-county/Lamar.json new file mode 100644 index 000000000..7ead59cc1 --- /dev/null +++ b/public/data/overall/vaccinations/by-county/Lamar.json @@ -0,0 +1 @@ +{"segment":{"county":"Lamar"},"headers":["report_date","population","vaccinations","total_vaccinations"],"rows":[["2020-12-18",19347,3,3],["2020-12-19",19347,5,8],["2020-12-21",19347,24,32],["2020-12-22",19347,12,44],["2020-12-23",19347,27,71],["2020-12-28",19347,32,103],["2020-12-29",19347,18,121],["2020-12-30",19347,34,155],["2020-12-31",19347,10,165],["2021-01-01",19347,6,171],["2021-01-02",19347,1,172],["2021-01-03",19347,3,175],["2021-01-04",19347,7,182],["2021-01-05",19347,16,198],["2021-01-06",19347,26,224],["2021-01-07",19347,14,238],["2021-01-08",19347,10,248],["2021-01-09",19347,17,265],["2021-01-10",19347,32,297],["2021-01-11",19347,56,353],["2021-01-12",19347,24,377],["2021-01-13",19347,192,569],["2021-01-14",19347,36,605],["2021-01-15",19347,186,791],["2021-01-16",19347,52,843],["2021-01-17",19347,15,858],["2021-01-18",19347,41,899],["2021-01-19",19347,34,933],["2021-01-20",19347,151,1084],["2021-01-21",19347,61,1145],["2021-01-22",19347,94,1239],["2021-01-23",19347,47,1286],["2021-01-24",19347,7,1293],["2021-01-25",19347,45,1338],["2021-01-26",19347,41,1379],["2021-01-27",19347,126,1505],["2021-01-28",19347,57,1562],["2021-01-29",19347,32,1594],["2021-01-30",19347,7,1601],["2021-01-31",19347,33,1634],["2021-02-01",19347,11,1645],["2021-02-02",19347,38,1683],["2021-02-03",19347,237,1920],["2021-02-04",19347,70,1990],["2021-02-05",19347,49,2039],["2021-02-06",19347,8,2047],["2021-02-07",19347,5,2052],["2021-02-08",19347,19,2071],["2021-02-09",19347,15,2086],["2021-02-10",19347,282,2368],["2021-02-11",19347,89,2457],["2021-02-12",19347,79,2536],["2021-02-13",19347,54,2590],["2021-02-14",19347,11,2601],["2021-02-15",19347,46,2647],["2021-02-16",19347,31,2678],["2021-02-17",19347,155,2833],["2021-02-18",19347,97,2930],["2021-02-19",19347,74,3004],["2021-02-20",19347,52,3056],["2021-02-21",19347,5,3061],["2021-02-22",19347,42,3103],["2021-02-23",19347,56,3159],["2021-02-24",19347,104,3263],["2021-02-25",19347,80,3343],["2021-02-26",19347,73,3416],["2021-02-27",19347,22,3438],["2021-02-28",19347,13,3451],["2021-03-01",19347,39,3490],["2021-03-02",19347,61,3551],["2021-03-03",19347,90,3641],["2021-03-04",19347,88,3729],["2021-03-05",19347,117,3846],["2021-03-06",19347,19,3865],["2021-03-07",19347,9,3874],["2021-03-08",19347,64,3938],["2021-03-09",19347,52,3990],["2021-03-10",19347,115,4105],["2021-03-11",19347,94,4199],["2021-03-12",19347,89,4288],["2021-03-13",19347,18,4306],["2021-03-14",19347,13,4319],["2021-03-15",19347,85,4404],["2021-03-16",19347,54,4458],["2021-03-17",19347,135,4593],["2021-03-18",19347,124,4717],["2021-03-19",19347,81,4798],["2021-03-20",19347,14,4812],["2021-03-21",19347,17,4829],["2021-03-22",19347,59,4888],["2021-03-23",19347,72,4960],["2021-03-24",19347,125,5085],["2021-03-25",19347,168,5253],["2021-03-26",19347,116,5369],["2021-03-27",19347,33,5402],["2021-03-28",19347,26,5428],["2021-03-29",19347,90,5518],["2021-03-30",19347,89,5607],["2021-03-31",19347,136,5743],["2021-04-01",19347,185,5928],["2021-04-02",19347,156,6084],["2021-04-03",19347,28,6112],["2021-04-04",19347,19,6131],["2021-04-05",19347,96,6227],["2021-04-06",19347,71,6298],["2021-04-07",19347,140,6438],["2021-04-08",19347,147,6585],["2021-04-09",19347,114,6699],["2021-04-10",19347,30,6729],["2021-04-11",19347,27,6756],["2021-04-12",19347,72,6828],["2021-04-13",19347,56,6884],["2021-04-14",19347,116,7000],["2021-04-15",19347,167,7167],["2021-04-16",19347,129,7296],["2021-04-17",19347,26,7322],["2021-04-18",19347,11,7333],["2021-04-19",19347,52,7385],["2021-04-20",19347,70,7455],["2021-04-21",19347,103,7558],["2021-04-22",19347,166,7724],["2021-04-23",19347,86,7810],["2021-04-24",19347,26,7836],["2021-04-25",19347,17,7853],["2021-04-26",19347,77,7930],["2021-04-27",19347,52,7982],["2021-04-28",19347,96,8078],["2021-04-29",19347,107,8185],["2021-04-30",19347,87,8272],["2021-05-01",19347,25,8297],["2021-05-02",19347,17,8314],["2021-05-03",19347,73,8387],["2021-05-04",19347,53,8440],["2021-05-05",19347,57,8497],["2021-05-06",19347,88,8585],["2021-05-07",19347,95,8680],["2021-05-08",19347,19,8699],["2021-05-09",19347,13,8712],["2021-05-10",19347,29,8741],["2021-05-11",19347,30,8771],["2021-05-12",19347,51,8822],["2021-05-13",19347,101,8923],["2021-05-14",19347,68,8991],["2021-05-15",19347,50,9041],["2021-05-16",19347,18,9059],["2021-05-17",19347,30,9089],["2021-05-18",19347,38,9127],["2021-05-19",19347,36,9163],["2021-05-20",19347,62,9225],["2021-05-21",19347,45,9270],["2021-05-22",19347,30,9300],["2021-05-23",19347,12,9312],["2021-05-24",19347,37,9349],["2021-05-25",19347,42,9391],["2021-05-26",19347,16,9407],["2021-05-27",19347,32,9439],["2021-05-28",19347,39,9478],["2021-05-29",19347,13,9491],["2021-05-30",19347,5,9496],["2021-05-31",19347,1,9497],["2021-06-01",19347,31,9528],["2021-06-02",19347,27,9555],["2021-06-03",19347,32,9587],["2021-06-04",19347,33,9620],["2021-06-05",19347,21,9641],["2021-06-06",19347,10,9651],["2021-06-07",19347,43,9694],["2021-06-08",19347,21,9715],["2021-06-09",19347,22,9737],["2021-06-10",19347,33,9770],["2021-06-11",19347,32,9802],["2021-06-12",19347,21,9823],["2021-06-13",19347,4,9827],["2021-06-14",19347,13,9840],["2021-06-15",19347,31,9871],["2021-06-16",19347,16,9887],["2021-06-17",19347,24,9911],["2021-06-18",19347,19,9930],["2021-06-19",19347,11,9941],["2021-06-20",19347,6,9947],["2021-06-21",19347,13,9960],["2021-06-22",19347,21,9981],["2021-06-23",19347,19,10000],["2021-06-24",19347,32,10032],["2021-06-25",19347,18,10050],["2021-06-26",19347,30,10080],["2021-06-27",19347,5,10085],["2021-06-28",19347,18,10103],["2021-06-29",19347,15,10118],["2021-06-30",19347,17,10135],["2021-07-01",19347,21,10156],["2021-07-02",19347,16,10172],["2021-07-03",19347,11,10183],["2021-07-05",19347,10,10193],["2021-07-06",19347,16,10209],["2021-07-07",19347,20,10229],["2021-07-08",19347,21,10250],["2021-07-09",19347,20,10270],["2021-07-10",19347,9,10279],["2021-07-11",19347,6,10285],["2021-07-12",19347,17,10302],["2021-07-13",19347,18,10320],["2021-07-14",19347,7,10327],["2021-07-15",19347,13,10340],["2021-07-16",19347,17,10357],["2021-07-17",19347,10,10367],["2021-07-18",19347,4,10371],["2021-07-19",19347,29,10400],["2021-07-20",19347,19,10419],["2021-07-21",19347,22,10441],["2021-07-22",19347,29,10470],["2021-07-23",19347,26,10496],["2021-07-24",19347,27,10523],["2021-07-25",19347,6,10529],["2021-07-26",19347,37,10566],["2021-07-27",19347,55,10621],["2021-07-28",19347,31,10652],["2021-07-29",19347,24,10676],["2021-07-30",19347,46,10722],["2021-07-31",19347,19,10741],["2021-08-01",19347,6,10747],["2021-08-02",19347,28,10775],["2021-08-03",19347,25,10800],["2021-08-04",19347,35,10835],["2021-08-05",19347,28,10863],["2021-08-06",19347,43,10906],["2021-08-07",19347,23,10929],["2021-08-08",19347,20,10949],["2021-08-09",19347,36,10985],["2021-08-10",19347,50,11035],["2021-08-11",19347,32,11067],["2021-08-12",19347,41,11108],["2021-08-13",19347,62,11170],["2021-08-14",19347,30,11200],["2021-08-15",19347,16,11216],["2021-08-16",19347,49,11265],["2021-08-17",19347,61,11326],["2021-08-18",19347,43,11369],["2021-08-19",19347,50,11419],["2021-08-20",19347,75,11494],["2021-08-21",19347,36,11530],["2021-08-22",19347,20,11550],["2021-08-23",19347,67,11617],["2021-08-24",19347,62,11679],["2021-08-25",19347,62,11741],["2021-08-26",19347,61,11802],["2021-08-27",19347,77,11879],["2021-08-28",19347,36,11915],["2021-08-29",19347,32,11947],["2021-08-30",19347,63,12010],["2021-08-31",19347,48,12058],["2021-09-01",19347,58,12116],["2021-09-02",19347,51,12167],["2021-09-03",19347,71,12238],["2021-09-04",19347,38,12276],["2021-09-05",19347,15,12291],["2021-09-06",19347,11,12302],["2021-09-07",19347,68,12370],["2021-09-08",19347,45,12415],["2021-09-09",19347,43,12458],["2021-09-10",19347,85,12543],["2021-09-11",19347,32,12575],["2021-09-12",19347,22,12597],["2021-09-13",19347,50,12647],["2021-09-14",19347,42,12689],["2021-09-15",19347,32,12721],["2021-09-16",19347,40,12761],["2021-09-17",19347,55,12816],["2021-09-18",19347,22,12838],["2021-09-19",19347,11,12849],["2021-09-20",19347,57,12906],["2021-09-21",19347,35,12941],["2021-09-22",19347,33,12974],["2021-09-23",19347,39,13013],["2021-09-24",19347,66,13079],["2021-09-25",19347,39,13118],["2021-09-26",19347,26,13144],["2021-09-27",19347,75,13219],["2021-09-28",19347,79,13298],["2021-09-29",19347,66,13364],["2021-09-30",19347,56,13420],["2021-10-01",19347,82,13502],["2021-10-02",19347,28,13530],["2021-10-03",19347,8,13538],["2021-10-04",19347,71,13609],["2021-10-05",19347,60,13669],["2021-10-06",19347,37,13706],["2021-10-07",19347,44,13750],["2021-10-08",19347,56,13806],["2021-10-09",19347,26,13832],["2021-10-10",19347,7,13839],["2021-10-11",19347,27,13866],["2021-10-12",19347,55,13921],["2021-10-13",19347,28,13949],["2021-10-14",19347,40,13989],["2021-10-15",19347,34,14023],["2021-10-16",19347,12,14035],["2021-10-17",19347,10,14045],["2021-10-18",19347,49,14094],["2021-10-19",19347,36,14130],["2021-10-20",19347,30,14160],["2021-10-21",19347,36,14196],["2021-10-22",19347,60,14256],["2021-10-23",19347,20,14276],["2021-10-24",19347,10,14286],["2021-10-25",19347,51,14337],["2021-10-26",19347,43,14380],["2021-10-27",19347,56,14436],["2021-10-28",19347,46,14482],["2021-10-29",19347,97,14579],["2021-10-30",19347,24,14603],["2021-10-31",19347,4,14607],["2021-11-01",19347,39,14646],["2021-11-02",19347,24,14670],["2021-11-03",19347,21,14691],["2021-11-04",19347,28,14719],["2021-11-05",19347,44,14763],["2021-11-06",19347,5,14768],["2021-11-07",19347,25,14793],["2021-11-08",19347,23,14816],["2021-11-09",19347,32,14848],["2021-11-10",19347,37,14885],["2021-11-11",19347,34,14919],["2021-11-12",19347,56,14975],["2021-11-13",19347,13,14988],["2021-11-14",19347,16,15004],["2021-11-15",19347,18,15022],["2021-11-16",19347,49,15071],["2021-11-17",19347,34,15105],["2021-11-18",19347,32,15137],["2021-11-19",19347,53,15190],["2021-11-20",19347,26,15216],["2021-11-21",19347,9,15225],["2021-11-22",19347,34,15259],["2021-11-23",19347,45,15304],["2021-11-24",19347,16,15320],["2021-11-25",19347,1,15321],["2021-11-26",19347,22,15343],["2021-11-27",19347,18,15361],["2021-11-28",19347,12,15373],["2021-11-29",19347,47,15420],["2021-11-30",19347,62,15482],["2021-12-01",19347,50,15532],["2021-12-02",19347,37,15569],["2021-12-03",19347,73,15642],["2021-12-04",19347,21,15663],["2021-12-05",19347,19,15682],["2021-12-06",19347,33,15715],["2021-12-07",19347,31,15746],["2021-12-08",19347,27,15773],["2021-12-09",19347,34,15807],["2021-12-10",19347,52,15859],["2021-12-11",19347,9,15868],["2021-12-12",19347,8,15876],["2021-12-13",19347,30,15906],["2021-12-14",19347,28,15934],["2021-12-15",19347,19,15953],["2021-12-16",19347,31,15984],["2021-12-17",19347,49,16033],["2021-12-18",19347,21,16054],["2021-12-19",19347,11,16065],["2021-12-20",19347,39,16104],["2021-12-21",19347,48,16152],["2021-12-22",19347,39,16191],["2021-12-23",19347,29,16220],["2021-12-24",19347,14,16234],["2021-12-26",19347,11,16245],["2021-12-27",19347,36,16281],["2021-12-28",19347,57,16338],["2021-12-29",19347,21,16359],["2021-12-30",19347,44,16403],["2021-12-31",19347,43,16446],["2022-01-01",19347,5,16451],["2022-01-02",19347,14,16465],["2022-01-03",19347,8,16473]]} \ No newline at end of file diff --git a/public/data/overall/vaccinations/by-county/Lanier.json b/public/data/overall/vaccinations/by-county/Lanier.json new file mode 100644 index 000000000..3045c3d0b --- /dev/null +++ b/public/data/overall/vaccinations/by-county/Lanier.json @@ -0,0 +1 @@ +{"segment":{"county":"Lanier"},"headers":["report_date","population","vaccinations","total_vaccinations"],"rows":[["2020-12-18",10351,1,1],["2020-12-21",10351,3,4],["2020-12-22",10351,16,20],["2020-12-23",10351,9,29],["2020-12-24",10351,8,37],["2020-12-26",10351,1,38],["2020-12-28",10351,16,54],["2020-12-29",10351,7,61],["2020-12-30",10351,8,69],["2020-12-31",10351,8,77],["2021-01-01",10351,3,80],["2021-01-03",10351,2,82],["2021-01-04",10351,15,97],["2021-01-05",10351,6,103],["2021-01-06",10351,13,116],["2021-01-07",10351,3,119],["2021-01-08",10351,10,129],["2021-01-11",10351,21,150],["2021-01-12",10351,57,207],["2021-01-13",10351,46,253],["2021-01-14",10351,34,287],["2021-01-15",10351,74,361],["2021-01-17",10351,2,363],["2021-01-18",10351,27,390],["2021-01-19",10351,24,414],["2021-01-20",10351,31,445],["2021-01-21",10351,26,471],["2021-01-22",10351,26,497],["2021-01-23",10351,1,498],["2021-01-24",10351,2,500],["2021-01-25",10351,21,521],["2021-01-26",10351,44,565],["2021-01-27",10351,27,592],["2021-01-28",10351,20,612],["2021-01-29",10351,52,664],["2021-02-01",10351,28,692],["2021-02-02",10351,58,750],["2021-02-03",10351,17,767],["2021-02-04",10351,26,793],["2021-02-05",10351,16,809],["2021-02-06",10351,5,814],["2021-02-07",10351,1,815],["2021-02-08",10351,17,832],["2021-02-09",10351,37,869],["2021-02-10",10351,86,955],["2021-02-11",10351,59,1014],["2021-02-12",10351,95,1109],["2021-02-13",10351,3,1112],["2021-02-15",10351,21,1133],["2021-02-16",10351,27,1160],["2021-02-17",10351,77,1237],["2021-02-18",10351,46,1283],["2021-02-19",10351,39,1322],["2021-02-20",10351,2,1324],["2021-02-22",10351,15,1339],["2021-02-23",10351,47,1386],["2021-02-24",10351,24,1410],["2021-02-25",10351,27,1437],["2021-02-26",10351,78,1515],["2021-02-27",10351,2,1517],["2021-03-01",10351,22,1539],["2021-03-02",10351,51,1590],["2021-03-03",10351,31,1621],["2021-03-04",10351,14,1635],["2021-03-05",10351,23,1658],["2021-03-06",10351,4,1662],["2021-03-08",10351,17,1679],["2021-03-09",10351,44,1723],["2021-03-10",10351,64,1787],["2021-03-11",10351,42,1829],["2021-03-12",10351,62,1891],["2021-03-13",10351,7,1898],["2021-03-14",10351,2,1900],["2021-03-15",10351,62,1962],["2021-03-16",10351,34,1996],["2021-03-17",10351,80,2076],["2021-03-18",10351,39,2115],["2021-03-19",10351,68,2183],["2021-03-20",10351,16,2199],["2021-03-22",10351,26,2225],["2021-03-23",10351,43,2268],["2021-03-24",10351,68,2336],["2021-03-25",10351,21,2357],["2021-03-26",10351,85,2442],["2021-03-27",10351,5,2447],["2021-03-28",10351,19,2466],["2021-03-29",10351,22,2488],["2021-03-30",10351,57,2545],["2021-03-31",10351,85,2630],["2021-04-01",10351,22,2652],["2021-04-02",10351,65,2717],["2021-04-03",10351,7,2724],["2021-04-04",10351,3,2727],["2021-04-05",10351,24,2751],["2021-04-06",10351,46,2797],["2021-04-07",10351,53,2850],["2021-04-08",10351,24,2874],["2021-04-09",10351,84,2958],["2021-04-10",10351,8,2966],["2021-04-11",10351,5,2971],["2021-04-12",10351,65,3036],["2021-04-13",10351,28,3064],["2021-04-14",10351,68,3132],["2021-04-15",10351,50,3182],["2021-04-16",10351,19,3201],["2021-04-17",10351,2,3203],["2021-04-18",10351,3,3206],["2021-04-19",10351,11,3217],["2021-04-20",10351,31,3248],["2021-04-21",10351,64,3312],["2021-04-22",10351,16,3328],["2021-04-23",10351,59,3387],["2021-04-24",10351,4,3391],["2021-04-25",10351,23,3414],["2021-04-26",10351,17,3431],["2021-04-27",10351,25,3456],["2021-04-28",10351,31,3487],["2021-04-29",10351,9,3496],["2021-04-30",10351,73,3569],["2021-05-01",10351,3,3572],["2021-05-02",10351,2,3574],["2021-05-03",10351,12,3586],["2021-05-04",10351,17,3603],["2021-05-05",10351,36,3639],["2021-05-06",10351,28,3667],["2021-05-07",10351,16,3683],["2021-05-08",10351,6,3689],["2021-05-09",10351,3,3692],["2021-05-10",10351,4,3696],["2021-05-11",10351,16,3712],["2021-05-12",10351,15,3727],["2021-05-13",10351,7,3734],["2021-05-14",10351,16,3750],["2021-05-15",10351,3,3753],["2021-05-16",10351,4,3757],["2021-05-17",10351,12,3769],["2021-05-18",10351,25,3794],["2021-05-19",10351,48,3842],["2021-05-20",10351,11,3853],["2021-05-21",10351,33,3886],["2021-05-22",10351,2,3888],["2021-05-23",10351,3,3891],["2021-05-24",10351,12,3903],["2021-05-25",10351,12,3915],["2021-05-26",10351,30,3945],["2021-05-27",10351,5,3950],["2021-05-28",10351,32,3982],["2021-05-29",10351,1,3983],["2021-06-01",10351,7,3990],["2021-06-02",10351,13,4003],["2021-06-03",10351,9,4012],["2021-06-04",10351,12,4024],["2021-06-05",10351,7,4031],["2021-06-07",10351,7,4038],["2021-06-08",10351,8,4046],["2021-06-09",10351,16,4062],["2021-06-10",10351,7,4069],["2021-06-11",10351,23,4092],["2021-06-12",10351,5,4097],["2021-06-13",10351,4,4101],["2021-06-14",10351,13,4114],["2021-06-15",10351,4,4118],["2021-06-16",10351,18,4136],["2021-06-17",10351,7,4143],["2021-06-18",10351,26,4169],["2021-06-20",10351,1,4170],["2021-06-21",10351,3,4173],["2021-06-22",10351,3,4176],["2021-06-23",10351,11,4187],["2021-06-24",10351,4,4191],["2021-06-25",10351,16,4207],["2021-06-26",10351,10,4217],["2021-06-27",10351,1,4218],["2021-06-28",10351,5,4223],["2021-06-29",10351,6,4229],["2021-06-30",10351,8,4237],["2021-07-01",10351,5,4242],["2021-07-02",10351,15,4257],["2021-07-03",10351,8,4265],["2021-07-05",10351,4,4269],["2021-07-06",10351,6,4275],["2021-07-07",10351,7,4282],["2021-07-08",10351,1,4283],["2021-07-09",10351,17,4300],["2021-07-10",10351,1,4301],["2021-07-11",10351,1,4302],["2021-07-12",10351,4,4306],["2021-07-13",10351,6,4312],["2021-07-14",10351,10,4322],["2021-07-15",10351,7,4329],["2021-07-16",10351,27,4356],["2021-07-17",10351,9,4365],["2021-07-18",10351,1,4366],["2021-07-19",10351,3,4369],["2021-07-20",10351,7,4376],["2021-07-21",10351,21,4397],["2021-07-22",10351,15,4412],["2021-07-23",10351,13,4425],["2021-07-24",10351,9,4434],["2021-07-25",10351,6,4440],["2021-07-26",10351,7,4447],["2021-07-27",10351,19,4466],["2021-07-28",10351,27,4493],["2021-07-29",10351,18,4511],["2021-07-30",10351,32,4543],["2021-07-31",10351,8,4551],["2021-08-01",10351,6,4557],["2021-08-02",10351,21,4578],["2021-08-03",10351,18,4596],["2021-08-04",10351,23,4619],["2021-08-05",10351,17,4636],["2021-08-06",10351,33,4669],["2021-08-07",10351,19,4688],["2021-08-08",10351,6,4694],["2021-08-09",10351,24,4718],["2021-08-10",10351,26,4744],["2021-08-11",10351,42,4786],["2021-08-12",10351,23,4809],["2021-08-13",10351,43,4852],["2021-08-14",10351,10,4862],["2021-08-15",10351,4,4866],["2021-08-16",10351,18,4884],["2021-08-17",10351,17,4901],["2021-08-18",10351,46,4947],["2021-08-19",10351,15,4962],["2021-08-20",10351,48,5010],["2021-08-21",10351,4,5014],["2021-08-22",10351,6,5020],["2021-08-23",10351,20,5040],["2021-08-24",10351,20,5060],["2021-08-25",10351,36,5096],["2021-08-26",10351,32,5128],["2021-08-27",10351,35,5163],["2021-08-28",10351,22,5185],["2021-08-29",10351,3,5188],["2021-08-30",10351,20,5208],["2021-08-31",10351,22,5230],["2021-09-01",10351,41,5271],["2021-09-02",10351,38,5309],["2021-09-03",10351,31,5340],["2021-09-04",10351,3,5343],["2021-09-05",10351,4,5347],["2021-09-06",10351,2,5349],["2021-09-07",10351,14,5363],["2021-09-08",10351,37,5400],["2021-09-09",10351,19,5419],["2021-09-10",10351,30,5449],["2021-09-11",10351,9,5458],["2021-09-12",10351,6,5464],["2021-09-13",10351,8,5472],["2021-09-14",10351,15,5487],["2021-09-15",10351,28,5515],["2021-09-16",10351,18,5533],["2021-09-17",10351,29,5562],["2021-09-18",10351,15,5577],["2021-09-19",10351,1,5578],["2021-09-20",10351,7,5585],["2021-09-21",10351,5,5590],["2021-09-22",10351,22,5612],["2021-09-23",10351,4,5616],["2021-09-24",10351,10,5626],["2021-09-25",10351,3,5629],["2021-09-26",10351,3,5632],["2021-09-27",10351,4,5636],["2021-09-28",10351,10,5646],["2021-09-29",10351,18,5664],["2021-09-30",10351,9,5673],["2021-10-01",10351,11,5684],["2021-10-02",10351,3,5687],["2021-10-03",10351,1,5688],["2021-10-04",10351,7,5695],["2021-10-05",10351,7,5702],["2021-10-06",10351,21,5723],["2021-10-07",10351,10,5733],["2021-10-08",10351,15,5748],["2021-10-09",10351,4,5752],["2021-10-10",10351,2,5754],["2021-10-11",10351,6,5760],["2021-10-12",10351,6,5766],["2021-10-13",10351,14,5780],["2021-10-14",10351,5,5785],["2021-10-15",10351,10,5795],["2021-10-16",10351,1,5796],["2021-10-17",10351,1,5797],["2021-10-18",10351,6,5803],["2021-10-19",10351,4,5807],["2021-10-20",10351,6,5813],["2021-10-21",10351,19,5832],["2021-10-22",10351,8,5840],["2021-10-23",10351,1,5841],["2021-10-24",10351,2,5843],["2021-10-25",10351,9,5852],["2021-10-26",10351,11,5863],["2021-10-27",10351,45,5908],["2021-10-28",10351,17,5925],["2021-10-29",10351,14,5939],["2021-10-30",10351,4,5943],["2021-10-31",10351,1,5944],["2021-11-01",10351,6,5950],["2021-11-02",10351,7,5957],["2021-11-03",10351,25,5982],["2021-11-04",10351,34,6016],["2021-11-05",10351,20,6036],["2021-11-06",10351,5,6041],["2021-11-07",10351,2,6043],["2021-11-08",10351,8,6051],["2021-11-09",10351,26,6077],["2021-11-10",10351,30,6107],["2021-11-11",10351,52,6159],["2021-11-12",10351,15,6174],["2021-11-13",10351,1,6175],["2021-11-14",10351,2,6177],["2021-11-15",10351,6,6183],["2021-11-16",10351,8,6191],["2021-11-17",10351,27,6218],["2021-11-18",10351,36,6254],["2021-11-19",10351,6,6260],["2021-11-20",10351,3,6263],["2021-11-21",10351,3,6266],["2021-11-22",10351,22,6288],["2021-11-23",10351,18,6306],["2021-11-24",10351,22,6328],["2021-11-26",10351,2,6330],["2021-11-27",10351,2,6332],["2021-11-28",10351,1,6333],["2021-11-29",10351,8,6341],["2021-11-30",10351,7,6348],["2021-12-01",10351,15,6363],["2021-12-02",10351,49,6412],["2021-12-03",10351,17,6429],["2021-12-04",10351,2,6431],["2021-12-06",10351,5,6436],["2021-12-07",10351,12,6448],["2021-12-08",10351,19,6467],["2021-12-09",10351,43,6510],["2021-12-10",10351,9,6519],["2021-12-11",10351,3,6522],["2021-12-12",10351,5,6527],["2021-12-13",10351,3,6530],["2021-12-14",10351,12,6542],["2021-12-15",10351,14,6556],["2021-12-16",10351,32,6588],["2021-12-17",10351,13,6601],["2021-12-18",10351,2,6603],["2021-12-19",10351,2,6605],["2021-12-20",10351,3,6608],["2021-12-21",10351,12,6620],["2021-12-22",10351,18,6638],["2021-12-23",10351,18,6656],["2021-12-24",10351,3,6659],["2021-12-26",10351,3,6662],["2021-12-27",10351,7,6669],["2021-12-28",10351,5,6674],["2021-12-29",10351,26,6700],["2021-12-30",10351,36,6736],["2021-12-31",10351,5,6741],["2022-01-02",10351,1,6742],["2022-01-03",10351,6,6748]]} \ No newline at end of file diff --git a/public/data/overall/vaccinations/by-county/Laurens.json b/public/data/overall/vaccinations/by-county/Laurens.json new file mode 100644 index 000000000..5fe513486 --- /dev/null +++ b/public/data/overall/vaccinations/by-county/Laurens.json @@ -0,0 +1 @@ +{"segment":{"county":"Laurens"},"headers":["report_date","population","vaccinations","total_vaccinations"],"rows":[["2020-12-15",47296,1,1],["2020-12-17",47296,11,12],["2020-12-18",47296,70,82],["2020-12-19",47296,12,94],["2020-12-20",47296,17,111],["2020-12-21",47296,26,137],["2020-12-22",47296,56,193],["2020-12-23",47296,55,248],["2020-12-24",47296,17,265],["2020-12-25",47296,1,266],["2020-12-26",47296,8,274],["2020-12-27",47296,6,280],["2020-12-28",47296,137,417],["2020-12-29",47296,82,499],["2020-12-30",47296,92,591],["2020-12-31",47296,70,661],["2021-01-01",47296,8,669],["2021-01-02",47296,18,687],["2021-01-03",47296,3,690],["2021-01-04",47296,71,761],["2021-01-05",47296,164,925],["2021-01-06",47296,136,1061],["2021-01-07",47296,159,1220],["2021-01-08",47296,687,1907],["2021-01-09",47296,16,1923],["2021-01-10",47296,2,1925],["2021-01-11",47296,153,2078],["2021-01-12",47296,130,2208],["2021-01-13",47296,862,3070],["2021-01-14",47296,802,3872],["2021-01-15",47296,187,4059],["2021-01-16",47296,13,4072],["2021-01-17",47296,18,4090],["2021-01-18",47296,286,4376],["2021-01-19",47296,174,4550],["2021-01-20",47296,756,5306],["2021-01-21",47296,473,5779],["2021-01-22",47296,175,5954],["2021-01-23",47296,39,5993],["2021-01-24",47296,5,5998],["2021-01-25",47296,123,6121],["2021-01-26",47296,150,6271],["2021-01-27",47296,138,6409],["2021-01-28",47296,418,6827],["2021-01-29",47296,153,6980],["2021-01-30",47296,11,6991],["2021-01-31",47296,3,6994],["2021-02-01",47296,81,7075],["2021-02-02",47296,124,7199],["2021-02-03",47296,445,7644],["2021-02-04",47296,315,7959],["2021-02-05",47296,267,8226],["2021-02-06",47296,6,8232],["2021-02-07",47296,14,8246],["2021-02-08",47296,378,8624],["2021-02-09",47296,269,8893],["2021-02-10",47296,881,9774],["2021-02-11",47296,728,10502],["2021-02-12",47296,113,10615],["2021-02-13",47296,18,10633],["2021-02-14",47296,22,10655],["2021-02-15",47296,98,10753],["2021-02-16",47296,167,10920],["2021-02-17",47296,470,11390],["2021-02-18",47296,634,12024],["2021-02-19",47296,35,12059],["2021-02-20",47296,22,12081],["2021-02-21",47296,6,12087],["2021-02-22",47296,62,12149],["2021-02-23",47296,136,12285],["2021-02-24",47296,687,12972],["2021-02-25",47296,527,13499],["2021-02-26",47296,118,13617],["2021-02-27",47296,5,13622],["2021-02-28",47296,6,13628],["2021-03-01",47296,91,13719],["2021-03-02",47296,129,13848],["2021-03-03",47296,552,14400],["2021-03-04",47296,263,14663],["2021-03-05",47296,126,14789],["2021-03-06",47296,8,14797],["2021-03-07",47296,11,14808],["2021-03-08",47296,147,14955],["2021-03-09",47296,154,15109],["2021-03-10",47296,626,15735],["2021-03-11",47296,268,16003],["2021-03-12",47296,150,16153],["2021-03-13",47296,29,16182],["2021-03-14",47296,12,16194],["2021-03-15",47296,180,16374],["2021-03-16",47296,175,16549],["2021-03-17",47296,432,16981],["2021-03-18",47296,166,17147],["2021-03-19",47296,141,17288],["2021-03-20",47296,10,17298],["2021-03-21",47296,16,17314],["2021-03-22",47296,132,17446],["2021-03-23",47296,95,17541],["2021-03-24",47296,504,18045],["2021-03-25",47296,414,18459],["2021-03-26",47296,190,18649],["2021-03-27",47296,43,18692],["2021-03-28",47296,18,18710],["2021-03-29",47296,180,18890],["2021-03-30",47296,154,19044],["2021-03-31",47296,374,19418],["2021-04-01",47296,286,19704],["2021-04-02",47296,215,19919],["2021-04-03",47296,43,19962],["2021-04-04",47296,21,19983],["2021-04-05",47296,177,20160],["2021-04-06",47296,317,20477],["2021-04-07",47296,430,20907],["2021-04-08",47296,206,21113],["2021-04-09",47296,243,21356],["2021-04-10",47296,55,21411],["2021-04-11",47296,28,21439],["2021-04-12",47296,169,21608],["2021-04-13",47296,303,21911],["2021-04-14",47296,240,22151],["2021-04-15",47296,154,22305],["2021-04-16",47296,160,22465],["2021-04-17",47296,25,22490],["2021-04-18",47296,19,22509],["2021-04-19",47296,156,22665],["2021-04-20",47296,282,22947],["2021-04-21",47296,368,23315],["2021-04-22",47296,149,23464],["2021-04-23",47296,185,23649],["2021-04-24",47296,49,23698],["2021-04-25",47296,12,23710],["2021-04-26",47296,152,23862],["2021-04-27",47296,282,24144],["2021-04-28",47296,293,24437],["2021-04-29",47296,130,24567],["2021-04-30",47296,187,24754],["2021-05-01",47296,49,24803],["2021-05-02",47296,12,24815],["2021-05-03",47296,118,24933],["2021-05-04",47296,258,25191],["2021-05-05",47296,202,25393],["2021-05-06",47296,101,25494],["2021-05-07",47296,138,25632],["2021-05-08",47296,37,25669],["2021-05-09",47296,8,25677],["2021-05-10",47296,86,25763],["2021-05-11",47296,153,25916],["2021-05-12",47296,163,26079],["2021-05-13",47296,127,26206],["2021-05-14",47296,95,26301],["2021-05-15",47296,33,26334],["2021-05-16",47296,29,26363],["2021-05-17",47296,124,26487],["2021-05-18",47296,158,26645],["2021-05-19",47296,181,26826],["2021-05-20",47296,103,26929],["2021-05-21",47296,116,27045],["2021-05-22",47296,39,27084],["2021-05-23",47296,20,27104],["2021-05-24",47296,59,27163],["2021-05-25",47296,158,27321],["2021-05-26",47296,121,27442],["2021-05-27",47296,82,27524],["2021-05-28",47296,85,27609],["2021-05-29",47296,30,27639],["2021-05-30",47296,9,27648],["2021-05-31",47296,14,27662],["2021-06-01",47296,107,27769],["2021-06-02",47296,93,27862],["2021-06-03",47296,77,27939],["2021-06-04",47296,105,28044],["2021-06-05",47296,29,28073],["2021-06-06",47296,22,28095],["2021-06-07",47296,83,28178],["2021-06-08",47296,85,28263],["2021-06-09",47296,83,28346],["2021-06-10",47296,84,28430],["2021-06-11",47296,73,28503],["2021-06-12",47296,37,28540],["2021-06-13",47296,18,28558],["2021-06-14",47296,61,28619],["2021-06-15",47296,71,28690],["2021-06-16",47296,76,28766],["2021-06-17",47296,88,28854],["2021-06-18",47296,49,28903],["2021-06-19",47296,20,28923],["2021-06-20",47296,7,28930],["2021-06-21",47296,49,28979],["2021-06-22",47296,63,29042],["2021-06-23",47296,63,29105],["2021-06-24",47296,47,29152],["2021-06-25",47296,71,29223],["2021-06-26",47296,19,29242],["2021-06-27",47296,12,29254],["2021-06-28",47296,55,29309],["2021-06-29",47296,65,29374],["2021-06-30",47296,84,29458],["2021-07-01",47296,71,29529],["2021-07-02",47296,37,29566],["2021-07-03",47296,18,29584],["2021-07-05",47296,50,29634],["2021-07-06",47296,50,29684],["2021-07-07",47296,60,29744],["2021-07-08",47296,60,29804],["2021-07-09",47296,65,29869],["2021-07-10",47296,29,29898],["2021-07-11",47296,12,29910],["2021-07-12",47296,63,29973],["2021-07-13",47296,47,30020],["2021-07-14",47296,73,30093],["2021-07-15",47296,75,30168],["2021-07-16",47296,75,30243],["2021-07-17",47296,25,30268],["2021-07-18",47296,19,30287],["2021-07-19",47296,88,30375],["2021-07-20",47296,56,30431],["2021-07-21",47296,98,30529],["2021-07-22",47296,100,30629],["2021-07-23",47296,142,30771],["2021-07-24",47296,38,30809],["2021-07-25",47296,22,30831],["2021-07-26",47296,122,30953],["2021-07-27",47296,106,31059],["2021-07-28",47296,212,31271],["2021-07-29",47296,95,31366],["2021-07-30",47296,172,31538],["2021-07-31",47296,54,31592],["2021-08-01",47296,28,31620],["2021-08-02",47296,133,31753],["2021-08-03",47296,102,31855],["2021-08-04",47296,137,31992],["2021-08-05",47296,125,32117],["2021-08-06",47296,168,32285],["2021-08-07",47296,55,32340],["2021-08-08",47296,48,32388],["2021-08-09",47296,163,32551],["2021-08-10",47296,139,32690],["2021-08-11",47296,213,32903],["2021-08-12",47296,128,33031],["2021-08-13",47296,218,33249],["2021-08-14",47296,74,33323],["2021-08-15",47296,54,33377],["2021-08-16",47296,158,33535],["2021-08-17",47296,196,33731],["2021-08-18",47296,252,33983],["2021-08-19",47296,175,34158],["2021-08-20",47296,228,34386],["2021-08-21",47296,70,34456],["2021-08-22",47296,68,34524],["2021-08-23",47296,181,34705],["2021-08-24",47296,179,34884],["2021-08-25",47296,295,35179],["2021-08-26",47296,210,35389],["2021-08-27",47296,257,35646],["2021-08-28",47296,66,35712],["2021-08-29",47296,51,35763],["2021-08-30",47296,231,35994],["2021-08-31",47296,243,36237],["2021-09-01",47296,272,36509],["2021-09-02",47296,196,36705],["2021-09-03",47296,304,37009],["2021-09-04",47296,102,37111],["2021-09-05",47296,36,37147],["2021-09-06",47296,26,37173],["2021-09-07",47296,191,37364],["2021-09-08",47296,226,37590],["2021-09-09",47296,180,37770],["2021-09-10",47296,202,37972],["2021-09-11",47296,85,38057],["2021-09-12",47296,42,38099],["2021-09-13",47296,166,38265],["2021-09-14",47296,182,38447],["2021-09-15",47296,196,38643],["2021-09-16",47296,170,38813],["2021-09-17",47296,203,39016],["2021-09-18",47296,50,39066],["2021-09-19",47296,37,39103],["2021-09-20",47296,146,39249],["2021-09-21",47296,112,39361],["2021-09-22",47296,166,39527],["2021-09-23",47296,149,39676],["2021-09-24",47296,167,39843],["2021-09-25",47296,34,39877],["2021-09-26",47296,20,39897],["2021-09-27",47296,97,39994],["2021-09-28",47296,167,40161],["2021-09-29",47296,148,40309],["2021-09-30",47296,120,40429],["2021-10-01",47296,162,40591],["2021-10-02",47296,51,40642],["2021-10-03",47296,22,40664],["2021-10-04",47296,100,40764],["2021-10-05",47296,115,40879],["2021-10-06",47296,141,41020],["2021-10-07",47296,80,41100],["2021-10-08",47296,132,41232],["2021-10-09",47296,31,41263],["2021-10-10",47296,20,41283],["2021-10-11",47296,46,41329],["2021-10-12",47296,92,41421],["2021-10-13",47296,89,41510],["2021-10-14",47296,61,41571],["2021-10-15",47296,97,41668],["2021-10-16",47296,21,41689],["2021-10-17",47296,14,41703],["2021-10-18",47296,58,41761],["2021-10-19",47296,59,41820],["2021-10-20",47296,80,41900],["2021-10-21",47296,59,41959],["2021-10-22",47296,88,42047],["2021-10-23",47296,31,42078],["2021-10-24",47296,23,42101],["2021-10-25",47296,170,42271],["2021-10-26",47296,156,42427],["2021-10-27",47296,294,42721],["2021-10-28",47296,199,42920],["2021-10-29",47296,169,43089],["2021-10-30",47296,35,43124],["2021-10-31",47296,38,43162],["2021-11-01",47296,118,43280],["2021-11-02",47296,125,43405],["2021-11-03",47296,230,43635],["2021-11-04",47296,211,43846],["2021-11-05",47296,127,43973],["2021-11-06",47296,39,44012],["2021-11-07",47296,17,44029],["2021-11-08",47296,105,44134],["2021-11-09",47296,119,44253],["2021-11-10",47296,214,44467],["2021-11-11",47296,72,44539],["2021-11-12",47296,102,44641],["2021-11-13",47296,38,44679],["2021-11-14",47296,23,44702],["2021-11-15",47296,134,44836],["2021-11-16",47296,95,44931],["2021-11-17",47296,189,45120],["2021-11-18",47296,186,45306],["2021-11-19",47296,143,45449],["2021-11-20",47296,44,45493],["2021-11-21",47296,23,45516],["2021-11-22",47296,132,45648],["2021-11-23",47296,85,45733],["2021-11-24",47296,97,45830],["2021-11-25",47296,2,45832],["2021-11-26",47296,47,45879],["2021-11-27",47296,38,45917],["2021-11-28",47296,25,45942],["2021-11-29",47296,141,46083],["2021-11-30",47296,125,46208],["2021-12-01",47296,220,46428],["2021-12-02",47296,201,46629],["2021-12-03",47296,156,46785],["2021-12-04",47296,61,46846],["2021-12-05",47296,15,46861],["2021-12-06",47296,106,46967],["2021-12-07",47296,120,47087],["2021-12-08",47296,179,47266],["2021-12-09",47296,150,47416],["2021-12-10",47296,122,47538],["2021-12-11",47296,40,47578],["2021-12-12",47296,20,47598],["2021-12-13",47296,105,47703],["2021-12-14",47296,71,47774],["2021-12-15",47296,127,47901],["2021-12-16",47296,146,48047],["2021-12-17",47296,130,48177],["2021-12-18",47296,30,48207],["2021-12-19",47296,17,48224],["2021-12-20",47296,122,48346],["2021-12-21",47296,118,48464],["2021-12-22",47296,147,48611],["2021-12-23",47296,82,48693],["2021-12-24",47296,21,48714],["2021-12-26",47296,19,48733],["2021-12-27",47296,126,48859],["2021-12-28",47296,115,48974],["2021-12-29",47296,200,49174],["2021-12-30",47296,185,49359],["2021-12-31",47296,66,49425],["2022-01-01",47296,3,49428],["2022-01-02",47296,22,49450],["2022-01-03",47296,48,49498]]} \ No newline at end of file diff --git a/public/data/overall/vaccinations/by-county/Lee.json b/public/data/overall/vaccinations/by-county/Lee.json new file mode 100644 index 000000000..e94c3f7ad --- /dev/null +++ b/public/data/overall/vaccinations/by-county/Lee.json @@ -0,0 +1 @@ +{"segment":{"county":"Lee"},"headers":["report_date","population","vaccinations","total_vaccinations"],"rows":[["2020-12-16",29971,2,2],["2020-12-17",29971,40,42],["2020-12-18",29971,100,142],["2020-12-19",29971,40,182],["2020-12-20",29971,11,193],["2020-12-21",29971,51,244],["2020-12-22",29971,71,315],["2020-12-23",29971,77,392],["2020-12-24",29971,21,413],["2020-12-26",29971,17,430],["2020-12-27",29971,1,431],["2020-12-28",29971,43,474],["2020-12-29",29971,57,531],["2020-12-30",29971,62,593],["2020-12-31",29971,40,633],["2021-01-01",29971,13,646],["2021-01-02",29971,1,647],["2021-01-03",29971,3,650],["2021-01-04",29971,46,696],["2021-01-05",29971,51,747],["2021-01-06",29971,51,798],["2021-01-07",29971,109,907],["2021-01-08",29971,119,1026],["2021-01-09",29971,6,1032],["2021-01-10",29971,14,1046],["2021-01-11",29971,190,1236],["2021-01-12",29971,222,1458],["2021-01-13",29971,256,1714],["2021-01-14",29971,271,1985],["2021-01-15",29971,305,2290],["2021-01-16",29971,137,2427],["2021-01-17",29971,35,2462],["2021-01-18",29971,307,2769],["2021-01-19",29971,270,3039],["2021-01-20",29971,268,3307],["2021-01-21",29971,250,3557],["2021-01-22",29971,231,3788],["2021-01-23",29971,38,3826],["2021-01-24",29971,4,3830],["2021-01-25",29971,191,4021],["2021-01-26",29971,208,4229],["2021-01-27",29971,219,4448],["2021-01-28",29971,208,4656],["2021-01-29",29971,235,4891],["2021-01-30",29971,12,4903],["2021-01-31",29971,14,4917],["2021-02-01",29971,139,5056],["2021-02-02",29971,175,5231],["2021-02-03",29971,249,5480],["2021-02-04",29971,240,5720],["2021-02-05",29971,268,5988],["2021-02-06",29971,147,6135],["2021-02-07",29971,27,6162],["2021-02-08",29971,214,6376],["2021-02-09",29971,254,6630],["2021-02-10",29971,240,6870],["2021-02-11",29971,257,7127],["2021-02-12",29971,269,7396],["2021-02-13",29971,81,7477],["2021-02-14",29971,12,7489],["2021-02-15",29971,176,7665],["2021-02-16",29971,208,7873],["2021-02-17",29971,235,8108],["2021-02-18",29971,243,8351],["2021-02-19",29971,208,8559],["2021-02-20",29971,27,8586],["2021-02-21",29971,4,8590],["2021-02-22",29971,147,8737],["2021-02-23",29971,207,8944],["2021-02-24",29971,161,9105],["2021-02-25",29971,210,9315],["2021-02-26",29971,193,9508],["2021-02-27",29971,39,9547],["2021-02-28",29971,14,9561],["2021-03-01",29971,230,9791],["2021-03-02",29971,238,10029],["2021-03-03",29971,176,10205],["2021-03-04",29971,209,10414],["2021-03-05",29971,151,10565],["2021-03-06",29971,12,10577],["2021-03-07",29971,9,10586],["2021-03-08",29971,162,10748],["2021-03-09",29971,237,10985],["2021-03-10",29971,187,11172],["2021-03-11",29971,192,11364],["2021-03-12",29971,196,11560],["2021-03-13",29971,43,11603],["2021-03-14",29971,29,11632],["2021-03-15",29971,280,11912],["2021-03-16",29971,299,12211],["2021-03-17",29971,225,12436],["2021-03-18",29971,182,12618],["2021-03-19",29971,239,12857],["2021-03-20",29971,73,12930],["2021-03-21",29971,35,12965],["2021-03-22",29971,134,13099],["2021-03-23",29971,199,13298],["2021-03-24",29971,196,13494],["2021-03-25",29971,252,13746],["2021-03-26",29971,179,13925],["2021-03-27",29971,47,13972],["2021-03-28",29971,35,14007],["2021-03-29",29971,158,14165],["2021-03-30",29971,293,14458],["2021-03-31",29971,236,14694],["2021-04-01",29971,267,14961],["2021-04-02",29971,129,15090],["2021-04-03",29971,33,15123],["2021-04-04",29971,23,15146],["2021-04-05",29971,189,15335],["2021-04-06",29971,293,15628],["2021-04-07",29971,249,15877],["2021-04-08",29971,254,16131],["2021-04-09",29971,194,16325],["2021-04-10",29971,103,16428],["2021-04-11",29971,15,16443],["2021-04-12",29971,145,16588],["2021-04-13",29971,334,16922],["2021-04-14",29971,160,17082],["2021-04-15",29971,192,17274],["2021-04-16",29971,280,17554],["2021-04-17",29971,24,17578],["2021-04-18",29971,29,17607],["2021-04-19",29971,144,17751],["2021-04-20",29971,276,18027],["2021-04-21",29971,132,18159],["2021-04-22",29971,193,18352],["2021-04-23",29971,182,18534],["2021-04-24",29971,31,18565],["2021-04-25",29971,25,18590],["2021-04-26",29971,117,18707],["2021-04-27",29971,274,18981],["2021-04-28",29971,127,19108],["2021-04-29",29971,191,19299],["2021-04-30",29971,156,19455],["2021-05-01",29971,49,19504],["2021-05-02",29971,29,19533],["2021-05-03",29971,87,19620],["2021-05-04",29971,210,19830],["2021-05-05",29971,86,19916],["2021-05-06",29971,89,20005],["2021-05-07",29971,102,20107],["2021-05-08",29971,27,20134],["2021-05-09",29971,10,20144],["2021-05-10",29971,74,20218],["2021-05-11",29971,117,20335],["2021-05-12",29971,73,20408],["2021-05-13",29971,142,20550],["2021-05-14",29971,74,20624],["2021-05-15",29971,38,20662],["2021-05-16",29971,34,20696],["2021-05-17",29971,101,20797],["2021-05-18",29971,119,20916],["2021-05-19",29971,77,20993],["2021-05-20",29971,144,21137],["2021-05-21",29971,123,21260],["2021-05-22",29971,35,21295],["2021-05-23",29971,19,21314],["2021-05-24",29971,69,21383],["2021-05-25",29971,62,21445],["2021-05-26",29971,54,21499],["2021-05-27",29971,54,21553],["2021-05-28",29971,65,21618],["2021-05-29",29971,12,21630],["2021-05-30",29971,13,21643],["2021-05-31",29971,4,21647],["2021-06-01",29971,85,21732],["2021-06-02",29971,57,21789],["2021-06-03",29971,54,21843],["2021-06-04",29971,70,21913],["2021-06-05",29971,35,21948],["2021-06-06",29971,22,21970],["2021-06-07",29971,66,22036],["2021-06-08",29971,69,22105],["2021-06-09",29971,54,22159],["2021-06-10",29971,64,22223],["2021-06-11",29971,82,22305],["2021-06-12",29971,41,22346],["2021-06-13",29971,15,22361],["2021-06-14",29971,66,22427],["2021-06-15",29971,51,22478],["2021-06-16",29971,50,22528],["2021-06-17",29971,52,22580],["2021-06-18",29971,63,22643],["2021-06-19",29971,21,22664],["2021-06-20",29971,12,22676],["2021-06-21",29971,28,22704],["2021-06-22",29971,68,22772],["2021-06-23",29971,44,22816],["2021-06-24",29971,85,22901],["2021-06-25",29971,35,22936],["2021-06-26",29971,26,22962],["2021-06-27",29971,16,22978],["2021-06-28",29971,26,23004],["2021-06-29",29971,47,23051],["2021-06-30",29971,30,23081],["2021-07-01",29971,37,23118],["2021-07-02",29971,48,23166],["2021-07-03",29971,18,23184],["2021-07-04",29971,3,23187],["2021-07-05",29971,22,23209],["2021-07-06",29971,34,23243],["2021-07-07",29971,54,23297],["2021-07-08",29971,38,23335],["2021-07-09",29971,47,23382],["2021-07-10",29971,21,23403],["2021-07-11",29971,13,23416],["2021-07-12",29971,26,23442],["2021-07-13",29971,51,23493],["2021-07-14",29971,26,23519],["2021-07-15",29971,79,23598],["2021-07-16",29971,53,23651],["2021-07-17",29971,28,23679],["2021-07-18",29971,22,23701],["2021-07-19",29971,33,23734],["2021-07-20",29971,49,23783],["2021-07-21",29971,38,23821],["2021-07-22",29971,69,23890],["2021-07-23",29971,70,23960],["2021-07-24",29971,35,23995],["2021-07-25",29971,10,24005],["2021-07-26",29971,39,24044],["2021-07-27",29971,58,24102],["2021-07-28",29971,63,24165],["2021-07-29",29971,76,24241],["2021-07-30",29971,97,24338],["2021-07-31",29971,58,24396],["2021-08-01",29971,29,24425],["2021-08-02",29971,65,24490],["2021-08-03",29971,82,24572],["2021-08-04",29971,75,24647],["2021-08-05",29971,94,24741],["2021-08-06",29971,108,24849],["2021-08-07",29971,73,24922],["2021-08-08",29971,46,24968],["2021-08-09",29971,73,25041],["2021-08-10",29971,128,25169],["2021-08-11",29971,95,25264],["2021-08-12",29971,113,25377],["2021-08-13",29971,165,25542],["2021-08-14",29971,62,25604],["2021-08-15",29971,46,25650],["2021-08-16",29971,86,25736],["2021-08-17",29971,109,25845],["2021-08-18",29971,86,25931],["2021-08-19",29971,120,26051],["2021-08-20",29971,170,26221],["2021-08-21",29971,83,26304],["2021-08-22",29971,32,26336],["2021-08-23",29971,95,26431],["2021-08-24",29971,117,26548],["2021-08-25",29971,93,26641],["2021-08-26",29971,126,26767],["2021-08-27",29971,154,26921],["2021-08-28",29971,67,26988],["2021-08-29",29971,48,27036],["2021-08-30",29971,110,27146],["2021-08-31",29971,135,27281],["2021-09-01",29971,115,27396],["2021-09-02",29971,120,27516],["2021-09-03",29971,132,27648],["2021-09-04",29971,53,27701],["2021-09-05",29971,38,27739],["2021-09-06",29971,12,27751],["2021-09-07",29971,112,27863],["2021-09-08",29971,75,27938],["2021-09-09",29971,116,28054],["2021-09-10",29971,132,28186],["2021-09-11",29971,50,28236],["2021-09-12",29971,39,28275],["2021-09-13",29971,70,28345],["2021-09-14",29971,116,28461],["2021-09-15",29971,95,28556],["2021-09-16",29971,77,28633],["2021-09-17",29971,115,28748],["2021-09-18",29971,53,28801],["2021-09-19",29971,30,28831],["2021-09-20",29971,53,28884],["2021-09-21",29971,76,28960],["2021-09-22",29971,59,29019],["2021-09-23",29971,52,29071],["2021-09-24",29971,93,29164],["2021-09-25",29971,41,29205],["2021-09-26",29971,21,29226],["2021-09-27",29971,53,29279],["2021-09-28",29971,130,29409],["2021-09-29",29971,135,29544],["2021-09-30",29971,150,29694],["2021-10-01",29971,150,29844],["2021-10-02",29971,63,29907],["2021-10-03",29971,17,29924],["2021-10-04",29971,35,29959],["2021-10-05",29971,116,30075],["2021-10-06",29971,112,30187],["2021-10-07",29971,95,30282],["2021-10-08",29971,118,30400],["2021-10-09",29971,33,30433],["2021-10-10",29971,13,30446],["2021-10-11",29971,37,30483],["2021-10-12",29971,105,30588],["2021-10-13",29971,64,30652],["2021-10-14",29971,88,30740],["2021-10-15",29971,86,30826],["2021-10-16",29971,36,30862],["2021-10-17",29971,18,30880],["2021-10-18",29971,41,30921],["2021-10-19",29971,40,30961],["2021-10-20",29971,44,31005],["2021-10-21",29971,33,31038],["2021-10-22",29971,82,31120],["2021-10-23",29971,25,31145],["2021-10-24",29971,15,31160],["2021-10-25",29971,78,31238],["2021-10-26",29971,68,31306],["2021-10-27",29971,61,31367],["2021-10-28",29971,89,31456],["2021-10-29",29971,89,31545],["2021-10-30",29971,19,31564],["2021-10-31",29971,15,31579],["2021-11-01",29971,56,31635],["2021-11-02",29971,106,31741],["2021-11-03",29971,105,31846],["2021-11-04",29971,131,31977],["2021-11-05",29971,81,32058],["2021-11-06",29971,56,32114],["2021-11-07",29971,18,32132],["2021-11-08",29971,74,32206],["2021-11-09",29971,99,32305],["2021-11-10",29971,68,32373],["2021-11-11",29971,94,32467],["2021-11-12",29971,77,32544],["2021-11-13",29971,36,32580],["2021-11-14",29971,12,32592],["2021-11-15",29971,74,32666],["2021-11-16",29971,99,32765],["2021-11-17",29971,90,32855],["2021-11-18",29971,99,32954],["2021-11-19",29971,87,33041],["2021-11-20",29971,41,33082],["2021-11-21",29971,29,33111],["2021-11-22",29971,79,33190],["2021-11-23",29971,103,33293],["2021-11-24",29971,49,33342],["2021-11-26",29971,43,33385],["2021-11-27",29971,27,33412],["2021-11-28",29971,19,33431],["2021-11-29",29971,75,33506],["2021-11-30",29971,123,33629],["2021-12-01",29971,111,33740],["2021-12-02",29971,135,33875],["2021-12-03",29971,148,34023],["2021-12-04",29971,55,34078],["2021-12-05",29971,32,34110],["2021-12-06",29971,79,34189],["2021-12-07",29971,119,34308],["2021-12-08",29971,74,34382],["2021-12-09",29971,102,34484],["2021-12-10",29971,111,34595],["2021-12-11",29971,30,34625],["2021-12-12",29971,20,34645],["2021-12-13",29971,59,34704],["2021-12-14",29971,90,34794],["2021-12-15",29971,52,34846],["2021-12-16",29971,79,34925],["2021-12-17",29971,98,35023],["2021-12-18",29971,28,35051],["2021-12-19",29971,17,35068],["2021-12-20",29971,79,35147],["2021-12-21",29971,90,35237],["2021-12-22",29971,87,35324],["2021-12-23",29971,75,35399],["2021-12-24",29971,22,35421],["2021-12-26",29971,19,35440],["2021-12-27",29971,74,35514],["2021-12-28",29971,93,35607],["2021-12-29",29971,82,35689],["2021-12-30",29971,112,35801],["2021-12-31",29971,36,35837],["2022-01-01",29971,5,35842],["2022-01-02",29971,15,35857],["2022-01-03",29971,27,35884]]} \ No newline at end of file diff --git a/public/data/overall/vaccinations/by-county/Liberty.json b/public/data/overall/vaccinations/by-county/Liberty.json new file mode 100644 index 000000000..24c1719bf --- /dev/null +++ b/public/data/overall/vaccinations/by-county/Liberty.json @@ -0,0 +1 @@ +{"segment":{"county":"Liberty"},"headers":["report_date","population","vaccinations","total_vaccinations"],"rows":[["2020-12-15",61904,4,4],["2020-12-16",61904,9,13],["2020-12-17",61904,7,20],["2020-12-18",61904,24,44],["2020-12-19",61904,1,45],["2020-12-21",61904,14,59],["2020-12-22",61904,22,81],["2020-12-23",61904,15,96],["2020-12-24",61904,1,97],["2020-12-27",61904,3,100],["2020-12-28",61904,18,118],["2020-12-29",61904,28,146],["2020-12-30",61904,38,184],["2020-12-31",61904,20,204],["2021-01-01",61904,10,214],["2021-01-02",61904,4,218],["2021-01-03",61904,2,220],["2021-01-04",61904,18,238],["2021-01-05",61904,34,272],["2021-01-06",61904,59,331],["2021-01-07",61904,48,379],["2021-01-08",61904,67,446],["2021-01-09",61904,6,452],["2021-01-10",61904,55,507],["2021-01-11",61904,123,630],["2021-01-12",61904,87,717],["2021-01-13",61904,158,875],["2021-01-14",61904,213,1088],["2021-01-15",61904,121,1209],["2021-01-16",61904,70,1279],["2021-01-17",61904,31,1310],["2021-01-18",61904,194,1504],["2021-01-19",61904,136,1640],["2021-01-20",61904,154,1794],["2021-01-21",61904,264,2058],["2021-01-22",61904,139,2197],["2021-01-23",61904,52,2249],["2021-01-24",61904,59,2308],["2021-01-25",61904,205,2513],["2021-01-26",61904,95,2608],["2021-01-27",61904,116,2724],["2021-01-28",61904,196,2920],["2021-01-29",61904,193,3113],["2021-01-30",61904,56,3169],["2021-01-31",61904,78,3247],["2021-02-01",61904,153,3400],["2021-02-02",61904,107,3507],["2021-02-03",61904,179,3686],["2021-02-04",61904,151,3837],["2021-02-05",61904,126,3963],["2021-02-06",61904,50,4013],["2021-02-07",61904,8,4021],["2021-02-08",61904,184,4205],["2021-02-09",61904,124,4329],["2021-02-10",61904,178,4507],["2021-02-11",61904,281,4788],["2021-02-12",61904,203,4991],["2021-02-13",61904,78,5069],["2021-02-14",61904,43,5112],["2021-02-15",61904,275,5387],["2021-02-16",61904,169,5556],["2021-02-17",61904,214,5770],["2021-02-18",61904,352,6122],["2021-02-19",61904,159,6281],["2021-02-20",61904,64,6345],["2021-02-21",61904,52,6397],["2021-02-22",61904,195,6592],["2021-02-23",61904,104,6696],["2021-02-24",61904,151,6847],["2021-02-25",61904,269,7116],["2021-02-26",61904,102,7218],["2021-02-27",61904,297,7515],["2021-02-28",61904,34,7549],["2021-03-01",61904,152,7701],["2021-03-02",61904,125,7826],["2021-03-03",61904,124,7950],["2021-03-04",61904,282,8232],["2021-03-05",61904,90,8322],["2021-03-06",61904,52,8374],["2021-03-07",61904,31,8405],["2021-03-08",61904,177,8582],["2021-03-09",61904,225,8807],["2021-03-10",61904,152,8959],["2021-03-11",61904,300,9259],["2021-03-12",61904,203,9462],["2021-03-13",61904,345,9807],["2021-03-14",61904,30,9837],["2021-03-15",61904,257,10094],["2021-03-16",61904,184,10278],["2021-03-17",61904,261,10539],["2021-03-18",61904,283,10822],["2021-03-19",61904,226,11048],["2021-03-20",61904,76,11124],["2021-03-21",61904,33,11157],["2021-03-22",61904,257,11414],["2021-03-23",61904,200,11614],["2021-03-24",61904,216,11830],["2021-03-25",61904,314,12144],["2021-03-26",61904,220,12364],["2021-03-27",61904,198,12562],["2021-03-28",61904,57,12619],["2021-03-29",61904,231,12850],["2021-03-30",61904,282,13132],["2021-03-31",61904,254,13386],["2021-04-01",61904,345,13731],["2021-04-02",61904,199,13930],["2021-04-03",61904,80,14010],["2021-04-04",61904,25,14035],["2021-04-05",61904,352,14387],["2021-04-06",61904,235,14622],["2021-04-07",61904,247,14869],["2021-04-08",61904,400,15269],["2021-04-09",61904,276,15545],["2021-04-10",61904,355,15900],["2021-04-11",61904,36,15936],["2021-04-12",61904,252,16188],["2021-04-13",61904,218,16406],["2021-04-14",61904,312,16718],["2021-04-15",61904,358,17076],["2021-04-16",61904,258,17334],["2021-04-17",61904,100,17434],["2021-04-18",61904,33,17467],["2021-04-19",61904,232,17699],["2021-04-20",61904,219,17918],["2021-04-21",61904,186,18104],["2021-04-22",61904,376,18480],["2021-04-23",61904,237,18717],["2021-04-24",61904,105,18822],["2021-04-25",61904,35,18857],["2021-04-26",61904,213,19070],["2021-04-27",61904,242,19312],["2021-04-28",61904,164,19476],["2021-04-29",61904,397,19873],["2021-04-30",61904,197,20070],["2021-05-01",61904,116,20186],["2021-05-02",61904,28,20214],["2021-05-03",61904,196,20410],["2021-05-04",61904,158,20568],["2021-05-05",61904,164,20732],["2021-05-06",61904,295,21027],["2021-05-07",61904,185,21212],["2021-05-08",61904,77,21289],["2021-05-09",61904,26,21315],["2021-05-10",61904,119,21434],["2021-05-11",61904,157,21591],["2021-05-12",61904,117,21708],["2021-05-13",61904,223,21931],["2021-05-14",61904,157,22088],["2021-05-15",61904,73,22161],["2021-05-16",61904,50,22211],["2021-05-17",61904,175,22386],["2021-05-18",61904,135,22521],["2021-05-19",61904,116,22637],["2021-05-20",61904,200,22837],["2021-05-21",61904,167,23004],["2021-05-22",61904,60,23064],["2021-05-23",61904,40,23104],["2021-05-24",61904,121,23225],["2021-05-25",61904,136,23361],["2021-05-26",61904,82,23443],["2021-05-27",61904,162,23605],["2021-05-28",61904,99,23704],["2021-05-29",61904,54,23758],["2021-05-30",61904,29,23787],["2021-05-31",61904,23,23810],["2021-06-01",61904,139,23949],["2021-06-02",61904,101,24050],["2021-06-03",61904,135,24185],["2021-06-04",61904,123,24308],["2021-06-05",61904,71,24379],["2021-06-06",61904,17,24396],["2021-06-07",61904,108,24504],["2021-06-08",61904,111,24615],["2021-06-09",61904,77,24692],["2021-06-10",61904,109,24801],["2021-06-11",61904,88,24889],["2021-06-12",61904,62,24951],["2021-06-13",61904,36,24987],["2021-06-14",61904,109,25096],["2021-06-15",61904,98,25194],["2021-06-16",61904,73,25267],["2021-06-17",61904,139,25406],["2021-06-18",61904,105,25511],["2021-06-19",61904,36,25547],["2021-06-20",61904,44,25591],["2021-06-21",61904,69,25660],["2021-06-22",61904,95,25755],["2021-06-23",61904,87,25842],["2021-06-24",61904,121,25963],["2021-06-25",61904,79,26042],["2021-06-26",61904,48,26090],["2021-06-27",61904,20,26110],["2021-06-28",61904,78,26188],["2021-06-29",61904,98,26286],["2021-06-30",61904,66,26352],["2021-07-01",61904,55,26407],["2021-07-02",61904,106,26513],["2021-07-03",61904,38,26551],["2021-07-04",61904,4,26555],["2021-07-05",61904,59,26614],["2021-07-06",61904,60,26674],["2021-07-07",61904,49,26723],["2021-07-08",61904,88,26811],["2021-07-09",61904,71,26882],["2021-07-10",61904,40,26922],["2021-07-11",61904,33,26955],["2021-07-12",61904,68,27023],["2021-07-13",61904,52,27075],["2021-07-14",61904,45,27120],["2021-07-15",61904,71,27191],["2021-07-16",61904,89,27280],["2021-07-17",61904,40,27320],["2021-07-18",61904,40,27360],["2021-07-19",61904,86,27446],["2021-07-20",61904,65,27511],["2021-07-21",61904,71,27582],["2021-07-22",61904,114,27696],["2021-07-23",61904,105,27801],["2021-07-24",61904,217,28018],["2021-07-25",61904,24,28042],["2021-07-26",61904,143,28185],["2021-07-27",61904,135,28320],["2021-07-28",61904,96,28416],["2021-07-29",61904,132,28548],["2021-07-30",61904,138,28686],["2021-07-31",61904,71,28757],["2021-08-01",61904,45,28802],["2021-08-02",61904,98,28900],["2021-08-03",61904,79,28979],["2021-08-04",61904,99,29078],["2021-08-05",61904,114,29192],["2021-08-06",61904,129,29321],["2021-08-07",61904,60,29381],["2021-08-08",61904,35,29416],["2021-08-09",61904,114,29530],["2021-08-10",61904,129,29659],["2021-08-11",61904,142,29801],["2021-08-12",61904,123,29924],["2021-08-13",61904,176,30100],["2021-08-14",61904,217,30317],["2021-08-15",61904,55,30372],["2021-08-16",61904,136,30508],["2021-08-17",61904,113,30621],["2021-08-18",61904,93,30714],["2021-08-19",61904,184,30898],["2021-08-20",61904,133,31031],["2021-08-21",61904,75,31106],["2021-08-22",61904,43,31149],["2021-08-23",61904,121,31270],["2021-08-24",61904,134,31404],["2021-08-25",61904,125,31529],["2021-08-26",61904,168,31697],["2021-08-27",61904,139,31836],["2021-08-28",61904,76,31912],["2021-08-29",61904,62,31974],["2021-08-30",61904,134,32108],["2021-08-31",61904,127,32235],["2021-09-01",61904,126,32361],["2021-09-02",61904,156,32517],["2021-09-03",61904,142,32659],["2021-09-04",61904,56,32715],["2021-09-05",61904,37,32752],["2021-09-06",61904,34,32786],["2021-09-07",61904,130,32916],["2021-09-08",61904,127,33043],["2021-09-09",61904,182,33225],["2021-09-10",61904,169,33394],["2021-09-11",61904,80,33474],["2021-09-12",61904,40,33514],["2021-09-13",61904,110,33624],["2021-09-14",61904,100,33724],["2021-09-15",61904,84,33808],["2021-09-16",61904,117,33925],["2021-09-17",61904,119,34044],["2021-09-18",61904,44,34088],["2021-09-19",61904,30,34118],["2021-09-20",61904,78,34196],["2021-09-21",61904,85,34281],["2021-09-22",61904,77,34358],["2021-09-23",61904,97,34455],["2021-09-24",61904,100,34555],["2021-09-25",61904,39,34594],["2021-09-26",61904,33,34627],["2021-09-27",61904,62,34689],["2021-09-28",61904,76,34765],["2021-09-29",61904,78,34843],["2021-09-30",61904,101,34944],["2021-10-01",61904,80,35024],["2021-10-02",61904,30,35054],["2021-10-03",61904,19,35073],["2021-10-04",61904,63,35136],["2021-10-05",61904,58,35194],["2021-10-06",61904,62,35256],["2021-10-07",61904,70,35326],["2021-10-08",61904,75,35401],["2021-10-09",61904,28,35429],["2021-10-10",61904,17,35446],["2021-10-11",61904,53,35499],["2021-10-12",61904,55,35554],["2021-10-13",61904,43,35597],["2021-10-14",61904,51,35648],["2021-10-15",61904,50,35698],["2021-10-16",61904,12,35710],["2021-10-17",61904,13,35723],["2021-10-18",61904,56,35779],["2021-10-19",61904,60,35839],["2021-10-20",61904,65,35904],["2021-10-21",61904,66,35970],["2021-10-22",61904,117,36087],["2021-10-23",61904,67,36154],["2021-10-24",61904,35,36189],["2021-10-25",61904,214,36403],["2021-10-26",61904,196,36599],["2021-10-27",61904,173,36772],["2021-10-28",61904,189,36961],["2021-10-29",61904,176,37137],["2021-10-30",61904,36,37173],["2021-10-31",61904,33,37206],["2021-11-01",61904,177,37383],["2021-11-02",61904,138,37521],["2021-11-03",61904,114,37635],["2021-11-04",61904,195,37830],["2021-11-05",61904,128,37958],["2021-11-06",61904,57,38015],["2021-11-07",61904,29,38044],["2021-11-08",61904,162,38206],["2021-11-09",61904,114,38320],["2021-11-10",61904,111,38431],["2021-11-11",61904,124,38555],["2021-11-12",61904,84,38639],["2021-11-13",61904,58,38697],["2021-11-14",61904,27,38724],["2021-11-15",61904,161,38885],["2021-11-16",61904,103,38988],["2021-11-17",61904,128,39116],["2021-11-18",61904,169,39285],["2021-11-19",61904,122,39407],["2021-11-20",61904,59,39466],["2021-11-21",61904,37,39503],["2021-11-22",61904,152,39655],["2021-11-23",61904,107,39762],["2021-11-24",61904,67,39829],["2021-11-26",61904,64,39893],["2021-11-27",61904,56,39949],["2021-11-28",61904,22,39971],["2021-11-29",61904,153,40124],["2021-11-30",61904,148,40272],["2021-12-01",61904,119,40391],["2021-12-02",61904,227,40618],["2021-12-03",61904,208,40826],["2021-12-04",61904,77,40903],["2021-12-05",61904,47,40950],["2021-12-06",61904,148,41098],["2021-12-07",61904,112,41210],["2021-12-08",61904,103,41313],["2021-12-09",61904,143,41456],["2021-12-10",61904,130,41586],["2021-12-11",61904,69,41655],["2021-12-12",61904,37,41692],["2021-12-13",61904,111,41803],["2021-12-14",61904,77,41880],["2021-12-15",61904,72,41952],["2021-12-16",61904,117,42069],["2021-12-17",61904,115,42184],["2021-12-18",61904,67,42251],["2021-12-19",61904,20,42271],["2021-12-20",61904,118,42389],["2021-12-21",61904,111,42500],["2021-12-22",61904,135,42635],["2021-12-23",61904,79,42714],["2021-12-24",61904,18,42732],["2021-12-26",61904,30,42762],["2021-12-27",61904,99,42861],["2021-12-28",61904,99,42960],["2021-12-29",61904,135,43095],["2021-12-30",61904,169,43264],["2021-12-31",61904,67,43331],["2022-01-01",61904,9,43340],["2022-01-02",61904,24,43364],["2022-01-03",61904,52,43416]]} \ No newline at end of file diff --git a/public/data/overall/vaccinations/by-county/Lincoln.json b/public/data/overall/vaccinations/by-county/Lincoln.json new file mode 100644 index 000000000..233a77bb2 --- /dev/null +++ b/public/data/overall/vaccinations/by-county/Lincoln.json @@ -0,0 +1 @@ +{"segment":{"county":"Lincoln"},"headers":["report_date","population","vaccinations","total_vaccinations"],"rows":[["2020-12-13",8125,1,1],["2020-12-17",8125,2,3],["2020-12-18",8125,3,6],["2020-12-21",8125,1,7],["2020-12-22",8125,13,20],["2020-12-23",8125,9,29],["2020-12-24",8125,4,33],["2020-12-27",8125,1,34],["2020-12-28",8125,5,39],["2020-12-29",8125,13,52],["2020-12-30",8125,11,63],["2020-12-31",8125,8,71],["2021-01-01",8125,2,73],["2021-01-02",8125,4,77],["2021-01-04",8125,11,88],["2021-01-05",8125,4,92],["2021-01-06",8125,7,99],["2021-01-07",8125,17,116],["2021-01-08",8125,10,126],["2021-01-09",8125,11,137],["2021-01-11",8125,18,155],["2021-01-12",8125,54,209],["2021-01-13",8125,36,245],["2021-01-14",8125,39,284],["2021-01-15",8125,33,317],["2021-01-16",8125,12,329],["2021-01-17",8125,1,330],["2021-01-18",8125,57,387],["2021-01-19",8125,86,473],["2021-01-20",8125,80,553],["2021-01-21",8125,128,681],["2021-01-22",8125,57,738],["2021-01-23",8125,24,762],["2021-01-24",8125,1,763],["2021-01-25",8125,34,797],["2021-01-26",8125,44,841],["2021-01-27",8125,41,882],["2021-01-28",8125,49,931],["2021-01-29",8125,58,989],["2021-01-30",8125,14,1003],["2021-01-31",8125,2,1005],["2021-02-01",8125,27,1032],["2021-02-02",8125,80,1112],["2021-02-03",8125,16,1128],["2021-02-04",8125,51,1179],["2021-02-05",8125,36,1215],["2021-02-06",8125,5,1220],["2021-02-08",8125,17,1237],["2021-02-09",8125,23,1260],["2021-02-10",8125,28,1288],["2021-02-11",8125,45,1333],["2021-02-12",8125,76,1409],["2021-02-13",8125,17,1426],["2021-02-14",8125,1,1427],["2021-02-15",8125,40,1467],["2021-02-16",8125,31,1498],["2021-02-17",8125,43,1541],["2021-02-18",8125,78,1619],["2021-02-19",8125,34,1653],["2021-02-20",8125,26,1679],["2021-02-21",8125,6,1685],["2021-02-22",8125,17,1702],["2021-02-23",8125,32,1734],["2021-02-24",8125,40,1774],["2021-02-25",8125,180,1954],["2021-02-26",8125,127,2081],["2021-02-27",8125,1,2082],["2021-03-01",8125,48,2130],["2021-03-02",8125,116,2246],["2021-03-03",8125,71,2317],["2021-03-04",8125,72,2389],["2021-03-05",8125,52,2441],["2021-03-06",8125,13,2454],["2021-03-07",8125,4,2458],["2021-03-08",8125,32,2490],["2021-03-09",8125,37,2527],["2021-03-10",8125,44,2571],["2021-03-11",8125,60,2631],["2021-03-12",8125,126,2757],["2021-03-13",8125,27,2784],["2021-03-14",8125,5,2789],["2021-03-15",8125,22,2811],["2021-03-16",8125,123,2934],["2021-03-17",8125,58,2992],["2021-03-18",8125,87,3079],["2021-03-19",8125,43,3122],["2021-03-20",8125,20,3142],["2021-03-21",8125,2,3144],["2021-03-22",8125,32,3176],["2021-03-23",8125,62,3238],["2021-03-24",8125,36,3274],["2021-03-25",8125,85,3359],["2021-03-26",8125,56,3415],["2021-03-27",8125,17,3432],["2021-03-28",8125,9,3441],["2021-03-29",8125,28,3469],["2021-03-30",8125,101,3570],["2021-03-31",8125,23,3593],["2021-04-01",8125,112,3705],["2021-04-02",8125,50,3755],["2021-04-03",8125,18,3773],["2021-04-04",8125,4,3777],["2021-04-05",8125,29,3806],["2021-04-06",8125,30,3836],["2021-04-07",8125,24,3860],["2021-04-08",8125,98,3958],["2021-04-09",8125,45,4003],["2021-04-10",8125,9,4012],["2021-04-11",8125,6,4018],["2021-04-12",8125,38,4056],["2021-04-13",8125,134,4190],["2021-04-14",8125,51,4241],["2021-04-15",8125,119,4360],["2021-04-16",8125,103,4463],["2021-04-17",8125,27,4490],["2021-04-18",8125,4,4494],["2021-04-19",8125,36,4530],["2021-04-20",8125,66,4596],["2021-04-21",8125,20,4616],["2021-04-22",8125,98,4714],["2021-04-23",8125,48,4762],["2021-04-24",8125,23,4785],["2021-04-25",8125,5,4790],["2021-04-26",8125,25,4815],["2021-04-27",8125,76,4891],["2021-04-28",8125,24,4915],["2021-04-29",8125,63,4978],["2021-04-30",8125,42,5020],["2021-05-01",8125,12,5032],["2021-05-02",8125,2,5034],["2021-05-03",8125,19,5053],["2021-05-04",8125,39,5092],["2021-05-05",8125,13,5105],["2021-05-06",8125,24,5129],["2021-05-07",8125,35,5164],["2021-05-08",8125,4,5168],["2021-05-10",8125,8,5176],["2021-05-11",8125,19,5195],["2021-05-12",8125,7,5202],["2021-05-13",8125,44,5246],["2021-05-14",8125,28,5274],["2021-05-15",8125,4,5278],["2021-05-16",8125,3,5281],["2021-05-17",8125,10,5291],["2021-05-18",8125,12,5303],["2021-05-19",8125,18,5321],["2021-05-20",8125,24,5345],["2021-05-21",8125,29,5374],["2021-05-22",8125,14,5388],["2021-05-23",8125,2,5390],["2021-05-24",8125,5,5395],["2021-05-25",8125,13,5408],["2021-05-26",8125,14,5422],["2021-05-27",8125,16,5438],["2021-05-28",8125,42,5480],["2021-05-29",8125,5,5485],["2021-05-30",8125,3,5488],["2021-05-31",8125,1,5489],["2021-06-01",8125,19,5508],["2021-06-02",8125,5,5513],["2021-06-03",8125,13,5526],["2021-06-04",8125,24,5550],["2021-06-05",8125,7,5557],["2021-06-06",8125,3,5560],["2021-06-07",8125,4,5564],["2021-06-08",8125,10,5574],["2021-06-09",8125,11,5585],["2021-06-10",8125,9,5594],["2021-06-11",8125,25,5619],["2021-06-12",8125,14,5633],["2021-06-13",8125,3,5636],["2021-06-14",8125,1,5637],["2021-06-15",8125,4,5641],["2021-06-16",8125,13,5654],["2021-06-17",8125,11,5665],["2021-06-18",8125,17,5682],["2021-06-19",8125,4,5686],["2021-06-21",8125,8,5694],["2021-06-22",8125,12,5706],["2021-06-23",8125,8,5714],["2021-06-24",8125,8,5722],["2021-06-25",8125,23,5745],["2021-06-26",8125,2,5747],["2021-06-27",8125,1,5748],["2021-06-28",8125,6,5754],["2021-06-29",8125,4,5758],["2021-06-30",8125,7,5765],["2021-07-01",8125,2,5767],["2021-07-02",8125,17,5784],["2021-07-03",8125,2,5786],["2021-07-05",8125,4,5790],["2021-07-06",8125,6,5796],["2021-07-07",8125,2,5798],["2021-07-08",8125,11,5809],["2021-07-09",8125,23,5832],["2021-07-10",8125,2,5834],["2021-07-11",8125,2,5836],["2021-07-12",8125,5,5841],["2021-07-13",8125,11,5852],["2021-07-14",8125,8,5860],["2021-07-15",8125,9,5869],["2021-07-16",8125,14,5883],["2021-07-17",8125,7,5890],["2021-07-18",8125,2,5892],["2021-07-19",8125,5,5897],["2021-07-20",8125,8,5905],["2021-07-21",8125,16,5921],["2021-07-22",8125,17,5938],["2021-07-23",8125,35,5973],["2021-07-24",8125,8,5981],["2021-07-25",8125,3,5984],["2021-07-26",8125,14,5998],["2021-07-27",8125,14,6012],["2021-07-28",8125,12,6024],["2021-07-29",8125,15,6039],["2021-07-30",8125,38,6077],["2021-07-31",8125,6,6083],["2021-08-01",8125,3,6086],["2021-08-02",8125,6,6092],["2021-08-03",8125,17,6109],["2021-08-04",8125,21,6130],["2021-08-05",8125,16,6146],["2021-08-06",8125,13,6159],["2021-08-07",8125,7,6166],["2021-08-08",8125,2,6168],["2021-08-09",8125,26,6194],["2021-08-10",8125,16,6210],["2021-08-11",8125,18,6228],["2021-08-12",8125,23,6251],["2021-08-13",8125,35,6286],["2021-08-14",8125,7,6293],["2021-08-15",8125,3,6296],["2021-08-16",8125,23,6319],["2021-08-17",8125,25,6344],["2021-08-18",8125,16,6360],["2021-08-19",8125,27,6387],["2021-08-20",8125,45,6432],["2021-08-21",8125,13,6445],["2021-08-22",8125,7,6452],["2021-08-23",8125,16,6468],["2021-08-24",8125,14,6482],["2021-08-25",8125,29,6511],["2021-08-26",8125,19,6530],["2021-08-27",8125,62,6592],["2021-08-28",8125,5,6597],["2021-08-29",8125,4,6601],["2021-08-30",8125,20,6621],["2021-08-31",8125,13,6634],["2021-09-01",8125,20,6654],["2021-09-02",8125,23,6677],["2021-09-03",8125,31,6708],["2021-09-04",8125,12,6720],["2021-09-05",8125,7,6727],["2021-09-06",8125,1,6728],["2021-09-07",8125,20,6748],["2021-09-08",8125,11,6759],["2021-09-09",8125,27,6786],["2021-09-10",8125,35,6821],["2021-09-11",8125,12,6833],["2021-09-12",8125,9,6842],["2021-09-13",8125,19,6861],["2021-09-14",8125,22,6883],["2021-09-15",8125,21,6904],["2021-09-16",8125,16,6920],["2021-09-17",8125,47,6967],["2021-09-18",8125,9,6976],["2021-09-19",8125,6,6982],["2021-09-20",8125,13,6995],["2021-09-21",8125,9,7004],["2021-09-22",8125,16,7020],["2021-09-23",8125,12,7032],["2021-09-24",8125,40,7072],["2021-09-25",8125,1,7073],["2021-09-26",8125,5,7078],["2021-09-27",8125,7,7085],["2021-09-28",8125,13,7098],["2021-09-29",8125,12,7110],["2021-09-30",8125,6,7116],["2021-10-01",8125,24,7140],["2021-10-02",8125,7,7147],["2021-10-03",8125,3,7150],["2021-10-04",8125,8,7158],["2021-10-05",8125,13,7171],["2021-10-06",8125,8,7179],["2021-10-07",8125,6,7185],["2021-10-08",8125,28,7213],["2021-10-09",8125,6,7219],["2021-10-10",8125,5,7224],["2021-10-11",8125,5,7229],["2021-10-12",8125,6,7235],["2021-10-13",8125,10,7245],["2021-10-14",8125,9,7254],["2021-10-15",8125,18,7272],["2021-10-16",8125,2,7274],["2021-10-17",8125,3,7277],["2021-10-18",8125,9,7286],["2021-10-19",8125,12,7298],["2021-10-20",8125,6,7304],["2021-10-21",8125,10,7314],["2021-10-22",8125,34,7348],["2021-10-23",8125,3,7351],["2021-10-24",8125,7,7358],["2021-10-25",8125,67,7425],["2021-10-26",8125,81,7506],["2021-10-27",8125,63,7569],["2021-10-28",8125,28,7597],["2021-10-29",8125,68,7665],["2021-10-30",8125,7,7672],["2021-10-31",8125,2,7674],["2021-11-01",8125,32,7706],["2021-11-02",8125,31,7737],["2021-11-03",8125,36,7773],["2021-11-04",8125,33,7806],["2021-11-05",8125,48,7854],["2021-11-06",8125,14,7868],["2021-11-07",8125,5,7873],["2021-11-08",8125,21,7894],["2021-11-09",8125,28,7922],["2021-11-10",8125,31,7953],["2021-11-11",8125,20,7973],["2021-11-12",8125,41,8014],["2021-11-13",8125,8,8022],["2021-11-14",8125,2,8024],["2021-11-15",8125,35,8059],["2021-11-16",8125,34,8093],["2021-11-17",8125,21,8114],["2021-11-18",8125,13,8127],["2021-11-19",8125,26,8153],["2021-11-20",8125,5,8158],["2021-11-21",8125,5,8163],["2021-11-22",8125,16,8179],["2021-11-23",8125,26,8205],["2021-11-24",8125,8,8213],["2021-11-26",8125,25,8238],["2021-11-27",8125,4,8242],["2021-11-28",8125,5,8247],["2021-11-29",8125,21,8268],["2021-11-30",8125,35,8303],["2021-12-01",8125,16,8319],["2021-12-02",8125,27,8346],["2021-12-03",8125,48,8394],["2021-12-04",8125,12,8406],["2021-12-05",8125,2,8408],["2021-12-06",8125,22,8430],["2021-12-07",8125,30,8460],["2021-12-08",8125,18,8478],["2021-12-09",8125,27,8505],["2021-12-10",8125,36,8541],["2021-12-11",8125,8,8549],["2021-12-12",8125,2,8551],["2021-12-13",8125,6,8557],["2021-12-14",8125,21,8578],["2021-12-15",8125,9,8587],["2021-12-16",8125,24,8611],["2021-12-17",8125,38,8649],["2021-12-18",8125,7,8656],["2021-12-19",8125,1,8657],["2021-12-20",8125,33,8690],["2021-12-21",8125,29,8719],["2021-12-22",8125,14,8733],["2021-12-23",8125,22,8755],["2021-12-24",8125,1,8756],["2021-12-26",8125,8,8764],["2021-12-27",8125,11,8775],["2021-12-28",8125,39,8814],["2021-12-29",8125,15,8829],["2021-12-30",8125,3,8832],["2021-12-31",8125,19,8851],["2022-01-02",8125,1,8852],["2022-01-03",8125,8,8860]]} \ No newline at end of file diff --git a/public/data/overall/vaccinations/by-county/Long.json b/public/data/overall/vaccinations/by-county/Long.json new file mode 100644 index 000000000..6382530b0 --- /dev/null +++ b/public/data/overall/vaccinations/by-county/Long.json @@ -0,0 +1 @@ +{"segment":{"county":"Long"},"headers":["report_date","population","vaccinations","total_vaccinations"],"rows":[["2020-12-15",19915,1,1],["2020-12-16",19915,2,3],["2020-12-18",19915,5,8],["2020-12-19",19915,1,9],["2020-12-21",19915,1,10],["2020-12-22",19915,4,14],["2020-12-23",19915,4,18],["2020-12-24",19915,1,19],["2020-12-28",19915,3,22],["2020-12-29",19915,10,32],["2020-12-30",19915,5,37],["2020-12-31",19915,2,39],["2021-01-01",19915,4,43],["2021-01-02",19915,1,44],["2021-01-03",19915,1,45],["2021-01-04",19915,6,51],["2021-01-05",19915,9,60],["2021-01-06",19915,20,80],["2021-01-07",19915,16,96],["2021-01-08",19915,26,122],["2021-01-09",19915,1,123],["2021-01-10",19915,3,126],["2021-01-11",19915,41,167],["2021-01-12",19915,6,173],["2021-01-13",19915,14,187],["2021-01-14",19915,50,237],["2021-01-15",19915,26,263],["2021-01-16",19915,8,271],["2021-01-17",19915,12,283],["2021-01-18",19915,44,327],["2021-01-19",19915,7,334],["2021-01-20",19915,24,358],["2021-01-21",19915,70,428],["2021-01-22",19915,15,443],["2021-01-23",19915,11,454],["2021-01-24",19915,2,456],["2021-01-25",19915,56,512],["2021-01-26",19915,18,530],["2021-01-27",19915,9,539],["2021-01-28",19915,54,593],["2021-01-29",19915,12,605],["2021-01-30",19915,13,618],["2021-01-31",19915,4,622],["2021-02-01",19915,41,663],["2021-02-02",19915,27,690],["2021-02-03",19915,22,712],["2021-02-04",19915,35,747],["2021-02-05",19915,37,784],["2021-02-06",19915,12,796],["2021-02-07",19915,2,798],["2021-02-08",19915,26,824],["2021-02-09",19915,26,850],["2021-02-10",19915,18,868],["2021-02-11",19915,82,950],["2021-02-12",19915,41,991],["2021-02-13",19915,15,1006],["2021-02-14",19915,8,1014],["2021-02-15",19915,25,1039],["2021-02-16",19915,22,1061],["2021-02-17",19915,45,1106],["2021-02-18",19915,127,1233],["2021-02-19",19915,27,1260],["2021-02-20",19915,17,1277],["2021-02-21",19915,3,1280],["2021-02-22",19915,39,1319],["2021-02-23",19915,32,1351],["2021-02-24",19915,18,1369],["2021-02-25",19915,101,1470],["2021-02-26",19915,13,1483],["2021-02-27",19915,20,1503],["2021-02-28",19915,7,1510],["2021-03-01",19915,32,1542],["2021-03-02",19915,31,1573],["2021-03-03",19915,14,1587],["2021-03-04",19915,82,1669],["2021-03-05",19915,18,1687],["2021-03-06",19915,8,1695],["2021-03-07",19915,3,1698],["2021-03-08",19915,29,1727],["2021-03-09",19915,43,1770],["2021-03-10",19915,35,1805],["2021-03-11",19915,60,1865],["2021-03-12",19915,40,1905],["2021-03-13",19915,33,1938],["2021-03-14",19915,7,1945],["2021-03-15",19915,48,1993],["2021-03-16",19915,47,2040],["2021-03-17",19915,54,2094],["2021-03-18",19915,67,2161],["2021-03-19",19915,91,2252],["2021-03-20",19915,32,2284],["2021-03-21",19915,5,2289],["2021-03-22",19915,69,2358],["2021-03-23",19915,43,2401],["2021-03-24",19915,41,2442],["2021-03-25",19915,96,2538],["2021-03-26",19915,35,2573],["2021-03-27",19915,14,2587],["2021-03-28",19915,13,2600],["2021-03-29",19915,39,2639],["2021-03-30",19915,63,2702],["2021-03-31",19915,49,2751],["2021-04-01",19915,90,2841],["2021-04-02",19915,44,2885],["2021-04-03",19915,13,2898],["2021-04-04",19915,6,2904],["2021-04-05",19915,40,2944],["2021-04-06",19915,36,2980],["2021-04-07",19915,46,3026],["2021-04-08",19915,87,3113],["2021-04-09",19915,39,3152],["2021-04-10",19915,55,3207],["2021-04-11",19915,8,3215],["2021-04-12",19915,30,3245],["2021-04-13",19915,50,3295],["2021-04-14",19915,68,3363],["2021-04-15",19915,165,3528],["2021-04-16",19915,57,3585],["2021-04-17",19915,14,3599],["2021-04-18",19915,8,3607],["2021-04-19",19915,31,3638],["2021-04-20",19915,35,3673],["2021-04-21",19915,33,3706],["2021-04-22",19915,87,3793],["2021-04-23",19915,43,3836],["2021-04-24",19915,24,3860],["2021-04-25",19915,6,3866],["2021-04-26",19915,31,3897],["2021-04-27",19915,48,3945],["2021-04-28",19915,32,3977],["2021-04-29",19915,84,4061],["2021-04-30",19915,52,4113],["2021-05-01",19915,21,4134],["2021-05-02",19915,5,4139],["2021-05-03",19915,27,4166],["2021-05-04",19915,36,4202],["2021-05-05",19915,29,4231],["2021-05-06",19915,67,4298],["2021-05-07",19915,31,4329],["2021-05-08",19915,14,4343],["2021-05-09",19915,7,4350],["2021-05-10",19915,21,4371],["2021-05-11",19915,26,4397],["2021-05-12",19915,34,4431],["2021-05-13",19915,105,4536],["2021-05-14",19915,36,4572],["2021-05-15",19915,25,4597],["2021-05-16",19915,11,4608],["2021-05-17",19915,24,4632],["2021-05-18",19915,25,4657],["2021-05-19",19915,37,4694],["2021-05-20",19915,48,4742],["2021-05-21",19915,28,4770],["2021-05-22",19915,18,4788],["2021-05-23",19915,6,4794],["2021-05-24",19915,12,4806],["2021-05-25",19915,22,4828],["2021-05-26",19915,26,4854],["2021-05-27",19915,30,4884],["2021-05-28",19915,25,4909],["2021-05-29",19915,12,4921],["2021-05-30",19915,5,4926],["2021-05-31",19915,5,4931],["2021-06-01",19915,15,4946],["2021-06-02",19915,22,4968],["2021-06-03",19915,31,4999],["2021-06-04",19915,27,5026],["2021-06-05",19915,10,5036],["2021-06-06",19915,12,5048],["2021-06-07",19915,18,5066],["2021-06-08",19915,22,5088],["2021-06-09",19915,15,5103],["2021-06-10",19915,29,5132],["2021-06-11",19915,25,5157],["2021-06-12",19915,23,5180],["2021-06-13",19915,8,5188],["2021-06-14",19915,16,5204],["2021-06-15",19915,14,5218],["2021-06-16",19915,15,5233],["2021-06-17",19915,35,5268],["2021-06-18",19915,20,5288],["2021-06-19",19915,11,5299],["2021-06-20",19915,6,5305],["2021-06-21",19915,11,5316],["2021-06-22",19915,17,5333],["2021-06-23",19915,28,5361],["2021-06-24",19915,19,5380],["2021-06-25",19915,16,5396],["2021-06-26",19915,10,5406],["2021-06-27",19915,9,5415],["2021-06-28",19915,16,5431],["2021-06-29",19915,12,5443],["2021-06-30",19915,14,5457],["2021-07-01",19915,20,5477],["2021-07-02",19915,17,5494],["2021-07-03",19915,11,5505],["2021-07-04",19915,3,5508],["2021-07-05",19915,7,5515],["2021-07-06",19915,8,5523],["2021-07-07",19915,8,5531],["2021-07-08",19915,17,5548],["2021-07-09",19915,10,5558],["2021-07-10",19915,17,5575],["2021-07-12",19915,18,5593],["2021-07-13",19915,6,5599],["2021-07-14",19915,16,5615],["2021-07-15",19915,14,5629],["2021-07-16",19915,16,5645],["2021-07-17",19915,11,5656],["2021-07-18",19915,13,5669],["2021-07-19",19915,12,5681],["2021-07-20",19915,11,5692],["2021-07-21",19915,25,5717],["2021-07-22",19915,40,5757],["2021-07-23",19915,41,5798],["2021-07-24",19915,24,5822],["2021-07-25",19915,8,5830],["2021-07-26",19915,25,5855],["2021-07-27",19915,21,5876],["2021-07-28",19915,28,5904],["2021-07-29",19915,29,5933],["2021-07-30",19915,20,5953],["2021-07-31",19915,17,5970],["2021-08-01",19915,12,5982],["2021-08-02",19915,24,6006],["2021-08-03",19915,20,6026],["2021-08-04",19915,18,6044],["2021-08-05",19915,28,6072],["2021-08-06",19915,33,6105],["2021-08-07",19915,22,6127],["2021-08-08",19915,11,6138],["2021-08-09",19915,25,6163],["2021-08-10",19915,30,6193],["2021-08-11",19915,41,6234],["2021-08-12",19915,39,6273],["2021-08-13",19915,45,6318],["2021-08-14",19915,41,6359],["2021-08-15",19915,20,6379],["2021-08-16",19915,34,6413],["2021-08-17",19915,27,6440],["2021-08-18",19915,29,6469],["2021-08-19",19915,32,6501],["2021-08-20",19915,39,6540],["2021-08-21",19915,16,6556],["2021-08-22",19915,12,6568],["2021-08-23",19915,20,6588],["2021-08-24",19915,20,6608],["2021-08-25",19915,33,6641],["2021-08-26",19915,49,6690],["2021-08-27",19915,41,6731],["2021-08-28",19915,19,6750],["2021-08-29",19915,8,6758],["2021-08-30",19915,25,6783],["2021-08-31",19915,23,6806],["2021-09-01",19915,26,6832],["2021-09-02",19915,39,6871],["2021-09-03",19915,42,6913],["2021-09-04",19915,17,6930],["2021-09-05",19915,12,6942],["2021-09-06",19915,12,6954],["2021-09-07",19915,34,6988],["2021-09-08",19915,34,7022],["2021-09-09",19915,44,7066],["2021-09-10",19915,45,7111],["2021-09-11",19915,35,7146],["2021-09-12",19915,11,7157],["2021-09-13",19915,30,7187],["2021-09-14",19915,24,7211],["2021-09-15",19915,25,7236],["2021-09-16",19915,36,7272],["2021-09-17",19915,31,7303],["2021-09-18",19915,13,7316],["2021-09-19",19915,5,7321],["2021-09-20",19915,24,7345],["2021-09-21",19915,16,7361],["2021-09-22",19915,16,7377],["2021-09-23",19915,32,7409],["2021-09-24",19915,21,7430],["2021-09-25",19915,12,7442],["2021-09-26",19915,10,7452],["2021-09-27",19915,13,7465],["2021-09-28",19915,13,7478],["2021-09-29",19915,14,7492],["2021-09-30",19915,36,7528],["2021-10-01",19915,12,7540],["2021-10-02",19915,12,7552],["2021-10-03",19915,5,7557],["2021-10-04",19915,11,7568],["2021-10-05",19915,17,7585],["2021-10-06",19915,13,7598],["2021-10-07",19915,22,7620],["2021-10-08",19915,16,7636],["2021-10-09",19915,6,7642],["2021-10-10",19915,5,7647],["2021-10-11",19915,16,7663],["2021-10-12",19915,16,7679],["2021-10-13",19915,12,7691],["2021-10-14",19915,20,7711],["2021-10-15",19915,15,7726],["2021-10-16",19915,4,7730],["2021-10-17",19915,3,7733],["2021-10-18",19915,8,7741],["2021-10-19",19915,7,7748],["2021-10-20",19915,8,7756],["2021-10-21",19915,14,7770],["2021-10-22",19915,16,7786],["2021-10-23",19915,14,7800],["2021-10-24",19915,6,7806],["2021-10-25",19915,13,7819],["2021-10-26",19915,50,7869],["2021-10-27",19915,20,7889],["2021-10-28",19915,78,7967],["2021-10-29",19915,19,7986],["2021-10-30",19915,10,7996],["2021-10-31",19915,8,8004],["2021-11-01",19915,24,8028],["2021-11-02",19915,30,8058],["2021-11-03",19915,26,8084],["2021-11-04",19915,72,8156],["2021-11-05",19915,26,8182],["2021-11-06",19915,10,8192],["2021-11-07",19915,9,8201],["2021-11-08",19915,16,8217],["2021-11-09",19915,42,8259],["2021-11-10",19915,19,8278],["2021-11-11",19915,24,8302],["2021-11-12",19915,23,8325],["2021-11-13",19915,6,8331],["2021-11-14",19915,5,8336],["2021-11-15",19915,16,8352],["2021-11-16",19915,34,8386],["2021-11-17",19915,19,8405],["2021-11-18",19915,36,8441],["2021-11-19",19915,29,8470],["2021-11-20",19915,18,8488],["2021-11-21",19915,8,8496],["2021-11-22",19915,22,8518],["2021-11-23",19915,38,8556],["2021-11-24",19915,8,8564],["2021-11-26",19915,12,8576],["2021-11-27",19915,9,8585],["2021-11-28",19915,6,8591],["2021-11-29",19915,22,8613],["2021-11-30",19915,47,8660],["2021-12-01",19915,37,8697],["2021-12-02",19915,28,8725],["2021-12-03",19915,26,8751],["2021-12-04",19915,22,8773],["2021-12-05",19915,4,8777],["2021-12-06",19915,17,8794],["2021-12-07",19915,25,8819],["2021-12-08",19915,19,8838],["2021-12-09",19915,31,8869],["2021-12-10",19915,30,8899],["2021-12-11",19915,10,8909],["2021-12-12",19915,12,8921],["2021-12-13",19915,16,8937],["2021-12-14",19915,24,8961],["2021-12-15",19915,21,8982],["2021-12-16",19915,27,9009],["2021-12-17",19915,24,9033],["2021-12-18",19915,13,9046],["2021-12-19",19915,2,9048],["2021-12-20",19915,9,9057],["2021-12-21",19915,22,9079],["2021-12-22",19915,6,9085],["2021-12-23",19915,17,9102],["2021-12-24",19915,3,9105],["2021-12-26",19915,3,9108],["2021-12-27",19915,18,9126],["2021-12-28",19915,28,9154],["2021-12-29",19915,34,9188],["2021-12-30",19915,40,9228],["2021-12-31",19915,12,9240],["2022-01-01",19915,2,9242],["2022-01-02",19915,6,9248],["2022-01-03",19915,9,9257]]} \ No newline at end of file diff --git a/public/data/overall/vaccinations/by-county/Lowndes.json b/public/data/overall/vaccinations/by-county/Lowndes.json new file mode 100644 index 000000000..0a7b47c85 --- /dev/null +++ b/public/data/overall/vaccinations/by-county/Lowndes.json @@ -0,0 +1 @@ +{"segment":{"county":"Lowndes"},"headers":["report_date","population","vaccinations","total_vaccinations"],"rows":[["2020-12-16",117878,2,2],["2020-12-17",117878,8,10],["2020-12-18",117878,38,48],["2020-12-19",117878,4,52],["2020-12-20",117878,2,54],["2020-12-21",117878,87,141],["2020-12-22",117878,185,326],["2020-12-23",117878,142,468],["2020-12-24",117878,50,518],["2020-12-25",117878,2,520],["2020-12-26",117878,19,539],["2020-12-27",117878,1,540],["2020-12-28",117878,177,717],["2020-12-29",117878,138,855],["2020-12-30",117878,166,1021],["2020-12-31",117878,145,1166],["2021-01-01",117878,47,1213],["2021-01-02",117878,21,1234],["2021-01-03",117878,7,1241],["2021-01-04",117878,180,1421],["2021-01-05",117878,177,1598],["2021-01-06",117878,177,1775],["2021-01-07",117878,146,1921],["2021-01-08",117878,145,2066],["2021-01-09",117878,28,2094],["2021-01-10",117878,13,2107],["2021-01-11",117878,467,2574],["2021-01-12",117878,437,3011],["2021-01-13",117878,675,3686],["2021-01-14",117878,659,4345],["2021-01-15",117878,583,4928],["2021-01-16",117878,54,4982],["2021-01-17",117878,9,4991],["2021-01-18",117878,604,5595],["2021-01-19",117878,666,6261],["2021-01-20",117878,841,7102],["2021-01-21",117878,732,7834],["2021-01-22",117878,449,8283],["2021-01-23",117878,5,8288],["2021-01-24",117878,10,8298],["2021-01-25",117878,484,8782],["2021-01-26",117878,632,9414],["2021-01-27",117878,422,9836],["2021-01-28",117878,353,10189],["2021-01-29",117878,511,10700],["2021-01-30",117878,38,10738],["2021-01-31",117878,6,10744],["2021-02-01",117878,494,11238],["2021-02-02",117878,456,11694],["2021-02-03",117878,489,12183],["2021-02-04",117878,599,12782],["2021-02-05",117878,412,13194],["2021-02-06",117878,14,13208],["2021-02-07",117878,5,13213],["2021-02-08",117878,537,13750],["2021-02-09",117878,599,14349],["2021-02-10",117878,713,15062],["2021-02-11",117878,716,15778],["2021-02-12",117878,851,16629],["2021-02-13",117878,70,16699],["2021-02-14",117878,29,16728],["2021-02-15",117878,688,17416],["2021-02-16",117878,777,18193],["2021-02-17",117878,941,19134],["2021-02-18",117878,720,19854],["2021-02-19",117878,751,20605],["2021-02-20",117878,21,20626],["2021-02-21",117878,11,20637],["2021-02-22",117878,490,21127],["2021-02-23",117878,481,21608],["2021-02-24",117878,564,22172],["2021-02-25",117878,517,22689],["2021-02-26",117878,662,23351],["2021-02-27",117878,22,23373],["2021-02-28",117878,20,23393],["2021-03-01",117878,607,24000],["2021-03-02",117878,497,24497],["2021-03-03",117878,482,24979],["2021-03-04",117878,419,25398],["2021-03-05",117878,539,25937],["2021-03-06",117878,35,25972],["2021-03-07",117878,23,25995],["2021-03-08",117878,514,26509],["2021-03-09",117878,460,26969],["2021-03-10",117878,496,27465],["2021-03-11",117878,429,27894],["2021-03-12",117878,809,28703],["2021-03-13",117878,230,28933],["2021-03-14",117878,52,28985],["2021-03-15",117878,334,29319],["2021-03-16",117878,665,29984],["2021-03-17",117878,831,30815],["2021-03-18",117878,438,31253],["2021-03-19",117878,854,32107],["2021-03-20",117878,307,32414],["2021-03-21",117878,29,32443],["2021-03-22",117878,750,33193],["2021-03-23",117878,505,33698],["2021-03-24",117878,670,34368],["2021-03-25",117878,757,35125],["2021-03-26",117878,713,35838],["2021-03-27",117878,79,35917],["2021-03-28",117878,62,35979],["2021-03-29",117878,782,36761],["2021-03-30",117878,1053,37814],["2021-03-31",117878,841,38655],["2021-04-01",117878,685,39340],["2021-04-02",117878,842,40182],["2021-04-03",117878,398,40580],["2021-04-04",117878,44,40624],["2021-04-05",117878,966,41590],["2021-04-06",117878,770,42360],["2021-04-07",117878,835,43195],["2021-04-08",117878,529,43724],["2021-04-09",117878,738,44462],["2021-04-10",117878,180,44642],["2021-04-11",117878,64,44706],["2021-04-12",117878,675,45381],["2021-04-13",117878,506,45887],["2021-04-14",117878,522,46409],["2021-04-15",117878,561,46970],["2021-04-16",117878,606,47576],["2021-04-17",117878,38,47614],["2021-04-18",117878,41,47655],["2021-04-19",117878,605,48260],["2021-04-20",117878,496,48756],["2021-04-21",117878,560,49316],["2021-04-22",117878,549,49865],["2021-04-23",117878,788,50653],["2021-04-24",117878,111,50764],["2021-04-25",117878,56,50820],["2021-04-26",117878,424,51244],["2021-04-27",117878,381,51625],["2021-04-28",117878,443,52068],["2021-04-29",117878,384,52452],["2021-04-30",117878,467,52919],["2021-05-01",117878,85,53004],["2021-05-02",117878,38,53042],["2021-05-03",117878,317,53359],["2021-05-04",117878,364,53723],["2021-05-05",117878,361,54084],["2021-05-06",117878,356,54440],["2021-05-07",117878,390,54830],["2021-05-08",117878,101,54931],["2021-05-09",117878,26,54957],["2021-05-10",117878,282,55239],["2021-05-11",117878,251,55490],["2021-05-12",117878,237,55727],["2021-05-13",117878,272,55999],["2021-05-14",117878,327,56326],["2021-05-15",117878,119,56445],["2021-05-16",117878,62,56507],["2021-05-17",117878,342,56849],["2021-05-18",117878,302,57151],["2021-05-19",117878,279,57430],["2021-05-20",117878,298,57728],["2021-05-21",117878,362,58090],["2021-05-22",117878,80,58170],["2021-05-23",117878,45,58215],["2021-05-24",117878,211,58426],["2021-05-25",117878,207,58633],["2021-05-26",117878,245,58878],["2021-05-27",117878,215,59093],["2021-05-28",117878,233,59326],["2021-05-29",117878,44,59370],["2021-05-30",117878,25,59395],["2021-05-31",117878,12,59407],["2021-06-01",117878,258,59665],["2021-06-02",117878,206,59871],["2021-06-03",117878,327,60198],["2021-06-04",117878,220,60418],["2021-06-05",117878,89,60507],["2021-06-06",117878,57,60564],["2021-06-07",117878,222,60786],["2021-06-08",117878,178,60964],["2021-06-09",117878,137,61101],["2021-06-10",117878,211,61312],["2021-06-11",117878,189,61501],["2021-06-12",117878,108,61609],["2021-06-13",117878,43,61652],["2021-06-14",117878,169,61821],["2021-06-15",117878,179,62000],["2021-06-16",117878,163,62163],["2021-06-17",117878,170,62333],["2021-06-18",117878,164,62497],["2021-06-19",117878,33,62530],["2021-06-20",117878,25,62555],["2021-06-21",117878,116,62671],["2021-06-22",117878,130,62801],["2021-06-23",117878,142,62943],["2021-06-24",117878,141,63084],["2021-06-25",117878,184,63268],["2021-06-26",117878,51,63319],["2021-06-27",117878,39,63358],["2021-06-28",117878,164,63522],["2021-06-29",117878,135,63657],["2021-06-30",117878,117,63774],["2021-07-01",117878,134,63908],["2021-07-02",117878,107,64015],["2021-07-03",117878,39,64054],["2021-07-04",117878,8,64062],["2021-07-05",117878,71,64133],["2021-07-06",117878,155,64288],["2021-07-07",117878,81,64369],["2021-07-08",117878,167,64536],["2021-07-09",117878,157,64693],["2021-07-10",117878,47,64740],["2021-07-11",117878,23,64763],["2021-07-12",117878,138,64901],["2021-07-13",117878,107,65008],["2021-07-14",117878,115,65123],["2021-07-15",117878,109,65232],["2021-07-16",117878,156,65388],["2021-07-17",117878,59,65447],["2021-07-18",117878,29,65476],["2021-07-19",117878,158,65634],["2021-07-20",117878,144,65778],["2021-07-21",117878,186,65964],["2021-07-22",117878,195,66159],["2021-07-23",117878,239,66398],["2021-07-24",117878,90,66488],["2021-07-25",117878,56,66544],["2021-07-26",117878,247,66791],["2021-07-27",117878,277,67068],["2021-07-28",117878,296,67364],["2021-07-29",117878,294,67658],["2021-07-30",117878,353,68011],["2021-07-31",117878,127,68138],["2021-08-01",117878,99,68237],["2021-08-02",117878,364,68601],["2021-08-03",117878,325,68926],["2021-08-04",117878,276,69202],["2021-08-05",117878,288,69490],["2021-08-06",117878,369,69859],["2021-08-07",117878,336,70195],["2021-08-08",117878,94,70289],["2021-08-09",117878,306,70595],["2021-08-10",117878,264,70859],["2021-08-11",117878,320,71179],["2021-08-12",117878,382,71561],["2021-08-13",117878,456,72017],["2021-08-14",117878,227,72244],["2021-08-15",117878,110,72354],["2021-08-16",117878,349,72703],["2021-08-17",117878,316,73019],["2021-08-18",117878,364,73383],["2021-08-19",117878,380,73763],["2021-08-20",117878,571,74334],["2021-08-21",117878,146,74480],["2021-08-22",117878,90,74570],["2021-08-23",117878,417,74987],["2021-08-24",117878,444,75431],["2021-08-25",117878,411,75842],["2021-08-26",117878,472,76314],["2021-08-27",117878,570,76884],["2021-08-28",117878,769,77653],["2021-08-29",117878,80,77733],["2021-08-30",117878,435,78168],["2021-08-31",117878,408,78576],["2021-09-01",117878,311,78887],["2021-09-02",117878,358,79245],["2021-09-03",117878,508,79753],["2021-09-04",117878,143,79896],["2021-09-05",117878,77,79973],["2021-09-06",117878,29,80002],["2021-09-07",117878,361,80363],["2021-09-08",117878,280,80643],["2021-09-09",117878,363,81006],["2021-09-10",117878,443,81449],["2021-09-11",117878,101,81550],["2021-09-12",117878,62,81612],["2021-09-13",117878,310,81922],["2021-09-14",117878,295,82217],["2021-09-15",117878,264,82481],["2021-09-16",117878,265,82746],["2021-09-17",117878,333,83079],["2021-09-18",117878,322,83401],["2021-09-19",117878,52,83453],["2021-09-20",117878,262,83715],["2021-09-21",117878,240,83955],["2021-09-22",117878,210,84165],["2021-09-23",117878,145,84310],["2021-09-24",117878,297,84607],["2021-09-25",117878,75,84682],["2021-09-26",117878,32,84714],["2021-09-27",117878,178,84892],["2021-09-28",117878,176,85068],["2021-09-29",117878,156,85224],["2021-09-30",117878,228,85452],["2021-10-01",117878,193,85645],["2021-10-02",117878,60,85705],["2021-10-03",117878,25,85730],["2021-10-04",117878,160,85890],["2021-10-05",117878,178,86068],["2021-10-06",117878,166,86234],["2021-10-07",117878,179,86413],["2021-10-08",117878,191,86604],["2021-10-09",117878,58,86662],["2021-10-10",117878,30,86692],["2021-10-11",117878,132,86824],["2021-10-12",117878,158,86982],["2021-10-13",117878,142,87124],["2021-10-14",117878,142,87266],["2021-10-15",117878,164,87430],["2021-10-16",117878,36,87466],["2021-10-17",117878,11,87477],["2021-10-18",117878,138,87615],["2021-10-19",117878,147,87762],["2021-10-20",117878,120,87882],["2021-10-21",117878,135,88017],["2021-10-22",117878,207,88224],["2021-10-23",117878,66,88290],["2021-10-24",117878,39,88329],["2021-10-25",117878,239,88568],["2021-10-26",117878,226,88794],["2021-10-27",117878,211,89005],["2021-10-28",117878,327,89332],["2021-10-29",117878,247,89579],["2021-10-30",117878,48,89627],["2021-10-31",117878,31,89658],["2021-11-01",117878,223,89881],["2021-11-02",117878,271,90152],["2021-11-03",117878,255,90407],["2021-11-04",117878,245,90652],["2021-11-05",117878,239,90891],["2021-11-06",117878,76,90967],["2021-11-07",117878,57,91024],["2021-11-08",117878,227,91251],["2021-11-09",117878,220,91471],["2021-11-10",117878,188,91659],["2021-11-11",117878,212,91871],["2021-11-12",117878,292,92163],["2021-11-13",117878,63,92226],["2021-11-14",117878,31,92257],["2021-11-15",117878,211,92468],["2021-11-16",117878,196,92664],["2021-11-17",117878,223,92887],["2021-11-18",117878,227,93114],["2021-11-19",117878,382,93496],["2021-11-20",117878,115,93611],["2021-11-21",117878,43,93654],["2021-11-22",117878,201,93855],["2021-11-23",117878,222,94077],["2021-11-24",117878,168,94245],["2021-11-26",117878,92,94337],["2021-11-27",117878,89,94426],["2021-11-28",117878,56,94482],["2021-11-29",117878,287,94769],["2021-11-30",117878,338,95107],["2021-12-01",117878,359,95466],["2021-12-02",117878,319,95785],["2021-12-03",117878,448,96233],["2021-12-04",117878,124,96357],["2021-12-05",117878,54,96411],["2021-12-06",117878,267,96678],["2021-12-07",117878,183,96861],["2021-12-08",117878,292,97153],["2021-12-09",117878,209,97362],["2021-12-10",117878,298,97660],["2021-12-11",117878,77,97737],["2021-12-12",117878,45,97782],["2021-12-13",117878,166,97948],["2021-12-14",117878,173,98121],["2021-12-15",117878,219,98340],["2021-12-16",117878,203,98543],["2021-12-17",117878,239,98782],["2021-12-18",117878,68,98850],["2021-12-19",117878,53,98903],["2021-12-20",117878,274,99177],["2021-12-21",117878,261,99438],["2021-12-22",117878,326,99764],["2021-12-23",117878,201,99965],["2021-12-24",117878,55,100020],["2021-12-26",117878,39,100059],["2021-12-27",117878,286,100345],["2021-12-28",117878,260,100605],["2021-12-29",117878,343,100948],["2021-12-30",117878,246,101194],["2021-12-31",117878,101,101295],["2022-01-01",117878,17,101312],["2022-01-02",117878,39,101351],["2022-01-03",117878,172,101523]]} \ No newline at end of file diff --git a/public/data/overall/vaccinations/by-county/Lumpkin.json b/public/data/overall/vaccinations/by-county/Lumpkin.json new file mode 100644 index 000000000..ce1728eed --- /dev/null +++ b/public/data/overall/vaccinations/by-county/Lumpkin.json @@ -0,0 +1 @@ +{"segment":{"county":"Lumpkin"},"headers":["report_date","population","vaccinations","total_vaccinations"],"rows":[["2020-12-15",33802,1,1],["2020-12-17",33802,2,3],["2020-12-18",33802,6,9],["2020-12-19",33802,7,16],["2020-12-20",33802,7,23],["2020-12-21",33802,15,38],["2020-12-22",33802,13,51],["2020-12-23",33802,37,88],["2020-12-24",33802,5,93],["2020-12-26",33802,6,99],["2020-12-27",33802,6,105],["2020-12-28",33802,38,143],["2020-12-29",33802,47,190],["2020-12-30",33802,20,210],["2020-12-31",33802,28,238],["2021-01-01",33802,19,257],["2021-01-02",33802,1,258],["2021-01-03",33802,4,262],["2021-01-04",33802,28,290],["2021-01-05",33802,38,328],["2021-01-06",33802,31,359],["2021-01-07",33802,47,406],["2021-01-08",33802,35,441],["2021-01-09",33802,9,450],["2021-01-10",33802,30,480],["2021-01-11",33802,93,573],["2021-01-12",33802,51,624],["2021-01-13",33802,128,752],["2021-01-14",33802,116,868],["2021-01-15",33802,48,916],["2021-01-16",33802,48,964],["2021-01-17",33802,21,985],["2021-01-18",33802,186,1171],["2021-01-19",33802,84,1255],["2021-01-20",33802,173,1428],["2021-01-21",33802,195,1623],["2021-01-22",33802,71,1694],["2021-01-23",33802,47,1741],["2021-01-24",33802,5,1746],["2021-01-25",33802,156,1902],["2021-01-26",33802,87,1989],["2021-01-27",33802,194,2183],["2021-01-28",33802,136,2319],["2021-01-29",33802,99,2418],["2021-01-30",33802,489,2907],["2021-01-31",33802,62,2969],["2021-02-01",33802,138,3107],["2021-02-02",33802,80,3187],["2021-02-03",33802,166,3353],["2021-02-04",33802,167,3520],["2021-02-05",33802,55,3575],["2021-02-06",33802,27,3602],["2021-02-07",33802,33,3635],["2021-02-08",33802,142,3777],["2021-02-09",33802,133,3910],["2021-02-10",33802,168,4078],["2021-02-11",33802,204,4282],["2021-02-12",33802,74,4356],["2021-02-13",33802,61,4417],["2021-02-14",33802,11,4428],["2021-02-15",33802,179,4607],["2021-02-16",33802,97,4704],["2021-02-17",33802,152,4856],["2021-02-18",33802,203,5059],["2021-02-19",33802,62,5121],["2021-02-20",33802,39,5160],["2021-02-21",33802,42,5202],["2021-02-22",33802,62,5264],["2021-02-23",33802,206,5470],["2021-02-24",33802,184,5654],["2021-02-25",33802,213,5867],["2021-02-26",33802,120,5987],["2021-02-27",33802,468,6455],["2021-02-28",33802,54,6509],["2021-03-01",33802,211,6720],["2021-03-02",33802,174,6894],["2021-03-03",33802,162,7056],["2021-03-04",33802,206,7262],["2021-03-05",33802,87,7349],["2021-03-06",33802,32,7381],["2021-03-07",33802,18,7399],["2021-03-08",33802,139,7538],["2021-03-09",33802,140,7678],["2021-03-10",33802,209,7887],["2021-03-11",33802,241,8128],["2021-03-12",33802,275,8403],["2021-03-13",33802,72,8475],["2021-03-14",33802,53,8528],["2021-03-15",33802,268,8796],["2021-03-16",33802,225,9021],["2021-03-17",33802,226,9247],["2021-03-18",33802,238,9485],["2021-03-19",33802,150,9635],["2021-03-20",33802,35,9670],["2021-03-21",33802,60,9730],["2021-03-22",33802,143,9873],["2021-03-23",33802,181,10054],["2021-03-24",33802,162,10216],["2021-03-25",33802,193,10409],["2021-03-26",33802,135,10544],["2021-03-27",33802,90,10634],["2021-03-28",33802,46,10680],["2021-03-29",33802,193,10873],["2021-03-30",33802,232,11105],["2021-03-31",33802,234,11339],["2021-04-01",33802,295,11634],["2021-04-02",33802,92,11726],["2021-04-03",33802,37,11763],["2021-04-04",33802,40,11803],["2021-04-05",33802,186,11989],["2021-04-06",33802,204,12193],["2021-04-07",33802,195,12388],["2021-04-08",33802,264,12652],["2021-04-09",33802,139,12791],["2021-04-10",33802,27,12818],["2021-04-11",33802,47,12865],["2021-04-12",33802,248,13113],["2021-04-13",33802,218,13331],["2021-04-14",33802,198,13529],["2021-04-15",33802,236,13765],["2021-04-16",33802,133,13898],["2021-04-17",33802,110,14008],["2021-04-18",33802,24,14032],["2021-04-19",33802,189,14221],["2021-04-20",33802,167,14388],["2021-04-21",33802,203,14591],["2021-04-22",33802,190,14781],["2021-04-23",33802,136,14917],["2021-04-24",33802,56,14973],["2021-04-25",33802,20,14993],["2021-04-26",33802,150,15143],["2021-04-27",33802,142,15285],["2021-04-28",33802,194,15479],["2021-04-29",33802,189,15668],["2021-04-30",33802,92,15760],["2021-05-01",33802,56,15816],["2021-05-02",33802,22,15838],["2021-05-03",33802,94,15932],["2021-05-04",33802,157,16089],["2021-05-05",33802,124,16213],["2021-05-06",33802,130,16343],["2021-05-07",33802,108,16451],["2021-05-08",33802,17,16468],["2021-05-09",33802,9,16477],["2021-05-10",33802,77,16554],["2021-05-11",33802,87,16641],["2021-05-12",33802,91,16732],["2021-05-13",33802,102,16834],["2021-05-14",33802,77,16911],["2021-05-15",33802,62,16973],["2021-05-16",33802,39,17012],["2021-05-17",33802,71,17083],["2021-05-18",33802,66,17149],["2021-05-19",33802,84,17233],["2021-05-20",33802,84,17317],["2021-05-21",33802,52,17369],["2021-05-22",33802,28,17397],["2021-05-23",33802,29,17426],["2021-05-24",33802,66,17492],["2021-05-25",33802,107,17599],["2021-05-26",33802,70,17669],["2021-05-27",33802,61,17730],["2021-05-28",33802,54,17784],["2021-05-29",33802,25,17809],["2021-05-30",33802,14,17823],["2021-05-31",33802,10,17833],["2021-06-01",33802,59,17892],["2021-06-02",33802,46,17938],["2021-06-03",33802,70,18008],["2021-06-04",33802,37,18045],["2021-06-05",33802,29,18074],["2021-06-06",33802,18,18092],["2021-06-07",33802,67,18159],["2021-06-08",33802,38,18197],["2021-06-09",33802,63,18260],["2021-06-10",33802,43,18303],["2021-06-11",33802,56,18359],["2021-06-12",33802,16,18375],["2021-06-13",33802,22,18397],["2021-06-14",33802,48,18445],["2021-06-15",33802,33,18478],["2021-06-16",33802,66,18544],["2021-06-17",33802,45,18589],["2021-06-18",33802,31,18620],["2021-06-19",33802,23,18643],["2021-06-20",33802,18,18661],["2021-06-21",33802,31,18692],["2021-06-22",33802,24,18716],["2021-06-23",33802,28,18744],["2021-06-24",33802,38,18782],["2021-06-25",33802,32,18814],["2021-06-26",33802,20,18834],["2021-06-27",33802,5,18839],["2021-06-28",33802,17,18856],["2021-06-29",33802,33,18889],["2021-06-30",33802,33,18922],["2021-07-01",33802,26,18948],["2021-07-02",33802,22,18970],["2021-07-03",33802,17,18987],["2021-07-05",33802,15,19002],["2021-07-06",33802,24,19026],["2021-07-07",33802,26,19052],["2021-07-08",33802,34,19086],["2021-07-09",33802,22,19108],["2021-07-10",33802,16,19124],["2021-07-11",33802,12,19136],["2021-07-12",33802,27,19163],["2021-07-13",33802,12,19175],["2021-07-14",33802,29,19204],["2021-07-15",33802,28,19232],["2021-07-16",33802,36,19268],["2021-07-17",33802,20,19288],["2021-07-18",33802,9,19297],["2021-07-19",33802,43,19340],["2021-07-20",33802,35,19375],["2021-07-21",33802,36,19411],["2021-07-22",33802,39,19450],["2021-07-23",33802,38,19488],["2021-07-24",33802,24,19512],["2021-07-25",33802,11,19523],["2021-07-26",33802,38,19561],["2021-07-27",33802,34,19595],["2021-07-28",33802,56,19651],["2021-07-29",33802,65,19716],["2021-07-30",33802,48,19764],["2021-07-31",33802,20,19784],["2021-08-01",33802,22,19806],["2021-08-02",33802,46,19852],["2021-08-03",33802,39,19891],["2021-08-04",33802,57,19948],["2021-08-05",33802,77,20025],["2021-08-06",33802,61,20086],["2021-08-07",33802,42,20128],["2021-08-08",33802,26,20154],["2021-08-09",33802,58,20212],["2021-08-10",33802,57,20269],["2021-08-11",33802,58,20327],["2021-08-12",33802,71,20398],["2021-08-13",33802,54,20452],["2021-08-14",33802,42,20494],["2021-08-15",33802,41,20535],["2021-08-16",33802,66,20601],["2021-08-17",33802,64,20665],["2021-08-18",33802,93,20758],["2021-08-19",33802,58,20816],["2021-08-20",33802,84,20900],["2021-08-21",33802,43,20943],["2021-08-22",33802,29,20972],["2021-08-23",33802,71,21043],["2021-08-24",33802,82,21125],["2021-08-25",33802,80,21205],["2021-08-26",33802,113,21318],["2021-08-27",33802,108,21426],["2021-08-28",33802,38,21464],["2021-08-29",33802,28,21492],["2021-08-30",33802,82,21574],["2021-08-31",33802,79,21653],["2021-09-01",33802,86,21739],["2021-09-02",33802,84,21823],["2021-09-03",33802,79,21902],["2021-09-04",33802,44,21946],["2021-09-05",33802,30,21976],["2021-09-06",33802,11,21987],["2021-09-07",33802,66,22053],["2021-09-08",33802,68,22121],["2021-09-09",33802,96,22217],["2021-09-10",33802,83,22300],["2021-09-11",33802,27,22327],["2021-09-12",33802,27,22354],["2021-09-13",33802,48,22402],["2021-09-14",33802,72,22474],["2021-09-15",33802,61,22535],["2021-09-16",33802,54,22589],["2021-09-17",33802,78,22667],["2021-09-18",33802,44,22711],["2021-09-19",33802,21,22732],["2021-09-20",33802,40,22772],["2021-09-21",33802,50,22822],["2021-09-22",33802,47,22869],["2021-09-23",33802,55,22924],["2021-09-24",33802,62,22986],["2021-09-25",33802,29,23015],["2021-09-26",33802,22,23037],["2021-09-27",33802,44,23081],["2021-09-28",33802,57,23138],["2021-09-29",33802,67,23205],["2021-09-30",33802,79,23284],["2021-10-01",33802,69,23353],["2021-10-02",33802,18,23371],["2021-10-03",33802,19,23390],["2021-10-04",33802,51,23441],["2021-10-05",33802,44,23485],["2021-10-06",33802,46,23531],["2021-10-07",33802,46,23577],["2021-10-08",33802,51,23628],["2021-10-09",33802,25,23653],["2021-10-10",33802,12,23665],["2021-10-11",33802,31,23696],["2021-10-12",33802,57,23753],["2021-10-13",33802,42,23795],["2021-10-14",33802,39,23834],["2021-10-15",33802,32,23866],["2021-10-16",33802,11,23877],["2021-10-17",33802,8,23885],["2021-10-18",33802,27,23912],["2021-10-19",33802,26,23938],["2021-10-20",33802,40,23978],["2021-10-21",33802,44,24022],["2021-10-22",33802,76,24098],["2021-10-23",33802,45,24143],["2021-10-24",33802,42,24185],["2021-10-25",33802,90,24275],["2021-10-26",33802,199,24474],["2021-10-27",33802,178,24652],["2021-10-28",33802,133,24785],["2021-10-29",33802,107,24892],["2021-10-30",33802,21,24913],["2021-10-31",33802,10,24923],["2021-11-01",33802,103,25026],["2021-11-02",33802,117,25143],["2021-11-03",33802,120,25263],["2021-11-04",33802,88,25351],["2021-11-05",33802,64,25415],["2021-11-06",33802,25,25440],["2021-11-07",33802,11,25451],["2021-11-08",33802,85,25536],["2021-11-09",33802,73,25609],["2021-11-10",33802,91,25700],["2021-11-11",33802,53,25753],["2021-11-12",33802,116,25869],["2021-11-13",33802,46,25915],["2021-11-14",33802,13,25928],["2021-11-15",33802,85,26013],["2021-11-16",33802,75,26088],["2021-11-17",33802,67,26155],["2021-11-18",33802,92,26247],["2021-11-19",33802,65,26312],["2021-11-20",33802,36,26348],["2021-11-21",33802,26,26374],["2021-11-22",33802,78,26452],["2021-11-23",33802,66,26518],["2021-11-24",33802,52,26570],["2021-11-26",33802,36,26606],["2021-11-27",33802,27,26633],["2021-11-28",33802,18,26651],["2021-11-29",33802,100,26751],["2021-11-30",33802,92,26843],["2021-12-01",33802,116,26959],["2021-12-02",33802,99,27058],["2021-12-03",33802,91,27149],["2021-12-04",33802,61,27210],["2021-12-05",33802,25,27235],["2021-12-06",33802,75,27310],["2021-12-07",33802,72,27382],["2021-12-08",33802,91,27473],["2021-12-09",33802,88,27561],["2021-12-10",33802,65,27626],["2021-12-11",33802,35,27661],["2021-12-12",33802,19,27680],["2021-12-13",33802,55,27735],["2021-12-14",33802,77,27812],["2021-12-15",33802,51,27863],["2021-12-16",33802,63,27926],["2021-12-17",33802,87,28013],["2021-12-18",33802,30,28043],["2021-12-19",33802,13,28056],["2021-12-20",33802,65,28121],["2021-12-21",33802,77,28198],["2021-12-22",33802,72,28270],["2021-12-23",33802,52,28322],["2021-12-24",33802,20,28342],["2021-12-25",33802,1,28343],["2021-12-26",33802,19,28362],["2021-12-27",33802,71,28433],["2021-12-28",33802,67,28500],["2021-12-29",33802,71,28571],["2021-12-30",33802,80,28651],["2021-12-31",33802,40,28691],["2022-01-01",33802,2,28693],["2022-01-02",33802,19,28712],["2022-01-03",33802,16,28728]]} \ No newline at end of file diff --git a/public/data/overall/vaccinations/by-county/Macon.json b/public/data/overall/vaccinations/by-county/Macon.json new file mode 100644 index 000000000..3372d9ff9 --- /dev/null +++ b/public/data/overall/vaccinations/by-county/Macon.json @@ -0,0 +1 @@ +{"segment":{"county":"Macon"},"headers":["report_date","population","vaccinations","total_vaccinations"],"rows":[["2020-12-17",12988,1,1],["2020-12-19",12988,1,2],["2020-12-20",12988,1,3],["2020-12-22",12988,2,5],["2020-12-23",12988,8,13],["2020-12-24",12988,3,16],["2020-12-26",12988,6,22],["2020-12-28",12988,12,34],["2020-12-29",12988,38,72],["2020-12-30",12988,16,88],["2020-12-31",12988,9,97],["2021-01-01",12988,3,100],["2021-01-03",12988,114,214],["2021-01-04",12988,16,230],["2021-01-05",12988,13,243],["2021-01-06",12988,10,253],["2021-01-07",12988,17,270],["2021-01-08",12988,8,278],["2021-01-09",12988,4,282],["2021-01-10",12988,1,283],["2021-01-11",12988,20,303],["2021-01-12",12988,31,334],["2021-01-13",12988,79,413],["2021-01-14",12988,53,466],["2021-01-15",12988,149,615],["2021-01-16",12988,9,624],["2021-01-17",12988,8,632],["2021-01-18",12988,62,694],["2021-01-19",12988,27,721],["2021-01-20",12988,50,771],["2021-01-21",12988,33,804],["2021-01-22",12988,66,870],["2021-01-23",12988,13,883],["2021-01-24",12988,132,1015],["2021-01-25",12988,186,1201],["2021-01-26",12988,67,1268],["2021-01-27",12988,48,1316],["2021-01-28",12988,39,1355],["2021-01-29",12988,26,1381],["2021-01-30",12988,3,1384],["2021-01-31",12988,2,1386],["2021-02-01",12988,17,1403],["2021-02-02",12988,26,1429],["2021-02-03",12988,69,1498],["2021-02-04",12988,50,1548],["2021-02-05",12988,113,1661],["2021-02-06",12988,8,1669],["2021-02-07",12988,4,1673],["2021-02-08",12988,39,1712],["2021-02-09",12988,48,1760],["2021-02-10",12988,39,1799],["2021-02-11",12988,52,1851],["2021-02-12",12988,160,2011],["2021-02-13",12988,19,2030],["2021-02-14",12988,7,2037],["2021-02-15",12988,73,2110],["2021-02-16",12988,31,2141],["2021-02-17",12988,53,2194],["2021-02-18",12988,63,2257],["2021-02-19",12988,51,2308],["2021-02-20",12988,4,2312],["2021-02-21",12988,1,2313],["2021-02-22",12988,186,2499],["2021-02-23",12988,38,2537],["2021-02-24",12988,36,2573],["2021-02-25",12988,77,2650],["2021-02-26",12988,44,2694],["2021-02-27",12988,8,2702],["2021-02-28",12988,9,2711],["2021-03-01",12988,82,2793],["2021-03-02",12988,50,2843],["2021-03-03",12988,68,2911],["2021-03-04",12988,51,2962],["2021-03-05",12988,125,3087],["2021-03-06",12988,6,3093],["2021-03-07",12988,4,3097],["2021-03-08",12988,73,3170],["2021-03-09",12988,35,3205],["2021-03-10",12988,44,3249],["2021-03-11",12988,57,3306],["2021-03-12",12988,119,3425],["2021-03-13",12988,16,3441],["2021-03-14",12988,13,3454],["2021-03-15",12988,206,3660],["2021-03-16",12988,41,3701],["2021-03-17",12988,62,3763],["2021-03-18",12988,41,3804],["2021-03-19",12988,105,3909],["2021-03-20",12988,5,3914],["2021-03-21",12988,4,3918],["2021-03-22",12988,185,4103],["2021-03-23",12988,61,4164],["2021-03-24",12988,49,4213],["2021-03-25",12988,89,4302],["2021-03-26",12988,51,4353],["2021-03-27",12988,18,4371],["2021-03-28",12988,16,4387],["2021-03-29",12988,126,4513],["2021-03-30",12988,67,4580],["2021-03-31",12988,66,4646],["2021-04-01",12988,176,4822],["2021-04-02",12988,39,4861],["2021-04-03",12988,16,4877],["2021-04-04",12988,3,4880],["2021-04-05",12988,90,4970],["2021-04-06",12988,55,5025],["2021-04-07",12988,53,5078],["2021-04-08",12988,108,5186],["2021-04-09",12988,143,5329],["2021-04-10",12988,10,5339],["2021-04-11",12988,13,5352],["2021-04-12",12988,194,5546],["2021-04-13",12988,78,5624],["2021-04-14",12988,60,5684],["2021-04-15",12988,105,5789],["2021-04-16",12988,88,5877],["2021-04-17",12988,12,5889],["2021-04-18",12988,4,5893],["2021-04-19",12988,197,6090],["2021-04-20",12988,58,6148],["2021-04-21",12988,49,6197],["2021-04-22",12988,88,6285],["2021-04-23",12988,68,6353],["2021-04-24",12988,10,6363],["2021-04-25",12988,26,6389],["2021-04-26",12988,99,6488],["2021-04-27",12988,49,6537],["2021-04-28",12988,40,6577],["2021-04-29",12988,67,6644],["2021-04-30",12988,58,6702],["2021-05-01",12988,11,6713],["2021-05-02",12988,5,6718],["2021-05-03",12988,34,6752],["2021-05-04",12988,68,6820],["2021-05-05",12988,63,6883],["2021-05-06",12988,49,6932],["2021-05-07",12988,67,6999],["2021-05-08",12988,12,7011],["2021-05-09",12988,2,7013],["2021-05-10",12988,29,7042],["2021-05-11",12988,57,7099],["2021-05-12",12988,29,7128],["2021-05-13",12988,73,7201],["2021-05-14",12988,36,7237],["2021-05-15",12988,12,7249],["2021-05-16",12988,11,7260],["2021-05-17",12988,34,7294],["2021-05-18",12988,52,7346],["2021-05-19",12988,51,7397],["2021-05-20",12988,61,7458],["2021-05-21",12988,39,7497],["2021-05-22",12988,13,7510],["2021-05-23",12988,38,7548],["2021-05-24",12988,24,7572],["2021-05-25",12988,55,7627],["2021-05-26",12988,24,7651],["2021-05-27",12988,11,7662],["2021-05-28",12988,18,7680],["2021-05-29",12988,7,7687],["2021-05-30",12988,8,7695],["2021-05-31",12988,1,7696],["2021-06-01",12988,25,7721],["2021-06-02",12988,18,7739],["2021-06-03",12988,31,7770],["2021-06-04",12988,34,7804],["2021-06-05",12988,8,7812],["2021-06-06",12988,7,7819],["2021-06-07",12988,31,7850],["2021-06-08",12988,48,7898],["2021-06-09",12988,35,7933],["2021-06-10",12988,32,7965],["2021-06-11",12988,31,7996],["2021-06-12",12988,11,8007],["2021-06-13",12988,9,8016],["2021-06-14",12988,30,8046],["2021-06-15",12988,32,8078],["2021-06-16",12988,41,8119],["2021-06-17",12988,24,8143],["2021-06-18",12988,30,8173],["2021-06-19",12988,12,8185],["2021-06-20",12988,6,8191],["2021-06-21",12988,13,8204],["2021-06-22",12988,21,8225],["2021-06-23",12988,23,8248],["2021-06-24",12988,24,8272],["2021-06-25",12988,17,8289],["2021-06-26",12988,7,8296],["2021-06-27",12988,5,8301],["2021-06-28",12988,25,8326],["2021-06-29",12988,14,8340],["2021-06-30",12988,9,8349],["2021-07-01",12988,17,8366],["2021-07-02",12988,14,8380],["2021-07-03",12988,2,8382],["2021-07-05",12988,9,8391],["2021-07-06",12988,19,8410],["2021-07-07",12988,14,8424],["2021-07-08",12988,18,8442],["2021-07-09",12988,21,8463],["2021-07-10",12988,13,8476],["2021-07-11",12988,3,8479],["2021-07-12",12988,9,8488],["2021-07-13",12988,14,8502],["2021-07-14",12988,13,8515],["2021-07-15",12988,27,8542],["2021-07-16",12988,20,8562],["2021-07-17",12988,7,8569],["2021-07-18",12988,4,8573],["2021-07-19",12988,12,8585],["2021-07-20",12988,27,8612],["2021-07-21",12988,21,8633],["2021-07-22",12988,25,8658],["2021-07-23",12988,25,8683],["2021-07-24",12988,5,8688],["2021-07-25",12988,6,8694],["2021-07-26",12988,13,8707],["2021-07-27",12988,35,8742],["2021-07-28",12988,20,8762],["2021-07-29",12988,28,8790],["2021-07-30",12988,34,8824],["2021-07-31",12988,15,8839],["2021-08-01",12988,12,8851],["2021-08-02",12988,20,8871],["2021-08-03",12988,33,8904],["2021-08-04",12988,20,8924],["2021-08-05",12988,48,8972],["2021-08-06",12988,29,9001],["2021-08-07",12988,14,9015],["2021-08-08",12988,11,9026],["2021-08-09",12988,25,9051],["2021-08-10",12988,43,9094],["2021-08-11",12988,27,9121],["2021-08-12",12988,30,9151],["2021-08-13",12988,46,9197],["2021-08-14",12988,24,9221],["2021-08-15",12988,17,9238],["2021-08-16",12988,38,9276],["2021-08-17",12988,44,9320],["2021-08-18",12988,24,9344],["2021-08-19",12988,49,9393],["2021-08-20",12988,40,9433],["2021-08-21",12988,32,9465],["2021-08-22",12988,14,9479],["2021-08-23",12988,26,9505],["2021-08-24",12988,31,9536],["2021-08-25",12988,56,9592],["2021-08-26",12988,62,9654],["2021-08-27",12988,46,9700],["2021-08-28",12988,12,9712],["2021-08-29",12988,18,9730],["2021-08-30",12988,31,9761],["2021-08-31",12988,43,9804],["2021-09-01",12988,62,9866],["2021-09-02",12988,43,9909],["2021-09-03",12988,47,9956],["2021-09-04",12988,18,9974],["2021-09-05",12988,22,9996],["2021-09-06",12988,3,9999],["2021-09-07",12988,55,10054],["2021-09-08",12988,41,10095],["2021-09-09",12988,42,10137],["2021-09-10",12988,71,10208],["2021-09-11",12988,23,10231],["2021-09-12",12988,13,10244],["2021-09-13",12988,32,10276],["2021-09-14",12988,52,10328],["2021-09-15",12988,48,10376],["2021-09-16",12988,42,10418],["2021-09-17",12988,53,10471],["2021-09-18",12988,15,10486],["2021-09-19",12988,14,10500],["2021-09-20",12988,42,10542],["2021-09-21",12988,27,10569],["2021-09-22",12988,42,10611],["2021-09-23",12988,31,10642],["2021-09-24",12988,32,10674],["2021-09-25",12988,13,10687],["2021-09-26",12988,10,10697],["2021-09-27",12988,27,10724],["2021-09-28",12988,43,10767],["2021-09-29",12988,32,10799],["2021-09-30",12988,22,10821],["2021-10-01",12988,45,10866],["2021-10-02",12988,10,10876],["2021-10-03",12988,5,10881],["2021-10-04",12988,19,10900],["2021-10-05",12988,123,11023],["2021-10-06",12988,35,11058],["2021-10-07",12988,32,11090],["2021-10-08",12988,36,11126],["2021-10-09",12988,9,11135],["2021-10-10",12988,5,11140],["2021-10-11",12988,16,11156],["2021-10-12",12988,18,11174],["2021-10-13",12988,22,11196],["2021-10-14",12988,28,11224],["2021-10-15",12988,28,11252],["2021-10-16",12988,6,11258],["2021-10-17",12988,4,11262],["2021-10-18",12988,21,11283],["2021-10-19",12988,25,11308],["2021-10-20",12988,18,11326],["2021-10-21",12988,12,11338],["2021-10-22",12988,28,11366],["2021-10-23",12988,14,11380],["2021-10-24",12988,5,11385],["2021-10-25",12988,72,11457],["2021-10-26",12988,66,11523],["2021-10-27",12988,27,11550],["2021-10-28",12988,80,11630],["2021-10-29",12988,71,11701],["2021-10-30",12988,6,11707],["2021-10-31",12988,10,11717],["2021-11-01",12988,49,11766],["2021-11-02",12988,51,11817],["2021-11-03",12988,40,11857],["2021-11-04",12988,68,11925],["2021-11-05",12988,31,11956],["2021-11-06",12988,15,11971],["2021-11-07",12988,3,11974],["2021-11-08",12988,52,12026],["2021-11-09",12988,56,12082],["2021-11-10",12988,26,12108],["2021-11-11",12988,47,12155],["2021-11-12",12988,57,12212],["2021-11-13",12988,32,12244],["2021-11-14",12988,6,12250],["2021-11-15",12988,39,12289],["2021-11-16",12988,45,12334],["2021-11-17",12988,25,12359],["2021-11-18",12988,29,12388],["2021-11-19",12988,33,12421],["2021-11-20",12988,16,12437],["2021-11-21",12988,3,12440],["2021-11-22",12988,52,12492],["2021-11-23",12988,29,12521],["2021-11-24",12988,18,12539],["2021-11-26",12988,10,12549],["2021-11-27",12988,9,12558],["2021-11-28",12988,4,12562],["2021-11-29",12988,25,12587],["2021-11-30",12988,41,12628],["2021-12-01",12988,27,12655],["2021-12-02",12988,105,12760],["2021-12-03",12988,42,12802],["2021-12-04",12988,11,12813],["2021-12-05",12988,3,12816],["2021-12-06",12988,31,12847],["2021-12-07",12988,33,12880],["2021-12-08",12988,28,12908],["2021-12-09",12988,50,12958],["2021-12-10",12988,66,13024],["2021-12-11",12988,10,13034],["2021-12-12",12988,7,13041],["2021-12-13",12988,36,13077],["2021-12-14",12988,43,13120],["2021-12-15",12988,25,13145],["2021-12-16",12988,29,13174],["2021-12-17",12988,33,13207],["2021-12-18",12988,10,13217],["2021-12-19",12988,3,13220],["2021-12-20",12988,25,13245],["2021-12-21",12988,37,13282],["2021-12-22",12988,22,13304],["2021-12-23",12988,26,13330],["2021-12-24",12988,2,13332],["2021-12-26",12988,11,13343],["2021-12-27",12988,29,13372],["2021-12-28",12988,35,13407],["2021-12-29",12988,45,13452],["2021-12-30",12988,37,13489],["2021-12-31",12988,20,13509],["2022-01-01",12988,1,13510],["2022-01-02",12988,7,13517],["2022-01-03",12988,12,13529]]} \ No newline at end of file diff --git a/public/data/overall/vaccinations/by-county/Madison.json b/public/data/overall/vaccinations/by-county/Madison.json new file mode 100644 index 000000000..9135ef2d8 --- /dev/null +++ b/public/data/overall/vaccinations/by-county/Madison.json @@ -0,0 +1 @@ +{"segment":{"county":"Madison"},"headers":["report_date","population","vaccinations","total_vaccinations"],"rows":[["2020-12-18",30177,7,7],["2020-12-19",30177,5,12],["2020-12-20",30177,2,14],["2020-12-21",30177,7,21],["2020-12-22",30177,23,44],["2020-12-23",30177,41,85],["2020-12-24",30177,10,95],["2020-12-26",30177,6,101],["2020-12-27",30177,1,102],["2020-12-28",30177,58,160],["2020-12-29",30177,61,221],["2020-12-30",30177,34,255],["2020-12-31",30177,42,297],["2021-01-01",30177,2,299],["2021-01-02",30177,10,309],["2021-01-03",30177,6,315],["2021-01-04",30177,129,444],["2021-01-05",30177,30,474],["2021-01-06",30177,44,518],["2021-01-07",30177,46,564],["2021-01-08",30177,58,622],["2021-01-09",30177,12,634],["2021-01-10",30177,9,643],["2021-01-11",30177,51,694],["2021-01-12",30177,71,765],["2021-01-13",30177,74,839],["2021-01-14",30177,91,930],["2021-01-15",30177,155,1085],["2021-01-16",30177,63,1148],["2021-01-17",30177,11,1159],["2021-01-18",30177,86,1245],["2021-01-19",30177,120,1365],["2021-01-20",30177,99,1464],["2021-01-21",30177,154,1618],["2021-01-22",30177,94,1712],["2021-01-23",30177,62,1774],["2021-01-24",30177,39,1813],["2021-01-25",30177,271,2084],["2021-01-26",30177,172,2256],["2021-01-27",30177,104,2360],["2021-01-28",30177,83,2443],["2021-01-29",30177,100,2543],["2021-01-30",30177,14,2557],["2021-01-31",30177,11,2568],["2021-02-01",30177,94,2662],["2021-02-02",30177,133,2795],["2021-02-03",30177,109,2904],["2021-02-04",30177,89,2993],["2021-02-05",30177,119,3112],["2021-02-06",30177,40,3152],["2021-02-07",30177,10,3162],["2021-02-08",30177,61,3223],["2021-02-09",30177,192,3415],["2021-02-10",30177,170,3585],["2021-02-11",30177,109,3694],["2021-02-12",30177,151,3845],["2021-02-13",30177,83,3928],["2021-02-14",30177,31,3959],["2021-02-15",30177,132,4091],["2021-02-16",30177,195,4286],["2021-02-17",30177,97,4383],["2021-02-18",30177,93,4476],["2021-02-19",30177,124,4600],["2021-02-20",30177,43,4643],["2021-02-21",30177,15,4658],["2021-02-22",30177,176,4834],["2021-02-23",30177,278,5112],["2021-02-24",30177,113,5225],["2021-02-25",30177,127,5352],["2021-02-26",30177,132,5484],["2021-02-27",30177,36,5520],["2021-02-28",30177,26,5546],["2021-03-01",30177,127,5673],["2021-03-02",30177,217,5890],["2021-03-03",30177,168,6058],["2021-03-04",30177,117,6175],["2021-03-05",30177,132,6307],["2021-03-06",30177,31,6338],["2021-03-07",30177,27,6365],["2021-03-08",30177,126,6491],["2021-03-09",30177,220,6711],["2021-03-10",30177,227,6938],["2021-03-11",30177,198,7136],["2021-03-12",30177,388,7524],["2021-03-13",30177,103,7627],["2021-03-14",30177,47,7674],["2021-03-15",30177,168,7842],["2021-03-16",30177,285,8127],["2021-03-17",30177,240,8367],["2021-03-18",30177,182,8549],["2021-03-19",30177,192,8741],["2021-03-20",30177,171,8912],["2021-03-21",30177,34,8946],["2021-03-22",30177,287,9233],["2021-03-23",30177,306,9539],["2021-03-24",30177,199,9738],["2021-03-25",30177,229,9967],["2021-03-26",30177,268,10235],["2021-03-27",30177,52,10287],["2021-03-28",30177,59,10346],["2021-03-29",30177,191,10537],["2021-03-30",30177,216,10753],["2021-03-31",30177,343,11096],["2021-04-01",30177,285,11381],["2021-04-02",30177,229,11610],["2021-04-03",30177,97,11707],["2021-04-04",30177,53,11760],["2021-04-05",30177,213,11973],["2021-04-06",30177,245,12218],["2021-04-07",30177,268,12486],["2021-04-08",30177,243,12729],["2021-04-09",30177,381,13110],["2021-04-10",30177,80,13190],["2021-04-11",30177,61,13251],["2021-04-12",30177,189,13440],["2021-04-13",30177,252,13692],["2021-04-14",30177,227,13919],["2021-04-15",30177,193,14112],["2021-04-16",30177,283,14395],["2021-04-17",30177,167,14562],["2021-04-18",30177,26,14588],["2021-04-19",30177,203,14791],["2021-04-20",30177,260,15051],["2021-04-21",30177,264,15315],["2021-04-22",30177,184,15499],["2021-04-23",30177,324,15823],["2021-04-24",30177,46,15869],["2021-04-25",30177,26,15895],["2021-04-26",30177,157,16052],["2021-04-27",30177,190,16242],["2021-04-28",30177,177,16419],["2021-04-29",30177,163,16582],["2021-04-30",30177,196,16778],["2021-05-01",30177,53,16831],["2021-05-02",30177,31,16862],["2021-05-03",30177,121,16983],["2021-05-04",30177,146,17129],["2021-05-05",30177,108,17237],["2021-05-06",30177,129,17366],["2021-05-07",30177,131,17497],["2021-05-08",30177,60,17557],["2021-05-09",30177,13,17570],["2021-05-10",30177,78,17648],["2021-05-11",30177,117,17765],["2021-05-12",30177,98,17863],["2021-05-13",30177,102,17965],["2021-05-14",30177,130,18095],["2021-05-15",30177,56,18151],["2021-05-16",30177,22,18173],["2021-05-17",30177,83,18256],["2021-05-18",30177,98,18354],["2021-05-19",30177,91,18445],["2021-05-20",30177,78,18523],["2021-05-21",30177,124,18647],["2021-05-22",30177,44,18691],["2021-05-23",30177,25,18716],["2021-05-24",30177,59,18775],["2021-05-25",30177,59,18834],["2021-05-26",30177,85,18919],["2021-05-27",30177,53,18972],["2021-05-28",30177,115,19087],["2021-05-29",30177,24,19111],["2021-05-30",30177,15,19126],["2021-05-31",30177,14,19140],["2021-06-01",30177,76,19216],["2021-06-02",30177,55,19271],["2021-06-03",30177,66,19337],["2021-06-04",30177,90,19427],["2021-06-05",30177,36,19463],["2021-06-06",30177,15,19478],["2021-06-07",30177,47,19525],["2021-06-08",30177,51,19576],["2021-06-09",30177,56,19632],["2021-06-10",30177,47,19679],["2021-06-11",30177,63,19742],["2021-06-12",30177,47,19789],["2021-06-13",30177,22,19811],["2021-06-14",30177,54,19865],["2021-06-15",30177,49,19914],["2021-06-16",30177,45,19959],["2021-06-17",30177,44,20003],["2021-06-18",30177,51,20054],["2021-06-19",30177,24,20078],["2021-06-20",30177,14,20092],["2021-06-21",30177,24,20116],["2021-06-22",30177,37,20153],["2021-06-23",30177,51,20204],["2021-06-24",30177,31,20235],["2021-06-25",30177,79,20314],["2021-06-26",30177,23,20337],["2021-06-27",30177,4,20341],["2021-06-28",30177,31,20372],["2021-06-29",30177,31,20403],["2021-06-30",30177,34,20437],["2021-07-01",30177,31,20468],["2021-07-02",30177,37,20505],["2021-07-03",30177,13,20518],["2021-07-04",30177,3,20521],["2021-07-05",30177,19,20540],["2021-07-06",30177,17,20557],["2021-07-07",30177,32,20589],["2021-07-08",30177,23,20612],["2021-07-09",30177,28,20640],["2021-07-10",30177,18,20658],["2021-07-11",30177,14,20672],["2021-07-12",30177,28,20700],["2021-07-13",30177,22,20722],["2021-07-14",30177,31,20753],["2021-07-15",30177,26,20779],["2021-07-16",30177,44,20823],["2021-07-17",30177,16,20839],["2021-07-18",30177,10,20849],["2021-07-19",30177,24,20873],["2021-07-20",30177,25,20898],["2021-07-21",30177,40,20938],["2021-07-22",30177,35,20973],["2021-07-23",30177,42,21015],["2021-07-24",30177,24,21039],["2021-07-25",30177,12,21051],["2021-07-26",30177,35,21086],["2021-07-27",30177,32,21118],["2021-07-28",30177,47,21165],["2021-07-29",30177,47,21212],["2021-07-30",30177,55,21267],["2021-07-31",30177,27,21294],["2021-08-01",30177,10,21304],["2021-08-02",30177,60,21364],["2021-08-03",30177,56,21420],["2021-08-04",30177,67,21487],["2021-08-05",30177,57,21544],["2021-08-06",30177,85,21629],["2021-08-07",30177,43,21672],["2021-08-08",30177,32,21704],["2021-08-09",30177,68,21772],["2021-08-10",30177,55,21827],["2021-08-11",30177,67,21894],["2021-08-12",30177,57,21951],["2021-08-13",30177,89,22040],["2021-08-14",30177,41,22081],["2021-08-15",30177,32,22113],["2021-08-16",30177,79,22192],["2021-08-17",30177,68,22260],["2021-08-18",30177,65,22325],["2021-08-19",30177,80,22405],["2021-08-20",30177,94,22499],["2021-08-21",30177,57,22556],["2021-08-22",30177,30,22586],["2021-08-23",30177,82,22668],["2021-08-24",30177,84,22752],["2021-08-25",30177,102,22854],["2021-08-26",30177,97,22951],["2021-08-27",30177,108,23059],["2021-08-28",30177,53,23112],["2021-08-29",30177,34,23146],["2021-08-30",30177,83,23229],["2021-08-31",30177,88,23317],["2021-09-01",30177,109,23426],["2021-09-02",30177,100,23526],["2021-09-03",30177,120,23646],["2021-09-04",30177,51,23697],["2021-09-05",30177,35,23732],["2021-09-06",30177,11,23743],["2021-09-07",30177,83,23826],["2021-09-08",30177,79,23905],["2021-09-09",30177,70,23975],["2021-09-10",30177,104,24079],["2021-09-11",30177,37,24116],["2021-09-12",30177,39,24155],["2021-09-13",30177,71,24226],["2021-09-14",30177,78,24304],["2021-09-15",30177,62,24366],["2021-09-16",30177,77,24443],["2021-09-17",30177,93,24536],["2021-09-18",30177,45,24581],["2021-09-19",30177,18,24599],["2021-09-20",30177,73,24672],["2021-09-21",30177,51,24723],["2021-09-22",30177,54,24777],["2021-09-23",30177,61,24838],["2021-09-24",30177,71,24909],["2021-09-25",30177,52,24961],["2021-09-26",30177,23,24984],["2021-09-27",30177,71,25055],["2021-09-28",30177,84,25139],["2021-09-29",30177,80,25219],["2021-09-30",30177,70,25289],["2021-10-01",30177,101,25390],["2021-10-02",30177,38,25428],["2021-10-03",30177,21,25449],["2021-10-04",30177,64,25513],["2021-10-05",30177,57,25570],["2021-10-06",30177,56,25626],["2021-10-07",30177,56,25682],["2021-10-08",30177,83,25765],["2021-10-09",30177,17,25782],["2021-10-10",30177,15,25797],["2021-10-11",30177,35,25832],["2021-10-12",30177,48,25880],["2021-10-13",30177,52,25932],["2021-10-14",30177,46,25978],["2021-10-15",30177,62,26040],["2021-10-16",30177,25,26065],["2021-10-17",30177,13,26078],["2021-10-18",30177,52,26130],["2021-10-19",30177,32,26162],["2021-10-20",30177,44,26206],["2021-10-21",30177,41,26247],["2021-10-22",30177,93,26340],["2021-10-23",30177,53,26393],["2021-10-24",30177,39,26432],["2021-10-25",30177,82,26514],["2021-10-26",30177,100,26614],["2021-10-27",30177,94,26708],["2021-10-28",30177,110,26818],["2021-10-29",30177,114,26932],["2021-10-30",30177,49,26981],["2021-10-31",30177,25,27006],["2021-11-01",30177,79,27085],["2021-11-02",30177,99,27184],["2021-11-03",30177,98,27282],["2021-11-04",30177,122,27404],["2021-11-05",30177,115,27519],["2021-11-06",30177,40,27559],["2021-11-07",30177,15,27574],["2021-11-08",30177,84,27658],["2021-11-09",30177,67,27725],["2021-11-10",30177,82,27807],["2021-11-11",30177,89,27896],["2021-11-12",30177,112,28008],["2021-11-13",30177,46,28054],["2021-11-14",30177,23,28077],["2021-11-15",30177,101,28178],["2021-11-16",30177,98,28276],["2021-11-17",30177,75,28351],["2021-11-18",30177,85,28436],["2021-11-19",30177,96,28532],["2021-11-20",30177,53,28585],["2021-11-21",30177,28,28613],["2021-11-22",30177,76,28689],["2021-11-23",30177,77,28766],["2021-11-24",30177,48,28814],["2021-11-26",30177,57,28871],["2021-11-27",30177,32,28903],["2021-11-28",30177,22,28925],["2021-11-29",30177,90,29015],["2021-11-30",30177,105,29120],["2021-12-01",30177,116,29236],["2021-12-02",30177,129,29365],["2021-12-03",30177,111,29476],["2021-12-04",30177,62,29538],["2021-12-05",30177,31,29569],["2021-12-06",30177,85,29654],["2021-12-07",30177,81,29735],["2021-12-08",30177,55,29790],["2021-12-09",30177,92,29882],["2021-12-10",30177,107,29989],["2021-12-11",30177,36,30025],["2021-12-12",30177,22,30047],["2021-12-13",30177,58,30105],["2021-12-14",30177,62,30167],["2021-12-15",30177,68,30235],["2021-12-16",30177,82,30317],["2021-12-17",30177,68,30385],["2021-12-18",30177,44,30429],["2021-12-19",30177,21,30450],["2021-12-20",30177,88,30538],["2021-12-21",30177,98,30636],["2021-12-22",30177,84,30720],["2021-12-23",30177,81,30801],["2021-12-24",30177,10,30811],["2021-12-26",30177,27,30838],["2021-12-27",30177,64,30902],["2021-12-28",30177,81,30983],["2021-12-29",30177,69,31052],["2021-12-30",30177,101,31153],["2021-12-31",30177,39,31192],["2022-01-01",30177,14,31206],["2022-01-02",30177,32,31238],["2022-01-03",30177,29,31267]]} \ No newline at end of file diff --git a/public/data/overall/vaccinations/by-county/Marion.json b/public/data/overall/vaccinations/by-county/Marion.json new file mode 100644 index 000000000..5bcfa3163 --- /dev/null +++ b/public/data/overall/vaccinations/by-county/Marion.json @@ -0,0 +1 @@ +{"segment":{"county":"Marion"},"headers":["report_date","population","vaccinations","total_vaccinations"],"rows":[["2020-12-12",8293,1,1],["2020-12-14",8293,1,2],["2020-12-18",8293,3,5],["2020-12-19",8293,1,6],["2020-12-20",8293,1,7],["2020-12-21",8293,5,12],["2020-12-22",8293,2,14],["2020-12-23",8293,7,21],["2020-12-24",8293,1,22],["2020-12-26",8293,2,24],["2020-12-27",8293,1,25],["2020-12-28",8293,5,30],["2020-12-29",8293,7,37],["2020-12-30",8293,6,43],["2020-12-31",8293,4,47],["2021-01-03",8293,1,48],["2021-01-04",8293,34,82],["2021-01-05",8293,8,90],["2021-01-06",8293,11,101],["2021-01-07",8293,9,110],["2021-01-08",8293,9,119],["2021-01-09",8293,5,124],["2021-01-10",8293,3,127],["2021-01-11",8293,54,181],["2021-01-12",8293,21,202],["2021-01-13",8293,140,342],["2021-01-14",8293,104,446],["2021-01-15",8293,107,553],["2021-01-16",8293,9,562],["2021-01-17",8293,3,565],["2021-01-18",8293,16,581],["2021-01-19",8293,18,599],["2021-01-20",8293,67,666],["2021-01-21",8293,17,683],["2021-01-22",8293,48,731],["2021-01-23",8293,1,732],["2021-01-24",8293,3,735],["2021-01-25",8293,49,784],["2021-01-26",8293,10,794],["2021-01-27",8293,16,810],["2021-01-28",8293,18,828],["2021-01-29",8293,24,852],["2021-01-30",8293,1,853],["2021-01-31",8293,2,855],["2021-02-01",8293,11,866],["2021-02-02",8293,10,876],["2021-02-03",8293,15,891],["2021-02-04",8293,17,908],["2021-02-05",8293,8,916],["2021-02-06",8293,3,919],["2021-02-07",8293,1,920],["2021-02-08",8293,55,975],["2021-02-09",8293,17,992],["2021-02-10",8293,139,1131],["2021-02-11",8293,105,1236],["2021-02-12",8293,24,1260],["2021-02-13",8293,4,1264],["2021-02-14",8293,1,1265],["2021-02-15",8293,105,1370],["2021-02-16",8293,29,1399],["2021-02-17",8293,67,1466],["2021-02-18",8293,13,1479],["2021-02-19",8293,59,1538],["2021-02-20",8293,1,1539],["2021-02-22",8293,115,1654],["2021-02-23",8293,13,1667],["2021-02-24",8293,94,1761],["2021-02-25",8293,18,1779],["2021-02-26",8293,78,1857],["2021-02-27",8293,3,1860],["2021-02-28",8293,1,1861],["2021-03-01",8293,23,1884],["2021-03-02",8293,9,1893],["2021-03-03",8293,71,1964],["2021-03-04",8293,25,1989],["2021-03-05",8293,25,2014],["2021-03-06",8293,3,2017],["2021-03-07",8293,1,2018],["2021-03-08",8293,16,2034],["2021-03-09",8293,16,2050],["2021-03-10",8293,85,2135],["2021-03-11",8293,33,2168],["2021-03-12",8293,49,2217],["2021-03-13",8293,4,2221],["2021-03-14",8293,4,2225],["2021-03-15",8293,37,2262],["2021-03-16",8293,22,2284],["2021-03-17",8293,91,2375],["2021-03-18",8293,19,2394],["2021-03-19",8293,53,2447],["2021-03-20",8293,7,2454],["2021-03-21",8293,2,2456],["2021-03-22",8293,115,2571],["2021-03-23",8293,27,2598],["2021-03-24",8293,129,2727],["2021-03-25",8293,33,2760],["2021-03-26",8293,120,2880],["2021-03-27",8293,10,2890],["2021-03-28",8293,6,2896],["2021-03-29",8293,25,2921],["2021-03-30",8293,18,2939],["2021-03-31",8293,94,3033],["2021-04-01",8293,44,3077],["2021-04-02",8293,22,3099],["2021-04-03",8293,10,3109],["2021-04-04",8293,7,3116],["2021-04-05",8293,39,3155],["2021-04-06",8293,41,3196],["2021-04-07",8293,103,3299],["2021-04-08",8293,52,3351],["2021-04-09",8293,75,3426],["2021-04-10",8293,11,3437],["2021-04-11",8293,8,3445],["2021-04-12",8293,44,3489],["2021-04-13",8293,31,3520],["2021-04-14",8293,36,3556],["2021-04-15",8293,97,3653],["2021-04-16",8293,53,3706],["2021-04-17",8293,5,3711],["2021-04-18",8293,7,3718],["2021-04-19",8293,28,3746],["2021-04-20",8293,37,3783],["2021-04-21",8293,65,3848],["2021-04-22",8293,51,3899],["2021-04-23",8293,36,3935],["2021-04-24",8293,14,3949],["2021-04-25",8293,5,3954],["2021-04-26",8293,54,4008],["2021-04-27",8293,20,4028],["2021-04-28",8293,41,4069],["2021-04-29",8293,47,4116],["2021-04-30",8293,43,4159],["2021-05-01",8293,8,4167],["2021-05-02",8293,3,4170],["2021-05-03",8293,20,4190],["2021-05-04",8293,13,4203],["2021-05-05",8293,29,4232],["2021-05-06",8293,62,4294],["2021-05-07",8293,25,4319],["2021-05-08",8293,8,4327],["2021-05-09",8293,1,4328],["2021-05-10",8293,26,4354],["2021-05-11",8293,22,4376],["2021-05-12",8293,31,4407],["2021-05-13",8293,31,4438],["2021-05-14",8293,25,4463],["2021-05-15",8293,16,4479],["2021-05-16",8293,5,4484],["2021-05-17",8293,18,4502],["2021-05-18",8293,28,4530],["2021-05-19",8293,38,4568],["2021-05-20",8293,51,4619],["2021-05-21",8293,25,4644],["2021-05-22",8293,7,4651],["2021-05-23",8293,5,4656],["2021-05-24",8293,17,4673],["2021-05-25",8293,15,4688],["2021-05-26",8293,26,4714],["2021-05-27",8293,34,4748],["2021-05-28",8293,15,4763],["2021-05-29",8293,8,4771],["2021-05-30",8293,2,4773],["2021-05-31",8293,1,4774],["2021-06-01",8293,16,4790],["2021-06-02",8293,23,4813],["2021-06-03",8293,15,4828],["2021-06-04",8293,12,4840],["2021-06-05",8293,13,4853],["2021-06-06",8293,3,4856],["2021-06-07",8293,12,4868],["2021-06-08",8293,18,4886],["2021-06-09",8293,29,4915],["2021-06-10",8293,39,4954],["2021-06-11",8293,15,4969],["2021-06-12",8293,5,4974],["2021-06-13",8293,3,4977],["2021-06-14",8293,14,4991],["2021-06-15",8293,16,5007],["2021-06-16",8293,16,5023],["2021-06-17",8293,31,5054],["2021-06-18",8293,11,5065],["2021-06-19",8293,7,5072],["2021-06-21",8293,6,5078],["2021-06-22",8293,10,5088],["2021-06-23",8293,22,5110],["2021-06-24",8293,26,5136],["2021-06-25",8293,18,5154],["2021-06-26",8293,15,5169],["2021-06-27",8293,2,5171],["2021-06-28",8293,7,5178],["2021-06-29",8293,6,5184],["2021-06-30",8293,20,5204],["2021-07-01",8293,12,5216],["2021-07-02",8293,9,5225],["2021-07-03",8293,5,5230],["2021-07-04",8293,2,5232],["2021-07-05",8293,2,5234],["2021-07-06",8293,10,5244],["2021-07-07",8293,14,5258],["2021-07-08",8293,6,5264],["2021-07-09",8293,8,5272],["2021-07-11",8293,1,5273],["2021-07-12",8293,6,5279],["2021-07-13",8293,11,5290],["2021-07-14",8293,10,5300],["2021-07-15",8293,20,5320],["2021-07-16",8293,9,5329],["2021-07-17",8293,8,5337],["2021-07-18",8293,2,5339],["2021-07-19",8293,13,5352],["2021-07-20",8293,16,5368],["2021-07-21",8293,18,5386],["2021-07-22",8293,46,5432],["2021-07-23",8293,13,5445],["2021-07-24",8293,10,5455],["2021-07-25",8293,2,5457],["2021-07-26",8293,24,5481],["2021-07-27",8293,8,5489],["2021-07-28",8293,21,5510],["2021-07-29",8293,36,5546],["2021-07-30",8293,15,5561],["2021-07-31",8293,8,5569],["2021-08-01",8293,7,5576],["2021-08-02",8293,8,5584],["2021-08-03",8293,11,5595],["2021-08-04",8293,18,5613],["2021-08-05",8293,27,5640],["2021-08-06",8293,14,5654],["2021-08-07",8293,43,5697],["2021-08-08",8293,1,5698],["2021-08-09",8293,13,5711],["2021-08-10",8293,18,5729],["2021-08-11",8293,16,5745],["2021-08-12",8293,15,5760],["2021-08-13",8293,21,5781],["2021-08-14",8293,22,5803],["2021-08-15",8293,5,5808],["2021-08-16",8293,17,5825],["2021-08-17",8293,10,5835],["2021-08-18",8293,29,5864],["2021-08-19",8293,51,5915],["2021-08-20",8293,16,5931],["2021-08-21",8293,6,5937],["2021-08-22",8293,5,5942],["2021-08-23",8293,21,5963],["2021-08-24",8293,10,5973],["2021-08-25",8293,15,5988],["2021-08-26",8293,74,6062],["2021-08-27",8293,24,6086],["2021-08-28",8293,37,6123],["2021-08-29",8293,6,6129],["2021-08-30",8293,16,6145],["2021-08-31",8293,20,6165],["2021-09-01",8293,31,6196],["2021-09-02",8293,47,6243],["2021-09-03",8293,20,6263],["2021-09-04",8293,14,6277],["2021-09-05",8293,7,6284],["2021-09-06",8293,3,6287],["2021-09-07",8293,17,6304],["2021-09-08",8293,25,6329],["2021-09-09",8293,29,6358],["2021-09-10",8293,22,6380],["2021-09-11",8293,15,6395],["2021-09-12",8293,6,6401],["2021-09-13",8293,14,6415],["2021-09-14",8293,11,6426],["2021-09-15",8293,22,6448],["2021-09-16",8293,27,6475],["2021-09-17",8293,18,6493],["2021-09-18",8293,6,6499],["2021-09-19",8293,9,6508],["2021-09-20",8293,19,6527],["2021-09-21",8293,12,6539],["2021-09-22",8293,14,6553],["2021-09-23",8293,49,6602],["2021-09-24",8293,16,6618],["2021-09-25",8293,6,6624],["2021-09-26",8293,6,6630],["2021-09-27",8293,10,6640],["2021-09-28",8293,12,6652],["2021-09-29",8293,28,6680],["2021-09-30",8293,20,6700],["2021-10-01",8293,43,6743],["2021-10-02",8293,6,6749],["2021-10-03",8293,4,6753],["2021-10-04",8293,21,6774],["2021-10-05",8293,17,6791],["2021-10-06",8293,20,6811],["2021-10-07",8293,20,6831],["2021-10-08",8293,12,6843],["2021-10-09",8293,7,6850],["2021-10-10",8293,6,6856],["2021-10-11",8293,14,6870],["2021-10-12",8293,12,6882],["2021-10-13",8293,18,6900],["2021-10-14",8293,26,6926],["2021-10-15",8293,18,6944],["2021-10-16",8293,1,6945],["2021-10-18",8293,5,6950],["2021-10-19",8293,3,6953],["2021-10-20",8293,11,6964],["2021-10-21",8293,12,6976],["2021-10-22",8293,25,7001],["2021-10-23",8293,6,7007],["2021-10-24",8293,3,7010],["2021-10-25",8293,12,7022],["2021-10-26",8293,8,7030],["2021-10-27",8293,22,7052],["2021-10-28",8293,86,7138],["2021-10-29",8293,13,7151],["2021-10-30",8293,6,7157],["2021-10-31",8293,5,7162],["2021-11-01",8293,11,7173],["2021-11-02",8293,18,7191],["2021-11-03",8293,21,7212],["2021-11-04",8293,123,7335],["2021-11-05",8293,20,7355],["2021-11-06",8293,6,7361],["2021-11-07",8293,4,7365],["2021-11-08",8293,14,7379],["2021-11-09",8293,19,7398],["2021-11-10",8293,29,7427],["2021-11-11",8293,24,7451],["2021-11-12",8293,13,7464],["2021-11-13",8293,9,7473],["2021-11-15",8293,14,7487],["2021-11-16",8293,11,7498],["2021-11-17",8293,27,7525],["2021-11-18",8293,127,7652],["2021-11-19",8293,14,7666],["2021-11-20",8293,7,7673],["2021-11-21",8293,4,7677],["2021-11-22",8293,46,7723],["2021-11-23",8293,22,7745],["2021-11-24",8293,18,7763],["2021-11-26",8293,9,7772],["2021-11-27",8293,4,7776],["2021-11-28",8293,6,7782],["2021-11-29",8293,13,7795],["2021-11-30",8293,14,7809],["2021-12-01",8293,30,7839],["2021-12-02",8293,124,7963],["2021-12-03",8293,22,7985],["2021-12-04",8293,4,7989],["2021-12-05",8293,8,7997],["2021-12-06",8293,18,8015],["2021-12-07",8293,15,8030],["2021-12-08",8293,25,8055],["2021-12-09",8293,55,8110],["2021-12-10",8293,16,8126],["2021-12-11",8293,6,8132],["2021-12-12",8293,1,8133],["2021-12-13",8293,13,8146],["2021-12-14",8293,2,8148],["2021-12-15",8293,20,8168],["2021-12-16",8293,27,8195],["2021-12-17",8293,10,8205],["2021-12-18",8293,5,8210],["2021-12-19",8293,2,8212],["2021-12-20",8293,9,8221],["2021-12-21",8293,14,8235],["2021-12-22",8293,24,8259],["2021-12-23",8293,11,8270],["2021-12-24",8293,3,8273],["2021-12-26",8293,4,8277],["2021-12-27",8293,8,8285],["2021-12-28",8293,15,8300],["2021-12-29",8293,27,8327],["2021-12-30",8293,14,8341],["2021-12-31",8293,5,8346],["2022-01-01",8293,1,8347],["2022-01-02",8293,4,8351],["2022-01-03",8293,4,8355]]} \ No newline at end of file diff --git a/public/data/overall/vaccinations/by-county/McDuffie.json b/public/data/overall/vaccinations/by-county/McDuffie.json new file mode 100644 index 000000000..b12fada2e --- /dev/null +++ b/public/data/overall/vaccinations/by-county/McDuffie.json @@ -0,0 +1 @@ +{"segment":{"county":"McDuffie"},"headers":["report_date","population","vaccinations","total_vaccinations"],"rows":[["2020-12-16",21597,1,1],["2020-12-18",21597,3,4],["2020-12-19",21597,4,8],["2020-12-20",21597,1,9],["2020-12-21",21597,1,10],["2020-12-22",21597,23,33],["2020-12-23",21597,36,69],["2020-12-24",21597,10,79],["2020-12-26",21597,1,80],["2020-12-27",21597,1,81],["2020-12-28",21597,33,114],["2020-12-29",21597,30,144],["2020-12-30",21597,31,175],["2020-12-31",21597,9,184],["2021-01-02",21597,58,242],["2021-01-03",21597,1,243],["2021-01-04",21597,62,305],["2021-01-05",21597,29,334],["2021-01-06",21597,50,384],["2021-01-07",21597,33,417],["2021-01-08",21597,26,443],["2021-01-09",21597,22,465],["2021-01-10",21597,9,474],["2021-01-11",21597,96,570],["2021-01-12",21597,31,601],["2021-01-13",21597,64,665],["2021-01-14",21597,236,901],["2021-01-15",21597,17,918],["2021-01-16",21597,63,981],["2021-01-17",21597,1,982],["2021-01-18",21597,60,1042],["2021-01-19",21597,58,1100],["2021-01-20",21597,165,1265],["2021-01-21",21597,61,1326],["2021-01-22",21597,93,1419],["2021-01-23",21597,91,1510],["2021-01-24",21597,3,1513],["2021-01-25",21597,74,1587],["2021-01-26",21597,301,1888],["2021-01-27",21597,83,1971],["2021-01-28",21597,72,2043],["2021-01-29",21597,21,2064],["2021-01-30",21597,28,2092],["2021-01-31",21597,13,2105],["2021-02-01",21597,82,2187],["2021-02-02",21597,50,2237],["2021-02-03",21597,80,2317],["2021-02-04",21597,75,2392],["2021-02-05",21597,44,2436],["2021-02-06",21597,9,2445],["2021-02-07",21597,1,2446],["2021-02-08",21597,120,2566],["2021-02-09",21597,259,2825],["2021-02-10",21597,71,2896],["2021-02-11",21597,78,2974],["2021-02-12",21597,230,3204],["2021-02-13",21597,30,3234],["2021-02-14",21597,18,3252],["2021-02-15",21597,72,3324],["2021-02-16",21597,86,3410],["2021-02-17",21597,208,3618],["2021-02-18",21597,64,3682],["2021-02-19",21597,104,3786],["2021-02-20",21597,23,3809],["2021-02-21",21597,4,3813],["2021-02-22",21597,59,3872],["2021-02-23",21597,273,4145],["2021-02-24",21597,35,4180],["2021-02-25",21597,150,4330],["2021-02-26",21597,46,4376],["2021-02-27",21597,8,4384],["2021-02-28",21597,2,4386],["2021-03-01",21597,76,4462],["2021-03-02",21597,74,4536],["2021-03-03",21597,96,4632],["2021-03-04",21597,107,4739],["2021-03-05",21597,40,4779],["2021-03-06",21597,23,4802],["2021-03-07",21597,13,4815],["2021-03-08",21597,87,4902],["2021-03-09",21597,290,5192],["2021-03-10",21597,106,5298],["2021-03-11",21597,170,5468],["2021-03-12",21597,144,5612],["2021-03-13",21597,42,5654],["2021-03-14",21597,3,5657],["2021-03-15",21597,107,5764],["2021-03-16",21597,153,5917],["2021-03-17",21597,131,6048],["2021-03-18",21597,95,6143],["2021-03-19",21597,81,6224],["2021-03-20",21597,23,6247],["2021-03-21",21597,14,6261],["2021-03-22",21597,156,6417],["2021-03-23",21597,185,6602],["2021-03-24",21597,96,6698],["2021-03-25",21597,179,6877],["2021-03-26",21597,55,6932],["2021-03-27",21597,41,6973],["2021-03-28",21597,13,6986],["2021-03-29",21597,110,7096],["2021-03-30",21597,237,7333],["2021-03-31",21597,142,7475],["2021-04-01",21597,199,7674],["2021-04-02",21597,122,7796],["2021-04-03",21597,39,7835],["2021-04-04",21597,31,7866],["2021-04-05",21597,110,7976],["2021-04-06",21597,199,8175],["2021-04-07",21597,158,8333],["2021-04-08",21597,177,8510],["2021-04-09",21597,76,8586],["2021-04-10",21597,28,8614],["2021-04-11",21597,24,8638],["2021-04-12",21597,186,8824],["2021-04-13",21597,206,9030],["2021-04-14",21597,143,9173],["2021-04-15",21597,177,9350],["2021-04-16",21597,125,9475],["2021-04-17",21597,34,9509],["2021-04-18",21597,11,9520],["2021-04-19",21597,165,9685],["2021-04-20",21597,226,9911],["2021-04-21",21597,149,10060],["2021-04-22",21597,245,10305],["2021-04-23",21597,91,10396],["2021-04-24",21597,40,10436],["2021-04-25",21597,17,10453],["2021-04-26",21597,99,10552],["2021-04-27",21597,216,10768],["2021-04-28",21597,133,10901],["2021-04-29",21597,119,11020],["2021-04-30",21597,97,11117],["2021-05-01",21597,35,11152],["2021-05-02",21597,13,11165],["2021-05-03",21597,74,11239],["2021-05-04",21597,150,11389],["2021-05-05",21597,78,11467],["2021-05-06",21597,164,11631],["2021-05-07",21597,76,11707],["2021-05-08",21597,20,11727],["2021-05-09",21597,14,11741],["2021-05-10",21597,104,11845],["2021-05-11",21597,104,11949],["2021-05-12",21597,76,12025],["2021-05-13",21597,90,12115],["2021-05-14",21597,60,12175],["2021-05-15",21597,26,12201],["2021-05-16",21597,23,12224],["2021-05-17",21597,81,12305],["2021-05-18",21597,91,12396],["2021-05-19",21597,93,12489],["2021-05-20",21597,106,12595],["2021-05-21",21597,57,12652],["2021-05-22",21597,41,12693],["2021-05-23",21597,12,12705],["2021-05-24",21597,43,12748],["2021-05-25",21597,68,12816],["2021-05-26",21597,67,12883],["2021-05-27",21597,54,12937],["2021-05-28",21597,47,12984],["2021-05-29",21597,23,13007],["2021-05-30",21597,19,13026],["2021-05-31",21597,14,13040],["2021-06-01",21597,66,13106],["2021-06-02",21597,63,13169],["2021-06-03",21597,85,13254],["2021-06-04",21597,38,13292],["2021-06-05",21597,21,13313],["2021-06-06",21597,16,13329],["2021-06-07",21597,48,13377],["2021-06-08",21597,57,13434],["2021-06-09",21597,54,13488],["2021-06-10",21597,48,13536],["2021-06-11",21597,48,13584],["2021-06-12",21597,25,13609],["2021-06-13",21597,13,13622],["2021-06-14",21597,45,13667],["2021-06-15",21597,47,13714],["2021-06-16",21597,37,13751],["2021-06-17",21597,61,13812],["2021-06-18",21597,30,13842],["2021-06-19",21597,24,13866],["2021-06-20",21597,11,13877],["2021-06-21",21597,31,13908],["2021-06-22",21597,40,13948],["2021-06-23",21597,36,13984],["2021-06-24",21597,53,14037],["2021-06-25",21597,44,14081],["2021-06-26",21597,17,14098],["2021-06-27",21597,11,14109],["2021-06-28",21597,30,14139],["2021-06-29",21597,28,14167],["2021-06-30",21597,46,14213],["2021-07-01",21597,55,14268],["2021-07-02",21597,25,14293],["2021-07-03",21597,11,14304],["2021-07-04",21597,7,14311],["2021-07-05",21597,23,14334],["2021-07-06",21597,28,14362],["2021-07-07",21597,29,14391],["2021-07-08",21597,36,14427],["2021-07-09",21597,35,14462],["2021-07-10",21597,13,14475],["2021-07-11",21597,11,14486],["2021-07-12",21597,33,14519],["2021-07-13",21597,29,14548],["2021-07-14",21597,26,14574],["2021-07-15",21597,28,14602],["2021-07-16",21597,30,14632],["2021-07-17",21597,19,14651],["2021-07-18",21597,12,14663],["2021-07-19",21597,35,14698],["2021-07-20",21597,28,14726],["2021-07-21",21597,32,14758],["2021-07-22",21597,49,14807],["2021-07-23",21597,46,14853],["2021-07-24",21597,25,14878],["2021-07-25",21597,12,14890],["2021-07-26",21597,45,14935],["2021-07-27",21597,54,14989],["2021-07-28",21597,82,15071],["2021-07-29",21597,74,15145],["2021-07-30",21597,58,15203],["2021-07-31",21597,47,15250],["2021-08-01",21597,18,15268],["2021-08-02",21597,53,15321],["2021-08-03",21597,78,15399],["2021-08-04",21597,57,15456],["2021-08-05",21597,56,15512],["2021-08-06",21597,69,15581],["2021-08-07",21597,33,15614],["2021-08-08",21597,31,15645],["2021-08-09",21597,80,15725],["2021-08-10",21597,61,15786],["2021-08-11",21597,48,15834],["2021-08-12",21597,60,15894],["2021-08-13",21597,45,15939],["2021-08-14",21597,41,15980],["2021-08-15",21597,29,16009],["2021-08-16",21597,61,16070],["2021-08-17",21597,55,16125],["2021-08-18",21597,54,16179],["2021-08-19",21597,52,16231],["2021-08-20",21597,74,16305],["2021-08-21",21597,32,16337],["2021-08-22",21597,12,16349],["2021-08-23",21597,66,16415],["2021-08-24",21597,90,16505],["2021-08-25",21597,99,16604],["2021-08-26",21597,69,16673],["2021-08-27",21597,74,16747],["2021-08-28",21597,39,16786],["2021-08-29",21597,25,16811],["2021-08-30",21597,43,16854],["2021-08-31",21597,106,16960],["2021-09-01",21597,65,17025],["2021-09-02",21597,68,17093],["2021-09-03",21597,84,17177],["2021-09-04",21597,23,17200],["2021-09-05",21597,36,17236],["2021-09-06",21597,18,17254],["2021-09-07",21597,73,17327],["2021-09-08",21597,56,17383],["2021-09-09",21597,62,17445],["2021-09-10",21597,52,17497],["2021-09-11",21597,31,17528],["2021-09-12",21597,22,17550],["2021-09-13",21597,83,17633],["2021-09-14",21597,85,17718],["2021-09-15",21597,48,17766],["2021-09-16",21597,45,17811],["2021-09-17",21597,47,17858],["2021-09-18",21597,33,17891],["2021-09-19",21597,15,17906],["2021-09-20",21597,44,17950],["2021-09-21",21597,52,18002],["2021-09-22",21597,53,18055],["2021-09-23",21597,45,18100],["2021-09-24",21597,50,18150],["2021-09-25",21597,27,18177],["2021-09-26",21597,22,18199],["2021-09-27",21597,31,18230],["2021-09-28",21597,68,18298],["2021-09-29",21597,27,18325],["2021-09-30",21597,43,18368],["2021-10-01",21597,35,18403],["2021-10-02",21597,15,18418],["2021-10-03",21597,15,18433],["2021-10-04",21597,14,18447],["2021-10-05",21597,38,18485],["2021-10-06",21597,37,18522],["2021-10-07",21597,36,18558],["2021-10-08",21597,27,18585],["2021-10-09",21597,17,18602],["2021-10-10",21597,9,18611],["2021-10-11",21597,24,18635],["2021-10-12",21597,37,18672],["2021-10-13",21597,20,18692],["2021-10-14",21597,28,18720],["2021-10-15",21597,18,18738],["2021-10-16",21597,11,18749],["2021-10-17",21597,5,18754],["2021-10-18",21597,17,18771],["2021-10-19",21597,25,18796],["2021-10-20",21597,26,18822],["2021-10-21",21597,17,18839],["2021-10-22",21597,32,18871],["2021-10-23",21597,18,18889],["2021-10-24",21597,16,18905],["2021-10-25",21597,49,18954],["2021-10-26",21597,113,19067],["2021-10-27",21597,67,19134],["2021-10-28",21597,77,19211],["2021-10-29",21597,53,19264],["2021-10-30",21597,26,19290],["2021-10-31",21597,8,19298],["2021-11-01",21597,72,19370],["2021-11-02",21597,115,19485],["2021-11-03",21597,87,19572],["2021-11-04",21597,59,19631],["2021-11-05",21597,39,19670],["2021-11-06",21597,17,19687],["2021-11-07",21597,10,19697],["2021-11-08",21597,63,19760],["2021-11-09",21597,107,19867],["2021-11-10",21597,86,19953],["2021-11-11",21597,61,20014],["2021-11-12",21597,39,20053],["2021-11-13",21597,22,20075],["2021-11-14",21597,8,20083],["2021-11-15",21597,52,20135],["2021-11-16",21597,100,20235],["2021-11-17",21597,56,20291],["2021-11-18",21597,61,20352],["2021-11-19",21597,40,20392],["2021-11-20",21597,18,20410],["2021-11-21",21597,10,20420],["2021-11-22",21597,78,20498],["2021-11-23",21597,95,20593],["2021-11-24",21597,32,20625],["2021-11-26",21597,18,20643],["2021-11-27",21597,16,20659],["2021-11-28",21597,12,20671],["2021-11-29",21597,109,20780],["2021-11-30",21597,153,20933],["2021-12-01",21597,97,21030],["2021-12-02",21597,115,21145],["2021-12-03",21597,55,21200],["2021-12-04",21597,25,21225],["2021-12-05",21597,10,21235],["2021-12-06",21597,81,21316],["2021-12-07",21597,116,21432],["2021-12-08",21597,67,21499],["2021-12-09",21597,64,21563],["2021-12-10",21597,47,21610],["2021-12-11",21597,17,21627],["2021-12-12",21597,8,21635],["2021-12-13",21597,52,21687],["2021-12-14",21597,77,21764],["2021-12-15",21597,50,21814],["2021-12-16",21597,69,21883],["2021-12-17",21597,40,21923],["2021-12-18",21597,23,21946],["2021-12-19",21597,14,21960],["2021-12-20",21597,96,22056],["2021-12-21",21597,88,22144],["2021-12-22",21597,71,22215],["2021-12-23",21597,40,22255],["2021-12-24",21597,11,22266],["2021-12-26",21597,21,22287],["2021-12-27",21597,76,22363],["2021-12-28",21597,67,22430],["2021-12-29",21597,77,22507],["2021-12-30",21597,55,22562],["2021-12-31",21597,32,22594],["2022-01-01",21597,9,22603],["2022-01-02",21597,18,22621],["2022-01-03",21597,36,22657]]} \ No newline at end of file diff --git a/public/data/overall/vaccinations/by-county/McIntosh.json b/public/data/overall/vaccinations/by-county/McIntosh.json new file mode 100644 index 000000000..bfc41f5f7 --- /dev/null +++ b/public/data/overall/vaccinations/by-county/McIntosh.json @@ -0,0 +1 @@ +{"segment":{"county":"McIntosh"},"headers":["report_date","population","vaccinations","total_vaccinations"],"rows":[["2020-12-16",14567,1,1],["2020-12-17",14567,8,9],["2020-12-18",14567,12,21],["2020-12-21",14567,3,24],["2020-12-22",14567,7,31],["2020-12-23",14567,12,43],["2020-12-28",14567,4,47],["2020-12-29",14567,7,54],["2020-12-30",14567,12,66],["2020-12-31",14567,6,72],["2021-01-03",14567,1,73],["2021-01-04",14567,7,80],["2021-01-05",14567,25,105],["2021-01-06",14567,20,125],["2021-01-07",14567,16,141],["2021-01-08",14567,24,165],["2021-01-09",14567,5,170],["2021-01-10",14567,1,171],["2021-01-11",14567,57,228],["2021-01-12",14567,46,274],["2021-01-13",14567,30,304],["2021-01-14",14567,116,420],["2021-01-15",14567,27,447],["2021-01-16",14567,40,487],["2021-01-17",14567,2,489],["2021-01-18",14567,119,608],["2021-01-19",14567,45,653],["2021-01-20",14567,50,703],["2021-01-21",14567,148,851],["2021-01-22",14567,61,912],["2021-01-23",14567,18,930],["2021-01-24",14567,8,938],["2021-01-25",14567,123,1061],["2021-01-26",14567,42,1103],["2021-01-27",14567,29,1132],["2021-01-28",14567,158,1290],["2021-01-29",14567,47,1337],["2021-01-30",14567,48,1385],["2021-01-31",14567,4,1389],["2021-02-01",14567,74,1463],["2021-02-02",14567,90,1553],["2021-02-03",14567,36,1589],["2021-02-04",14567,146,1735],["2021-02-05",14567,31,1766],["2021-02-06",14567,38,1804],["2021-02-07",14567,1,1805],["2021-02-08",14567,79,1884],["2021-02-09",14567,141,2025],["2021-02-10",14567,64,2089],["2021-02-11",14567,134,2223],["2021-02-12",14567,34,2257],["2021-02-13",14567,32,2289],["2021-02-14",14567,4,2293],["2021-02-15",14567,105,2398],["2021-02-16",14567,101,2499],["2021-02-17",14567,77,2576],["2021-02-18",14567,244,2820],["2021-02-19",14567,82,2902],["2021-02-20",14567,63,2965],["2021-02-21",14567,11,2976],["2021-02-22",14567,105,3081],["2021-02-23",14567,111,3192],["2021-02-24",14567,62,3254],["2021-02-25",14567,209,3463],["2021-02-26",14567,32,3495],["2021-02-27",14567,58,3553],["2021-02-28",14567,7,3560],["2021-03-01",14567,78,3638],["2021-03-02",14567,54,3692],["2021-03-03",14567,39,3731],["2021-03-04",14567,199,3930],["2021-03-05",14567,25,3955],["2021-03-06",14567,134,4089],["2021-03-07",14567,3,4092],["2021-03-08",14567,54,4146],["2021-03-09",14567,119,4265],["2021-03-10",14567,120,4385],["2021-03-11",14567,136,4521],["2021-03-12",14567,32,4553],["2021-03-13",14567,52,4605],["2021-03-14",14567,11,4616],["2021-03-15",14567,95,4711],["2021-03-16",14567,100,4811],["2021-03-17",14567,83,4894],["2021-03-18",14567,180,5074],["2021-03-19",14567,40,5114],["2021-03-20",14567,40,5154],["2021-03-21",14567,5,5159],["2021-03-22",14567,96,5255],["2021-03-23",14567,78,5333],["2021-03-24",14567,40,5373],["2021-03-25",14567,212,5585],["2021-03-26",14567,34,5619],["2021-03-27",14567,50,5669],["2021-03-28",14567,7,5676],["2021-03-29",14567,92,5768],["2021-03-30",14567,75,5843],["2021-03-31",14567,79,5922],["2021-04-01",14567,140,6062],["2021-04-02",14567,34,6096],["2021-04-03",14567,121,6217],["2021-04-04",14567,1,6218],["2021-04-05",14567,63,6281],["2021-04-06",14567,91,6372],["2021-04-07",14567,52,6424],["2021-04-08",14567,125,6549],["2021-04-09",14567,33,6582],["2021-04-10",14567,40,6622],["2021-04-11",14567,2,6624],["2021-04-12",14567,76,6700],["2021-04-13",14567,40,6740],["2021-04-14",14567,45,6785],["2021-04-15",14567,174,6959],["2021-04-16",14567,53,7012],["2021-04-17",14567,37,7049],["2021-04-18",14567,9,7058],["2021-04-19",14567,48,7106],["2021-04-20",14567,37,7143],["2021-04-21",14567,48,7191],["2021-04-22",14567,137,7328],["2021-04-23",14567,40,7368],["2021-04-24",14567,21,7389],["2021-04-25",14567,4,7393],["2021-04-26",14567,46,7439],["2021-04-27",14567,38,7477],["2021-04-28",14567,44,7521],["2021-04-29",14567,144,7665],["2021-04-30",14567,24,7689],["2021-05-01",14567,21,7710],["2021-05-02",14567,6,7716],["2021-05-03",14567,62,7778],["2021-05-04",14567,24,7802],["2021-05-05",14567,48,7850],["2021-05-06",14567,115,7965],["2021-05-07",14567,18,7983],["2021-05-08",14567,22,8005],["2021-05-10",14567,28,8033],["2021-05-11",14567,39,8072],["2021-05-12",14567,26,8098],["2021-05-13",14567,55,8153],["2021-05-14",14567,43,8196],["2021-05-15",14567,18,8214],["2021-05-16",14567,5,8219],["2021-05-17",14567,29,8248],["2021-05-18",14567,28,8276],["2021-05-19",14567,31,8307],["2021-05-20",14567,55,8362],["2021-05-21",14567,22,8384],["2021-05-22",14567,12,8396],["2021-05-23",14567,3,8399],["2021-05-24",14567,15,8414],["2021-05-25",14567,25,8439],["2021-05-26",14567,27,8466],["2021-05-27",14567,47,8513],["2021-05-28",14567,10,8523],["2021-05-29",14567,5,8528],["2021-05-30",14567,4,8532],["2021-06-01",14567,20,8552],["2021-06-02",14567,21,8573],["2021-06-03",14567,59,8632],["2021-06-04",14567,9,8641],["2021-06-05",14567,17,8658],["2021-06-06",14567,3,8661],["2021-06-07",14567,16,8677],["2021-06-08",14567,18,8695],["2021-06-09",14567,24,8719],["2021-06-10",14567,33,8752],["2021-06-11",14567,11,8763],["2021-06-12",14567,16,8779],["2021-06-13",14567,1,8780],["2021-06-14",14567,12,8792],["2021-06-15",14567,9,8801],["2021-06-16",14567,20,8821],["2021-06-17",14567,31,8852],["2021-06-18",14567,13,8865],["2021-06-19",14567,4,8869],["2021-06-20",14567,2,8871],["2021-06-21",14567,11,8882],["2021-06-22",14567,9,8891],["2021-06-23",14567,28,8919],["2021-06-24",14567,28,8947],["2021-06-25",14567,8,8955],["2021-06-26",14567,6,8961],["2021-06-27",14567,1,8962],["2021-06-28",14567,8,8970],["2021-06-29",14567,10,8980],["2021-06-30",14567,10,8990],["2021-07-01",14567,18,9008],["2021-07-02",14567,7,9015],["2021-07-03",14567,5,9020],["2021-07-04",14567,2,9022],["2021-07-05",14567,4,9026],["2021-07-06",14567,12,9038],["2021-07-07",14567,5,9043],["2021-07-08",14567,21,9064],["2021-07-09",14567,6,9070],["2021-07-10",14567,2,9072],["2021-07-11",14567,3,9075],["2021-07-12",14567,6,9081],["2021-07-13",14567,15,9096],["2021-07-14",14567,13,9109],["2021-07-15",14567,31,9140],["2021-07-16",14567,6,9146],["2021-07-17",14567,1,9147],["2021-07-18",14567,2,9149],["2021-07-19",14567,5,9154],["2021-07-20",14567,14,9168],["2021-07-21",14567,12,9180],["2021-07-22",14567,30,9210],["2021-07-23",14567,18,9228],["2021-07-24",14567,6,9234],["2021-07-25",14567,5,9239],["2021-07-26",14567,11,9250],["2021-07-27",14567,33,9283],["2021-07-28",14567,24,9307],["2021-07-29",14567,38,9345],["2021-07-30",14567,16,9361],["2021-07-31",14567,8,9369],["2021-08-01",14567,5,9374],["2021-08-02",14567,24,9398],["2021-08-03",14567,55,9453],["2021-08-04",14567,26,9479],["2021-08-05",14567,72,9551],["2021-08-06",14567,26,9577],["2021-08-07",14567,16,9593],["2021-08-08",14567,5,9598],["2021-08-09",14567,18,9616],["2021-08-10",14567,39,9655],["2021-08-11",14567,29,9684],["2021-08-12",14567,80,9764],["2021-08-13",14567,16,9780],["2021-08-14",14567,18,9798],["2021-08-15",14567,14,9812],["2021-08-16",14567,25,9837],["2021-08-17",14567,94,9931],["2021-08-18",14567,39,9970],["2021-08-19",14567,71,10041],["2021-08-20",14567,41,10082],["2021-08-21",14567,12,10094],["2021-08-22",14567,5,10099],["2021-08-23",14567,30,10129],["2021-08-24",14567,52,10181],["2021-08-25",14567,25,10206],["2021-08-26",14567,95,10301],["2021-08-27",14567,32,10333],["2021-08-28",14567,13,10346],["2021-08-29",14567,6,10352],["2021-08-30",14567,22,10374],["2021-08-31",14567,48,10422],["2021-09-01",14567,30,10452],["2021-09-02",14567,110,10562],["2021-09-03",14567,45,10607],["2021-09-04",14567,9,10616],["2021-09-05",14567,10,10626],["2021-09-06",14567,8,10634],["2021-09-07",14567,52,10686],["2021-09-08",14567,32,10718],["2021-09-09",14567,81,10799],["2021-09-10",14567,32,10831],["2021-09-11",14567,19,10850],["2021-09-12",14567,5,10855],["2021-09-13",14567,23,10878],["2021-09-14",14567,56,10934],["2021-09-15",14567,30,10964],["2021-09-16",14567,66,11030],["2021-09-17",14567,37,11067],["2021-09-18",14567,14,11081],["2021-09-19",14567,8,11089],["2021-09-20",14567,17,11106],["2021-09-21",14567,41,11147],["2021-09-22",14567,13,11160],["2021-09-23",14567,63,11223],["2021-09-24",14567,20,11243],["2021-09-25",14567,7,11250],["2021-09-26",14567,6,11256],["2021-09-27",14567,19,11275],["2021-09-28",14567,42,11317],["2021-09-29",14567,41,11358],["2021-09-30",14567,95,11453],["2021-10-01",14567,28,11481],["2021-10-02",14567,14,11495],["2021-10-03",14567,3,11498],["2021-10-04",14567,24,11522],["2021-10-05",14567,42,11564],["2021-10-06",14567,30,11594],["2021-10-07",14567,45,11639],["2021-10-08",14567,17,11656],["2021-10-09",14567,2,11658],["2021-10-10",14567,2,11660],["2021-10-11",14567,9,11669],["2021-10-12",14567,39,11708],["2021-10-13",14567,17,11725],["2021-10-14",14567,49,11774],["2021-10-15",14567,26,11800],["2021-10-16",14567,8,11808],["2021-10-17",14567,5,11813],["2021-10-18",14567,14,11827],["2021-10-19",14567,17,11844],["2021-10-20",14567,7,11851],["2021-10-21",14567,37,11888],["2021-10-22",14567,21,11909],["2021-10-23",14567,17,11926],["2021-10-24",14567,10,11936],["2021-10-25",14567,32,11968],["2021-10-26",14567,52,12020],["2021-10-27",14567,31,12051],["2021-10-28",14567,88,12139],["2021-10-29",14567,46,12185],["2021-10-30",14567,4,12189],["2021-10-31",14567,6,12195],["2021-11-01",14567,33,12228],["2021-11-02",14567,96,12324],["2021-11-03",14567,35,12359],["2021-11-04",14567,154,12513],["2021-11-05",14567,37,12550],["2021-11-06",14567,7,12557],["2021-11-07",14567,11,12568],["2021-11-08",14567,32,12600],["2021-11-09",14567,93,12693],["2021-11-10",14567,50,12743],["2021-11-11",14567,32,12775],["2021-11-12",14567,23,12798],["2021-11-13",14567,14,12812],["2021-11-14",14567,1,12813],["2021-11-15",14567,20,12833],["2021-11-16",14567,86,12919],["2021-11-17",14567,40,12959],["2021-11-18",14567,117,13076],["2021-11-19",14567,41,13117],["2021-11-20",14567,4,13121],["2021-11-21",14567,11,13132],["2021-11-22",14567,29,13161],["2021-11-23",14567,87,13248],["2021-11-24",14567,12,13260],["2021-11-26",14567,17,13277],["2021-11-27",14567,5,13282],["2021-11-28",14567,5,13287],["2021-11-29",14567,23,13310],["2021-11-30",14567,81,13391],["2021-12-01",14567,29,13420],["2021-12-02",14567,102,13522],["2021-12-03",14567,43,13565],["2021-12-04",14567,6,13571],["2021-12-05",14567,3,13574],["2021-12-06",14567,31,13605],["2021-12-07",14567,64,13669],["2021-12-08",14567,19,13688],["2021-12-09",14567,57,13745],["2021-12-10",14567,41,13786],["2021-12-11",14567,4,13790],["2021-12-12",14567,3,13793],["2021-12-13",14567,17,13810],["2021-12-14",14567,33,13843],["2021-12-15",14567,15,13858],["2021-12-16",14567,50,13908],["2021-12-17",14567,21,13929],["2021-12-18",14567,5,13934],["2021-12-19",14567,5,13939],["2021-12-20",14567,31,13970],["2021-12-21",14567,63,14033],["2021-12-22",14567,28,14061],["2021-12-23",14567,18,14079],["2021-12-24",14567,2,14081],["2021-12-26",14567,3,14084],["2021-12-27",14567,22,14106],["2021-12-28",14567,23,14129],["2021-12-29",14567,25,14154],["2021-12-30",14567,20,14174],["2021-12-31",14567,7,14181],["2022-01-01",14567,2,14183],["2022-01-02",14567,3,14186],["2022-01-03",14567,6,14192]]} \ No newline at end of file diff --git a/public/data/overall/vaccinations/by-county/Meriwether.json b/public/data/overall/vaccinations/by-county/Meriwether.json new file mode 100644 index 000000000..140481284 --- /dev/null +++ b/public/data/overall/vaccinations/by-county/Meriwether.json @@ -0,0 +1 @@ +{"segment":{"county":"Meriwether"},"headers":["report_date","population","vaccinations","total_vaccinations"],"rows":[["2020-12-19",21020,1,1],["2020-12-21",21020,2,3],["2020-12-22",21020,5,8],["2020-12-23",21020,8,16],["2020-12-24",21020,1,17],["2020-12-26",21020,4,21],["2020-12-27",21020,2,23],["2020-12-28",21020,19,42],["2020-12-29",21020,27,69],["2020-12-30",21020,46,115],["2020-12-31",21020,12,127],["2021-01-01",21020,4,131],["2021-01-02",21020,1,132],["2021-01-03",21020,2,134],["2021-01-04",21020,35,169],["2021-01-05",21020,20,189],["2021-01-06",21020,16,205],["2021-01-07",21020,37,242],["2021-01-08",21020,14,256],["2021-01-09",21020,6,262],["2021-01-10",21020,6,268],["2021-01-11",21020,25,293],["2021-01-12",21020,147,440],["2021-01-13",21020,50,490],["2021-01-14",21020,53,543],["2021-01-15",21020,56,599],["2021-01-16",21020,13,612],["2021-01-17",21020,27,639],["2021-01-18",21020,82,721],["2021-01-19",21020,87,808],["2021-01-20",21020,97,905],["2021-01-21",21020,68,973],["2021-01-22",21020,83,1056],["2021-01-23",21020,16,1072],["2021-01-24",21020,10,1082],["2021-01-25",21020,60,1142],["2021-01-26",21020,100,1242],["2021-01-27",21020,77,1319],["2021-01-28",21020,79,1398],["2021-01-29",21020,136,1534],["2021-01-30",21020,6,1540],["2021-01-31",21020,7,1547],["2021-02-01",21020,46,1593],["2021-02-02",21020,63,1656],["2021-02-03",21020,70,1726],["2021-02-04",21020,154,1880],["2021-02-05",21020,30,1910],["2021-02-06",21020,5,1915],["2021-02-07",21020,39,1954],["2021-02-08",21020,45,1999],["2021-02-09",21020,179,2178],["2021-02-10",21020,111,2289],["2021-02-11",21020,203,2492],["2021-02-12",21020,95,2587],["2021-02-13",21020,6,2593],["2021-02-14",21020,14,2607],["2021-02-15",21020,60,2667],["2021-02-16",21020,121,2788],["2021-02-17",21020,129,2917],["2021-02-18",21020,203,3120],["2021-02-19",21020,118,3238],["2021-02-20",21020,18,3256],["2021-02-21",21020,1,3257],["2021-02-22",21020,95,3352],["2021-02-23",21020,119,3471],["2021-02-24",21020,100,3571],["2021-02-25",21020,173,3744],["2021-02-26",21020,69,3813],["2021-02-27",21020,11,3824],["2021-02-28",21020,8,3832],["2021-03-01",21020,44,3876],["2021-03-02",21020,82,3958],["2021-03-03",21020,121,4079],["2021-03-04",21020,179,4258],["2021-03-05",21020,98,4356],["2021-03-06",21020,8,4364],["2021-03-07",21020,11,4375],["2021-03-08",21020,84,4459],["2021-03-09",21020,103,4562],["2021-03-10",21020,119,4681],["2021-03-11",21020,242,4923],["2021-03-12",21020,99,5022],["2021-03-13",21020,15,5037],["2021-03-14",21020,7,5044],["2021-03-15",21020,92,5136],["2021-03-16",21020,131,5267],["2021-03-17",21020,134,5401],["2021-03-18",21020,198,5599],["2021-03-19",21020,172,5771],["2021-03-20",21020,15,5786],["2021-03-21",21020,17,5803],["2021-03-22",21020,72,5875],["2021-03-23",21020,101,5976],["2021-03-24",21020,136,6112],["2021-03-25",21020,239,6351],["2021-03-26",21020,133,6484],["2021-03-27",21020,57,6541],["2021-03-28",21020,21,6562],["2021-03-29",21020,74,6636],["2021-03-30",21020,94,6730],["2021-03-31",21020,145,6875],["2021-04-01",21020,238,7113],["2021-04-02",21020,77,7190],["2021-04-03",21020,23,7213],["2021-04-04",21020,22,7235],["2021-04-05",21020,82,7317],["2021-04-06",21020,149,7466],["2021-04-07",21020,214,7680],["2021-04-08",21020,238,7918],["2021-04-09",21020,209,8127],["2021-04-10",21020,37,8164],["2021-04-11",21020,24,8188],["2021-04-12",21020,127,8315],["2021-04-13",21020,117,8432],["2021-04-14",21020,159,8591],["2021-04-15",21020,176,8767],["2021-04-16",21020,166,8933],["2021-04-17",21020,55,8988],["2021-04-18",21020,22,9010],["2021-04-19",21020,95,9105],["2021-04-20",21020,129,9234],["2021-04-21",21020,129,9363],["2021-04-22",21020,219,9582],["2021-04-23",21020,120,9702],["2021-04-24",21020,25,9727],["2021-04-25",21020,14,9741],["2021-04-26",21020,68,9809],["2021-04-27",21020,93,9902],["2021-04-28",21020,125,10027],["2021-04-29",21020,211,10238],["2021-04-30",21020,67,10305],["2021-05-01",21020,46,10351],["2021-05-02",21020,13,10364],["2021-05-03",21020,49,10413],["2021-05-04",21020,79,10492],["2021-05-05",21020,146,10638],["2021-05-06",21020,110,10748],["2021-05-07",21020,103,10851],["2021-05-08",21020,24,10875],["2021-05-09",21020,17,10892],["2021-05-10",21020,60,10952],["2021-05-11",21020,92,11044],["2021-05-12",21020,83,11127],["2021-05-13",21020,63,11190],["2021-05-14",21020,78,11268],["2021-05-15",21020,22,11290],["2021-05-16",21020,18,11308],["2021-05-17",21020,58,11366],["2021-05-18",21020,87,11453],["2021-05-19",21020,72,11525],["2021-05-20",21020,185,11710],["2021-05-21",21020,68,11778],["2021-05-22",21020,26,11804],["2021-05-23",21020,24,11828],["2021-05-24",21020,42,11870],["2021-05-25",21020,34,11904],["2021-05-26",21020,67,11971],["2021-05-27",21020,55,12026],["2021-05-28",21020,30,12056],["2021-05-29",21020,18,12074],["2021-05-30",21020,9,12083],["2021-05-31",21020,8,12091],["2021-06-01",21020,59,12150],["2021-06-02",21020,52,12202],["2021-06-03",21020,77,12279],["2021-06-04",21020,58,12337],["2021-06-05",21020,20,12357],["2021-06-06",21020,13,12370],["2021-06-07",21020,43,12413],["2021-06-08",21020,63,12476],["2021-06-09",21020,42,12518],["2021-06-10",21020,67,12585],["2021-06-11",21020,72,12657],["2021-06-12",21020,34,12691],["2021-06-13",21020,12,12703],["2021-06-14",21020,33,12736],["2021-06-15",21020,47,12783],["2021-06-16",21020,43,12826],["2021-06-17",21020,55,12881],["2021-06-18",21020,32,12913],["2021-06-19",21020,20,12933],["2021-06-20",21020,9,12942],["2021-06-21",21020,26,12968],["2021-06-22",21020,42,13010],["2021-06-23",21020,27,13037],["2021-06-24",21020,23,13060],["2021-06-25",21020,47,13107],["2021-06-26",21020,9,13116],["2021-06-27",21020,6,13122],["2021-06-28",21020,22,13144],["2021-06-29",21020,29,13173],["2021-06-30",21020,17,13190],["2021-07-01",21020,45,13235],["2021-07-02",21020,26,13261],["2021-07-03",21020,11,13272],["2021-07-05",21020,12,13284],["2021-07-06",21020,23,13307],["2021-07-07",21020,23,13330],["2021-07-08",21020,36,13366],["2021-07-09",21020,26,13392],["2021-07-10",21020,18,13410],["2021-07-11",21020,13,13423],["2021-07-12",21020,23,13446],["2021-07-13",21020,33,13479],["2021-07-14",21020,28,13507],["2021-07-15",21020,20,13527],["2021-07-16",21020,26,13553],["2021-07-17",21020,13,13566],["2021-07-18",21020,9,13575],["2021-07-19",21020,27,13602],["2021-07-20",21020,17,13619],["2021-07-21",21020,28,13647],["2021-07-22",21020,26,13673],["2021-07-23",21020,43,13716],["2021-07-24",21020,26,13742],["2021-07-25",21020,15,13757],["2021-07-26",21020,33,13790],["2021-07-27",21020,31,13821],["2021-07-28",21020,38,13859],["2021-07-29",21020,30,13889],["2021-07-30",21020,52,13941],["2021-07-31",21020,20,13961],["2021-08-01",21020,13,13974],["2021-08-02",21020,43,14017],["2021-08-03",21020,50,14067],["2021-08-04",21020,67,14134],["2021-08-05",21020,36,14170],["2021-08-06",21020,61,14231],["2021-08-07",21020,23,14254],["2021-08-08",21020,17,14271],["2021-08-09",21020,58,14329],["2021-08-10",21020,58,14387],["2021-08-11",21020,58,14445],["2021-08-12",21020,36,14481],["2021-08-13",21020,54,14535],["2021-08-14",21020,31,14566],["2021-08-15",21020,21,14587],["2021-08-16",21020,41,14628],["2021-08-17",21020,43,14671],["2021-08-18",21020,58,14729],["2021-08-19",21020,34,14763],["2021-08-20",21020,68,14831],["2021-08-21",21020,33,14864],["2021-08-22",21020,22,14886],["2021-08-23",21020,52,14938],["2021-08-24",21020,59,14997],["2021-08-25",21020,74,15071],["2021-08-26",21020,64,15135],["2021-08-27",21020,104,15239],["2021-08-28",21020,37,15276],["2021-08-29",21020,20,15296],["2021-08-30",21020,69,15365],["2021-08-31",21020,58,15423],["2021-09-01",21020,58,15481],["2021-09-02",21020,61,15542],["2021-09-03",21020,65,15607],["2021-09-04",21020,32,15639],["2021-09-05",21020,23,15662],["2021-09-06",21020,6,15668],["2021-09-07",21020,69,15737],["2021-09-08",21020,65,15802],["2021-09-09",21020,61,15863],["2021-09-10",21020,69,15932],["2021-09-11",21020,34,15966],["2021-09-12",21020,23,15989],["2021-09-13",21020,70,16059],["2021-09-14",21020,49,16108],["2021-09-15",21020,53,16161],["2021-09-16",21020,50,16211],["2021-09-17",21020,63,16274],["2021-09-18",21020,39,16313],["2021-09-19",21020,18,16331],["2021-09-20",21020,34,16365],["2021-09-21",21020,36,16401],["2021-09-22",21020,62,16463],["2021-09-23",21020,48,16511],["2021-09-24",21020,62,16573],["2021-09-25",21020,41,16614],["2021-09-26",21020,10,16624],["2021-09-27",21020,47,16671],["2021-09-28",21020,49,16720],["2021-09-29",21020,53,16773],["2021-09-30",21020,55,16828],["2021-10-01",21020,69,16897],["2021-10-02",21020,28,16925],["2021-10-03",21020,23,16948],["2021-10-04",21020,62,17010],["2021-10-05",21020,74,17084],["2021-10-06",21020,43,17127],["2021-10-07",21020,48,17175],["2021-10-08",21020,52,17227],["2021-10-09",21020,35,17262],["2021-10-10",21020,15,17277],["2021-10-11",21020,30,17307],["2021-10-12",21020,30,17337],["2021-10-13",21020,50,17387],["2021-10-14",21020,39,17426],["2021-10-15",21020,40,17466],["2021-10-16",21020,15,17481],["2021-10-17",21020,6,17487],["2021-10-18",21020,30,17517],["2021-10-19",21020,34,17551],["2021-10-20",21020,29,17580],["2021-10-21",21020,40,17620],["2021-10-22",21020,44,17664],["2021-10-23",21020,22,17686],["2021-10-24",21020,8,17694],["2021-10-25",21020,84,17778],["2021-10-26",21020,100,17878],["2021-10-27",21020,55,17933],["2021-10-28",21020,62,17995],["2021-10-29",21020,59,18054],["2021-10-30",21020,25,18079],["2021-10-31",21020,10,18089],["2021-11-01",21020,47,18136],["2021-11-02",21020,63,18199],["2021-11-03",21020,62,18261],["2021-11-04",21020,76,18337],["2021-11-05",21020,68,18405],["2021-11-06",21020,35,18440],["2021-11-07",21020,12,18452],["2021-11-08",21020,52,18504],["2021-11-09",21020,63,18567],["2021-11-10",21020,68,18635],["2021-11-11",21020,63,18698],["2021-11-12",21020,89,18787],["2021-11-13",21020,23,18810],["2021-11-14",21020,9,18819],["2021-11-15",21020,51,18870],["2021-11-16",21020,75,18945],["2021-11-17",21020,72,19017],["2021-11-18",21020,74,19091],["2021-11-19",21020,55,19146],["2021-11-20",21020,38,19184],["2021-11-21",21020,16,19200],["2021-11-22",21020,61,19261],["2021-11-23",21020,43,19304],["2021-11-24",21020,24,19328],["2021-11-25",21020,1,19329],["2021-11-26",21020,39,19368],["2021-11-27",21020,19,19387],["2021-11-28",21020,17,19404],["2021-11-29",21020,52,19456],["2021-11-30",21020,76,19532],["2021-12-01",21020,59,19591],["2021-12-02",21020,86,19677],["2021-12-03",21020,171,19848],["2021-12-04",21020,29,19877],["2021-12-05",21020,21,19898],["2021-12-06",21020,51,19949],["2021-12-07",21020,54,20003],["2021-12-08",21020,40,20043],["2021-12-09",21020,73,20116],["2021-12-10",21020,65,20181],["2021-12-11",21020,29,20210],["2021-12-12",21020,11,20221],["2021-12-13",21020,30,20251],["2021-12-14",21020,50,20301],["2021-12-15",21020,73,20374],["2021-12-16",21020,37,20411],["2021-12-17",21020,54,20465],["2021-12-18",21020,19,20484],["2021-12-19",21020,16,20500],["2021-12-20",21020,39,20539],["2021-12-21",21020,64,20603],["2021-12-22",21020,56,20659],["2021-12-23",21020,62,20721],["2021-12-24",21020,9,20730],["2021-12-26",21020,13,20743],["2021-12-27",21020,44,20787],["2021-12-28",21020,65,20852],["2021-12-29",21020,50,20902],["2021-12-30",21020,40,20942],["2021-12-31",21020,23,20965],["2022-01-01",21020,3,20968],["2022-01-02",21020,15,20983],["2022-01-03",21020,10,20993]]} \ No newline at end of file diff --git a/public/data/overall/vaccinations/by-county/Miller.json b/public/data/overall/vaccinations/by-county/Miller.json new file mode 100644 index 000000000..523dd40c0 --- /dev/null +++ b/public/data/overall/vaccinations/by-county/Miller.json @@ -0,0 +1 @@ +{"segment":{"county":"Miller"},"headers":["report_date","population","vaccinations","total_vaccinations"],"rows":[["2020-12-18",5764,1,1],["2020-12-21",5764,1,2],["2020-12-22",5764,2,4],["2020-12-23",5764,18,22],["2020-12-24",5764,2,24],["2020-12-26",5764,1,25],["2020-12-27",5764,8,33],["2020-12-28",5764,66,99],["2020-12-29",5764,45,144],["2020-12-30",5764,23,167],["2020-12-31",5764,15,182],["2021-01-01",5764,9,191],["2021-01-02",5764,1,192],["2021-01-04",5764,32,224],["2021-01-05",5764,29,253],["2021-01-06",5764,15,268],["2021-01-07",5764,29,297],["2021-01-08",5764,12,309],["2021-01-09",5764,1,310],["2021-01-10",5764,1,311],["2021-01-11",5764,94,405],["2021-01-12",5764,113,518],["2021-01-13",5764,108,626],["2021-01-14",5764,109,735],["2021-01-15",5764,44,779],["2021-01-16",5764,1,780],["2021-01-18",5764,89,869],["2021-01-19",5764,51,920],["2021-01-20",5764,31,951],["2021-01-21",5764,66,1017],["2021-01-22",5764,11,1028],["2021-01-23",5764,1,1029],["2021-01-25",5764,56,1085],["2021-01-26",5764,38,1123],["2021-01-27",5764,77,1200],["2021-01-28",5764,54,1254],["2021-01-29",5764,25,1279],["2021-01-30",5764,1,1280],["2021-02-01",5764,56,1336],["2021-02-02",5764,48,1384],["2021-02-03",5764,33,1417],["2021-02-04",5764,40,1457],["2021-02-05",5764,24,1481],["2021-02-06",5764,1,1482],["2021-02-08",5764,105,1587],["2021-02-09",5764,121,1708],["2021-02-10",5764,120,1828],["2021-02-11",5764,111,1939],["2021-02-12",5764,49,1988],["2021-02-15",5764,100,2088],["2021-02-16",5764,59,2147],["2021-02-17",5764,34,2181],["2021-02-18",5764,86,2267],["2021-02-19",5764,16,2283],["2021-02-20",5764,1,2284],["2021-02-22",5764,40,2324],["2021-02-23",5764,25,2349],["2021-02-24",5764,44,2393],["2021-02-25",5764,46,2439],["2021-02-26",5764,11,2450],["2021-02-27",5764,4,2454],["2021-02-28",5764,3,2457],["2021-03-01",5764,24,2481],["2021-03-02",5764,35,2516],["2021-03-03",5764,23,2539],["2021-03-04",5764,21,2560],["2021-03-05",5764,9,2569],["2021-03-06",5764,2,2571],["2021-03-07",5764,1,2572],["2021-03-08",5764,45,2617],["2021-03-09",5764,44,2661],["2021-03-10",5764,32,2693],["2021-03-11",5764,34,2727],["2021-03-12",5764,37,2764],["2021-03-13",5764,1,2765],["2021-03-14",5764,1,2766],["2021-03-15",5764,43,2809],["2021-03-16",5764,34,2843],["2021-03-17",5764,44,2887],["2021-03-18",5764,47,2934],["2021-03-19",5764,25,2959],["2021-03-20",5764,4,2963],["2021-03-21",5764,3,2966],["2021-03-22",5764,42,3008],["2021-03-23",5764,29,3037],["2021-03-24",5764,27,3064],["2021-03-25",5764,55,3119],["2021-03-26",5764,9,3128],["2021-03-27",5764,6,3134],["2021-03-28",5764,4,3138],["2021-03-29",5764,43,3181],["2021-03-30",5764,21,3202],["2021-03-31",5764,74,3276],["2021-04-01",5764,21,3297],["2021-04-02",5764,11,3308],["2021-04-03",5764,3,3311],["2021-04-04",5764,3,3314],["2021-04-05",5764,35,3349],["2021-04-06",5764,21,3370],["2021-04-07",5764,34,3404],["2021-04-08",5764,30,3434],["2021-04-09",5764,20,3454],["2021-04-10",5764,5,3459],["2021-04-11",5764,5,3464],["2021-04-12",5764,30,3494],["2021-04-13",5764,34,3528],["2021-04-14",5764,33,3561],["2021-04-15",5764,48,3609],["2021-04-16",5764,42,3651],["2021-04-17",5764,4,3655],["2021-04-18",5764,1,3656],["2021-04-19",5764,26,3682],["2021-04-20",5764,32,3714],["2021-04-21",5764,19,3733],["2021-04-22",5764,23,3756],["2021-04-23",5764,16,3772],["2021-04-24",5764,3,3775],["2021-04-25",5764,1,3776],["2021-04-26",5764,31,3807],["2021-04-27",5764,72,3879],["2021-04-28",5764,26,3905],["2021-04-29",5764,20,3925],["2021-04-30",5764,7,3932],["2021-05-01",5764,5,3937],["2021-05-02",5764,5,3942],["2021-05-03",5764,20,3962],["2021-05-04",5764,11,3973],["2021-05-05",5764,19,3992],["2021-05-06",5764,17,4009],["2021-05-07",5764,14,4023],["2021-05-08",5764,4,4027],["2021-05-10",5764,21,4048],["2021-05-11",5764,14,4062],["2021-05-12",5764,9,4071],["2021-05-13",5764,25,4096],["2021-05-14",5764,7,4103],["2021-05-15",5764,4,4107],["2021-05-16",5764,2,4109],["2021-05-17",5764,13,4122],["2021-05-18",5764,23,4145],["2021-05-19",5764,16,4161],["2021-05-20",5764,12,4173],["2021-05-21",5764,6,4179],["2021-05-22",5764,5,4184],["2021-05-23",5764,4,4188],["2021-05-24",5764,12,4200],["2021-05-25",5764,33,4233],["2021-05-26",5764,7,4240],["2021-05-27",5764,12,4252],["2021-05-28",5764,9,4261],["2021-05-30",5764,2,4263],["2021-05-31",5764,1,4264],["2021-06-01",5764,17,4281],["2021-06-02",5764,13,4294],["2021-06-03",5764,16,4310],["2021-06-04",5764,1,4311],["2021-06-05",5764,7,4318],["2021-06-06",5764,3,4321],["2021-06-07",5764,9,4330],["2021-06-08",5764,16,4346],["2021-06-09",5764,7,4353],["2021-06-10",5764,11,4364],["2021-06-11",5764,9,4373],["2021-06-12",5764,3,4376],["2021-06-14",5764,15,4391],["2021-06-15",5764,7,4398],["2021-06-16",5764,7,4405],["2021-06-17",5764,7,4412],["2021-06-18",5764,10,4422],["2021-06-19",5764,3,4425],["2021-06-20",5764,2,4427],["2021-06-21",5764,9,4436],["2021-06-22",5764,21,4457],["2021-06-23",5764,4,4461],["2021-06-24",5764,7,4468],["2021-06-25",5764,3,4471],["2021-06-26",5764,2,4473],["2021-06-27",5764,4,4477],["2021-06-28",5764,7,4484],["2021-06-29",5764,11,4495],["2021-06-30",5764,13,4508],["2021-07-01",5764,6,4514],["2021-07-02",5764,2,4516],["2021-07-03",5764,4,4520],["2021-07-05",5764,2,4522],["2021-07-06",5764,6,4528],["2021-07-07",5764,9,4537],["2021-07-08",5764,5,4542],["2021-07-09",5764,5,4547],["2021-07-10",5764,3,4550],["2021-07-11",5764,1,4551],["2021-07-12",5764,6,4557],["2021-07-13",5764,6,4563],["2021-07-14",5764,8,4571],["2021-07-15",5764,4,4575],["2021-07-16",5764,6,4581],["2021-07-17",5764,4,4585],["2021-07-18",5764,2,4587],["2021-07-19",5764,12,4599],["2021-07-20",5764,16,4615],["2021-07-21",5764,10,4625],["2021-07-22",5764,16,4641],["2021-07-23",5764,8,4649],["2021-07-24",5764,5,4654],["2021-07-25",5764,1,4655],["2021-07-26",5764,19,4674],["2021-07-27",5764,26,4700],["2021-07-28",5764,16,4716],["2021-07-29",5764,15,4731],["2021-07-30",5764,16,4747],["2021-07-31",5764,8,4755],["2021-08-01",5764,2,4757],["2021-08-02",5764,35,4792],["2021-08-03",5764,29,4821],["2021-08-04",5764,25,4846],["2021-08-05",5764,26,4872],["2021-08-06",5764,22,4894],["2021-08-07",5764,9,4903],["2021-08-08",5764,3,4906],["2021-08-09",5764,28,4934],["2021-08-10",5764,31,4965],["2021-08-11",5764,23,4988],["2021-08-12",5764,43,5031],["2021-08-13",5764,32,5063],["2021-08-14",5764,6,5069],["2021-08-15",5764,2,5071],["2021-08-16",5764,38,5109],["2021-08-17",5764,44,5153],["2021-08-18",5764,36,5189],["2021-08-19",5764,29,5218],["2021-08-20",5764,32,5250],["2021-08-21",5764,21,5271],["2021-08-23",5764,44,5315],["2021-08-24",5764,43,5358],["2021-08-25",5764,41,5399],["2021-08-26",5764,27,5426],["2021-08-27",5764,27,5453],["2021-08-28",5764,15,5468],["2021-08-29",5764,4,5472],["2021-08-30",5764,51,5523],["2021-08-31",5764,50,5573],["2021-09-01",5764,17,5590],["2021-09-02",5764,45,5635],["2021-09-03",5764,36,5671],["2021-09-04",5764,6,5677],["2021-09-05",5764,8,5685],["2021-09-06",5764,3,5688],["2021-09-07",5764,41,5729],["2021-09-08",5764,17,5746],["2021-09-09",5764,55,5801],["2021-09-10",5764,35,5836],["2021-09-11",5764,9,5845],["2021-09-12",5764,2,5847],["2021-09-13",5764,39,5886],["2021-09-14",5764,31,5917],["2021-09-15",5764,19,5936],["2021-09-16",5764,33,5969],["2021-09-17",5764,35,6004],["2021-09-18",5764,7,6011],["2021-09-19",5764,4,6015],["2021-09-20",5764,45,6060],["2021-09-21",5764,25,6085],["2021-09-22",5764,18,6103],["2021-09-23",5764,21,6124],["2021-09-24",5764,14,6138],["2021-09-25",5764,6,6144],["2021-09-26",5764,5,6149],["2021-09-27",5764,23,6172],["2021-09-28",5764,21,6193],["2021-09-29",5764,18,6211],["2021-09-30",5764,30,6241],["2021-10-01",5764,11,6252],["2021-10-02",5764,1,6253],["2021-10-04",5764,10,6263],["2021-10-05",5764,18,6281],["2021-10-06",5764,6,6287],["2021-10-07",5764,13,6300],["2021-10-08",5764,7,6307],["2021-10-09",5764,1,6308],["2021-10-10",5764,2,6310],["2021-10-11",5764,9,6319],["2021-10-12",5764,18,6337],["2021-10-13",5764,8,6345],["2021-10-14",5764,12,6357],["2021-10-15",5764,7,6364],["2021-10-16",5764,5,6369],["2021-10-17",5764,2,6371],["2021-10-18",5764,9,6380],["2021-10-19",5764,7,6387],["2021-10-20",5764,6,6393],["2021-10-21",5764,20,6413],["2021-10-22",5764,4,6417],["2021-10-23",5764,5,6422],["2021-10-24",5764,1,6423],["2021-10-25",5764,22,6445],["2021-10-26",5764,13,6458],["2021-10-27",5764,41,6499],["2021-10-28",5764,55,6554],["2021-10-29",5764,12,6566],["2021-10-30",5764,11,6577],["2021-10-31",5764,3,6580],["2021-11-01",5764,38,6618],["2021-11-02",5764,43,6661],["2021-11-03",5764,24,6685],["2021-11-04",5764,56,6741],["2021-11-05",5764,10,6751],["2021-11-06",5764,3,6754],["2021-11-07",5764,6,6760],["2021-11-08",5764,33,6793],["2021-11-09",5764,28,6821],["2021-11-10",5764,21,6842],["2021-11-11",5764,22,6864],["2021-11-12",5764,12,6876],["2021-11-13",5764,5,6881],["2021-11-14",5764,4,6885],["2021-11-15",5764,21,6906],["2021-11-16",5764,33,6939],["2021-11-17",5764,20,6959],["2021-11-18",5764,25,6984],["2021-11-19",5764,22,7006],["2021-11-20",5764,4,7010],["2021-11-22",5764,19,7029],["2021-11-23",5764,25,7054],["2021-11-24",5764,7,7061],["2021-11-26",5764,6,7067],["2021-11-27",5764,2,7069],["2021-11-28",5764,1,7070],["2021-11-29",5764,35,7105],["2021-11-30",5764,32,7137],["2021-12-01",5764,19,7156],["2021-12-02",5764,26,7182],["2021-12-03",5764,13,7195],["2021-12-04",5764,3,7198],["2021-12-05",5764,2,7200],["2021-12-06",5764,19,7219],["2021-12-07",5764,21,7240],["2021-12-08",5764,11,7251],["2021-12-09",5764,19,7270],["2021-12-10",5764,16,7286],["2021-12-11",5764,1,7287],["2021-12-12",5764,3,7290],["2021-12-13",5764,15,7305],["2021-12-14",5764,20,7325],["2021-12-15",5764,12,7337],["2021-12-16",5764,24,7361],["2021-12-17",5764,5,7366],["2021-12-18",5764,3,7369],["2021-12-20",5764,11,7380],["2021-12-21",5764,31,7411],["2021-12-22",5764,19,7430],["2021-12-23",5764,5,7435],["2021-12-24",5764,3,7438],["2021-12-26",5764,1,7439],["2021-12-27",5764,17,7456],["2021-12-28",5764,20,7476],["2021-12-29",5764,11,7487],["2021-12-30",5764,18,7505],["2021-12-31",5764,5,7510],["2022-01-01",5764,3,7513],["2022-01-02",5764,1,7514],["2022-01-03",5764,1,7515]]} \ No newline at end of file diff --git a/public/data/overall/vaccinations/by-county/Mitchell.json b/public/data/overall/vaccinations/by-county/Mitchell.json new file mode 100644 index 000000000..6b7b61e12 --- /dev/null +++ b/public/data/overall/vaccinations/by-county/Mitchell.json @@ -0,0 +1 @@ +{"segment":{"county":"Mitchell"},"headers":["report_date","population","vaccinations","total_vaccinations"],"rows":[["2020-12-15",22056,1,1],["2020-12-16",22056,1,2],["2020-12-17",22056,5,7],["2020-12-18",22056,14,21],["2020-12-19",22056,6,27],["2020-12-20",22056,3,30],["2020-12-21",22056,12,42],["2020-12-22",22056,32,74],["2020-12-23",22056,106,180],["2020-12-24",22056,3,183],["2020-12-25",22056,1,184],["2020-12-28",22056,35,219],["2020-12-29",22056,19,238],["2020-12-30",22056,30,268],["2020-12-31",22056,10,278],["2021-01-01",22056,4,282],["2021-01-04",22056,40,322],["2021-01-05",22056,43,365],["2021-01-06",22056,28,393],["2021-01-07",22056,39,432],["2021-01-08",22056,47,479],["2021-01-09",22056,5,484],["2021-01-10",22056,3,487],["2021-01-11",22056,98,585],["2021-01-12",22056,99,684],["2021-01-13",22056,130,814],["2021-01-14",22056,195,1009],["2021-01-15",22056,153,1162],["2021-01-16",22056,20,1182],["2021-01-17",22056,1,1183],["2021-01-18",22056,120,1303],["2021-01-19",22056,177,1480],["2021-01-20",22056,147,1627],["2021-01-21",22056,164,1791],["2021-01-22",22056,128,1919],["2021-01-23",22056,60,1979],["2021-01-24",22056,1,1980],["2021-01-25",22056,177,2157],["2021-01-26",22056,161,2318],["2021-01-27",22056,129,2447],["2021-01-28",22056,148,2595],["2021-01-29",22056,122,2717],["2021-01-30",22056,7,2724],["2021-01-31",22056,3,2727],["2021-02-01",22056,151,2878],["2021-02-02",22056,122,3000],["2021-02-03",22056,147,3147],["2021-02-04",22056,197,3344],["2021-02-05",22056,163,3507],["2021-02-06",22056,20,3527],["2021-02-07",22056,1,3528],["2021-02-08",22056,133,3661],["2021-02-09",22056,196,3857],["2021-02-10",22056,213,4070],["2021-02-11",22056,161,4231],["2021-02-12",22056,156,4387],["2021-02-13",22056,23,4410],["2021-02-14",22056,6,4416],["2021-02-15",22056,135,4551],["2021-02-16",22056,181,4732],["2021-02-17",22056,132,4864],["2021-02-18",22056,125,4989],["2021-02-19",22056,127,5116],["2021-02-20",22056,17,5133],["2021-02-21",22056,12,5145],["2021-02-22",22056,161,5306],["2021-02-23",22056,226,5532],["2021-02-24",22056,129,5661],["2021-02-25",22056,211,5872],["2021-02-26",22056,127,5999],["2021-02-27",22056,23,6022],["2021-02-28",22056,16,6038],["2021-03-01",22056,174,6212],["2021-03-02",22056,154,6366],["2021-03-03",22056,142,6508],["2021-03-04",22056,165,6673],["2021-03-05",22056,94,6767],["2021-03-06",22056,12,6779],["2021-03-07",22056,10,6789],["2021-03-08",22056,149,6938],["2021-03-09",22056,171,7109],["2021-03-10",22056,185,7294],["2021-03-11",22056,129,7423],["2021-03-12",22056,98,7521],["2021-03-13",22056,62,7583],["2021-03-14",22056,17,7600],["2021-03-15",22056,105,7705],["2021-03-16",22056,139,7844],["2021-03-17",22056,144,7988],["2021-03-18",22056,157,8145],["2021-03-19",22056,124,8269],["2021-03-20",22056,17,8286],["2021-03-21",22056,13,8299],["2021-03-22",22056,115,8414],["2021-03-23",22056,89,8503],["2021-03-24",22056,125,8628],["2021-03-25",22056,203,8831],["2021-03-26",22056,68,8899],["2021-03-27",22056,12,8911],["2021-03-28",22056,14,8925],["2021-03-29",22056,102,9027],["2021-03-30",22056,158,9185],["2021-03-31",22056,125,9310],["2021-04-01",22056,164,9474],["2021-04-02",22056,184,9658],["2021-04-03",22056,52,9710],["2021-04-04",22056,14,9724],["2021-04-05",22056,107,9831],["2021-04-06",22056,141,9972],["2021-04-07",22056,141,10113],["2021-04-08",22056,155,10268],["2021-04-09",22056,83,10351],["2021-04-10",22056,34,10385],["2021-04-11",22056,26,10411],["2021-04-12",22056,90,10501],["2021-04-13",22056,135,10636],["2021-04-14",22056,172,10808],["2021-04-15",22056,152,10960],["2021-04-16",22056,111,11071],["2021-04-17",22056,10,11081],["2021-04-18",22056,3,11084],["2021-04-19",22056,81,11165],["2021-04-20",22056,115,11280],["2021-04-21",22056,103,11383],["2021-04-22",22056,137,11520],["2021-04-23",22056,89,11609],["2021-04-24",22056,26,11635],["2021-04-25",22056,6,11641],["2021-04-26",22056,75,11716],["2021-04-27",22056,118,11834],["2021-04-28",22056,106,11940],["2021-04-29",22056,108,12048],["2021-04-30",22056,52,12100],["2021-05-01",22056,27,12127],["2021-05-02",22056,9,12136],["2021-05-03",22056,40,12176],["2021-05-04",22056,103,12279],["2021-05-05",22056,70,12349],["2021-05-06",22056,86,12435],["2021-05-07",22056,88,12523],["2021-05-08",22056,24,12547],["2021-05-09",22056,3,12550],["2021-05-10",22056,46,12596],["2021-05-11",22056,93,12689],["2021-05-12",22056,70,12759],["2021-05-13",22056,81,12840],["2021-05-14",22056,53,12893],["2021-05-15",22056,23,12916],["2021-05-16",22056,6,12922],["2021-05-17",22056,47,12969],["2021-05-18",22056,78,13047],["2021-05-19",22056,69,13116],["2021-05-20",22056,90,13206],["2021-05-21",22056,48,13254],["2021-05-22",22056,12,13266],["2021-05-23",22056,3,13269],["2021-05-24",22056,21,13290],["2021-05-25",22056,32,13322],["2021-05-26",22056,44,13366],["2021-05-27",22056,60,13426],["2021-05-28",22056,25,13451],["2021-05-29",22056,10,13461],["2021-05-30",22056,5,13466],["2021-05-31",22056,4,13470],["2021-06-01",22056,57,13527],["2021-06-02",22056,53,13580],["2021-06-03",22056,55,13635],["2021-06-04",22056,44,13679],["2021-06-05",22056,9,13688],["2021-06-06",22056,4,13692],["2021-06-07",22056,37,13729],["2021-06-08",22056,27,13756],["2021-06-09",22056,48,13804],["2021-06-10",22056,52,13856],["2021-06-11",22056,39,13895],["2021-06-12",22056,21,13916],["2021-06-13",22056,4,13920],["2021-06-14",22056,30,13950],["2021-06-15",22056,55,14005],["2021-06-16",22056,26,14031],["2021-06-17",22056,44,14075],["2021-06-18",22056,33,14108],["2021-06-19",22056,8,14116],["2021-06-20",22056,7,14123],["2021-06-21",22056,12,14135],["2021-06-22",22056,30,14165],["2021-06-23",22056,22,14187],["2021-06-24",22056,37,14224],["2021-06-25",22056,20,14244],["2021-06-26",22056,5,14249],["2021-06-27",22056,2,14251],["2021-06-28",22056,18,14269],["2021-06-29",22056,26,14295],["2021-06-30",22056,21,14316],["2021-07-01",22056,41,14357],["2021-07-02",22056,29,14386],["2021-07-03",22056,4,14390],["2021-07-04",22056,3,14393],["2021-07-05",22056,11,14404],["2021-07-06",22056,33,14437],["2021-07-07",22056,17,14454],["2021-07-08",22056,33,14487],["2021-07-09",22056,28,14515],["2021-07-10",22056,20,14535],["2021-07-11",22056,2,14537],["2021-07-12",22056,20,14557],["2021-07-13",22056,29,14586],["2021-07-14",22056,18,14604],["2021-07-15",22056,24,14628],["2021-07-16",22056,31,14659],["2021-07-17",22056,15,14674],["2021-07-18",22056,8,14682],["2021-07-19",22056,18,14700],["2021-07-20",22056,21,14721],["2021-07-21",22056,35,14756],["2021-07-22",22056,49,14805],["2021-07-23",22056,70,14875],["2021-07-24",22056,23,14898],["2021-07-25",22056,15,14913],["2021-07-26",22056,40,14953],["2021-07-27",22056,55,15008],["2021-07-28",22056,62,15070],["2021-07-29",22056,90,15160],["2021-07-30",22056,83,15243],["2021-07-31",22056,21,15264],["2021-08-01",22056,22,15286],["2021-08-02",22056,54,15340],["2021-08-03",22056,68,15408],["2021-08-04",22056,81,15489],["2021-08-05",22056,73,15562],["2021-08-06",22056,96,15658],["2021-08-07",22056,49,15707],["2021-08-08",22056,25,15732],["2021-08-09",22056,93,15825],["2021-08-10",22056,71,15896],["2021-08-11",22056,77,15973],["2021-08-12",22056,88,16061],["2021-08-13",22056,201,16262],["2021-08-14",22056,46,16308],["2021-08-15",22056,45,16353],["2021-08-16",22056,84,16437],["2021-08-17",22056,109,16546],["2021-08-18",22056,133,16679],["2021-08-19",22056,113,16792],["2021-08-20",22056,178,16970],["2021-08-21",22056,45,17015],["2021-08-22",22056,28,17043],["2021-08-23",22056,90,17133],["2021-08-24",22056,79,17212],["2021-08-25",22056,127,17339],["2021-08-26",22056,123,17462],["2021-08-27",22056,117,17579],["2021-08-28",22056,60,17639],["2021-08-29",22056,32,17671],["2021-08-30",22056,90,17761],["2021-08-31",22056,76,17837],["2021-09-01",22056,110,17947],["2021-09-02",22056,95,18042],["2021-09-03",22056,136,18178],["2021-09-04",22056,26,18204],["2021-09-05",22056,28,18232],["2021-09-06",22056,11,18243],["2021-09-07",22056,118,18361],["2021-09-08",22056,100,18461],["2021-09-09",22056,106,18567],["2021-09-10",22056,169,18736],["2021-09-11",22056,39,18775],["2021-09-12",22056,32,18807],["2021-09-13",22056,96,18903],["2021-09-14",22056,81,18984],["2021-09-15",22056,72,19056],["2021-09-16",22056,79,19135],["2021-09-17",22056,138,19273],["2021-09-18",22056,56,19329],["2021-09-19",22056,15,19344],["2021-09-20",22056,51,19395],["2021-09-21",22056,49,19444],["2021-09-22",22056,75,19519],["2021-09-23",22056,63,19582],["2021-09-24",22056,73,19655],["2021-09-25",22056,19,19674],["2021-09-26",22056,6,19680],["2021-09-27",22056,52,19732],["2021-09-28",22056,57,19789],["2021-09-29",22056,51,19840],["2021-09-30",22056,118,19958],["2021-10-01",22056,89,20047],["2021-10-02",22056,23,20070],["2021-10-03",22056,9,20079],["2021-10-04",22056,27,20106],["2021-10-05",22056,58,20164],["2021-10-06",22056,41,20205],["2021-10-07",22056,65,20270],["2021-10-08",22056,67,20337],["2021-10-09",22056,20,20357],["2021-10-10",22056,6,20363],["2021-10-11",22056,26,20389],["2021-10-12",22056,44,20433],["2021-10-13",22056,47,20480],["2021-10-14",22056,60,20540],["2021-10-15",22056,46,20586],["2021-10-16",22056,28,20614],["2021-10-17",22056,3,20617],["2021-10-18",22056,33,20650],["2021-10-19",22056,53,20703],["2021-10-20",22056,27,20730],["2021-10-21",22056,51,20781],["2021-10-22",22056,35,20816],["2021-10-23",22056,15,20831],["2021-10-24",22056,10,20841],["2021-10-25",22056,50,20891],["2021-10-26",22056,63,20954],["2021-10-27",22056,80,21034],["2021-10-28",22056,130,21164],["2021-10-29",22056,88,21252],["2021-10-30",22056,14,21266],["2021-10-31",22056,2,21268],["2021-11-01",22056,137,21405],["2021-11-02",22056,81,21486],["2021-11-03",22056,91,21577],["2021-11-04",22056,94,21671],["2021-11-05",22056,59,21730],["2021-11-06",22056,38,21768],["2021-11-07",22056,10,21778],["2021-11-08",22056,75,21853],["2021-11-09",22056,67,21920],["2021-11-10",22056,73,21993],["2021-11-11",22056,38,22031],["2021-11-12",22056,79,22110],["2021-11-13",22056,10,22120],["2021-11-14",22056,3,22123],["2021-11-15",22056,99,22222],["2021-11-16",22056,99,22321],["2021-11-17",22056,74,22395],["2021-11-18",22056,108,22503],["2021-11-19",22056,83,22586],["2021-11-20",22056,25,22611],["2021-11-21",22056,9,22620],["2021-11-22",22056,91,22711],["2021-11-23",22056,63,22774],["2021-11-24",22056,40,22814],["2021-11-26",22056,28,22842],["2021-11-27",22056,17,22859],["2021-11-28",22056,4,22863],["2021-11-29",22056,89,22952],["2021-11-30",22056,97,23049],["2021-12-01",22056,102,23151],["2021-12-02",22056,127,23278],["2021-12-03",22056,94,23372],["2021-12-04",22056,21,23393],["2021-12-05",22056,11,23404],["2021-12-06",22056,76,23480],["2021-12-07",22056,68,23548],["2021-12-08",22056,55,23603],["2021-12-09",22056,59,23662],["2021-12-10",22056,53,23715],["2021-12-11",22056,11,23726],["2021-12-12",22056,7,23733],["2021-12-13",22056,46,23779],["2021-12-14",22056,55,23834],["2021-12-15",22056,50,23884],["2021-12-16",22056,71,23955],["2021-12-17",22056,68,24023],["2021-12-18",22056,16,24039],["2021-12-19",22056,16,24055],["2021-12-20",22056,64,24119],["2021-12-21",22056,67,24186],["2021-12-22",22056,59,24245],["2021-12-23",22056,34,24279],["2021-12-24",22056,15,24294],["2021-12-26",22056,16,24310],["2021-12-27",22056,62,24372],["2021-12-28",22056,78,24450],["2021-12-29",22056,72,24522],["2021-12-30",22056,57,24579],["2021-12-31",22056,52,24631],["2022-01-01",22056,5,24636],["2022-01-02",22056,14,24650],["2022-01-03",22056,7,24657]]} \ No newline at end of file diff --git a/public/data/overall/vaccinations/by-county/Monroe.json b/public/data/overall/vaccinations/by-county/Monroe.json new file mode 100644 index 000000000..44141df93 --- /dev/null +++ b/public/data/overall/vaccinations/by-county/Monroe.json @@ -0,0 +1 @@ +{"segment":{"county":"Monroe"},"headers":["report_date","population","vaccinations","total_vaccinations"],"rows":[["2020-12-18",27727,3,3],["2020-12-19",27727,1,4],["2020-12-20",27727,1,5],["2020-12-21",27727,7,12],["2020-12-22",27727,19,31],["2020-12-23",27727,32,63],["2020-12-24",27727,25,88],["2020-12-26",27727,21,109],["2020-12-27",27727,2,111],["2020-12-28",27727,104,215],["2020-12-29",27727,112,327],["2020-12-30",27727,71,398],["2020-12-31",27727,23,421],["2021-01-01",27727,2,423],["2021-01-02",27727,2,425],["2021-01-03",27727,48,473],["2021-01-04",27727,44,517],["2021-01-05",27727,52,569],["2021-01-06",27727,42,611],["2021-01-07",27727,87,698],["2021-01-08",27727,58,756],["2021-01-09",27727,12,768],["2021-01-10",27727,6,774],["2021-01-11",27727,63,837],["2021-01-12",27727,69,906],["2021-01-13",27727,104,1010],["2021-01-14",27727,50,1060],["2021-01-15",27727,140,1200],["2021-01-16",27727,29,1229],["2021-01-17",27727,41,1270],["2021-01-18",27727,146,1416],["2021-01-19",27727,111,1527],["2021-01-20",27727,143,1670],["2021-01-21",27727,148,1818],["2021-01-22",27727,195,2013],["2021-01-23",27727,28,2041],["2021-01-24",27727,75,2116],["2021-01-25",27727,171,2287],["2021-01-26",27727,143,2430],["2021-01-27",27727,169,2599],["2021-01-28",27727,156,2755],["2021-01-29",27727,201,2956],["2021-01-30",27727,23,2979],["2021-01-31",27727,4,2983],["2021-02-01",27727,108,3091],["2021-02-02",27727,86,3177],["2021-02-03",27727,124,3301],["2021-02-04",27727,94,3395],["2021-02-05",27727,168,3563],["2021-02-06",27727,12,3575],["2021-02-07",27727,39,3614],["2021-02-08",27727,127,3741],["2021-02-09",27727,79,3820],["2021-02-10",27727,144,3964],["2021-02-11",27727,77,4041],["2021-02-12",27727,193,4234],["2021-02-13",27727,43,4277],["2021-02-14",27727,19,4296],["2021-02-15",27727,173,4469],["2021-02-16",27727,128,4597],["2021-02-17",27727,174,4771],["2021-02-18",27727,177,4948],["2021-02-19",27727,176,5124],["2021-02-20",27727,33,5157],["2021-02-21",27727,20,5177],["2021-02-22",27727,159,5336],["2021-02-23",27727,118,5454],["2021-02-24",27727,144,5598],["2021-02-25",27727,182,5780],["2021-02-26",27727,275,6055],["2021-02-27",27727,48,6103],["2021-02-28",27727,7,6110],["2021-03-01",27727,211,6321],["2021-03-02",27727,115,6436],["2021-03-03",27727,164,6600],["2021-03-04",27727,163,6763],["2021-03-05",27727,196,6959],["2021-03-06",27727,14,6973],["2021-03-07",27727,16,6989],["2021-03-08",27727,282,7271],["2021-03-09",27727,121,7392],["2021-03-10",27727,157,7549],["2021-03-11",27727,154,7703],["2021-03-12",27727,238,7941],["2021-03-13",27727,54,7995],["2021-03-14",27727,36,8031],["2021-03-15",27727,298,8329],["2021-03-16",27727,161,8490],["2021-03-17",27727,208,8698],["2021-03-18",27727,215,8913],["2021-03-19",27727,292,9205],["2021-03-20",27727,44,9249],["2021-03-21",27727,12,9261],["2021-03-22",27727,174,9435],["2021-03-23",27727,143,9578],["2021-03-24",27727,146,9724],["2021-03-25",27727,181,9905],["2021-03-26",27727,227,10132],["2021-03-27",27727,29,10161],["2021-03-28",27727,20,10181],["2021-03-29",27727,272,10453],["2021-03-30",27727,169,10622],["2021-03-31",27727,183,10805],["2021-04-01",27727,247,11052],["2021-04-02",27727,184,11236],["2021-04-03",27727,57,11293],["2021-04-04",27727,16,11309],["2021-04-05",27727,248,11557],["2021-04-06",27727,180,11737],["2021-04-07",27727,193,11930],["2021-04-08",27727,206,12136],["2021-04-09",27727,335,12471],["2021-04-10",27727,38,12509],["2021-04-11",27727,36,12545],["2021-04-12",27727,262,12807],["2021-04-13",27727,133,12940],["2021-04-14",27727,158,13098],["2021-04-15",27727,219,13317],["2021-04-16",27727,315,13632],["2021-04-17",27727,27,13659],["2021-04-18",27727,15,13674],["2021-04-19",27727,161,13835],["2021-04-20",27727,143,13978],["2021-04-21",27727,141,14119],["2021-04-22",27727,166,14285],["2021-04-23",27727,255,14540],["2021-04-24",27727,27,14567],["2021-04-25",27727,18,14585],["2021-04-26",27727,177,14762],["2021-04-27",27727,127,14889],["2021-04-28",27727,157,15046],["2021-04-29",27727,172,15218],["2021-04-30",27727,199,15417],["2021-05-01",27727,44,15461],["2021-05-02",27727,26,15487],["2021-05-03",27727,120,15607],["2021-05-04",27727,98,15705],["2021-05-05",27727,122,15827],["2021-05-06",27727,130,15957],["2021-05-07",27727,153,16110],["2021-05-08",27727,72,16182],["2021-05-09",27727,16,16198],["2021-05-10",27727,95,16293],["2021-05-11",27727,56,16349],["2021-05-12",27727,63,16412],["2021-05-13",27727,105,16517],["2021-05-14",27727,123,16640],["2021-05-15",27727,34,16674],["2021-05-16",27727,31,16705],["2021-05-17",27727,89,16794],["2021-05-18",27727,122,16916],["2021-05-19",27727,122,17038],["2021-05-20",27727,106,17144],["2021-05-21",27727,93,17237],["2021-05-22",27727,32,17269],["2021-05-23",27727,16,17285],["2021-05-24",27727,73,17358],["2021-05-25",27727,67,17425],["2021-05-26",27727,79,17504],["2021-05-27",27727,77,17581],["2021-05-28",27727,36,17617],["2021-05-29",27727,12,17629],["2021-05-30",27727,12,17641],["2021-05-31",27727,8,17649],["2021-06-01",27727,111,17760],["2021-06-02",27727,80,17840],["2021-06-03",27727,74,17914],["2021-06-04",27727,68,17982],["2021-06-05",27727,24,18006],["2021-06-06",27727,18,18024],["2021-06-07",27727,66,18090],["2021-06-08",27727,42,18132],["2021-06-09",27727,39,18171],["2021-06-10",27727,57,18228],["2021-06-11",27727,107,18335],["2021-06-12",27727,69,18404],["2021-06-13",27727,13,18417],["2021-06-14",27727,38,18455],["2021-06-15",27727,39,18494],["2021-06-16",27727,28,18522],["2021-06-17",27727,60,18582],["2021-06-18",27727,23,18605],["2021-06-19",27727,21,18626],["2021-06-20",27727,13,18639],["2021-06-21",27727,22,18661],["2021-06-22",27727,41,18702],["2021-06-23",27727,41,18743],["2021-06-24",27727,32,18775],["2021-06-25",27727,32,18807],["2021-06-26",27727,11,18818],["2021-06-27",27727,6,18824],["2021-06-28",27727,34,18858],["2021-06-29",27727,35,18893],["2021-06-30",27727,34,18927],["2021-07-01",27727,24,18951],["2021-07-02",27727,36,18987],["2021-07-03",27727,13,19000],["2021-07-04",27727,2,19002],["2021-07-05",27727,12,19014],["2021-07-06",27727,29,19043],["2021-07-07",27727,18,19061],["2021-07-08",27727,24,19085],["2021-07-09",27727,29,19114],["2021-07-10",27727,12,19126],["2021-07-11",27727,7,19133],["2021-07-12",27727,32,19165],["2021-07-13",27727,27,19192],["2021-07-14",27727,21,19213],["2021-07-15",27727,21,19234],["2021-07-16",27727,21,19255],["2021-07-17",27727,14,19269],["2021-07-18",27727,16,19285],["2021-07-19",27727,30,19315],["2021-07-20",27727,29,19344],["2021-07-21",27727,25,19369],["2021-07-22",27727,54,19423],["2021-07-23",27727,64,19487],["2021-07-24",27727,35,19522],["2021-07-25",27727,14,19536],["2021-07-26",27727,45,19581],["2021-07-27",27727,43,19624],["2021-07-28",27727,39,19663],["2021-07-29",27727,54,19717],["2021-07-30",27727,54,19771],["2021-07-31",27727,17,19788],["2021-08-01",27727,22,19810],["2021-08-02",27727,56,19866],["2021-08-03",27727,58,19924],["2021-08-04",27727,44,19968],["2021-08-05",27727,46,20014],["2021-08-06",27727,85,20099],["2021-08-07",27727,39,20138],["2021-08-08",27727,30,20168],["2021-08-09",27727,78,20246],["2021-08-10",27727,80,20326],["2021-08-11",27727,57,20383],["2021-08-12",27727,63,20446],["2021-08-13",27727,87,20533],["2021-08-14",27727,46,20579],["2021-08-15",27727,45,20624],["2021-08-16",27727,109,20733],["2021-08-17",27727,79,20812],["2021-08-18",27727,64,20876],["2021-08-19",27727,62,20938],["2021-08-20",27727,115,21053],["2021-08-21",27727,44,21097],["2021-08-22",27727,27,21124],["2021-08-23",27727,68,21192],["2021-08-24",27727,76,21268],["2021-08-25",27727,61,21329],["2021-08-26",27727,72,21401],["2021-08-27",27727,86,21487],["2021-08-28",27727,51,21538],["2021-08-29",27727,30,21568],["2021-08-30",27727,81,21649],["2021-08-31",27727,65,21714],["2021-09-01",27727,63,21777],["2021-09-02",27727,56,21833],["2021-09-03",27727,105,21938],["2021-09-04",27727,43,21981],["2021-09-05",27727,32,22013],["2021-09-06",27727,18,22031],["2021-09-07",27727,72,22103],["2021-09-08",27727,92,22195],["2021-09-09",27727,84,22279],["2021-09-10",27727,86,22365],["2021-09-11",27727,55,22420],["2021-09-12",27727,38,22458],["2021-09-13",27727,75,22533],["2021-09-14",27727,72,22605],["2021-09-15",27727,77,22682],["2021-09-16",27727,75,22757],["2021-09-17",27727,73,22830],["2021-09-18",27727,28,22858],["2021-09-19",27727,25,22883],["2021-09-20",27727,60,22943],["2021-09-21",27727,46,22989],["2021-09-22",27727,44,23033],["2021-09-23",27727,46,23079],["2021-09-24",27727,75,23154],["2021-09-25",27727,32,23186],["2021-09-26",27727,12,23198],["2021-09-27",27727,58,23256],["2021-09-28",27727,64,23320],["2021-09-29",27727,62,23382],["2021-09-30",27727,65,23447],["2021-10-01",27727,92,23539],["2021-10-02",27727,24,23563],["2021-10-03",27727,22,23585],["2021-10-04",27727,40,23625],["2021-10-05",27727,41,23666],["2021-10-06",27727,46,23712],["2021-10-07",27727,63,23775],["2021-10-08",27727,51,23826],["2021-10-09",27727,20,23846],["2021-10-10",27727,13,23859],["2021-10-11",27727,28,23887],["2021-10-12",27727,34,23921],["2021-10-13",27727,33,23954],["2021-10-14",27727,37,23991],["2021-10-15",27727,37,24028],["2021-10-16",27727,17,24045],["2021-10-17",27727,10,24055],["2021-10-18",27727,30,24085],["2021-10-19",27727,37,24122],["2021-10-20",27727,34,24156],["2021-10-21",27727,44,24200],["2021-10-22",27727,114,24314],["2021-10-23",27727,42,24356],["2021-10-24",27727,23,24379],["2021-10-25",27727,106,24485],["2021-10-26",27727,142,24627],["2021-10-27",27727,139,24766],["2021-10-28",27727,80,24846],["2021-10-29",27727,118,24964],["2021-10-30",27727,30,24994],["2021-10-31",27727,16,25010],["2021-11-01",27727,104,25114],["2021-11-02",27727,98,25212],["2021-11-03",27727,85,25297],["2021-11-04",27727,102,25399],["2021-11-05",27727,91,25490],["2021-11-06",27727,21,25511],["2021-11-07",27727,15,25526],["2021-11-08",27727,83,25609],["2021-11-09",27727,88,25697],["2021-11-10",27727,56,25753],["2021-11-11",27727,53,25806],["2021-11-12",27727,104,25910],["2021-11-13",27727,19,25929],["2021-11-14",27727,17,25946],["2021-11-15",27727,64,26010],["2021-11-16",27727,61,26071],["2021-11-17",27727,102,26173],["2021-11-18",27727,101,26274],["2021-11-19",27727,107,26381],["2021-11-20",27727,31,26412],["2021-11-21",27727,31,26443],["2021-11-22",27727,104,26547],["2021-11-23",27727,74,26621],["2021-11-24",27727,34,26655],["2021-11-26",27727,33,26688],["2021-11-27",27727,24,26712],["2021-11-28",27727,18,26730],["2021-11-29",27727,126,26856],["2021-11-30",27727,96,26952],["2021-12-01",27727,131,27083],["2021-12-02",27727,104,27187],["2021-12-03",27727,137,27324],["2021-12-04",27727,40,27364],["2021-12-05",27727,23,27387],["2021-12-06",27727,99,27486],["2021-12-07",27727,83,27569],["2021-12-08",27727,77,27646],["2021-12-09",27727,81,27727],["2021-12-10",27727,102,27829],["2021-12-11",27727,28,27857],["2021-12-12",27727,20,27877],["2021-12-13",27727,47,27924],["2021-12-14",27727,49,27973],["2021-12-15",27727,39,28012],["2021-12-16",27727,70,28082],["2021-12-17",27727,88,28170],["2021-12-18",27727,36,28206],["2021-12-19",27727,17,28223],["2021-12-20",27727,73,28296],["2021-12-21",27727,81,28377],["2021-12-22",27727,72,28449],["2021-12-23",27727,59,28508],["2021-12-24",27727,17,28525],["2021-12-26",27727,19,28544],["2021-12-27",27727,87,28631],["2021-12-28",27727,76,28707],["2021-12-29",27727,60,28767],["2021-12-30",27727,60,28827],["2021-12-31",27727,38,28865],["2022-01-01",27727,9,28874],["2022-01-02",27727,6,28880],["2022-01-03",27727,18,28898]]} \ No newline at end of file diff --git a/public/data/overall/vaccinations/by-county/Montgomery.json b/public/data/overall/vaccinations/by-county/Montgomery.json new file mode 100644 index 000000000..09f35c6a9 --- /dev/null +++ b/public/data/overall/vaccinations/by-county/Montgomery.json @@ -0,0 +1 @@ +{"segment":{"county":"Montgomery"},"headers":["report_date","population","vaccinations","total_vaccinations"],"rows":[["2020-12-22",9224,2,2],["2020-12-23",9224,9,11],["2020-12-24",9224,1,12],["2020-12-28",9224,5,17],["2020-12-29",9224,9,26],["2020-12-30",9224,25,51],["2020-12-31",9224,2,53],["2021-01-01",9224,3,56],["2021-01-03",9224,1,57],["2021-01-04",9224,2,59],["2021-01-05",9224,9,68],["2021-01-06",9224,10,78],["2021-01-07",9224,10,88],["2021-01-08",9224,10,98],["2021-01-11",9224,133,231],["2021-01-12",9224,10,241],["2021-01-13",9224,29,270],["2021-01-14",9224,13,283],["2021-01-15",9224,8,291],["2021-01-16",9224,8,299],["2021-01-17",9224,6,305],["2021-01-18",9224,139,444],["2021-01-19",9224,49,493],["2021-01-20",9224,28,521],["2021-01-21",9224,8,529],["2021-01-22",9224,19,548],["2021-01-23",9224,2,550],["2021-01-25",9224,124,674],["2021-01-26",9224,8,682],["2021-01-27",9224,20,702],["2021-01-28",9224,33,735],["2021-01-29",9224,5,740],["2021-01-30",9224,3,743],["2021-01-31",9224,1,744],["2021-02-01",9224,66,810],["2021-02-02",9224,10,820],["2021-02-03",9224,19,839],["2021-02-04",9224,17,856],["2021-02-05",9224,11,867],["2021-02-06",9224,9,876],["2021-02-07",9224,8,884],["2021-02-08",9224,153,1037],["2021-02-09",9224,22,1059],["2021-02-10",9224,34,1093],["2021-02-11",9224,20,1113],["2021-02-12",9224,12,1125],["2021-02-13",9224,15,1140],["2021-02-14",9224,2,1142],["2021-02-15",9224,151,1293],["2021-02-16",9224,56,1349],["2021-02-17",9224,24,1373],["2021-02-18",9224,4,1377],["2021-02-19",9224,11,1388],["2021-02-20",9224,4,1392],["2021-02-21",9224,2,1394],["2021-02-22",9224,142,1536],["2021-02-23",9224,17,1553],["2021-02-24",9224,9,1562],["2021-02-25",9224,24,1586],["2021-02-26",9224,6,1592],["2021-02-28",9224,2,1594],["2021-03-01",9224,100,1694],["2021-03-02",9224,21,1715],["2021-03-03",9224,28,1743],["2021-03-04",9224,16,1759],["2021-03-05",9224,11,1770],["2021-03-06",9224,3,1773],["2021-03-07",9224,1,1774],["2021-03-08",9224,73,1847],["2021-03-09",9224,15,1862],["2021-03-10",9224,31,1893],["2021-03-11",9224,53,1946],["2021-03-12",9224,52,1998],["2021-03-13",9224,9,2007],["2021-03-14",9224,4,2011],["2021-03-15",9224,27,2038],["2021-03-16",9224,110,2148],["2021-03-17",9224,28,2176],["2021-03-18",9224,21,2197],["2021-03-19",9224,22,2219],["2021-03-20",9224,5,2224],["2021-03-21",9224,1,2225],["2021-03-22",9224,30,2255],["2021-03-23",9224,91,2346],["2021-03-24",9224,27,2373],["2021-03-25",9224,23,2396],["2021-03-26",9224,30,2426],["2021-03-27",9224,31,2457],["2021-03-28",9224,2,2459],["2021-03-29",9224,17,2476],["2021-03-30",9224,106,2582],["2021-03-31",9224,32,2614],["2021-04-01",9224,31,2645],["2021-04-02",9224,26,2671],["2021-04-03",9224,7,2678],["2021-04-05",9224,29,2707],["2021-04-06",9224,89,2796],["2021-04-07",9224,44,2840],["2021-04-08",9224,55,2895],["2021-04-09",9224,28,2923],["2021-04-10",9224,8,2931],["2021-04-11",9224,7,2938],["2021-04-12",9224,26,2964],["2021-04-13",9224,114,3078],["2021-04-14",9224,32,3110],["2021-04-15",9224,17,3127],["2021-04-16",9224,29,3156],["2021-04-17",9224,3,3159],["2021-04-18",9224,1,3160],["2021-04-19",9224,12,3172],["2021-04-20",9224,93,3265],["2021-04-21",9224,44,3309],["2021-04-22",9224,32,3341],["2021-04-23",9224,25,3366],["2021-04-24",9224,33,3399],["2021-04-25",9224,2,3401],["2021-04-26",9224,14,3415],["2021-04-27",9224,85,3500],["2021-04-28",9224,25,3525],["2021-04-29",9224,14,3539],["2021-04-30",9224,26,3565],["2021-05-01",9224,17,3582],["2021-05-02",9224,1,3583],["2021-05-03",9224,9,3592],["2021-05-04",9224,72,3664],["2021-05-05",9224,28,3692],["2021-05-06",9224,26,3718],["2021-05-07",9224,11,3729],["2021-05-08",9224,9,3738],["2021-05-09",9224,1,3739],["2021-05-10",9224,13,3752],["2021-05-11",9224,44,3796],["2021-05-12",9224,14,3810],["2021-05-13",9224,16,3826],["2021-05-14",9224,20,3846],["2021-05-15",9224,7,3853],["2021-05-16",9224,2,3855],["2021-05-17",9224,11,3866],["2021-05-18",9224,44,3910],["2021-05-19",9224,26,3936],["2021-05-20",9224,9,3945],["2021-05-21",9224,13,3958],["2021-05-22",9224,9,3967],["2021-05-23",9224,1,3968],["2021-05-24",9224,19,3987],["2021-05-25",9224,39,4026],["2021-05-26",9224,7,4033],["2021-05-27",9224,7,4040],["2021-05-28",9224,13,4053],["2021-05-29",9224,4,4057],["2021-05-30",9224,1,4058],["2021-05-31",9224,4,4062],["2021-06-01",9224,37,4099],["2021-06-02",9224,9,4108],["2021-06-03",9224,8,4116],["2021-06-04",9224,17,4133],["2021-06-05",9224,5,4138],["2021-06-06",9224,2,4140],["2021-06-07",9224,11,4151],["2021-06-08",9224,20,4171],["2021-06-09",9224,3,4174],["2021-06-10",9224,16,4190],["2021-06-11",9224,14,4204],["2021-06-12",9224,7,4211],["2021-06-13",9224,4,4215],["2021-06-14",9224,9,4224],["2021-06-15",9224,21,4245],["2021-06-16",9224,8,4253],["2021-06-17",9224,3,4256],["2021-06-18",9224,11,4267],["2021-06-19",9224,10,4277],["2021-06-20",9224,1,4278],["2021-06-21",9224,6,4284],["2021-06-22",9224,21,4305],["2021-06-23",9224,7,4312],["2021-06-24",9224,8,4320],["2021-06-25",9224,5,4325],["2021-06-26",9224,6,4331],["2021-06-27",9224,1,4332],["2021-06-28",9224,5,4337],["2021-06-29",9224,16,4353],["2021-06-30",9224,6,4359],["2021-07-01",9224,7,4366],["2021-07-02",9224,3,4369],["2021-07-03",9224,4,4373],["2021-07-05",9224,5,4378],["2021-07-06",9224,9,4387],["2021-07-07",9224,6,4393],["2021-07-08",9224,8,4401],["2021-07-09",9224,10,4411],["2021-07-10",9224,9,4420],["2021-07-11",9224,5,4425],["2021-07-12",9224,6,4431],["2021-07-13",9224,7,4438],["2021-07-14",9224,3,4441],["2021-07-15",9224,8,4449],["2021-07-16",9224,15,4464],["2021-07-17",9224,8,4472],["2021-07-19",9224,12,4484],["2021-07-20",9224,16,4500],["2021-07-21",9224,13,4513],["2021-07-22",9224,19,4532],["2021-07-23",9224,17,4549],["2021-07-24",9224,5,4554],["2021-07-25",9224,3,4557],["2021-07-26",9224,15,4572],["2021-07-27",9224,25,4597],["2021-07-28",9224,32,4629],["2021-07-29",9224,21,4650],["2021-07-30",9224,29,4679],["2021-07-31",9224,7,4686],["2021-08-01",9224,4,4690],["2021-08-02",9224,31,4721],["2021-08-03",9224,34,4755],["2021-08-04",9224,30,4785],["2021-08-05",9224,31,4816],["2021-08-06",9224,29,4845],["2021-08-07",9224,12,4857],["2021-08-08",9224,8,4865],["2021-08-09",9224,23,4888],["2021-08-10",9224,26,4914],["2021-08-11",9224,28,4942],["2021-08-12",9224,25,4967],["2021-08-13",9224,25,4992],["2021-08-14",9224,12,5004],["2021-08-15",9224,5,5009],["2021-08-16",9224,70,5079],["2021-08-17",9224,42,5121],["2021-08-18",9224,43,5164],["2021-08-19",9224,44,5208],["2021-08-20",9224,30,5238],["2021-08-21",9224,8,5246],["2021-08-22",9224,7,5253],["2021-08-23",9224,42,5295],["2021-08-24",9224,32,5327],["2021-08-25",9224,46,5373],["2021-08-26",9224,57,5430],["2021-08-27",9224,48,5478],["2021-08-28",9224,18,5496],["2021-08-29",9224,13,5509],["2021-08-30",9224,45,5554],["2021-08-31",9224,49,5603],["2021-09-01",9224,47,5650],["2021-09-02",9224,32,5682],["2021-09-03",9224,32,5714],["2021-09-04",9224,4,5718],["2021-09-05",9224,9,5727],["2021-09-06",9224,11,5738],["2021-09-07",9224,60,5798],["2021-09-08",9224,35,5833],["2021-09-09",9224,26,5859],["2021-09-10",9224,25,5884],["2021-09-11",9224,11,5895],["2021-09-12",9224,7,5902],["2021-09-13",9224,28,5930],["2021-09-14",9224,54,5984],["2021-09-15",9224,39,6023],["2021-09-16",9224,20,6043],["2021-09-17",9224,39,6082],["2021-09-18",9224,11,6093],["2021-09-19",9224,5,6098],["2021-09-20",9224,34,6132],["2021-09-21",9224,47,6179],["2021-09-22",9224,29,6208],["2021-09-23",9224,20,6228],["2021-09-24",9224,15,6243],["2021-09-25",9224,9,6252],["2021-09-26",9224,6,6258],["2021-09-27",9224,24,6282],["2021-09-28",9224,32,6314],["2021-09-29",9224,17,6331],["2021-09-30",9224,15,6346],["2021-10-01",9224,24,6370],["2021-10-02",9224,7,6377],["2021-10-03",9224,4,6381],["2021-10-04",9224,14,6395],["2021-10-05",9224,18,6413],["2021-10-06",9224,17,6430],["2021-10-07",9224,11,6441],["2021-10-08",9224,9,6450],["2021-10-09",9224,5,6455],["2021-10-10",9224,4,6459],["2021-10-11",9224,11,6470],["2021-10-12",9224,15,6485],["2021-10-13",9224,16,6501],["2021-10-14",9224,3,6504],["2021-10-15",9224,10,6514],["2021-10-17",9224,2,6516],["2021-10-18",9224,8,6524],["2021-10-19",9224,15,6539],["2021-10-20",9224,9,6548],["2021-10-21",9224,14,6562],["2021-10-22",9224,7,6569],["2021-10-23",9224,5,6574],["2021-10-24",9224,2,6576],["2021-10-25",9224,14,6590],["2021-10-26",9224,47,6637],["2021-10-27",9224,61,6698],["2021-10-28",9224,21,6719],["2021-10-29",9224,27,6746],["2021-10-30",9224,6,6752],["2021-10-31",9224,1,6753],["2021-11-01",9224,23,6776],["2021-11-02",9224,28,6804],["2021-11-03",9224,42,6846],["2021-11-04",9224,45,6891],["2021-11-05",9224,20,6911],["2021-11-06",9224,6,6917],["2021-11-07",9224,4,6921],["2021-11-08",9224,35,6956],["2021-11-09",9224,35,6991],["2021-11-10",9224,36,7027],["2021-11-11",9224,18,7045],["2021-11-12",9224,15,7060],["2021-11-13",9224,4,7064],["2021-11-14",9224,5,7069],["2021-11-15",9224,30,7099],["2021-11-16",9224,41,7140],["2021-11-17",9224,45,7185],["2021-11-18",9224,40,7225],["2021-11-19",9224,11,7236],["2021-11-20",9224,5,7241],["2021-11-21",9224,1,7242],["2021-11-22",9224,20,7262],["2021-11-23",9224,24,7286],["2021-11-24",9224,13,7299],["2021-11-26",9224,7,7306],["2021-11-27",9224,4,7310],["2021-11-28",9224,2,7312],["2021-11-29",9224,17,7329],["2021-11-30",9224,27,7356],["2021-12-01",9224,31,7387],["2021-12-02",9224,23,7410],["2021-12-03",9224,26,7436],["2021-12-04",9224,5,7441],["2021-12-05",9224,4,7445],["2021-12-06",9224,31,7476],["2021-12-07",9224,24,7500],["2021-12-08",9224,20,7520],["2021-12-09",9224,17,7537],["2021-12-10",9224,13,7550],["2021-12-11",9224,4,7554],["2021-12-12",9224,2,7556],["2021-12-13",9224,21,7577],["2021-12-14",9224,16,7593],["2021-12-15",9224,15,7608],["2021-12-16",9224,11,7619],["2021-12-17",9224,40,7659],["2021-12-18",9224,3,7662],["2021-12-19",9224,4,7666],["2021-12-20",9224,21,7687],["2021-12-21",9224,24,7711],["2021-12-22",9224,17,7728],["2021-12-23",9224,5,7733],["2021-12-24",9224,2,7735],["2021-12-27",9224,17,7752],["2021-12-28",9224,27,7779],["2021-12-29",9224,25,7804],["2021-12-30",9224,34,7838],["2021-12-31",9224,10,7848],["2022-01-01",9224,1,7849],["2022-01-03",9224,4,7853]]} \ No newline at end of file diff --git a/public/data/overall/vaccinations/by-county/Morgan.json b/public/data/overall/vaccinations/by-county/Morgan.json new file mode 100644 index 000000000..0739a35e4 --- /dev/null +++ b/public/data/overall/vaccinations/by-county/Morgan.json @@ -0,0 +1 @@ +{"segment":{"county":"Morgan"},"headers":["report_date","population","vaccinations","total_vaccinations"],"rows":[["2020-12-17",19138,1,1],["2020-12-18",19138,6,7],["2020-12-21",19138,2,9],["2020-12-22",19138,10,19],["2020-12-23",19138,16,35],["2020-12-24",19138,5,40],["2020-12-28",19138,20,60],["2020-12-29",19138,20,80],["2020-12-30",19138,17,97],["2020-12-31",19138,9,106],["2021-01-01",19138,5,111],["2021-01-02",19138,9,120],["2021-01-03",19138,2,122],["2021-01-04",19138,29,151],["2021-01-05",19138,27,178],["2021-01-06",19138,28,206],["2021-01-07",19138,24,230],["2021-01-08",19138,38,268],["2021-01-09",19138,4,272],["2021-01-10",19138,53,325],["2021-01-11",19138,41,366],["2021-01-12",19138,82,448],["2021-01-13",19138,71,519],["2021-01-14",19138,40,559],["2021-01-15",19138,45,604],["2021-01-16",19138,31,635],["2021-01-17",19138,18,653],["2021-01-18",19138,59,712],["2021-01-19",19138,53,765],["2021-01-20",19138,48,813],["2021-01-21",19138,58,871],["2021-01-22",19138,91,962],["2021-01-23",19138,35,997],["2021-01-24",19138,8,1005],["2021-01-25",19138,181,1186],["2021-01-26",19138,72,1258],["2021-01-27",19138,50,1308],["2021-01-28",19138,77,1385],["2021-01-29",19138,72,1457],["2021-01-30",19138,29,1486],["2021-01-31",19138,78,1564],["2021-02-01",19138,158,1722],["2021-02-02",19138,33,1755],["2021-02-03",19138,43,1798],["2021-02-04",19138,85,1883],["2021-02-05",19138,64,1947],["2021-02-06",19138,34,1981],["2021-02-07",19138,18,1999],["2021-02-08",19138,119,2118],["2021-02-09",19138,82,2200],["2021-02-10",19138,81,2281],["2021-02-11",19138,72,2353],["2021-02-12",19138,54,2407],["2021-02-13",19138,52,2459],["2021-02-14",19138,19,2478],["2021-02-15",19138,155,2633],["2021-02-16",19138,71,2704],["2021-02-17",19138,70,2774],["2021-02-18",19138,90,2864],["2021-02-19",19138,90,2954],["2021-02-20",19138,34,2988],["2021-02-21",19138,21,3009],["2021-02-22",19138,212,3221],["2021-02-23",19138,91,3312],["2021-02-24",19138,53,3365],["2021-02-25",19138,121,3486],["2021-02-26",19138,75,3561],["2021-02-27",19138,45,3606],["2021-02-28",19138,29,3635],["2021-03-01",19138,169,3804],["2021-03-02",19138,56,3860],["2021-03-03",19138,85,3945],["2021-03-04",19138,100,4045],["2021-03-05",19138,108,4153],["2021-03-06",19138,57,4210],["2021-03-07",19138,42,4252],["2021-03-08",19138,186,4438],["2021-03-09",19138,80,4518],["2021-03-10",19138,120,4638],["2021-03-11",19138,224,4862],["2021-03-12",19138,106,4968],["2021-03-13",19138,49,5017],["2021-03-14",19138,25,5042],["2021-03-15",19138,157,5199],["2021-03-16",19138,206,5405],["2021-03-17",19138,97,5502],["2021-03-18",19138,131,5633],["2021-03-19",19138,111,5744],["2021-03-20",19138,69,5813],["2021-03-21",19138,37,5850],["2021-03-22",19138,193,6043],["2021-03-23",19138,104,6147],["2021-03-24",19138,165,6312],["2021-03-25",19138,225,6537],["2021-03-26",19138,167,6704],["2021-03-27",19138,48,6752],["2021-03-28",19138,35,6787],["2021-03-29",19138,117,6904],["2021-03-30",19138,121,7025],["2021-03-31",19138,430,7455],["2021-04-01",19138,182,7637],["2021-04-02",19138,138,7775],["2021-04-03",19138,72,7847],["2021-04-04",19138,28,7875],["2021-04-05",19138,141,8016],["2021-04-06",19138,141,8157],["2021-04-07",19138,144,8301],["2021-04-08",19138,155,8456],["2021-04-09",19138,116,8572],["2021-04-10",19138,52,8624],["2021-04-11",19138,42,8666],["2021-04-12",19138,111,8777],["2021-04-13",19138,130,8907],["2021-04-14",19138,340,9247],["2021-04-15",19138,134,9381],["2021-04-16",19138,118,9499],["2021-04-17",19138,42,9541],["2021-04-18",19138,54,9595],["2021-04-19",19138,183,9778],["2021-04-20",19138,115,9893],["2021-04-21",19138,162,10055],["2021-04-22",19138,220,10275],["2021-04-23",19138,107,10382],["2021-04-24",19138,50,10432],["2021-04-25",19138,29,10461],["2021-04-26",19138,92,10553],["2021-04-27",19138,74,10627],["2021-04-28",19138,411,11038],["2021-04-29",19138,133,11171],["2021-04-30",19138,110,11281],["2021-05-01",19138,78,11359],["2021-05-02",19138,10,11369],["2021-05-03",19138,86,11455],["2021-05-04",19138,52,11507],["2021-05-05",19138,95,11602],["2021-05-06",19138,83,11685],["2021-05-07",19138,49,11734],["2021-05-08",19138,54,11788],["2021-05-09",19138,22,11810],["2021-05-10",19138,57,11867],["2021-05-11",19138,53,11920],["2021-05-12",19138,248,12168],["2021-05-13",19138,90,12258],["2021-05-14",19138,40,12298],["2021-05-15",19138,46,12344],["2021-05-16",19138,37,12381],["2021-05-17",19138,69,12450],["2021-05-18",19138,39,12489],["2021-05-19",19138,80,12569],["2021-05-20",19138,77,12646],["2021-05-21",19138,46,12692],["2021-05-22",19138,34,12726],["2021-05-23",19138,18,12744],["2021-05-24",19138,41,12785],["2021-05-25",19138,25,12810],["2021-05-26",19138,73,12883],["2021-05-27",19138,38,12921],["2021-05-28",19138,29,12950],["2021-05-29",19138,22,12972],["2021-05-30",19138,12,12984],["2021-05-31",19138,13,12997],["2021-06-01",19138,44,13041],["2021-06-02",19138,42,13083],["2021-06-03",19138,50,13133],["2021-06-04",19138,41,13174],["2021-06-05",19138,26,13200],["2021-06-06",19138,16,13216],["2021-06-07",19138,25,13241],["2021-06-08",19138,40,13281],["2021-06-09",19138,31,13312],["2021-06-10",19138,26,13338],["2021-06-11",19138,29,13367],["2021-06-12",19138,28,13395],["2021-06-13",19138,6,13401],["2021-06-14",19138,31,13432],["2021-06-15",19138,21,13453],["2021-06-16",19138,26,13479],["2021-06-17",19138,36,13515],["2021-06-18",19138,20,13535],["2021-06-19",19138,20,13555],["2021-06-20",19138,6,13561],["2021-06-21",19138,18,13579],["2021-06-22",19138,21,13600],["2021-06-23",19138,22,13622],["2021-06-24",19138,32,13654],["2021-06-25",19138,15,13669],["2021-06-26",19138,19,13688],["2021-06-27",19138,3,13691],["2021-06-28",19138,18,13709],["2021-06-29",19138,19,13728],["2021-06-30",19138,42,13770],["2021-07-01",19138,8,13778],["2021-07-02",19138,24,13802],["2021-07-03",19138,17,13819],["2021-07-04",19138,2,13821],["2021-07-05",19138,11,13832],["2021-07-06",19138,21,13853],["2021-07-07",19138,12,13865],["2021-07-08",19138,27,13892],["2021-07-09",19138,22,13914],["2021-07-10",19138,10,13924],["2021-07-11",19138,3,13927],["2021-07-12",19138,24,13951],["2021-07-13",19138,17,13968],["2021-07-14",19138,31,13999],["2021-07-15",19138,21,14020],["2021-07-16",19138,28,14048],["2021-07-17",19138,11,14059],["2021-07-18",19138,10,14069],["2021-07-19",19138,23,14092],["2021-07-20",19138,17,14109],["2021-07-21",19138,35,14144],["2021-07-22",19138,29,14173],["2021-07-23",19138,37,14210],["2021-07-24",19138,17,14227],["2021-07-25",19138,5,14232],["2021-07-26",19138,30,14262],["2021-07-27",19138,34,14296],["2021-07-28",19138,41,14337],["2021-07-29",19138,41,14378],["2021-07-30",19138,37,14415],["2021-07-31",19138,23,14438],["2021-08-01",19138,24,14462],["2021-08-02",19138,36,14498],["2021-08-03",19138,35,14533],["2021-08-04",19138,30,14563],["2021-08-05",19138,25,14588],["2021-08-06",19138,40,14628],["2021-08-07",19138,23,14651],["2021-08-08",19138,17,14668],["2021-08-09",19138,39,14707],["2021-08-10",19138,39,14746],["2021-08-11",19138,54,14800],["2021-08-12",19138,35,14835],["2021-08-13",19138,46,14881],["2021-08-14",19138,37,14918],["2021-08-15",19138,19,14937],["2021-08-16",19138,54,14991],["2021-08-17",19138,38,15029],["2021-08-18",19138,39,15068],["2021-08-19",19138,46,15114],["2021-08-20",19138,51,15165],["2021-08-21",19138,25,15190],["2021-08-22",19138,24,15214],["2021-08-23",19138,57,15271],["2021-08-24",19138,59,15330],["2021-08-25",19138,74,15404],["2021-08-26",19138,71,15475],["2021-08-27",19138,55,15530],["2021-08-28",19138,43,15573],["2021-08-29",19138,21,15594],["2021-08-30",19138,50,15644],["2021-08-31",19138,58,15702],["2021-09-01",19138,43,15745],["2021-09-02",19138,46,15791],["2021-09-03",19138,57,15848],["2021-09-04",19138,26,15874],["2021-09-05",19138,21,15895],["2021-09-06",19138,14,15909],["2021-09-07",19138,41,15950],["2021-09-08",19138,47,15997],["2021-09-09",19138,47,16044],["2021-09-10",19138,61,16105],["2021-09-11",19138,29,16134],["2021-09-12",19138,17,16151],["2021-09-13",19138,45,16196],["2021-09-14",19138,45,16241],["2021-09-15",19138,60,16301],["2021-09-16",19138,53,16354],["2021-09-17",19138,50,16404],["2021-09-18",19138,15,16419],["2021-09-19",19138,13,16432],["2021-09-20",19138,39,16471],["2021-09-21",19138,36,16507],["2021-09-22",19138,41,16548],["2021-09-23",19138,32,16580],["2021-09-24",19138,41,16621],["2021-09-25",19138,21,16642],["2021-09-26",19138,16,16658],["2021-09-27",19138,42,16700],["2021-09-28",19138,33,16733],["2021-09-29",19138,42,16775],["2021-09-30",19138,37,16812],["2021-10-01",19138,36,16848],["2021-10-02",19138,15,16863],["2021-10-03",19138,13,16876],["2021-10-04",19138,32,16908],["2021-10-05",19138,28,16936],["2021-10-06",19138,36,16972],["2021-10-07",19138,35,17007],["2021-10-08",19138,32,17039],["2021-10-09",19138,18,17057],["2021-10-10",19138,10,17067],["2021-10-11",19138,11,17078],["2021-10-12",19138,31,17109],["2021-10-13",19138,28,17137],["2021-10-14",19138,22,17159],["2021-10-15",19138,21,17180],["2021-10-16",19138,5,17185],["2021-10-17",19138,6,17191],["2021-10-18",19138,20,17211],["2021-10-19",19138,21,17232],["2021-10-20",19138,29,17261],["2021-10-21",19138,24,17285],["2021-10-22",19138,74,17359],["2021-10-23",19138,30,17389],["2021-10-24",19138,19,17408],["2021-10-25",19138,59,17467],["2021-10-26",19138,90,17557],["2021-10-27",19138,68,17625],["2021-10-28",19138,76,17701],["2021-10-29",19138,95,17796],["2021-10-30",19138,23,17819],["2021-10-31",19138,25,17844],["2021-11-01",19138,147,17991],["2021-11-02",19138,71,18062],["2021-11-03",19138,90,18152],["2021-11-04",19138,66,18218],["2021-11-05",19138,67,18285],["2021-11-06",19138,35,18320],["2021-11-07",19138,33,18353],["2021-11-08",19138,45,18398],["2021-11-09",19138,49,18447],["2021-11-10",19138,55,18502],["2021-11-11",19138,38,18540],["2021-11-12",19138,68,18608],["2021-11-13",19138,32,18640],["2021-11-14",19138,17,18657],["2021-11-15",19138,57,18714],["2021-11-16",19138,51,18765],["2021-11-17",19138,45,18810],["2021-11-18",19138,57,18867],["2021-11-19",19138,58,18925],["2021-11-20",19138,36,18961],["2021-11-21",19138,27,18988],["2021-11-22",19138,53,19041],["2021-11-23",19138,62,19103],["2021-11-24",19138,34,19137],["2021-11-25",19138,1,19138],["2021-11-26",19138,49,19187],["2021-11-27",19138,26,19213],["2021-11-28",19138,15,19228],["2021-11-29",19138,59,19287],["2021-11-30",19138,74,19361],["2021-12-01",19138,72,19433],["2021-12-02",19138,57,19490],["2021-12-03",19138,91,19581],["2021-12-04",19138,40,19621],["2021-12-05",19138,26,19647],["2021-12-06",19138,47,19694],["2021-12-07",19138,73,19767],["2021-12-08",19138,70,19837],["2021-12-09",19138,45,19882],["2021-12-10",19138,63,19945],["2021-12-11",19138,20,19965],["2021-12-12",19138,20,19985],["2021-12-13",19138,34,20019],["2021-12-14",19138,50,20069],["2021-12-15",19138,69,20138],["2021-12-16",19138,31,20169],["2021-12-17",19138,57,20226],["2021-12-18",19138,23,20249],["2021-12-19",19138,22,20271],["2021-12-20",19138,49,20320],["2021-12-21",19138,55,20375],["2021-12-22",19138,46,20421],["2021-12-23",19138,46,20467],["2021-12-24",19138,29,20496],["2021-12-26",19138,20,20516],["2021-12-27",19138,45,20561],["2021-12-28",19138,66,20627],["2021-12-29",19138,44,20671],["2021-12-30",19138,57,20728],["2021-12-31",19138,34,20762],["2022-01-01",19138,14,20776],["2022-01-02",19138,20,20796],["2022-01-03",19138,15,20811]]} \ No newline at end of file diff --git a/public/data/overall/vaccinations/by-county/Murray.json b/public/data/overall/vaccinations/by-county/Murray.json new file mode 100644 index 000000000..851c6ab7d --- /dev/null +++ b/public/data/overall/vaccinations/by-county/Murray.json @@ -0,0 +1 @@ +{"segment":{"county":"Murray"},"headers":["report_date","population","vaccinations","total_vaccinations"],"rows":[["2020-12-18",40261,22,22],["2020-12-20",40261,6,28],["2020-12-21",40261,34,62],["2020-12-22",40261,50,112],["2020-12-23",40261,26,138],["2020-12-24",40261,9,147],["2020-12-26",40261,1,148],["2020-12-27",40261,4,152],["2020-12-28",40261,56,208],["2020-12-29",40261,51,259],["2020-12-30",40261,38,297],["2020-12-31",40261,33,330],["2021-01-01",40261,6,336],["2021-01-02",40261,4,340],["2021-01-03",40261,2,342],["2021-01-04",40261,31,373],["2021-01-05",40261,43,416],["2021-01-06",40261,60,476],["2021-01-07",40261,89,565],["2021-01-08",40261,88,653],["2021-01-09",40261,2,655],["2021-01-10",40261,6,661],["2021-01-11",40261,313,974],["2021-01-12",40261,420,1394],["2021-01-13",40261,272,1666],["2021-01-14",40261,316,1982],["2021-01-15",40261,197,2179],["2021-01-16",40261,13,2192],["2021-01-17",40261,18,2210],["2021-01-18",40261,264,2474],["2021-01-19",40261,239,2713],["2021-01-20",40261,172,2885],["2021-01-21",40261,74,2959],["2021-01-22",40261,91,3050],["2021-01-23",40261,3,3053],["2021-01-24",40261,3,3056],["2021-01-25",40261,107,3163],["2021-01-26",40261,131,3294],["2021-01-27",40261,122,3416],["2021-01-28",40261,147,3563],["2021-01-29",40261,101,3664],["2021-01-30",40261,7,3671],["2021-01-31",40261,10,3681],["2021-02-01",40261,89,3770],["2021-02-02",40261,128,3898],["2021-02-03",40261,237,4135],["2021-02-04",40261,256,4391],["2021-02-05",40261,137,4528],["2021-02-06",40261,3,4531],["2021-02-07",40261,3,4534],["2021-02-08",40261,160,4694],["2021-02-09",40261,205,4899],["2021-02-10",40261,263,5162],["2021-02-11",40261,119,5281],["2021-02-12",40261,170,5451],["2021-02-13",40261,40,5491],["2021-02-14",40261,20,5511],["2021-02-15",40261,306,5817],["2021-02-16",40261,360,6177],["2021-02-17",40261,236,6413],["2021-02-18",40261,244,6657],["2021-02-19",40261,174,6831],["2021-02-20",40261,36,6867],["2021-02-22",40261,189,7056],["2021-02-23",40261,203,7259],["2021-02-24",40261,273,7532],["2021-02-25",40261,245,7777],["2021-02-26",40261,157,7934],["2021-02-27",40261,31,7965],["2021-02-28",40261,16,7981],["2021-03-01",40261,200,8181],["2021-03-02",40261,181,8362],["2021-03-03",40261,220,8582],["2021-03-04",40261,115,8697],["2021-03-05",40261,139,8836],["2021-03-06",40261,3,8839],["2021-03-07",40261,15,8854],["2021-03-08",40261,134,8988],["2021-03-09",40261,176,9164],["2021-03-10",40261,180,9344],["2021-03-11",40261,149,9493],["2021-03-12",40261,160,9653],["2021-03-13",40261,95,9748],["2021-03-14",40261,27,9775],["2021-03-15",40261,168,9943],["2021-03-16",40261,202,10145],["2021-03-17",40261,134,10279],["2021-03-18",40261,107,10386],["2021-03-19",40261,175,10561],["2021-03-20",40261,48,10609],["2021-03-21",40261,32,10641],["2021-03-22",40261,187,10828],["2021-03-23",40261,150,10978],["2021-03-24",40261,281,11259],["2021-03-25",40261,242,11501],["2021-03-26",40261,250,11751],["2021-03-27",40261,45,11796],["2021-03-28",40261,62,11858],["2021-03-29",40261,283,12141],["2021-03-30",40261,283,12424],["2021-03-31",40261,394,12818],["2021-04-01",40261,253,13071],["2021-04-02",40261,195,13266],["2021-04-03",40261,58,13324],["2021-04-04",40261,50,13374],["2021-04-05",40261,240,13614],["2021-04-06",40261,220,13834],["2021-04-07",40261,238,14072],["2021-04-08",40261,254,14326],["2021-04-09",40261,206,14532],["2021-04-10",40261,57,14589],["2021-04-11",40261,53,14642],["2021-04-12",40261,179,14821],["2021-04-13",40261,246,15067],["2021-04-14",40261,334,15401],["2021-04-15",40261,262,15663],["2021-04-16",40261,226,15889],["2021-04-17",40261,112,16001],["2021-04-18",40261,29,16030],["2021-04-19",40261,167,16197],["2021-04-20",40261,210,16407],["2021-04-21",40261,297,16704],["2021-04-22",40261,255,16959],["2021-04-23",40261,201,17160],["2021-04-24",40261,50,17210],["2021-04-25",40261,41,17251],["2021-04-26",40261,188,17439],["2021-04-27",40261,207,17646],["2021-04-28",40261,186,17832],["2021-04-29",40261,231,18063],["2021-04-30",40261,166,18229],["2021-05-01",40261,88,18317],["2021-05-02",40261,41,18358],["2021-05-03",40261,97,18455],["2021-05-04",40261,146,18601],["2021-05-05",40261,212,18813],["2021-05-06",40261,149,18962],["2021-05-07",40261,145,19107],["2021-05-08",40261,65,19172],["2021-05-09",40261,26,19198],["2021-05-10",40261,73,19271],["2021-05-11",40261,104,19375],["2021-05-12",40261,92,19467],["2021-05-13",40261,126,19593],["2021-05-14",40261,127,19720],["2021-05-15",40261,48,19768],["2021-05-16",40261,21,19789],["2021-05-17",40261,108,19897],["2021-05-18",40261,105,20002],["2021-05-19",40261,118,20120],["2021-05-20",40261,88,20208],["2021-05-21",40261,87,20295],["2021-05-22",40261,36,20331],["2021-05-23",40261,33,20364],["2021-05-24",40261,105,20469],["2021-05-25",40261,148,20617],["2021-05-26",40261,57,20674],["2021-05-27",40261,61,20735],["2021-05-28",40261,65,20800],["2021-05-29",40261,45,20845],["2021-05-30",40261,17,20862],["2021-05-31",40261,10,20872],["2021-06-01",40261,97,20969],["2021-06-02",40261,56,21025],["2021-06-03",40261,49,21074],["2021-06-04",40261,77,21151],["2021-06-05",40261,42,21193],["2021-06-06",40261,22,21215],["2021-06-07",40261,63,21278],["2021-06-08",40261,41,21319],["2021-06-09",40261,57,21376],["2021-06-10",40261,71,21447],["2021-06-11",40261,59,21506],["2021-06-12",40261,36,21542],["2021-06-13",40261,18,21560],["2021-06-14",40261,52,21612],["2021-06-15",40261,59,21671],["2021-06-16",40261,40,21711],["2021-06-17",40261,74,21785],["2021-06-18",40261,39,21824],["2021-06-19",40261,28,21852],["2021-06-20",40261,12,21864],["2021-06-21",40261,32,21896],["2021-06-22",40261,57,21953],["2021-06-23",40261,42,21995],["2021-06-24",40261,41,22036],["2021-06-25",40261,35,22071],["2021-06-26",40261,36,22107],["2021-06-27",40261,11,22118],["2021-06-28",40261,33,22151],["2021-06-29",40261,29,22180],["2021-06-30",40261,26,22206],["2021-07-01",40261,42,22248],["2021-07-02",40261,40,22288],["2021-07-03",40261,18,22306],["2021-07-04",40261,3,22309],["2021-07-05",40261,23,22332],["2021-07-06",40261,29,22361],["2021-07-07",40261,45,22406],["2021-07-08",40261,51,22457],["2021-07-09",40261,45,22502],["2021-07-10",40261,26,22528],["2021-07-11",40261,7,22535],["2021-07-12",40261,35,22570],["2021-07-13",40261,21,22591],["2021-07-14",40261,35,22626],["2021-07-15",40261,37,22663],["2021-07-16",40261,37,22700],["2021-07-17",40261,22,22722],["2021-07-18",40261,15,22737],["2021-07-19",40261,32,22769],["2021-07-20",40261,41,22810],["2021-07-21",40261,65,22875],["2021-07-22",40261,49,22924],["2021-07-23",40261,58,22982],["2021-07-24",40261,28,23010],["2021-07-25",40261,24,23034],["2021-07-26",40261,52,23086],["2021-07-27",40261,74,23160],["2021-07-28",40261,60,23220],["2021-07-29",40261,80,23300],["2021-07-30",40261,84,23384],["2021-07-31",40261,45,23429],["2021-08-01",40261,23,23452],["2021-08-02",40261,56,23508],["2021-08-03",40261,65,23573],["2021-08-04",40261,96,23669],["2021-08-05",40261,79,23748],["2021-08-06",40261,75,23823],["2021-08-07",40261,49,23872],["2021-08-08",40261,37,23909],["2021-08-09",40261,78,23987],["2021-08-10",40261,88,24075],["2021-08-11",40261,88,24163],["2021-08-12",40261,112,24275],["2021-08-13",40261,105,24380],["2021-08-14",40261,61,24441],["2021-08-15",40261,59,24500],["2021-08-16",40261,118,24618],["2021-08-17",40261,122,24740],["2021-08-18",40261,148,24888],["2021-08-19",40261,140,25028],["2021-08-20",40261,124,25152],["2021-08-21",40261,74,25226],["2021-08-22",40261,50,25276],["2021-08-23",40261,106,25382],["2021-08-24",40261,120,25502],["2021-08-25",40261,138,25640],["2021-08-26",40261,138,25778],["2021-08-27",40261,158,25936],["2021-08-28",40261,80,26016],["2021-08-29",40261,50,26066],["2021-08-30",40261,116,26182],["2021-08-31",40261,180,26362],["2021-09-01",40261,184,26546],["2021-09-02",40261,209,26755],["2021-09-03",40261,211,26966],["2021-09-04",40261,100,27066],["2021-09-05",40261,62,27128],["2021-09-06",40261,35,27163],["2021-09-07",40261,160,27323],["2021-09-08",40261,160,27483],["2021-09-09",40261,144,27627],["2021-09-10",40261,188,27815],["2021-09-11",40261,80,27895],["2021-09-12",40261,49,27944],["2021-09-13",40261,132,28076],["2021-09-14",40261,115,28191],["2021-09-15",40261,118,28309],["2021-09-16",40261,137,28446],["2021-09-17",40261,122,28568],["2021-09-18",40261,67,28635],["2021-09-19",40261,34,28669],["2021-09-20",40261,84,28753],["2021-09-21",40261,86,28839],["2021-09-22",40261,101,28940],["2021-09-23",40261,100,29040],["2021-09-24",40261,123,29163],["2021-09-25",40261,76,29239],["2021-09-26",40261,36,29275],["2021-09-27",40261,113,29388],["2021-09-28",40261,95,29483],["2021-09-29",40261,108,29591],["2021-09-30",40261,87,29678],["2021-10-01",40261,108,29786],["2021-10-02",40261,55,29841],["2021-10-03",40261,28,29869],["2021-10-04",40261,75,29944],["2021-10-05",40261,63,30007],["2021-10-06",40261,89,30096],["2021-10-07",40261,60,30156],["2021-10-08",40261,86,30242],["2021-10-09",40261,29,30271],["2021-10-10",40261,19,30290],["2021-10-11",40261,50,30340],["2021-10-12",40261,40,30380],["2021-10-13",40261,49,30429],["2021-10-14",40261,60,30489],["2021-10-15",40261,66,30555],["2021-10-16",40261,42,30597],["2021-10-17",40261,17,30614],["2021-10-18",40261,67,30681],["2021-10-19",40261,42,30723],["2021-10-20",40261,41,30764],["2021-10-21",40261,101,30865],["2021-10-22",40261,72,30937],["2021-10-23",40261,43,30980],["2021-10-24",40261,24,31004],["2021-10-25",40261,93,31097],["2021-10-26",40261,134,31231],["2021-10-27",40261,118,31349],["2021-10-28",40261,93,31442],["2021-10-29",40261,87,31529],["2021-10-30",40261,29,31558],["2021-10-31",40261,24,31582],["2021-11-01",40261,71,31653],["2021-11-02",40261,76,31729],["2021-11-03",40261,124,31853],["2021-11-04",40261,81,31934],["2021-11-05",40261,84,32018],["2021-11-06",40261,36,32054],["2021-11-07",40261,8,32062],["2021-11-08",40261,47,32109],["2021-11-09",40261,60,32169],["2021-11-10",40261,77,32246],["2021-11-11",40261,40,32286],["2021-11-12",40261,84,32370],["2021-11-13",40261,55,32425],["2021-11-14",40261,19,32444],["2021-11-15",40261,92,32536],["2021-11-16",40261,83,32619],["2021-11-17",40261,79,32698],["2021-11-18",40261,88,32786],["2021-11-19",40261,97,32883],["2021-11-20",40261,44,32927],["2021-11-21",40261,41,32968],["2021-11-22",40261,112,33080],["2021-11-23",40261,85,33165],["2021-11-24",40261,73,33238],["2021-11-26",40261,53,33291],["2021-11-27",40261,33,33324],["2021-11-28",40261,23,33347],["2021-11-29",40261,95,33442],["2021-11-30",40261,103,33545],["2021-12-01",40261,101,33646],["2021-12-02",40261,87,33733],["2021-12-03",40261,101,33834],["2021-12-04",40261,45,33879],["2021-12-05",40261,32,33911],["2021-12-06",40261,69,33980],["2021-12-07",40261,67,34047],["2021-12-08",40261,90,34137],["2021-12-09",40261,93,34230],["2021-12-10",40261,100,34330],["2021-12-11",40261,31,34361],["2021-12-12",40261,23,34384],["2021-12-13",40261,62,34446],["2021-12-14",40261,70,34516],["2021-12-15",40261,58,34574],["2021-12-16",40261,80,34654],["2021-12-17",40261,83,34737],["2021-12-18",40261,33,34770],["2021-12-19",40261,30,34800],["2021-12-20",40261,90,34890],["2021-12-21",40261,85,34975],["2021-12-22",40261,105,35080],["2021-12-23",40261,52,35132],["2021-12-24",40261,16,35148],["2021-12-26",40261,15,35163],["2021-12-27",40261,62,35225],["2021-12-28",40261,65,35290],["2021-12-29",40261,90,35380],["2021-12-30",40261,62,35442],["2021-12-31",40261,41,35483],["2022-01-01",40261,8,35491],["2022-01-02",40261,30,35521],["2022-01-03",40261,7,35528]]} \ No newline at end of file diff --git a/public/data/overall/vaccinations/by-county/Muscogee.json b/public/data/overall/vaccinations/by-county/Muscogee.json new file mode 100644 index 000000000..422803e9e --- /dev/null +++ b/public/data/overall/vaccinations/by-county/Muscogee.json @@ -0,0 +1 @@ +{"segment":{"county":"Muscogee"},"headers":["report_date","population","vaccinations","total_vaccinations"],"rows":[["2020-12-12",191626,1,1],["2020-12-16",191626,2,3],["2020-12-17",191626,2,5],["2020-12-18",191626,10,15],["2020-12-19",191626,23,38],["2020-12-20",191626,23,61],["2020-12-21",191626,70,131],["2020-12-22",191626,109,240],["2020-12-23",191626,242,482],["2020-12-24",191626,3,485],["2020-12-25",191626,1,486],["2020-12-26",191626,7,493],["2020-12-27",191626,44,537],["2020-12-28",191626,215,752],["2020-12-29",191626,433,1185],["2020-12-30",191626,386,1571],["2020-12-31",191626,193,1764],["2021-01-01",191626,25,1789],["2021-01-02",191626,10,1799],["2021-01-03",191626,44,1843],["2021-01-04",191626,301,2144],["2021-01-05",191626,536,2680],["2021-01-06",191626,360,3040],["2021-01-07",191626,318,3358],["2021-01-08",191626,273,3631],["2021-01-09",191626,57,3688],["2021-01-10",191626,56,3744],["2021-01-11",191626,679,4423],["2021-01-12",191626,801,5224],["2021-01-13",191626,767,5991],["2021-01-14",191626,856,6847],["2021-01-15",191626,263,7110],["2021-01-16",191626,454,7564],["2021-01-17",191626,130,7694],["2021-01-18",191626,602,8296],["2021-01-19",191626,740,9036],["2021-01-20",191626,678,9714],["2021-01-21",191626,649,10363],["2021-01-22",191626,257,10620],["2021-01-23",191626,288,10908],["2021-01-24",191626,95,11003],["2021-01-25",191626,464,11467],["2021-01-26",191626,544,12011],["2021-01-27",191626,499,12510],["2021-01-28",191626,575,13085],["2021-01-29",191626,807,13892],["2021-01-30",191626,77,13969],["2021-01-31",191626,65,14034],["2021-02-01",191626,514,14548],["2021-02-02",191626,695,15243],["2021-02-03",191626,546,15789],["2021-02-04",191626,904,16693],["2021-02-05",191626,382,17075],["2021-02-06",191626,27,17102],["2021-02-07",191626,40,17142],["2021-02-08",191626,692,17834],["2021-02-09",191626,918,18752],["2021-02-10",191626,763,19515],["2021-02-11",191626,1082,20597],["2021-02-12",191626,617,21214],["2021-02-13",191626,366,21580],["2021-02-14",191626,220,21800],["2021-02-15",191626,819,22619],["2021-02-16",191626,1066,23685],["2021-02-17",191626,949,24634],["2021-02-18",191626,640,25274],["2021-02-19",191626,563,25837],["2021-02-20",191626,145,25982],["2021-02-21",191626,106,26088],["2021-02-22",191626,622,26710],["2021-02-23",191626,475,27185],["2021-02-24",191626,484,27669],["2021-02-25",191626,667,28336],["2021-02-26",191626,2040,30376],["2021-02-27",191626,236,30612],["2021-02-28",191626,90,30702],["2021-03-01",191626,535,31237],["2021-03-02",191626,469,31706],["2021-03-03",191626,710,32416],["2021-03-04",191626,756,33172],["2021-03-05",191626,838,34010],["2021-03-06",191626,182,34192],["2021-03-07",191626,127,34319],["2021-03-08",191626,864,35183],["2021-03-09",191626,767,35950],["2021-03-10",191626,1064,37014],["2021-03-11",191626,1561,38575],["2021-03-12",191626,936,39511],["2021-03-13",191626,399,39910],["2021-03-14",191626,226,40136],["2021-03-15",191626,1083,41219],["2021-03-16",191626,937,42156],["2021-03-17",191626,2240,44396],["2021-03-18",191626,1101,45497],["2021-03-19",191626,1496,46993],["2021-03-20",191626,813,47806],["2021-03-21",191626,296,48102],["2021-03-22",191626,1106,49208],["2021-03-23",191626,1284,50492],["2021-03-24",191626,1437,51929],["2021-03-25",191626,2315,54244],["2021-03-26",191626,2595,56839],["2021-03-27",191626,773,57612],["2021-03-28",191626,332,57944],["2021-03-29",191626,1611,59555],["2021-03-30",191626,1462,61017],["2021-03-31",191626,1487,62504],["2021-04-01",191626,1513,64017],["2021-04-02",191626,1672,65689],["2021-04-03",191626,357,66046],["2021-04-04",191626,235,66281],["2021-04-05",191626,1511,67792],["2021-04-06",191626,1354,69146],["2021-04-07",191626,2037,71183],["2021-04-08",191626,1512,72695],["2021-04-09",191626,1862,74557],["2021-04-10",191626,442,74999],["2021-04-11",191626,261,75260],["2021-04-12",191626,1771,77031],["2021-04-13",191626,1649,78680],["2021-04-14",191626,2384,81064],["2021-04-15",191626,1276,82340],["2021-04-16",191626,1798,84138],["2021-04-17",191626,426,84564],["2021-04-18",191626,263,84827],["2021-04-19",191626,1548,86375],["2021-04-20",191626,1226,87601],["2021-04-21",191626,1410,89011],["2021-04-22",191626,1111,90122],["2021-04-23",191626,1731,91853],["2021-04-24",191626,434,92287],["2021-04-25",191626,270,92557],["2021-04-26",191626,1490,94047],["2021-04-27",191626,1257,95304],["2021-04-28",191626,1244,96548],["2021-04-29",191626,950,97498],["2021-04-30",191626,1720,99218],["2021-05-01",191626,514,99732],["2021-05-02",191626,226,99958],["2021-05-03",191626,920,100878],["2021-05-04",191626,846,101724],["2021-05-05",191626,1016,102740],["2021-05-06",191626,796,103536],["2021-05-07",191626,875,104411],["2021-05-08",191626,293,104704],["2021-05-09",191626,127,104831],["2021-05-10",191626,654,105485],["2021-05-11",191626,542,106027],["2021-05-12",191626,515,106542],["2021-05-13",191626,624,107166],["2021-05-14",191626,727,107893],["2021-05-15",191626,352,108245],["2021-05-16",191626,217,108462],["2021-05-17",191626,1049,109511],["2021-05-18",191626,832,110343],["2021-05-19",191626,634,110977],["2021-05-20",191626,660,111637],["2021-05-21",191626,837,112474],["2021-05-22",191626,294,112768],["2021-05-23",191626,222,112990],["2021-05-24",191626,376,113366],["2021-05-25",191626,375,113741],["2021-05-26",191626,453,114194],["2021-05-27",191626,360,114554],["2021-05-28",191626,399,114953],["2021-05-29",191626,262,115215],["2021-05-30",191626,165,115380],["2021-05-31",191626,74,115454],["2021-06-01",191626,489,115943],["2021-06-02",191626,547,116490],["2021-06-03",191626,398,116888],["2021-06-04",191626,454,117342],["2021-06-05",191626,314,117656],["2021-06-06",191626,191,117847],["2021-06-07",191626,353,118200],["2021-06-08",191626,572,118772],["2021-06-09",191626,329,119101],["2021-06-10",191626,390,119491],["2021-06-11",191626,410,119901],["2021-06-12",191626,302,120203],["2021-06-13",191626,152,120355],["2021-06-14",191626,349,120704],["2021-06-15",191626,363,121067],["2021-06-16",191626,365,121432],["2021-06-17",191626,308,121740],["2021-06-18",191626,359,122099],["2021-06-19",191626,172,122271],["2021-06-20",191626,121,122392],["2021-06-21",191626,211,122603],["2021-06-22",191626,272,122875],["2021-06-23",191626,239,123114],["2021-06-24",191626,417,123531],["2021-06-25",191626,311,123842],["2021-06-26",191626,185,124027],["2021-06-27",191626,144,124171],["2021-06-28",191626,265,124436],["2021-06-29",191626,287,124723],["2021-06-30",191626,220,124943],["2021-07-01",191626,253,125196],["2021-07-02",191626,260,125456],["2021-07-03",191626,151,125607],["2021-07-04",191626,13,125620],["2021-07-05",191626,175,125795],["2021-07-06",191626,240,126035],["2021-07-07",191626,262,126297],["2021-07-08",191626,218,126515],["2021-07-09",191626,303,126818],["2021-07-10",191626,165,126983],["2021-07-11",191626,95,127078],["2021-07-12",191626,203,127281],["2021-07-13",191626,227,127508],["2021-07-14",191626,244,127752],["2021-07-15",191626,256,128008],["2021-07-16",191626,317,128325],["2021-07-17",191626,173,128498],["2021-07-18",191626,108,128606],["2021-07-19",191626,282,128888],["2021-07-20",191626,272,129160],["2021-07-21",191626,324,129484],["2021-07-22",191626,383,129867],["2021-07-23",191626,393,130260],["2021-07-24",191626,293,130553],["2021-07-25",191626,143,130696],["2021-07-26",191626,340,131036],["2021-07-27",191626,332,131368],["2021-07-28",191626,400,131768],["2021-07-29",191626,404,132172],["2021-07-30",191626,437,132609],["2021-07-31",191626,265,132874],["2021-08-01",191626,200,133074],["2021-08-02",191626,372,133446],["2021-08-03",191626,437,133883],["2021-08-04",191626,488,134371],["2021-08-05",191626,420,134791],["2021-08-06",191626,496,135287],["2021-08-07",191626,288,135575],["2021-08-08",191626,233,135808],["2021-08-09",191626,386,136194],["2021-08-10",191626,414,136608],["2021-08-11",191626,457,137065],["2021-08-12",191626,520,137585],["2021-08-13",191626,533,138118],["2021-08-14",191626,355,138473],["2021-08-15",191626,260,138733],["2021-08-16",191626,423,139156],["2021-08-17",191626,427,139583],["2021-08-18",191626,449,140032],["2021-08-19",191626,447,140479],["2021-08-20",191626,534,141013],["2021-08-21",191626,374,141387],["2021-08-22",191626,243,141630],["2021-08-23",191626,418,142048],["2021-08-24",191626,471,142519],["2021-08-25",191626,493,143012],["2021-08-26",191626,484,143496],["2021-08-27",191626,611,144107],["2021-08-28",191626,333,144440],["2021-08-29",191626,279,144719],["2021-08-30",191626,487,145206],["2021-08-31",191626,411,145617],["2021-09-01",191626,457,146074],["2021-09-02",191626,474,146548],["2021-09-03",191626,575,147123],["2021-09-04",191626,297,147420],["2021-09-05",191626,223,147643],["2021-09-06",191626,75,147718],["2021-09-07",191626,400,148118],["2021-09-08",191626,385,148503],["2021-09-09",191626,421,148924],["2021-09-10",191626,490,149414],["2021-09-11",191626,298,149712],["2021-09-12",191626,187,149899],["2021-09-13",191626,331,150230],["2021-09-14",191626,338,150568],["2021-09-15",191626,320,150888],["2021-09-16",191626,355,151243],["2021-09-17",191626,423,151666],["2021-09-18",191626,253,151919],["2021-09-19",191626,154,152073],["2021-09-20",191626,266,152339],["2021-09-21",191626,317,152656],["2021-09-22",191626,273,152929],["2021-09-23",191626,271,153200],["2021-09-24",191626,368,153568],["2021-09-25",191626,222,153790],["2021-09-26",191626,147,153937],["2021-09-27",191626,337,154274],["2021-09-28",191626,339,154613],["2021-09-29",191626,418,155031],["2021-09-30",191626,347,155378],["2021-10-01",191626,496,155874],["2021-10-02",191626,207,156081],["2021-10-03",191626,114,156195],["2021-10-04",191626,306,156501],["2021-10-05",191626,285,156786],["2021-10-06",191626,283,157069],["2021-10-07",191626,313,157382],["2021-10-08",191626,356,157738],["2021-10-09",191626,144,157882],["2021-10-10",191626,119,158001],["2021-10-11",191626,253,158254],["2021-10-12",191626,297,158551],["2021-10-13",191626,282,158833],["2021-10-14",191626,237,159070],["2021-10-15",191626,334,159404],["2021-10-16",191626,160,159564],["2021-10-17",191626,89,159653],["2021-10-18",191626,290,159943],["2021-10-19",191626,254,160197],["2021-10-20",191626,225,160422],["2021-10-21",191626,254,160676],["2021-10-22",191626,515,161191],["2021-10-23",191626,425,161616],["2021-10-24",191626,276,161892],["2021-10-25",191626,727,162619],["2021-10-26",191626,476,163095],["2021-10-27",191626,729,163824],["2021-10-28",191626,573,164397],["2021-10-29",191626,618,165015],["2021-10-30",191626,324,165339],["2021-10-31",191626,187,165526],["2021-11-01",191626,514,166040],["2021-11-02",191626,494,166534],["2021-11-03",191626,526,167060],["2021-11-04",191626,477,167537],["2021-11-05",191626,688,168225],["2021-11-06",191626,291,168516],["2021-11-07",191626,179,168695],["2021-11-08",191626,454,169149],["2021-11-09",191626,491,169640],["2021-11-10",191626,548,170188],["2021-11-11",191626,484,170672],["2021-11-12",191626,777,171449],["2021-11-13",191626,371,171820],["2021-11-14",191626,153,171973],["2021-11-15",191626,545,172518],["2021-11-16",191626,484,173002],["2021-11-17",191626,482,173484],["2021-11-18",191626,490,173974],["2021-11-19",191626,612,174586],["2021-11-20",191626,391,174977],["2021-11-21",191626,254,175231],["2021-11-22",191626,625,175856],["2021-11-23",191626,517,176373],["2021-11-24",191626,325,176698],["2021-11-25",191626,3,176701],["2021-11-26",191626,422,177123],["2021-11-27",191626,308,177431],["2021-11-28",191626,211,177642],["2021-11-29",191626,607,178249],["2021-11-30",191626,722,178971],["2021-12-01",191626,730,179701],["2021-12-02",191626,738,180439],["2021-12-03",191626,925,181364],["2021-12-04",191626,441,181805],["2021-12-05",191626,254,182059],["2021-12-06",191626,558,182617],["2021-12-07",191626,621,183238],["2021-12-08",191626,513,183751],["2021-12-09",191626,495,184246],["2021-12-10",191626,748,184994],["2021-12-11",191626,378,185372],["2021-12-12",191626,191,185563],["2021-12-13",191626,427,185990],["2021-12-14",191626,386,186376],["2021-12-15",191626,432,186808],["2021-12-16",191626,369,187177],["2021-12-17",191626,571,187748],["2021-12-18",191626,303,188051],["2021-12-19",191626,251,188302],["2021-12-20",191626,548,188850],["2021-12-21",191626,601,189451],["2021-12-22",191626,558,190009],["2021-12-23",191626,417,190426],["2021-12-24",191626,158,190584],["2021-12-26",191626,181,190765],["2021-12-27",191626,557,191322],["2021-12-28",191626,584,191906],["2021-12-29",191626,563,192469],["2021-12-30",191626,469,192938],["2021-12-31",191626,282,193220],["2022-01-01",191626,56,193276],["2022-01-02",191626,147,193423],["2022-01-03",191626,155,193578]]} \ No newline at end of file diff --git a/public/data/overall/vaccinations/by-county/Newton.json b/public/data/overall/vaccinations/by-county/Newton.json new file mode 100644 index 000000000..af64b97fb --- /dev/null +++ b/public/data/overall/vaccinations/by-county/Newton.json @@ -0,0 +1 @@ +{"segment":{"county":"Newton"},"headers":["report_date","population","vaccinations","total_vaccinations"],"rows":[["2020-12-16",112354,1,1],["2020-12-17",112354,30,31],["2020-12-18",112354,34,65],["2020-12-19",112354,13,78],["2020-12-20",112354,2,80],["2020-12-21",112354,27,107],["2020-12-22",112354,38,145],["2020-12-23",112354,62,207],["2020-12-24",112354,20,227],["2020-12-25",112354,3,230],["2020-12-26",112354,9,239],["2020-12-27",112354,8,247],["2020-12-28",112354,96,343],["2020-12-29",112354,138,481],["2020-12-30",112354,93,574],["2020-12-31",112354,63,637],["2021-01-01",112354,8,645],["2021-01-02",112354,41,686],["2021-01-03",112354,76,762],["2021-01-04",112354,164,926],["2021-01-05",112354,137,1063],["2021-01-06",112354,160,1223],["2021-01-07",112354,173,1396],["2021-01-08",112354,136,1532],["2021-01-09",112354,47,1579],["2021-01-10",112354,25,1604],["2021-01-11",112354,147,1751],["2021-01-12",112354,253,2004],["2021-01-13",112354,331,2335],["2021-01-14",112354,350,2685],["2021-01-15",112354,383,3068],["2021-01-16",112354,333,3401],["2021-01-17",112354,57,3458],["2021-01-18",112354,317,3775],["2021-01-19",112354,398,4173],["2021-01-20",112354,274,4447],["2021-01-21",112354,281,4728],["2021-01-22",112354,204,4932],["2021-01-23",112354,120,5052],["2021-01-24",112354,111,5163],["2021-01-25",112354,231,5394],["2021-01-26",112354,314,5708],["2021-01-27",112354,251,5959],["2021-01-28",112354,299,6258],["2021-01-29",112354,237,6495],["2021-01-30",112354,177,6672],["2021-01-31",112354,19,6691],["2021-02-01",112354,264,6955],["2021-02-02",112354,248,7203],["2021-02-03",112354,265,7468],["2021-02-04",112354,320,7788],["2021-02-05",112354,290,8078],["2021-02-06",112354,226,8304],["2021-02-07",112354,38,8342],["2021-02-08",112354,219,8561],["2021-02-09",112354,298,8859],["2021-02-10",112354,479,9338],["2021-02-11",112354,425,9763],["2021-02-12",112354,448,10211],["2021-02-13",112354,302,10513],["2021-02-14",112354,56,10569],["2021-02-15",112354,415,10984],["2021-02-16",112354,454,11438],["2021-02-17",112354,437,11875],["2021-02-18",112354,367,12242],["2021-02-19",112354,319,12561],["2021-02-20",112354,175,12736],["2021-02-21",112354,48,12784],["2021-02-22",112354,280,13064],["2021-02-23",112354,306,13370],["2021-02-24",112354,332,13702],["2021-02-25",112354,377,14079],["2021-02-26",112354,389,14468],["2021-02-27",112354,123,14591],["2021-02-28",112354,71,14662],["2021-03-01",112354,326,14988],["2021-03-02",112354,421,15409],["2021-03-03",112354,441,15850],["2021-03-04",112354,519,16369],["2021-03-05",112354,491,16860],["2021-03-06",112354,217,17077],["2021-03-07",112354,78,17155],["2021-03-08",112354,443,17598],["2021-03-09",112354,516,18114],["2021-03-10",112354,533,18647],["2021-03-11",112354,607,19254],["2021-03-12",112354,730,19984],["2021-03-13",112354,195,20179],["2021-03-14",112354,131,20310],["2021-03-15",112354,621,20931],["2021-03-16",112354,801,21732],["2021-03-17",112354,808,22540],["2021-03-18",112354,583,23123],["2021-03-19",112354,735,23858],["2021-03-20",112354,305,24163],["2021-03-21",112354,169,24332],["2021-03-22",112354,559,24891],["2021-03-23",112354,683,25574],["2021-03-24",112354,884,26458],["2021-03-25",112354,812,27270],["2021-03-26",112354,805,28075],["2021-03-27",112354,327,28402],["2021-03-28",112354,190,28592],["2021-03-29",112354,708,29300],["2021-03-30",112354,985,30285],["2021-03-31",112354,960,31245],["2021-04-01",112354,994,32239],["2021-04-02",112354,841,33080],["2021-04-03",112354,484,33564],["2021-04-04",112354,167,33731],["2021-04-05",112354,839,34570],["2021-04-06",112354,1035,35605],["2021-04-07",112354,879,36484],["2021-04-08",112354,876,37360],["2021-04-09",112354,966,38326],["2021-04-10",112354,404,38730],["2021-04-11",112354,223,38953],["2021-04-12",112354,721,39674],["2021-04-13",112354,812,40486],["2021-04-14",112354,1008,41494],["2021-04-15",112354,898,42392],["2021-04-16",112354,1005,43397],["2021-04-17",112354,320,43717],["2021-04-18",112354,292,44009],["2021-04-19",112354,720,44729],["2021-04-20",112354,859,45588],["2021-04-21",112354,967,46555],["2021-04-22",112354,904,47459],["2021-04-23",112354,888,48347],["2021-04-24",112354,437,48784],["2021-04-25",112354,237,49021],["2021-04-26",112354,701,49722],["2021-04-27",112354,780,50502],["2021-04-28",112354,862,51364],["2021-04-29",112354,714,52078],["2021-04-30",112354,787,52865],["2021-05-01",112354,462,53327],["2021-05-02",112354,148,53475],["2021-05-03",112354,498,53973],["2021-05-04",112354,535,54508],["2021-05-05",112354,530,55038],["2021-05-06",112354,727,55765],["2021-05-07",112354,668,56433],["2021-05-08",112354,242,56675],["2021-05-09",112354,106,56781],["2021-05-10",112354,415,57196],["2021-05-11",112354,421,57617],["2021-05-12",112354,437,58054],["2021-05-13",112354,501,58555],["2021-05-14",112354,464,59019],["2021-05-15",112354,403,59422],["2021-05-16",112354,193,59615],["2021-05-17",112354,437,60052],["2021-05-18",112354,468,60520],["2021-05-19",112354,479,60999],["2021-05-20",112354,389,61388],["2021-05-21",112354,427,61815],["2021-05-22",112354,239,62054],["2021-05-23",112354,157,62211],["2021-05-24",112354,241,62452],["2021-05-25",112354,265,62717],["2021-05-26",112354,347,63064],["2021-05-27",112354,343,63407],["2021-05-28",112354,289,63696],["2021-05-29",112354,215,63911],["2021-05-30",112354,81,63992],["2021-05-31",112354,40,64032],["2021-06-01",112354,300,64332],["2021-06-02",112354,300,64632],["2021-06-03",112354,328,64960],["2021-06-04",112354,341,65301],["2021-06-05",112354,253,65554],["2021-06-06",112354,135,65689],["2021-06-07",112354,288,65977],["2021-06-08",112354,297,66274],["2021-06-09",112354,273,66547],["2021-06-10",112354,268,66815],["2021-06-11",112354,334,67149],["2021-06-12",112354,209,67358],["2021-06-13",112354,104,67462],["2021-06-14",112354,202,67664],["2021-06-15",112354,234,67898],["2021-06-16",112354,225,68123],["2021-06-17",112354,210,68333],["2021-06-18",112354,245,68578],["2021-06-19",112354,138,68716],["2021-06-20",112354,69,68785],["2021-06-21",112354,164,68949],["2021-06-22",112354,179,69128],["2021-06-23",112354,202,69330],["2021-06-24",112354,177,69507],["2021-06-25",112354,229,69736],["2021-06-26",112354,164,69900],["2021-06-27",112354,58,69958],["2021-06-28",112354,149,70107],["2021-06-29",112354,178,70285],["2021-06-30",112354,154,70439],["2021-07-01",112354,143,70582],["2021-07-02",112354,178,70760],["2021-07-03",112354,118,70878],["2021-07-04",112354,12,70890],["2021-07-05",112354,127,71017],["2021-07-06",112354,181,71198],["2021-07-07",112354,188,71386],["2021-07-08",112354,158,71544],["2021-07-09",112354,176,71720],["2021-07-10",112354,130,71850],["2021-07-11",112354,82,71932],["2021-07-12",112354,159,72091],["2021-07-13",112354,153,72244],["2021-07-14",112354,218,72462],["2021-07-15",112354,163,72625],["2021-07-16",112354,192,72817],["2021-07-17",112354,125,72942],["2021-07-18",112354,47,72989],["2021-07-19",112354,182,73171],["2021-07-20",112354,172,73343],["2021-07-21",112354,186,73529],["2021-07-22",112354,209,73738],["2021-07-23",112354,253,73991],["2021-07-24",112354,177,74168],["2021-07-25",112354,66,74234],["2021-07-26",112354,182,74416],["2021-07-27",112354,303,74719],["2021-07-28",112354,232,74951],["2021-07-29",112354,223,75174],["2021-07-30",112354,287,75461],["2021-07-31",112354,224,75685],["2021-08-01",112354,123,75808],["2021-08-02",112354,248,76056],["2021-08-03",112354,258,76314],["2021-08-04",112354,245,76559],["2021-08-05",112354,272,76831],["2021-08-06",112354,347,77178],["2021-08-07",112354,256,77434],["2021-08-08",112354,156,77590],["2021-08-09",112354,288,77878],["2021-08-10",112354,295,78173],["2021-08-11",112354,300,78473],["2021-08-12",112354,280,78753],["2021-08-13",112354,331,79084],["2021-08-14",112354,254,79338],["2021-08-15",112354,128,79466],["2021-08-16",112354,226,79692],["2021-08-17",112354,278,79970],["2021-08-18",112354,275,80245],["2021-08-19",112354,259,80504],["2021-08-20",112354,328,80832],["2021-08-21",112354,234,81066],["2021-08-22",112354,144,81210],["2021-08-23",112354,271,81481],["2021-08-24",112354,265,81746],["2021-08-25",112354,281,82027],["2021-08-26",112354,307,82334],["2021-08-27",112354,359,82693],["2021-08-28",112354,324,83017],["2021-08-29",112354,175,83192],["2021-08-30",112354,319,83511],["2021-08-31",112354,324,83835],["2021-09-01",112354,318,84153],["2021-09-02",112354,316,84469],["2021-09-03",112354,366,84835],["2021-09-04",112354,236,85071],["2021-09-05",112354,163,85234],["2021-09-06",112354,58,85292],["2021-09-07",112354,309,85601],["2021-09-08",112354,289,85890],["2021-09-09",112354,239,86129],["2021-09-10",112354,385,86514],["2021-09-11",112354,190,86704],["2021-09-12",112354,132,86836],["2021-09-13",112354,239,87075],["2021-09-14",112354,224,87299],["2021-09-15",112354,231,87530],["2021-09-16",112354,193,87723],["2021-09-17",112354,277,88000],["2021-09-18",112354,150,88150],["2021-09-19",112354,104,88254],["2021-09-20",112354,189,88443],["2021-09-21",112354,217,88660],["2021-09-22",112354,188,88848],["2021-09-23",112354,219,89067],["2021-09-24",112354,256,89323],["2021-09-25",112354,158,89481],["2021-09-26",112354,86,89567],["2021-09-27",112354,232,89799],["2021-09-28",112354,232,90031],["2021-09-29",112354,232,90263],["2021-09-30",112354,246,90509],["2021-10-01",112354,292,90801],["2021-10-02",112354,172,90973],["2021-10-03",112354,90,91063],["2021-10-04",112354,211,91274],["2021-10-05",112354,182,91456],["2021-10-06",112354,186,91642],["2021-10-07",112354,176,91818],["2021-10-08",112354,195,92013],["2021-10-09",112354,119,92132],["2021-10-10",112354,91,92223],["2021-10-11",112354,157,92380],["2021-10-12",112354,169,92549],["2021-10-13",112354,194,92743],["2021-10-14",112354,160,92903],["2021-10-15",112354,179,93082],["2021-10-16",112354,124,93206],["2021-10-17",112354,61,93267],["2021-10-18",112354,160,93427],["2021-10-19",112354,137,93564],["2021-10-20",112354,184,93748],["2021-10-21",112354,162,93910],["2021-10-22",112354,222,94132],["2021-10-23",112354,230,94362],["2021-10-24",112354,114,94476],["2021-10-25",112354,329,94805],["2021-10-26",112354,298,95103],["2021-10-27",112354,301,95404],["2021-10-28",112354,262,95666],["2021-10-29",112354,331,95997],["2021-10-30",112354,136,96133],["2021-10-31",112354,88,96221],["2021-11-01",112354,290,96511],["2021-11-02",112354,256,96767],["2021-11-03",112354,299,97066],["2021-11-04",112354,258,97324],["2021-11-05",112354,331,97655],["2021-11-06",112354,153,97808],["2021-11-07",112354,87,97895],["2021-11-08",112354,234,98129],["2021-11-09",112354,292,98421],["2021-11-10",112354,260,98681],["2021-11-11",112354,238,98919],["2021-11-12",112354,341,99260],["2021-11-13",112354,184,99444],["2021-11-14",112354,97,99541],["2021-11-15",112354,245,99786],["2021-11-16",112354,268,100054],["2021-11-17",112354,258,100312],["2021-11-18",112354,241,100553],["2021-11-19",112354,317,100870],["2021-11-20",112354,193,101063],["2021-11-21",112354,133,101196],["2021-11-22",112354,348,101544],["2021-11-23",112354,320,101864],["2021-11-24",112354,212,102076],["2021-11-26",112354,238,102314],["2021-11-27",112354,144,102458],["2021-11-28",112354,124,102582],["2021-11-29",112354,319,102901],["2021-11-30",112354,344,103245],["2021-12-01",112354,422,103667],["2021-12-02",112354,386,104053],["2021-12-03",112354,426,104479],["2021-12-04",112354,268,104747],["2021-12-05",112354,137,104884],["2021-12-06",112354,306,105190],["2021-12-07",112354,266,105456],["2021-12-08",112354,298,105754],["2021-12-09",112354,332,106086],["2021-12-10",112354,337,106423],["2021-12-11",112354,196,106619],["2021-12-12",112354,120,106739],["2021-12-13",112354,234,106973],["2021-12-14",112354,314,107287],["2021-12-15",112354,263,107550],["2021-12-16",112354,266,107816],["2021-12-17",112354,340,108156],["2021-12-18",112354,189,108345],["2021-12-19",112354,121,108466],["2021-12-20",112354,348,108814],["2021-12-21",112354,356,109170],["2021-12-22",112354,342,109512],["2021-12-23",112354,245,109757],["2021-12-24",112354,110,109867],["2021-12-25",112354,1,109868],["2021-12-26",112354,98,109966],["2021-12-27",112354,265,110231],["2021-12-28",112354,320,110551],["2021-12-29",112354,322,110873],["2021-12-30",112354,256,111129],["2021-12-31",112354,146,111275],["2022-01-01",112354,35,111310],["2022-01-02",112354,98,111408],["2022-01-03",112354,82,111490]]} \ No newline at end of file diff --git a/public/data/overall/vaccinations/by-county/Oconee.json b/public/data/overall/vaccinations/by-county/Oconee.json new file mode 100644 index 000000000..04c545746 --- /dev/null +++ b/public/data/overall/vaccinations/by-county/Oconee.json @@ -0,0 +1 @@ +{"segment":{"county":"Oconee"},"headers":["report_date","population","vaccinations","total_vaccinations"],"rows":[["2020-12-15",41737,1,1],["2020-12-17",41737,5,6],["2020-12-18",41737,37,43],["2020-12-19",41737,19,62],["2020-12-20",41737,2,64],["2020-12-21",41737,62,126],["2020-12-22",41737,123,249],["2020-12-23",41737,149,398],["2020-12-24",41737,38,436],["2020-12-26",41737,31,467],["2020-12-27",41737,10,477],["2020-12-28",41737,156,633],["2020-12-29",41737,196,829],["2020-12-30",41737,84,913],["2020-12-31",41737,50,963],["2021-01-01",41737,10,973],["2021-01-02",41737,32,1005],["2021-01-03",41737,8,1013],["2021-01-04",41737,121,1134],["2021-01-05",41737,93,1227],["2021-01-06",41737,167,1394],["2021-01-07",41737,94,1488],["2021-01-08",41737,177,1665],["2021-01-09",41737,24,1689],["2021-01-10",41737,13,1702],["2021-01-11",41737,246,1948],["2021-01-12",41737,236,2184],["2021-01-13",41737,207,2391],["2021-01-14",41737,263,2654],["2021-01-15",41737,305,2959],["2021-01-16",41737,253,3212],["2021-01-17",41737,38,3250],["2021-01-18",41737,196,3446],["2021-01-19",41737,243,3689],["2021-01-20",41737,200,3889],["2021-01-21",41737,320,4209],["2021-01-22",41737,212,4421],["2021-01-23",41737,223,4644],["2021-01-24",41737,20,4664],["2021-01-25",41737,209,4873],["2021-01-26",41737,228,5101],["2021-01-27",41737,311,5412],["2021-01-28",41737,495,5907],["2021-01-29",41737,327,6234],["2021-01-30",41737,80,6314],["2021-01-31",41737,13,6327],["2021-02-01",41737,228,6555],["2021-02-02",41737,159,6714],["2021-02-03",41737,201,6915],["2021-02-04",41737,298,7213],["2021-02-05",41737,162,7375],["2021-02-06",41737,175,7550],["2021-02-07",41737,28,7578],["2021-02-08",41737,135,7713],["2021-02-09",41737,210,7923],["2021-02-10",41737,202,8125],["2021-02-11",41737,349,8474],["2021-02-12",41737,210,8684],["2021-02-13",41737,280,8964],["2021-02-14",41737,46,9010],["2021-02-15",41737,217,9227],["2021-02-16",41737,242,9469],["2021-02-17",41737,284,9753],["2021-02-18",41737,441,10194],["2021-02-19",41737,272,10466],["2021-02-20",41737,115,10581],["2021-02-21",41737,18,10599],["2021-02-22",41737,159,10758],["2021-02-23",41737,166,10924],["2021-02-24",41737,165,11089],["2021-02-25",41737,393,11482],["2021-02-26",41737,236,11718],["2021-02-27",41737,66,11784],["2021-02-28",41737,55,11839],["2021-03-01",41737,189,12028],["2021-03-02",41737,202,12230],["2021-03-03",41737,216,12446],["2021-03-04",41737,317,12763],["2021-03-05",41737,172,12935],["2021-03-06",41737,66,13001],["2021-03-07",41737,48,13049],["2021-03-08",41737,816,13865],["2021-03-09",41737,362,14227],["2021-03-10",41737,424,14651],["2021-03-11",41737,448,15099],["2021-03-12",41737,236,15335],["2021-03-13",41737,335,15670],["2021-03-14",41737,67,15737],["2021-03-15",41737,367,16104],["2021-03-16",41737,344,16448],["2021-03-17",41737,533,16981],["2021-03-18",41737,564,17545],["2021-03-19",41737,315,17860],["2021-03-20",41737,85,17945],["2021-03-21",41737,78,18023],["2021-03-22",41737,384,18407],["2021-03-23",41737,396,18803],["2021-03-24",41737,528,19331],["2021-03-25",41737,645,19976],["2021-03-26",41737,380,20356],["2021-03-27",41737,95,20451],["2021-03-28",41737,90,20541],["2021-03-29",41737,577,21118],["2021-03-30",41737,581,21699],["2021-03-31",41737,766,22465],["2021-04-01",41737,635,23100],["2021-04-02",41737,754,23854],["2021-04-03",41737,303,24157],["2021-04-04",41737,53,24210],["2021-04-05",41737,437,24647],["2021-04-06",41737,508,25155],["2021-04-07",41737,525,25680],["2021-04-08",41737,500,26180],["2021-04-09",41737,345,26525],["2021-04-10",41737,132,26657],["2021-04-11",41737,89,26746],["2021-04-12",41737,474,27220],["2021-04-13",41737,407,27627],["2021-04-14",41737,575,28202],["2021-04-15",41737,534,28736],["2021-04-16",41737,419,29155],["2021-04-17",41737,440,29595],["2021-04-18",41737,55,29650],["2021-04-19",41737,387,30037],["2021-04-20",41737,464,30501],["2021-04-21",41737,469,30970],["2021-04-22",41737,488,31458],["2021-04-23",41737,431,31889],["2021-04-24",41737,82,31971],["2021-04-25",41737,39,32010],["2021-04-26",41737,316,32326],["2021-04-27",41737,350,32676],["2021-04-28",41737,283,32959],["2021-04-29",41737,287,33246],["2021-04-30",41737,296,33542],["2021-05-01",41737,74,33616],["2021-05-02",41737,39,33655],["2021-05-03",41737,167,33822],["2021-05-04",41737,222,34044],["2021-05-05",41737,211,34255],["2021-05-06",41737,213,34468],["2021-05-07",41737,166,34634],["2021-05-08",41737,372,35006],["2021-05-09",41737,27,35033],["2021-05-10",41737,111,35144],["2021-05-11",41737,143,35287],["2021-05-12",41737,177,35464],["2021-05-13",41737,231,35695],["2021-05-14",41737,201,35896],["2021-05-15",41737,87,35983],["2021-05-16",41737,55,36038],["2021-05-17",41737,152,36190],["2021-05-18",41737,134,36324],["2021-05-19",41737,143,36467],["2021-05-20",41737,123,36590],["2021-05-21",41737,127,36717],["2021-05-22",41737,57,36774],["2021-05-23",41737,39,36813],["2021-05-24",41737,106,36919],["2021-05-25",41737,103,37022],["2021-05-26",41737,97,37119],["2021-05-27",41737,88,37207],["2021-05-28",41737,81,37288],["2021-05-29",41737,39,37327],["2021-05-30",41737,36,37363],["2021-05-31",41737,7,37370],["2021-06-01",41737,110,37480],["2021-06-02",41737,109,37589],["2021-06-03",41737,154,37743],["2021-06-04",41737,143,37886],["2021-06-05",41737,87,37973],["2021-06-06",41737,57,38030],["2021-06-07",41737,117,38147],["2021-06-08",41737,102,38249],["2021-06-09",41737,94,38343],["2021-06-10",41737,78,38421],["2021-06-11",41737,110,38531],["2021-06-12",41737,50,38581],["2021-06-13",41737,13,38594],["2021-06-14",41737,77,38671],["2021-06-15",41737,66,38737],["2021-06-16",41737,59,38796],["2021-06-17",41737,43,38839],["2021-06-18",41737,60,38899],["2021-06-19",41737,47,38946],["2021-06-20",41737,22,38968],["2021-06-21",41737,32,39000],["2021-06-22",41737,69,39069],["2021-06-23",41737,52,39121],["2021-06-24",41737,57,39178],["2021-06-25",41737,63,39241],["2021-06-26",41737,49,39290],["2021-06-27",41737,22,39312],["2021-06-28",41737,53,39365],["2021-06-29",41737,32,39397],["2021-06-30",41737,41,39438],["2021-07-01",41737,41,39479],["2021-07-02",41737,39,39518],["2021-07-03",41737,31,39549],["2021-07-04",41737,2,39551],["2021-07-05",41737,36,39587],["2021-07-06",41737,36,39623],["2021-07-07",41737,44,39667],["2021-07-08",41737,43,39710],["2021-07-09",41737,33,39743],["2021-07-10",41737,28,39771],["2021-07-11",41737,14,39785],["2021-07-12",41737,39,39824],["2021-07-13",41737,41,39865],["2021-07-14",41737,38,39903],["2021-07-15",41737,31,39934],["2021-07-16",41737,51,39985],["2021-07-17",41737,29,40014],["2021-07-18",41737,23,40037],["2021-07-19",41737,56,40093],["2021-07-20",41737,49,40142],["2021-07-21",41737,47,40189],["2021-07-22",41737,48,40237],["2021-07-23",41737,63,40300],["2021-07-24",41737,43,40343],["2021-07-25",41737,34,40377],["2021-07-26",41737,70,40447],["2021-07-27",41737,61,40508],["2021-07-28",41737,68,40576],["2021-07-29",41737,74,40650],["2021-07-30",41737,82,40732],["2021-07-31",41737,39,40771],["2021-08-01",41737,33,40804],["2021-08-02",41737,82,40886],["2021-08-03",41737,81,40967],["2021-08-04",41737,60,41027],["2021-08-05",41737,75,41102],["2021-08-06",41737,97,41199],["2021-08-07",41737,61,41260],["2021-08-08",41737,49,41309],["2021-08-09",41737,101,41410],["2021-08-10",41737,97,41507],["2021-08-11",41737,69,41576],["2021-08-12",41737,72,41648],["2021-08-13",41737,99,41747],["2021-08-14",41737,77,41824],["2021-08-15",41737,68,41892],["2021-08-16",41737,119,42011],["2021-08-17",41737,102,42113],["2021-08-18",41737,83,42196],["2021-08-19",41737,113,42309],["2021-08-20",41737,135,42444],["2021-08-21",41737,71,42515],["2021-08-22",41737,49,42564],["2021-08-23",41737,113,42677],["2021-08-24",41737,124,42801],["2021-08-25",41737,122,42923],["2021-08-26",41737,139,43062],["2021-08-27",41737,156,43218],["2021-08-28",41737,83,43301],["2021-08-29",41737,49,43350],["2021-08-30",41737,112,43462],["2021-08-31",41737,123,43585],["2021-09-01",41737,100,43685],["2021-09-02",41737,95,43780],["2021-09-03",41737,136,43916],["2021-09-04",41737,58,43974],["2021-09-05",41737,37,44011],["2021-09-06",41737,11,44022],["2021-09-07",41737,119,44141],["2021-09-08",41737,93,44234],["2021-09-09",41737,101,44335],["2021-09-10",41737,106,44441],["2021-09-11",41737,44,44485],["2021-09-12",41737,38,44523],["2021-09-13",41737,107,44630],["2021-09-14",41737,113,44743],["2021-09-15",41737,77,44820],["2021-09-16",41737,81,44901],["2021-09-17",41737,82,44983],["2021-09-18",41737,41,45024],["2021-09-19",41737,27,45051],["2021-09-20",41737,75,45126],["2021-09-21",41737,61,45187],["2021-09-22",41737,64,45251],["2021-09-23",41737,79,45330],["2021-09-24",41737,118,45448],["2021-09-25",41737,91,45539],["2021-09-26",41737,69,45608],["2021-09-27",41737,159,45767],["2021-09-28",41737,160,45927],["2021-09-29",41737,138,46065],["2021-09-30",41737,131,46196],["2021-10-01",41737,159,46355],["2021-10-02",41737,43,46398],["2021-10-03",41737,32,46430],["2021-10-04",41737,147,46577],["2021-10-05",41737,128,46705],["2021-10-06",41737,92,46797],["2021-10-07",41737,121,46918],["2021-10-08",41737,164,47082],["2021-10-09",41737,47,47129],["2021-10-10",41737,23,47152],["2021-10-11",41737,88,47240],["2021-10-12",41737,91,47331],["2021-10-13",41737,64,47395],["2021-10-14",41737,102,47497],["2021-10-15",41737,115,47612],["2021-10-16",41737,29,47641],["2021-10-17",41737,16,47657],["2021-10-18",41737,96,47753],["2021-10-19",41737,91,47844],["2021-10-20",41737,60,47904],["2021-10-21",41737,97,48001],["2021-10-22",41737,168,48169],["2021-10-23",41737,85,48254],["2021-10-24",41737,53,48307],["2021-10-25",41737,161,48468],["2021-10-26",41737,109,48577],["2021-10-27",41737,183,48760],["2021-10-28",41737,135,48895],["2021-10-29",41737,195,49090],["2021-10-30",41737,64,49154],["2021-10-31",41737,32,49186],["2021-11-01",41737,169,49355],["2021-11-02",41737,144,49499],["2021-11-03",41737,163,49662],["2021-11-04",41737,145,49807],["2021-11-05",41737,219,50026],["2021-11-06",41737,104,50130],["2021-11-07",41737,59,50189],["2021-11-08",41737,175,50364],["2021-11-09",41737,172,50536],["2021-11-10",41737,220,50756],["2021-11-11",41737,123,50879],["2021-11-12",41737,232,51111],["2021-11-13",41737,151,51262],["2021-11-14",41737,53,51315],["2021-11-15",41737,141,51456],["2021-11-16",41737,135,51591],["2021-11-17",41737,113,51704],["2021-11-18",41737,131,51835],["2021-11-19",41737,197,52032],["2021-11-20",41737,97,52129],["2021-11-21",41737,67,52196],["2021-11-22",41737,190,52386],["2021-11-23",41737,139,52525],["2021-11-24",41737,72,52597],["2021-11-25",41737,1,52598],["2021-11-26",41737,121,52719],["2021-11-27",41737,105,52824],["2021-11-28",41737,82,52906],["2021-11-29",41737,185,53091],["2021-11-30",41737,201,53292],["2021-12-01",41737,194,53486],["2021-12-02",41737,178,53664],["2021-12-03",41737,287,53951],["2021-12-04",41737,127,54078],["2021-12-05",41737,66,54144],["2021-12-06",41737,205,54349],["2021-12-07",41737,142,54491],["2021-12-08",41737,123,54614],["2021-12-09",41737,133,54747],["2021-12-10",41737,214,54961],["2021-12-11",41737,102,55063],["2021-12-12",41737,60,55123],["2021-12-13",41737,115,55238],["2021-12-14",41737,137,55375],["2021-12-15",41737,124,55499],["2021-12-16",41737,145,55644],["2021-12-17",41737,202,55846],["2021-12-18",41737,108,55954],["2021-12-19",41737,85,56039],["2021-12-20",41737,202,56241],["2021-12-21",41737,211,56452],["2021-12-22",41737,165,56617],["2021-12-23",41737,136,56753],["2021-12-24",41737,45,56798],["2021-12-26",41737,64,56862],["2021-12-27",41737,156,57018],["2021-12-28",41737,148,57166],["2021-12-29",41737,136,57302],["2021-12-30",41737,104,57406],["2021-12-31",41737,78,57484],["2022-01-01",41737,20,57504],["2022-01-02",41737,66,57570],["2022-01-03",41737,34,57604]]} \ No newline at end of file diff --git a/public/data/overall/vaccinations/by-county/Oglethorpe.json b/public/data/overall/vaccinations/by-county/Oglethorpe.json new file mode 100644 index 000000000..a98e21bca --- /dev/null +++ b/public/data/overall/vaccinations/by-county/Oglethorpe.json @@ -0,0 +1 @@ +{"segment":{"county":"Oglethorpe"},"headers":["report_date","population","vaccinations","total_vaccinations"],"rows":[["2020-12-17",15240,1,1],["2020-12-18",15240,8,9],["2020-12-19",15240,6,15],["2020-12-21",15240,4,19],["2020-12-22",15240,6,25],["2020-12-23",15240,13,38],["2020-12-24",15240,7,45],["2020-12-26",15240,3,48],["2020-12-27",15240,3,51],["2020-12-28",15240,28,79],["2020-12-29",15240,22,101],["2020-12-30",15240,23,124],["2020-12-31",15240,12,136],["2021-01-01",15240,1,137],["2021-01-02",15240,6,143],["2021-01-03",15240,3,146],["2021-01-04",15240,23,169],["2021-01-05",15240,14,183],["2021-01-06",15240,28,211],["2021-01-07",15240,10,221],["2021-01-08",15240,24,245],["2021-01-09",15240,8,253],["2021-01-10",15240,2,255],["2021-01-11",15240,30,285],["2021-01-12",15240,69,354],["2021-01-13",15240,48,402],["2021-01-14",15240,38,440],["2021-01-15",15240,66,506],["2021-01-16",15240,27,533],["2021-01-17",15240,3,536],["2021-01-18",15240,55,591],["2021-01-19",15240,51,642],["2021-01-20",15240,59,701],["2021-01-21",15240,109,810],["2021-01-22",15240,68,878],["2021-01-23",15240,50,928],["2021-01-24",15240,7,935],["2021-01-25",15240,57,992],["2021-01-26",15240,37,1029],["2021-01-27",15240,38,1067],["2021-01-28",15240,130,1197],["2021-01-29",15240,48,1245],["2021-01-30",15240,9,1254],["2021-01-31",15240,3,1257],["2021-02-01",15240,45,1302],["2021-02-02",15240,102,1404],["2021-02-03",15240,50,1454],["2021-02-04",15240,131,1585],["2021-02-05",15240,52,1637],["2021-02-06",15240,23,1660],["2021-02-07",15240,8,1668],["2021-02-08",15240,20,1688],["2021-02-09",15240,53,1741],["2021-02-10",15240,75,1816],["2021-02-11",15240,134,1950],["2021-02-12",15240,41,1991],["2021-02-13",15240,43,2034],["2021-02-14",15240,6,2040],["2021-02-15",15240,39,2079],["2021-02-16",15240,51,2130],["2021-02-17",15240,55,2185],["2021-02-18",15240,129,2314],["2021-02-19",15240,77,2391],["2021-02-20",15240,20,2411],["2021-02-21",15240,3,2414],["2021-02-22",15240,70,2484],["2021-02-23",15240,46,2530],["2021-02-24",15240,62,2592],["2021-02-25",15240,145,2737],["2021-02-26",15240,58,2795],["2021-02-27",15240,14,2809],["2021-02-28",15240,8,2817],["2021-03-01",15240,62,2879],["2021-03-02",15240,61,2940],["2021-03-03",15240,64,3004],["2021-03-04",15240,135,3139],["2021-03-05",15240,45,3184],["2021-03-06",15240,15,3199],["2021-03-07",15240,15,3214],["2021-03-08",15240,64,3278],["2021-03-09",15240,74,3352],["2021-03-10",15240,322,3674],["2021-03-11",15240,158,3832],["2021-03-12",15240,232,4064],["2021-03-13",15240,42,4106],["2021-03-14",15240,4,4110],["2021-03-15",15240,54,4164],["2021-03-16",15240,63,4227],["2021-03-17",15240,309,4536],["2021-03-18",15240,141,4677],["2021-03-19",15240,64,4741],["2021-03-20",15240,14,4755],["2021-03-21",15240,10,4765],["2021-03-22",15240,100,4865],["2021-03-23",15240,66,4931],["2021-03-24",15240,195,5126],["2021-03-25",15240,144,5270],["2021-03-26",15240,97,5367],["2021-03-27",15240,8,5375],["2021-03-28",15240,14,5389],["2021-03-29",15240,88,5477],["2021-03-30",15240,81,5558],["2021-03-31",15240,507,6065],["2021-04-01",15240,125,6190],["2021-04-02",15240,88,6278],["2021-04-03",15240,52,6330],["2021-04-04",15240,14,6344],["2021-04-05",15240,83,6427],["2021-04-06",15240,88,6515],["2021-04-07",15240,303,6818],["2021-04-08",15240,114,6932],["2021-04-09",15240,144,7076],["2021-04-10",15240,24,7100],["2021-04-11",15240,10,7110],["2021-04-12",15240,63,7173],["2021-04-13",15240,90,7263],["2021-04-14",15240,239,7502],["2021-04-15",15240,139,7641],["2021-04-16",15240,177,7818],["2021-04-17",15240,27,7845],["2021-04-18",15240,3,7848],["2021-04-19",15240,72,7920],["2021-04-20",15240,63,7983],["2021-04-21",15240,243,8226],["2021-04-22",15240,144,8370],["2021-04-23",15240,107,8477],["2021-04-24",15240,27,8504],["2021-04-25",15240,12,8516],["2021-04-26",15240,44,8560],["2021-04-27",15240,78,8638],["2021-04-28",15240,73,8711],["2021-04-29",15240,84,8795],["2021-04-30",15240,73,8868],["2021-05-01",15240,18,8886],["2021-05-02",15240,3,8889],["2021-05-03",15240,31,8920],["2021-05-04",15240,57,8977],["2021-05-05",15240,49,9026],["2021-05-06",15240,69,9095],["2021-05-07",15240,69,9164],["2021-05-08",15240,32,9196],["2021-05-09",15240,3,9199],["2021-05-10",15240,38,9237],["2021-05-11",15240,31,9268],["2021-05-12",15240,42,9310],["2021-05-13",15240,77,9387],["2021-05-14",15240,47,9434],["2021-05-15",15240,20,9454],["2021-05-16",15240,10,9464],["2021-05-17",15240,35,9499],["2021-05-18",15240,28,9527],["2021-05-19",15240,43,9570],["2021-05-20",15240,49,9619],["2021-05-21",15240,38,9657],["2021-05-22",15240,23,9680],["2021-05-23",15240,6,9686],["2021-05-24",15240,19,9705],["2021-05-25",15240,33,9738],["2021-05-26",15240,35,9773],["2021-05-27",15240,37,9810],["2021-05-28",15240,29,9839],["2021-05-29",15240,11,9850],["2021-05-30",15240,4,9854],["2021-05-31",15240,8,9862],["2021-06-01",15240,24,9886],["2021-06-02",15240,34,9920],["2021-06-03",15240,25,9945],["2021-06-04",15240,49,9994],["2021-06-05",15240,14,10008],["2021-06-06",15240,8,10016],["2021-06-07",15240,28,10044],["2021-06-08",15240,29,10073],["2021-06-09",15240,26,10099],["2021-06-10",15240,38,10137],["2021-06-11",15240,38,10175],["2021-06-12",15240,20,10195],["2021-06-13",15240,6,10201],["2021-06-14",15240,21,10222],["2021-06-15",15240,17,10239],["2021-06-16",15240,33,10272],["2021-06-17",15240,16,10288],["2021-06-18",15240,14,10302],["2021-06-19",15240,11,10313],["2021-06-20",15240,6,10319],["2021-06-21",15240,7,10326],["2021-06-22",15240,13,10339],["2021-06-23",15240,20,10359],["2021-06-24",15240,21,10380],["2021-06-25",15240,27,10407],["2021-06-26",15240,10,10417],["2021-06-27",15240,8,10425],["2021-06-28",15240,7,10432],["2021-06-29",15240,15,10447],["2021-06-30",15240,31,10478],["2021-07-01",15240,22,10500],["2021-07-02",15240,17,10517],["2021-07-03",15240,9,10526],["2021-07-05",15240,6,10532],["2021-07-06",15240,8,10540],["2021-07-07",15240,13,10553],["2021-07-08",15240,26,10579],["2021-07-09",15240,10,10589],["2021-07-10",15240,7,10596],["2021-07-11",15240,6,10602],["2021-07-12",15240,10,10612],["2021-07-13",15240,11,10623],["2021-07-14",15240,22,10645],["2021-07-15",15240,15,10660],["2021-07-16",15240,19,10679],["2021-07-17",15240,10,10689],["2021-07-18",15240,7,10696],["2021-07-19",15240,16,10712],["2021-07-20",15240,8,10720],["2021-07-21",15240,25,10745],["2021-07-22",15240,39,10784],["2021-07-23",15240,14,10798],["2021-07-24",15240,16,10814],["2021-07-25",15240,7,10821],["2021-07-26",15240,13,10834],["2021-07-27",15240,24,10858],["2021-07-28",15240,10,10868],["2021-07-29",15240,39,10907],["2021-07-30",15240,27,10934],["2021-07-31",15240,23,10957],["2021-08-01",15240,6,10963],["2021-08-02",15240,23,10986],["2021-08-03",15240,26,11012],["2021-08-04",15240,38,11050],["2021-08-05",15240,32,11082],["2021-08-06",15240,32,11114],["2021-08-07",15240,24,11138],["2021-08-08",15240,12,11150],["2021-08-09",15240,33,11183],["2021-08-10",15240,26,11209],["2021-08-11",15240,33,11242],["2021-08-12",15240,29,11271],["2021-08-13",15240,36,11307],["2021-08-14",15240,15,11322],["2021-08-15",15240,17,11339],["2021-08-16",15240,22,11361],["2021-08-17",15240,35,11396],["2021-08-18",15240,24,11420],["2021-08-19",15240,52,11472],["2021-08-20",15240,41,11513],["2021-08-21",15240,16,11529],["2021-08-22",15240,10,11539],["2021-08-23",15240,36,11575],["2021-08-24",15240,39,11614],["2021-08-25",15240,38,11652],["2021-08-26",15240,53,11705],["2021-08-27",15240,48,11753],["2021-08-28",15240,30,11783],["2021-08-29",15240,17,11800],["2021-08-30",15240,42,11842],["2021-08-31",15240,43,11885],["2021-09-01",15240,58,11943],["2021-09-02",15240,43,11986],["2021-09-03",15240,47,12033],["2021-09-04",15240,10,12043],["2021-09-05",15240,11,12054],["2021-09-06",15240,7,12061],["2021-09-07",15240,32,12093],["2021-09-08",15240,37,12130],["2021-09-09",15240,28,12158],["2021-09-10",15240,55,12213],["2021-09-11",15240,16,12229],["2021-09-12",15240,9,12238],["2021-09-13",15240,31,12269],["2021-09-14",15240,31,12300],["2021-09-15",15240,33,12333],["2021-09-16",15240,35,12368],["2021-09-17",15240,37,12405],["2021-09-18",15240,24,12429],["2021-09-19",15240,10,12439],["2021-09-20",15240,26,12465],["2021-09-21",15240,33,12498],["2021-09-22",15240,38,12536],["2021-09-23",15240,31,12567],["2021-09-24",15240,22,12589],["2021-09-25",15240,13,12602],["2021-09-26",15240,13,12615],["2021-09-27",15240,43,12658],["2021-09-28",15240,34,12692],["2021-09-29",15240,38,12730],["2021-09-30",15240,50,12780],["2021-10-01",15240,37,12817],["2021-10-02",15240,20,12837],["2021-10-03",15240,10,12847],["2021-10-04",15240,50,12897],["2021-10-05",15240,39,12936],["2021-10-06",15240,28,12964],["2021-10-07",15240,53,13017],["2021-10-08",15240,35,13052],["2021-10-09",15240,15,13067],["2021-10-10",15240,6,13073],["2021-10-11",15240,27,13100],["2021-10-12",15240,24,13124],["2021-10-13",15240,20,13144],["2021-10-14",15240,34,13178],["2021-10-15",15240,22,13200],["2021-10-16",15240,7,13207],["2021-10-17",15240,4,13211],["2021-10-18",15240,18,13229],["2021-10-19",15240,22,13251],["2021-10-20",15240,24,13275],["2021-10-21",15240,32,13307],["2021-10-22",15240,40,13347],["2021-10-23",15240,19,13366],["2021-10-24",15240,5,13371],["2021-10-25",15240,38,13409],["2021-10-26",15240,48,13457],["2021-10-27",15240,63,13520],["2021-10-28",15240,64,13584],["2021-10-29",15240,52,13636],["2021-10-30",15240,14,13650],["2021-10-31",15240,10,13660],["2021-11-01",15240,86,13746],["2021-11-02",15240,44,13790],["2021-11-03",15240,64,13854],["2021-11-04",15240,109,13963],["2021-11-05",15240,42,14005],["2021-11-06",15240,8,14013],["2021-11-07",15240,7,14020],["2021-11-08",15240,40,14060],["2021-11-09",15240,33,14093],["2021-11-10",15240,52,14145],["2021-11-11",15240,58,14203],["2021-11-12",15240,47,14250],["2021-11-13",15240,19,14269],["2021-11-14",15240,5,14274],["2021-11-15",15240,28,14302],["2021-11-16",15240,39,14341],["2021-11-17",15240,57,14398],["2021-11-18",15240,74,14472],["2021-11-19",15240,42,14514],["2021-11-20",15240,14,14528],["2021-11-21",15240,8,14536],["2021-11-22",15240,60,14596],["2021-11-23",15240,26,14622],["2021-11-24",15240,16,14638],["2021-11-26",15240,15,14653],["2021-11-27",15240,9,14662],["2021-11-28",15240,5,14667],["2021-11-29",15240,64,14731],["2021-11-30",15240,41,14772],["2021-12-01",15240,67,14839],["2021-12-02",15240,86,14925],["2021-12-03",15240,52,14977],["2021-12-04",15240,28,15005],["2021-12-05",15240,6,15011],["2021-12-06",15240,41,15052],["2021-12-07",15240,39,15091],["2021-12-08",15240,39,15130],["2021-12-09",15240,47,15177],["2021-12-10",15240,51,15228],["2021-12-11",15240,11,15239],["2021-12-12",15240,6,15245],["2021-12-13",15240,28,15273],["2021-12-14",15240,36,15309],["2021-12-15",15240,35,15344],["2021-12-16",15240,30,15374],["2021-12-17",15240,26,15400],["2021-12-18",15240,22,15422],["2021-12-19",15240,5,15427],["2021-12-20",15240,37,15464],["2021-12-21",15240,47,15511],["2021-12-22",15240,56,15567],["2021-12-23",15240,19,15586],["2021-12-24",15240,8,15594],["2021-12-26",15240,6,15600],["2021-12-27",15240,47,15647],["2021-12-28",15240,42,15689],["2021-12-29",15240,49,15738],["2021-12-30",15240,31,15769],["2021-12-31",15240,12,15781],["2022-01-01",15240,4,15785],["2022-01-02",15240,1,15786],["2022-01-03",15240,13,15799]]} \ No newline at end of file diff --git a/public/data/overall/vaccinations/by-county/Paulding.json b/public/data/overall/vaccinations/by-county/Paulding.json new file mode 100644 index 000000000..7da8f3f0a --- /dev/null +++ b/public/data/overall/vaccinations/by-county/Paulding.json @@ -0,0 +1 @@ +{"segment":{"county":"Paulding"},"headers":["report_date","population","vaccinations","total_vaccinations"],"rows":[["2020-12-15",172542,1,1],["2020-12-17",172542,3,4],["2020-12-18",172542,23,27],["2020-12-19",172542,10,37],["2020-12-20",172542,17,54],["2020-12-21",172542,89,143],["2020-12-22",172542,214,357],["2020-12-23",172542,117,474],["2020-12-24",172542,29,503],["2020-12-26",172542,19,522],["2020-12-27",172542,37,559],["2020-12-28",172542,202,761],["2020-12-29",172542,137,898],["2020-12-30",172542,206,1104],["2020-12-31",172542,59,1163],["2021-01-01",172542,20,1183],["2021-01-02",172542,18,1201],["2021-01-03",172542,21,1222],["2021-01-04",172542,165,1387],["2021-01-05",172542,146,1533],["2021-01-06",172542,148,1681],["2021-01-07",172542,159,1840],["2021-01-08",172542,224,2064],["2021-01-09",172542,65,2129],["2021-01-10",172542,47,2176],["2021-01-11",172542,450,2626],["2021-01-12",172542,426,3052],["2021-01-13",172542,637,3689],["2021-01-14",172542,543,4232],["2021-01-15",172542,445,4677],["2021-01-16",172542,150,4827],["2021-01-17",172542,53,4880],["2021-01-18",172542,370,5250],["2021-01-19",172542,764,6014],["2021-01-20",172542,580,6594],["2021-01-21",172542,563,7157],["2021-01-22",172542,494,7651],["2021-01-23",172542,57,7708],["2021-01-24",172542,69,7777],["2021-01-25",172542,651,8428],["2021-01-26",172542,640,9068],["2021-01-27",172542,588,9656],["2021-01-28",172542,613,10269],["2021-01-29",172542,543,10812],["2021-01-30",172542,73,10885],["2021-01-31",172542,27,10912],["2021-02-01",172542,533,11445],["2021-02-02",172542,379,11824],["2021-02-03",172542,519,12343],["2021-02-04",172542,405,12748],["2021-02-05",172542,405,13153],["2021-02-06",172542,91,13244],["2021-02-07",172542,55,13299],["2021-02-08",172542,494,13793],["2021-02-09",172542,617,14410],["2021-02-10",172542,704,15114],["2021-02-11",172542,580,15694],["2021-02-12",172542,540,16234],["2021-02-13",172542,222,16456],["2021-02-14",172542,65,16521],["2021-02-15",172542,434,16955],["2021-02-16",172542,428,17383],["2021-02-17",172542,668,18051],["2021-02-18",172542,439,18490],["2021-02-19",172542,408,18898],["2021-02-20",172542,90,18988],["2021-02-21",172542,37,19025],["2021-02-22",172542,312,19337],["2021-02-23",172542,558,19895],["2021-02-24",172542,635,20530],["2021-02-25",172542,835,21365],["2021-02-26",172542,627,21992],["2021-02-27",172542,150,22142],["2021-02-28",172542,150,22292],["2021-03-01",172542,701,22993],["2021-03-02",172542,618,23611],["2021-03-03",172542,640,24251],["2021-03-04",172542,590,24841],["2021-03-05",172542,630,25471],["2021-03-06",172542,127,25598],["2021-03-07",172542,186,25784],["2021-03-08",172542,715,26499],["2021-03-09",172542,704,27203],["2021-03-10",172542,780,27983],["2021-03-11",172542,665,28648],["2021-03-12",172542,658,29306],["2021-03-13",172542,185,29491],["2021-03-14",172542,173,29664],["2021-03-15",172542,803,30467],["2021-03-16",172542,1043,31510],["2021-03-17",172542,825,32335],["2021-03-18",172542,746,33081],["2021-03-19",172542,948,34029],["2021-03-20",172542,296,34325],["2021-03-21",172542,200,34525],["2021-03-22",172542,714,35239],["2021-03-23",172542,748,35987],["2021-03-24",172542,977,36964],["2021-03-25",172542,881,37845],["2021-03-26",172542,860,38705],["2021-03-27",172542,310,39015],["2021-03-28",172542,299,39314],["2021-03-29",172542,958,40272],["2021-03-30",172542,1219,41491],["2021-03-31",172542,1249,42740],["2021-04-01",172542,1165,43905],["2021-04-02",172542,911,44816],["2021-04-03",172542,278,45094],["2021-04-04",172542,334,45428],["2021-04-05",172542,1183,46611],["2021-04-06",172542,1509,48120],["2021-04-07",172542,1221,49341],["2021-04-08",172542,1328,50669],["2021-04-09",172542,1197,51866],["2021-04-10",172542,515,52381],["2021-04-11",172542,310,52691],["2021-04-12",172542,1170,53861],["2021-04-13",172542,1288,55149],["2021-04-14",172542,1225,56374],["2021-04-15",172542,1240,57614],["2021-04-16",172542,1360,58974],["2021-04-17",172542,257,59231],["2021-04-18",172542,270,59501],["2021-04-19",172542,1071,60572],["2021-04-20",172542,1103,61675],["2021-04-21",172542,1170,62845],["2021-04-22",172542,1132,63977],["2021-04-23",172542,1148,65125],["2021-04-24",172542,418,65543],["2021-04-25",172542,163,65706],["2021-04-26",172542,967,66673],["2021-04-27",172542,978,67651],["2021-04-28",172542,1112,68763],["2021-04-29",172542,955,69718],["2021-04-30",172542,1135,70853],["2021-05-01",172542,491,71344],["2021-05-02",172542,224,71568],["2021-05-03",172542,728,72296],["2021-05-04",172542,914,73210],["2021-05-05",172542,957,74167],["2021-05-06",172542,819,74986],["2021-05-07",172542,897,75883],["2021-05-08",172542,330,76213],["2021-05-09",172542,114,76327],["2021-05-10",172542,663,76990],["2021-05-11",172542,602,77592],["2021-05-12",172542,686,78278],["2021-05-13",172542,597,78875],["2021-05-14",172542,866,79741],["2021-05-15",172542,428,80169],["2021-05-16",172542,244,80413],["2021-05-17",172542,631,81044],["2021-05-18",172542,720,81764],["2021-05-19",172542,626,82390],["2021-05-20",172542,610,83000],["2021-05-21",172542,583,83583],["2021-05-22",172542,379,83962],["2021-05-23",172542,165,84127],["2021-05-24",172542,433,84560],["2021-05-25",172542,402,84962],["2021-05-26",172542,559,85521],["2021-05-27",172542,378,85899],["2021-05-28",172542,370,86269],["2021-05-29",172542,175,86444],["2021-05-30",172542,136,86580],["2021-05-31",172542,72,86652],["2021-06-01",172542,455,87107],["2021-06-02",172542,339,87446],["2021-06-03",172542,444,87890],["2021-06-04",172542,468,88358],["2021-06-05",172542,327,88685],["2021-06-06",172542,200,88885],["2021-06-07",172542,384,89269],["2021-06-08",172542,331,89600],["2021-06-09",172542,340,89940],["2021-06-10",172542,355,90295],["2021-06-11",172542,414,90709],["2021-06-12",172542,292,91001],["2021-06-13",172542,111,91112],["2021-06-14",172542,274,91386],["2021-06-15",172542,307,91693],["2021-06-16",172542,303,91996],["2021-06-17",172542,297,92293],["2021-06-18",172542,267,92560],["2021-06-19",172542,193,92753],["2021-06-20",172542,110,92863],["2021-06-21",172542,197,93060],["2021-06-22",172542,259,93319],["2021-06-23",172542,269,93588],["2021-06-24",172542,218,93806],["2021-06-25",172542,265,94071],["2021-06-26",172542,167,94238],["2021-06-27",172542,105,94343],["2021-06-28",172542,157,94500],["2021-06-29",172542,209,94709],["2021-06-30",172542,151,94860],["2021-07-01",172542,220,95080],["2021-07-02",172542,224,95304],["2021-07-03",172542,150,95454],["2021-07-04",172542,13,95467],["2021-07-05",172542,156,95623],["2021-07-06",172542,197,95820],["2021-07-07",172542,191,96011],["2021-07-08",172542,165,96176],["2021-07-09",172542,211,96387],["2021-07-10",172542,164,96551],["2021-07-11",172542,94,96645],["2021-07-12",172542,153,96798],["2021-07-13",172542,199,96997],["2021-07-14",172542,182,97179],["2021-07-15",172542,184,97363],["2021-07-16",172542,209,97572],["2021-07-17",172542,170,97742],["2021-07-18",172542,100,97842],["2021-07-19",172542,223,98065],["2021-07-20",172542,220,98285],["2021-07-21",172542,232,98517],["2021-07-22",172542,260,98777],["2021-07-23",172542,311,99088],["2021-07-24",172542,241,99329],["2021-07-25",172542,139,99468],["2021-07-26",172542,257,99725],["2021-07-27",172542,299,100024],["2021-07-28",172542,265,100289],["2021-07-29",172542,288,100577],["2021-07-30",172542,344,100921],["2021-07-31",172542,274,101195],["2021-08-01",172542,177,101372],["2021-08-02",172542,295,101667],["2021-08-03",172542,284,101951],["2021-08-04",172542,306,102257],["2021-08-05",172542,339,102596],["2021-08-06",172542,436,103032],["2021-08-07",172542,269,103301],["2021-08-08",172542,219,103520],["2021-08-09",172542,364,103884],["2021-08-10",172542,380,104264],["2021-08-11",172542,336,104600],["2021-08-12",172542,377,104977],["2021-08-13",172542,405,105382],["2021-08-14",172542,329,105711],["2021-08-15",172542,228,105939],["2021-08-16",172542,367,106306],["2021-08-17",172542,321,106627],["2021-08-18",172542,358,106985],["2021-08-19",172542,411,107396],["2021-08-20",172542,495,107891],["2021-08-21",172542,346,108237],["2021-08-22",172542,198,108435],["2021-08-23",172542,373,108808],["2021-08-24",172542,387,109195],["2021-08-25",172542,409,109604],["2021-08-26",172542,400,110004],["2021-08-27",172542,500,110504],["2021-08-28",172542,362,110866],["2021-08-29",172542,230,111096],["2021-08-30",172542,453,111549],["2021-08-31",172542,394,111943],["2021-09-01",172542,403,112346],["2021-09-02",172542,420,112766],["2021-09-03",172542,528,113294],["2021-09-04",172542,274,113568],["2021-09-05",172542,228,113796],["2021-09-06",172542,75,113871],["2021-09-07",172542,366,114237],["2021-09-08",172542,355,114592],["2021-09-09",172542,354,114946],["2021-09-10",172542,475,115421],["2021-09-11",172542,303,115724],["2021-09-12",172542,171,115895],["2021-09-13",172542,341,116236],["2021-09-14",172542,310,116546],["2021-09-15",172542,296,116842],["2021-09-16",172542,287,117129],["2021-09-17",172542,352,117481],["2021-09-18",172542,228,117709],["2021-09-19",172542,137,117846],["2021-09-20",172542,254,118100],["2021-09-21",172542,258,118358],["2021-09-22",172542,231,118589],["2021-09-23",172542,249,118838],["2021-09-24",172542,301,119139],["2021-09-25",172542,190,119329],["2021-09-26",172542,170,119499],["2021-09-27",172542,267,119766],["2021-09-28",172542,291,120057],["2021-09-29",172542,326,120383],["2021-09-30",172542,299,120682],["2021-10-01",172542,340,121022],["2021-10-02",172542,179,121201],["2021-10-03",172542,114,121315],["2021-10-04",172542,251,121566],["2021-10-05",172542,278,121844],["2021-10-06",172542,248,122092],["2021-10-07",172542,240,122332],["2021-10-08",172542,280,122612],["2021-10-09",172542,173,122785],["2021-10-10",172542,101,122886],["2021-10-11",172542,187,123073],["2021-10-12",172542,194,123267],["2021-10-13",172542,157,123424],["2021-10-14",172542,224,123648],["2021-10-15",172542,234,123882],["2021-10-16",172542,160,124042],["2021-10-17",172542,81,124123],["2021-10-18",172542,182,124305],["2021-10-19",172542,215,124520],["2021-10-20",172542,168,124688],["2021-10-21",172542,165,124853],["2021-10-22",172542,297,125150],["2021-10-23",172542,220,125370],["2021-10-24",172542,157,125527],["2021-10-25",172542,408,125935],["2021-10-26",172542,420,126355],["2021-10-27",172542,410,126765],["2021-10-28",172542,376,127141],["2021-10-29",172542,427,127568],["2021-10-30",172542,198,127766],["2021-10-31",172542,144,127910],["2021-11-01",172542,325,128235],["2021-11-02",172542,354,128589],["2021-11-03",172542,320,128909],["2021-11-04",172542,290,129199],["2021-11-05",172542,418,129617],["2021-11-06",172542,234,129851],["2021-11-07",172542,152,130003],["2021-11-08",172542,281,130284],["2021-11-09",172542,323,130607],["2021-11-10",172542,296,130903],["2021-11-11",172542,254,131157],["2021-11-12",172542,375,131532],["2021-11-13",172542,251,131783],["2021-11-14",172542,135,131918],["2021-11-15",172542,302,132220],["2021-11-16",172542,313,132533],["2021-11-17",172542,343,132876],["2021-11-18",172542,327,133203],["2021-11-19",172542,416,133619],["2021-11-20",172542,322,133941],["2021-11-21",172542,146,134087],["2021-11-22",172542,429,134516],["2021-11-23",172542,372,134888],["2021-11-24",172542,240,135128],["2021-11-25",172542,5,135133],["2021-11-26",172542,319,135452],["2021-11-27",172542,243,135695],["2021-11-28",172542,181,135876],["2021-11-29",172542,436,136312],["2021-11-30",172542,497,136809],["2021-12-01",172542,464,137273],["2021-12-02",172542,460,137733],["2021-12-03",172542,591,138324],["2021-12-04",172542,407,138731],["2021-12-05",172542,209,138940],["2021-12-06",172542,402,139342],["2021-12-07",172542,360,139702],["2021-12-08",172542,373,140075],["2021-12-09",172542,356,140431],["2021-12-10",172542,464,140895],["2021-12-11",172542,356,141251],["2021-12-12",172542,169,141420],["2021-12-13",172542,291,141711],["2021-12-14",172542,316,142027],["2021-12-15",172542,329,142356],["2021-12-16",172542,337,142693],["2021-12-17",172542,399,143092],["2021-12-18",172542,283,143375],["2021-12-19",172542,176,143551],["2021-12-20",172542,393,143944],["2021-12-21",172542,457,144401],["2021-12-22",172542,434,144835],["2021-12-23",172542,359,145194],["2021-12-24",172542,172,145366],["2021-12-25",172542,1,145367],["2021-12-26",172542,158,145525],["2021-12-27",172542,385,145910],["2021-12-28",172542,448,146358],["2021-12-29",172542,439,146797],["2021-12-30",172542,305,147102],["2021-12-31",172542,194,147296],["2022-01-01",172542,37,147333],["2022-01-02",172542,114,147447],["2022-01-03",172542,94,147541]]} \ No newline at end of file diff --git a/public/data/overall/vaccinations/by-county/Peach.json b/public/data/overall/vaccinations/by-county/Peach.json new file mode 100644 index 000000000..366bca67f --- /dev/null +++ b/public/data/overall/vaccinations/by-county/Peach.json @@ -0,0 +1 @@ +{"segment":{"county":"Peach"},"headers":["report_date","population","vaccinations","total_vaccinations"],"rows":[["2020-12-18",27375,1,1],["2020-12-19",27375,1,2],["2020-12-21",27375,2,4],["2020-12-22",27375,9,13],["2020-12-23",27375,26,39],["2020-12-24",27375,27,66],["2020-12-26",27375,10,76],["2020-12-27",27375,3,79],["2020-12-28",27375,37,116],["2020-12-29",27375,29,145],["2020-12-30",27375,26,171],["2020-12-31",27375,12,183],["2021-01-01",27375,5,188],["2021-01-02",27375,6,194],["2021-01-03",27375,5,199],["2021-01-04",27375,17,216],["2021-01-05",27375,70,286],["2021-01-06",27375,29,315],["2021-01-07",27375,36,351],["2021-01-08",27375,22,373],["2021-01-09",27375,8,381],["2021-01-10",27375,2,383],["2021-01-11",27375,64,447],["2021-01-12",27375,100,547],["2021-01-13",27375,67,614],["2021-01-14",27375,98,712],["2021-01-15",27375,97,809],["2021-01-16",27375,35,844],["2021-01-17",27375,22,866],["2021-01-18",27375,139,1005],["2021-01-19",27375,66,1071],["2021-01-20",27375,121,1192],["2021-01-21",27375,75,1267],["2021-01-22",27375,152,1419],["2021-01-23",27375,26,1445],["2021-01-24",27375,12,1457],["2021-01-25",27375,106,1563],["2021-01-26",27375,158,1721],["2021-01-27",27375,122,1843],["2021-01-28",27375,110,1953],["2021-01-29",27375,125,2078],["2021-01-30",27375,13,2091],["2021-01-31",27375,2,2093],["2021-02-01",27375,80,2173],["2021-02-02",27375,32,2205],["2021-02-03",27375,122,2327],["2021-02-04",27375,78,2405],["2021-02-05",27375,122,2527],["2021-02-06",27375,19,2546],["2021-02-07",27375,7,2553],["2021-02-08",27375,157,2710],["2021-02-09",27375,104,2814],["2021-02-10",27375,121,2935],["2021-02-11",27375,115,3050],["2021-02-12",27375,185,3235],["2021-02-13",27375,42,3277],["2021-02-14",27375,12,3289],["2021-02-15",27375,187,3476],["2021-02-16",27375,105,3581],["2021-02-17",27375,140,3721],["2021-02-18",27375,85,3806],["2021-02-19",27375,188,3994],["2021-02-20",27375,16,4010],["2021-02-21",27375,1,4011],["2021-02-22",27375,87,4098],["2021-02-23",27375,116,4214],["2021-02-24",27375,110,4324],["2021-02-25",27375,132,4456],["2021-02-26",27375,186,4642],["2021-02-27",27375,13,4655],["2021-02-28",27375,20,4675],["2021-03-01",27375,238,4913],["2021-03-02",27375,103,5016],["2021-03-03",27375,208,5224],["2021-03-04",27375,168,5392],["2021-03-05",27375,203,5595],["2021-03-06",27375,55,5650],["2021-03-07",27375,11,5661],["2021-03-08",27375,264,5925],["2021-03-09",27375,170,6095],["2021-03-10",27375,221,6316],["2021-03-11",27375,139,6455],["2021-03-12",27375,283,6738],["2021-03-13",27375,50,6788],["2021-03-14",27375,14,6802],["2021-03-15",27375,273,7075],["2021-03-16",27375,167,7242],["2021-03-17",27375,191,7433],["2021-03-18",27375,167,7600],["2021-03-19",27375,351,7951],["2021-03-20",27375,38,7989],["2021-03-21",27375,23,8012],["2021-03-22",27375,178,8190],["2021-03-23",27375,129,8319],["2021-03-24",27375,148,8467],["2021-03-25",27375,198,8665],["2021-03-26",27375,229,8894],["2021-03-27",27375,25,8919],["2021-03-28",27375,28,8947],["2021-03-29",27375,298,9245],["2021-03-30",27375,240,9485],["2021-03-31",27375,279,9764],["2021-04-01",27375,253,10017],["2021-04-02",27375,177,10194],["2021-04-03",27375,97,10291],["2021-04-04",27375,25,10316],["2021-04-05",27375,388,10704],["2021-04-06",27375,260,10964],["2021-04-07",27375,267,11231],["2021-04-08",27375,267,11498],["2021-04-09",27375,390,11888],["2021-04-10",27375,59,11947],["2021-04-11",27375,37,11984],["2021-04-12",27375,349,12333],["2021-04-13",27375,296,12629],["2021-04-14",27375,146,12775],["2021-04-15",27375,169,12944],["2021-04-16",27375,321,13265],["2021-04-17",27375,39,13304],["2021-04-18",27375,25,13329],["2021-04-19",27375,193,13522],["2021-04-20",27375,251,13773],["2021-04-21",27375,116,13889],["2021-04-22",27375,161,14050],["2021-04-23",27375,247,14297],["2021-04-24",27375,41,14338],["2021-04-25",27375,22,14360],["2021-04-26",27375,177,14537],["2021-04-27",27375,178,14715],["2021-04-28",27375,173,14888],["2021-04-29",27375,124,15012],["2021-04-30",27375,178,15190],["2021-05-01",27375,62,15252],["2021-05-02",27375,29,15281],["2021-05-03",27375,121,15402],["2021-05-04",27375,94,15496],["2021-05-05",27375,157,15653],["2021-05-06",27375,97,15750],["2021-05-07",27375,214,15964],["2021-05-08",27375,24,15988],["2021-05-09",27375,16,16004],["2021-05-10",27375,76,16080],["2021-05-11",27375,247,16327],["2021-05-12",27375,70,16397],["2021-05-13",27375,87,16484],["2021-05-14",27375,342,16826],["2021-05-15",27375,56,16882],["2021-05-16",27375,29,16911],["2021-05-17",27375,91,17002],["2021-05-18",27375,96,17098],["2021-05-19",27375,91,17189],["2021-05-20",27375,69,17258],["2021-05-21",27375,104,17362],["2021-05-22",27375,49,17411],["2021-05-23",27375,22,17433],["2021-05-24",27375,52,17485],["2021-05-25",27375,46,17531],["2021-05-26",27375,67,17598],["2021-05-27",27375,46,17644],["2021-05-28",27375,66,17710],["2021-05-29",27375,36,17746],["2021-05-30",27375,11,17757],["2021-05-31",27375,7,17764],["2021-06-01",27375,62,17826],["2021-06-02",27375,62,17888],["2021-06-03",27375,62,17950],["2021-06-04",27375,67,18017],["2021-06-05",27375,46,18063],["2021-06-06",27375,17,18080],["2021-06-07",27375,59,18139],["2021-06-08",27375,42,18181],["2021-06-09",27375,49,18230],["2021-06-10",27375,51,18281],["2021-06-11",27375,82,18363],["2021-06-12",27375,41,18404],["2021-06-13",27375,12,18416],["2021-06-14",27375,45,18461],["2021-06-15",27375,43,18504],["2021-06-16",27375,51,18555],["2021-06-17",27375,31,18586],["2021-06-18",27375,60,18646],["2021-06-19",27375,29,18675],["2021-06-20",27375,4,18679],["2021-06-21",27375,36,18715],["2021-06-22",27375,20,18735],["2021-06-23",27375,33,18768],["2021-06-24",27375,19,18787],["2021-06-25",27375,33,18820],["2021-06-26",27375,20,18840],["2021-06-27",27375,12,18852],["2021-06-28",27375,31,18883],["2021-06-29",27375,38,18921],["2021-06-30",27375,29,18950],["2021-07-01",27375,29,18979],["2021-07-02",27375,37,19016],["2021-07-03",27375,16,19032],["2021-07-04",27375,1,19033],["2021-07-05",27375,18,19051],["2021-07-06",27375,33,19084],["2021-07-07",27375,33,19117],["2021-07-08",27375,20,19137],["2021-07-09",27375,36,19173],["2021-07-10",27375,27,19200],["2021-07-11",27375,2,19202],["2021-07-12",27375,14,19216],["2021-07-13",27375,34,19250],["2021-07-14",27375,27,19277],["2021-07-15",27375,31,19308],["2021-07-16",27375,46,19354],["2021-07-17",27375,28,19382],["2021-07-18",27375,11,19393],["2021-07-19",27375,34,19427],["2021-07-20",27375,34,19461],["2021-07-21",27375,51,19512],["2021-07-22",27375,43,19555],["2021-07-23",27375,60,19615],["2021-07-24",27375,54,19669],["2021-07-25",27375,23,19692],["2021-07-26",27375,66,19758],["2021-07-27",27375,58,19816],["2021-07-28",27375,71,19887],["2021-07-29",27375,58,19945],["2021-07-30",27375,75,20020],["2021-07-31",27375,36,20056],["2021-08-01",27375,17,20073],["2021-08-02",27375,50,20123],["2021-08-03",27375,59,20182],["2021-08-04",27375,50,20232],["2021-08-05",27375,51,20283],["2021-08-06",27375,114,20397],["2021-08-07",27375,49,20446],["2021-08-08",27375,31,20477],["2021-08-09",27375,57,20534],["2021-08-10",27375,108,20642],["2021-08-11",27375,69,20711],["2021-08-12",27375,75,20786],["2021-08-13",27375,129,20915],["2021-08-14",27375,58,20973],["2021-08-15",27375,32,21005],["2021-08-16",27375,85,21090],["2021-08-17",27375,60,21150],["2021-08-18",27375,92,21242],["2021-08-19",27375,94,21336],["2021-08-20",27375,107,21443],["2021-08-21",27375,57,21500],["2021-08-22",27375,35,21535],["2021-08-23",27375,92,21627],["2021-08-24",27375,72,21699],["2021-08-25",27375,81,21780],["2021-08-26",27375,94,21874],["2021-08-27",27375,105,21979],["2021-08-28",27375,66,22045],["2021-08-29",27375,39,22084],["2021-08-30",27375,67,22151],["2021-08-31",27375,94,22245],["2021-09-01",27375,71,22316],["2021-09-02",27375,69,22385],["2021-09-03",27375,163,22548],["2021-09-04",27375,52,22600],["2021-09-05",27375,48,22648],["2021-09-06",27375,11,22659],["2021-09-07",27375,90,22749],["2021-09-08",27375,65,22814],["2021-09-09",27375,58,22872],["2021-09-10",27375,135,23007],["2021-09-11",27375,48,23055],["2021-09-12",27375,34,23089],["2021-09-13",27375,63,23152],["2021-09-14",27375,66,23218],["2021-09-15",27375,64,23282],["2021-09-16",27375,64,23346],["2021-09-17",27375,91,23437],["2021-09-18",27375,41,23478],["2021-09-19",27375,32,23510],["2021-09-20",27375,58,23568],["2021-09-21",27375,43,23611],["2021-09-22",27375,46,23657],["2021-09-23",27375,54,23711],["2021-09-24",27375,70,23781],["2021-09-25",27375,29,23810],["2021-09-26",27375,28,23838],["2021-09-27",27375,45,23883],["2021-09-28",27375,70,23953],["2021-09-29",27375,64,24017],["2021-09-30",27375,45,24062],["2021-10-01",27375,100,24162],["2021-10-02",27375,21,24183],["2021-10-03",27375,16,24199],["2021-10-04",27375,32,24231],["2021-10-05",27375,57,24288],["2021-10-06",27375,40,24328],["2021-10-07",27375,46,24374],["2021-10-08",27375,58,24432],["2021-10-09",27375,19,24451],["2021-10-10",27375,10,24461],["2021-10-11",27375,50,24511],["2021-10-12",27375,43,24554],["2021-10-13",27375,40,24594],["2021-10-14",27375,45,24639],["2021-10-15",27375,60,24699],["2021-10-16",27375,18,24717],["2021-10-17",27375,13,24730],["2021-10-18",27375,47,24777],["2021-10-19",27375,39,24816],["2021-10-20",27375,43,24859],["2021-10-21",27375,32,24891],["2021-10-22",27375,49,24940],["2021-10-23",27375,25,24965],["2021-10-24",27375,30,24995],["2021-10-25",27375,192,25187],["2021-10-26",27375,257,25444],["2021-10-27",27375,146,25590],["2021-10-28",27375,99,25689],["2021-10-29",27375,187,25876],["2021-10-30",27375,24,25900],["2021-10-31",27375,9,25909],["2021-11-01",27375,88,25997],["2021-11-02",27375,89,26086],["2021-11-03",27375,71,26157],["2021-11-04",27375,75,26232],["2021-11-05",27375,112,26344],["2021-11-06",27375,39,26383],["2021-11-07",27375,16,26399],["2021-11-08",27375,97,26496],["2021-11-09",27375,82,26578],["2021-11-10",27375,66,26644],["2021-11-11",27375,56,26700],["2021-11-12",27375,152,26852],["2021-11-13",27375,36,26888],["2021-11-14",27375,18,26906],["2021-11-15",27375,62,26968],["2021-11-16",27375,70,27038],["2021-11-17",27375,79,27117],["2021-11-18",27375,65,27182],["2021-11-19",27375,127,27309],["2021-11-20",27375,35,27344],["2021-11-21",27375,24,27368],["2021-11-22",27375,65,27433],["2021-11-23",27375,65,27498],["2021-11-24",27375,36,27534],["2021-11-26",27375,49,27583],["2021-11-27",27375,16,27599],["2021-11-28",27375,11,27610],["2021-11-29",27375,83,27693],["2021-11-30",27375,80,27773],["2021-12-01",27375,103,27876],["2021-12-02",27375,93,27969],["2021-12-03",27375,171,28140],["2021-12-04",27375,53,28193],["2021-12-05",27375,21,28214],["2021-12-06",27375,81,28295],["2021-12-07",27375,74,28369],["2021-12-08",27375,69,28438],["2021-12-09",27375,92,28530],["2021-12-10",27375,121,28651],["2021-12-11",27375,21,28672],["2021-12-12",27375,11,28683],["2021-12-13",27375,44,28727],["2021-12-14",27375,69,28796],["2021-12-15",27375,59,28855],["2021-12-16",27375,25,28880],["2021-12-17",27375,115,28995],["2021-12-18",27375,30,29025],["2021-12-19",27375,20,29045],["2021-12-20",27375,82,29127],["2021-12-21",27375,74,29201],["2021-12-22",27375,83,29284],["2021-12-23",27375,51,29335],["2021-12-24",27375,10,29345],["2021-12-25",27375,2,29347],["2021-12-26",27375,23,29370],["2021-12-27",27375,76,29446],["2021-12-28",27375,84,29530],["2021-12-29",27375,87,29617],["2021-12-30",27375,58,29675],["2021-12-31",27375,37,29712],["2022-01-01",27375,3,29715],["2022-01-02",27375,11,29726],["2022-01-03",27375,22,29748]]} \ No newline at end of file diff --git a/public/data/overall/vaccinations/by-county/Pickens.json b/public/data/overall/vaccinations/by-county/Pickens.json new file mode 100644 index 000000000..4d710ebb0 --- /dev/null +++ b/public/data/overall/vaccinations/by-county/Pickens.json @@ -0,0 +1 @@ +{"segment":{"county":"Pickens"},"headers":["report_date","population","vaccinations","total_vaccinations"],"rows":[["2020-12-17",33530,1,1],["2020-12-18",33530,6,7],["2020-12-19",33530,2,9],["2020-12-20",33530,3,12],["2020-12-21",33530,9,21],["2020-12-22",33530,17,38],["2020-12-23",33530,49,87],["2020-12-24",33530,8,95],["2020-12-26",33530,3,98],["2020-12-27",33530,4,102],["2020-12-28",33530,41,143],["2020-12-29",33530,88,231],["2020-12-30",33530,49,280],["2020-12-31",33530,26,306],["2021-01-01",33530,17,323],["2021-01-02",33530,4,327],["2021-01-03",33530,5,332],["2021-01-04",33530,57,389],["2021-01-05",33530,59,448],["2021-01-06",33530,71,519],["2021-01-07",33530,43,562],["2021-01-08",33530,47,609],["2021-01-09",33530,4,613],["2021-01-10",33530,8,621],["2021-01-11",33530,166,787],["2021-01-12",33530,259,1046],["2021-01-13",33530,283,1329],["2021-01-14",33530,279,1608],["2021-01-15",33530,283,1891],["2021-01-16",33530,127,2018],["2021-01-17",33530,30,2048],["2021-01-18",33530,236,2284],["2021-01-19",33530,325,2609],["2021-01-20",33530,280,2889],["2021-01-21",33530,231,3120],["2021-01-22",33530,168,3288],["2021-01-23",33530,47,3335],["2021-01-24",33530,7,3342],["2021-01-25",33530,219,3561],["2021-01-26",33530,165,3726],["2021-01-27",33530,225,3951],["2021-01-28",33530,139,4090],["2021-01-29",33530,123,4213],["2021-01-30",33530,37,4250],["2021-01-31",33530,9,4259],["2021-02-01",33530,119,4378],["2021-02-02",33530,196,4574],["2021-02-03",33530,197,4771],["2021-02-04",33530,157,4928],["2021-02-05",33530,150,5078],["2021-02-06",33530,32,5110],["2021-02-07",33530,10,5120],["2021-02-08",33530,206,5326],["2021-02-09",33530,341,5667],["2021-02-10",33530,303,5970],["2021-02-11",33530,322,6292],["2021-02-12",33530,300,6592],["2021-02-13",33530,119,6711],["2021-02-14",33530,33,6744],["2021-02-15",33530,233,6977],["2021-02-16",33530,359,7336],["2021-02-17",33530,258,7594],["2021-02-18",33530,263,7857],["2021-02-19",33530,159,8016],["2021-02-20",33530,44,8060],["2021-02-21",33530,14,8074],["2021-02-22",33530,122,8196],["2021-02-23",33530,171,8367],["2021-02-24",33530,263,8630],["2021-02-25",33530,366,8996],["2021-02-26",33530,219,9215],["2021-02-27",33530,52,9267],["2021-02-28",33530,47,9314],["2021-03-01",33530,227,9541],["2021-03-02",33530,282,9823],["2021-03-03",33530,359,10182],["2021-03-04",33530,235,10417],["2021-03-05",33530,252,10669],["2021-03-06",33530,25,10694],["2021-03-07",33530,21,10715],["2021-03-08",33530,233,10948],["2021-03-09",33530,253,11201],["2021-03-10",33530,200,11401],["2021-03-11",33530,215,11616],["2021-03-12",33530,202,11818],["2021-03-13",33530,33,11851],["2021-03-14",33530,50,11901],["2021-03-15",33530,340,12241],["2021-03-16",33530,272,12513],["2021-03-17",33530,197,12710],["2021-03-18",33530,152,12862],["2021-03-19",33530,177,13039],["2021-03-20",33530,20,13059],["2021-03-21",33530,29,13088],["2021-03-22",33530,108,13196],["2021-03-23",33530,233,13429],["2021-03-24",33530,241,13670],["2021-03-25",33530,228,13898],["2021-03-26",33530,204,14102],["2021-03-27",33530,60,14162],["2021-03-28",33530,72,14234],["2021-03-29",33530,233,14467],["2021-03-30",33530,330,14797],["2021-03-31",33530,298,15095],["2021-04-01",33530,246,15341],["2021-04-02",33530,149,15490],["2021-04-03",33530,32,15522],["2021-04-04",33530,33,15555],["2021-04-05",33530,231,15786],["2021-04-06",33530,332,16118],["2021-04-07",33530,248,16366],["2021-04-08",33530,248,16614],["2021-04-09",33530,293,16907],["2021-04-10",33530,108,17015],["2021-04-11",33530,55,17070],["2021-04-12",33530,358,17428],["2021-04-13",33530,190,17618],["2021-04-14",33530,143,17761],["2021-04-15",33530,172,17933],["2021-04-16",33530,179,18112],["2021-04-17",33530,17,18129],["2021-04-18",33530,28,18157],["2021-04-19",33530,176,18333],["2021-04-20",33530,216,18549],["2021-04-21",33530,231,18780],["2021-04-22",33530,183,18963],["2021-04-23",33530,170,19133],["2021-04-24",33530,49,19182],["2021-04-25",33530,28,19210],["2021-04-26",33530,155,19365],["2021-04-27",33530,136,19501],["2021-04-28",33530,186,19687],["2021-04-29",33530,143,19830],["2021-04-30",33530,142,19972],["2021-05-01",33530,33,20005],["2021-05-02",33530,19,20024],["2021-05-03",33530,139,20163],["2021-05-04",33530,143,20306],["2021-05-05",33530,133,20439],["2021-05-06",33530,81,20520],["2021-05-07",33530,154,20674],["2021-05-08",33530,32,20706],["2021-05-09",33530,18,20724],["2021-05-10",33530,71,20795],["2021-05-11",33530,87,20882],["2021-05-12",33530,77,20959],["2021-05-13",33530,94,21053],["2021-05-14",33530,131,21184],["2021-05-15",33530,34,21218],["2021-05-16",33530,23,21241],["2021-05-17",33530,91,21332],["2021-05-18",33530,72,21404],["2021-05-19",33530,83,21487],["2021-05-20",33530,76,21563],["2021-05-21",33530,92,21655],["2021-05-22",33530,28,21683],["2021-05-23",33530,25,21708],["2021-05-24",33530,63,21771],["2021-05-25",33530,51,21822],["2021-05-26",33530,99,21921],["2021-05-27",33530,46,21967],["2021-05-28",33530,56,22023],["2021-05-29",33530,21,22044],["2021-05-30",33530,11,22055],["2021-05-31",33530,14,22069],["2021-06-01",33530,60,22129],["2021-06-02",33530,44,22173],["2021-06-03",33530,46,22219],["2021-06-04",33530,64,22283],["2021-06-05",33530,28,22311],["2021-06-06",33530,19,22330],["2021-06-07",33530,58,22388],["2021-06-08",33530,55,22443],["2021-06-09",33530,56,22499],["2021-06-10",33530,35,22534],["2021-06-11",33530,45,22579],["2021-06-12",33530,24,22603],["2021-06-13",33530,17,22620],["2021-06-14",33530,32,22652],["2021-06-15",33530,38,22690],["2021-06-16",33530,54,22744],["2021-06-17",33530,26,22770],["2021-06-18",33530,38,22808],["2021-06-19",33530,20,22828],["2021-06-20",33530,10,22838],["2021-06-21",33530,25,22863],["2021-06-22",33530,37,22900],["2021-06-23",33530,22,22922],["2021-06-24",33530,25,22947],["2021-06-25",33530,38,22985],["2021-06-26",33530,22,23007],["2021-06-27",33530,10,23017],["2021-06-28",33530,14,23031],["2021-06-29",33530,29,23060],["2021-06-30",33530,27,23087],["2021-07-01",33530,30,23117],["2021-07-02",33530,22,23139],["2021-07-03",33530,18,23157],["2021-07-04",33530,1,23158],["2021-07-05",33530,14,23172],["2021-07-06",33530,30,23202],["2021-07-07",33530,25,23227],["2021-07-08",33530,26,23253],["2021-07-09",33530,27,23280],["2021-07-10",33530,18,23298],["2021-07-11",33530,9,23307],["2021-07-12",33530,25,23332],["2021-07-13",33530,29,23361],["2021-07-14",33530,26,23387],["2021-07-15",33530,25,23412],["2021-07-16",33530,21,23433],["2021-07-17",33530,16,23449],["2021-07-18",33530,14,23463],["2021-07-19",33530,33,23496],["2021-07-20",33530,45,23541],["2021-07-21",33530,27,23568],["2021-07-22",33530,44,23612],["2021-07-23",33530,62,23674],["2021-07-24",33530,27,23701],["2021-07-25",33530,20,23721],["2021-07-26",33530,40,23761],["2021-07-27",33530,39,23800],["2021-07-28",33530,46,23846],["2021-07-29",33530,51,23897],["2021-07-30",33530,49,23946],["2021-07-31",33530,33,23979],["2021-08-01",33530,22,24001],["2021-08-02",33530,49,24050],["2021-08-03",33530,62,24112],["2021-08-04",33530,45,24157],["2021-08-05",33530,55,24212],["2021-08-06",33530,87,24299],["2021-08-07",33530,50,24349],["2021-08-08",33530,29,24378],["2021-08-09",33530,56,24434],["2021-08-10",33530,76,24510],["2021-08-11",33530,45,24555],["2021-08-12",33530,41,24596],["2021-08-13",33530,84,24680],["2021-08-14",33530,44,24724],["2021-08-15",33530,26,24750],["2021-08-16",33530,58,24808],["2021-08-17",33530,69,24877],["2021-08-18",33530,70,24947],["2021-08-19",33530,90,25037],["2021-08-20",33530,90,25127],["2021-08-21",33530,50,25177],["2021-08-22",33530,32,25209],["2021-08-23",33530,81,25290],["2021-08-24",33530,77,25367],["2021-08-25",33530,57,25424],["2021-08-26",33530,99,25523],["2021-08-27",33530,105,25628],["2021-08-28",33530,68,25696],["2021-08-29",33530,38,25734],["2021-08-30",33530,87,25821],["2021-08-31",33530,106,25927],["2021-09-01",33530,68,25995],["2021-09-02",33530,94,26089],["2021-09-03",33530,104,26193],["2021-09-04",33530,50,26243],["2021-09-05",33530,29,26272],["2021-09-06",33530,9,26281],["2021-09-07",33530,78,26359],["2021-09-08",33530,67,26426],["2021-09-09",33530,76,26502],["2021-09-10",33530,115,26617],["2021-09-11",33530,40,26657],["2021-09-12",33530,28,26685],["2021-09-13",33530,62,26747],["2021-09-14",33530,82,26829],["2021-09-15",33530,51,26880],["2021-09-16",33530,60,26940],["2021-09-17",33530,54,26994],["2021-09-18",33530,39,27033],["2021-09-19",33530,20,27053],["2021-09-20",33530,56,27109],["2021-09-21",33530,57,27166],["2021-09-22",33530,40,27206],["2021-09-23",33530,48,27254],["2021-09-24",33530,62,27316],["2021-09-25",33530,43,27359],["2021-09-26",33530,38,27397],["2021-09-27",33530,67,27464],["2021-09-28",33530,83,27547],["2021-09-29",33530,121,27668],["2021-09-30",33530,92,27760],["2021-10-01",33530,90,27850],["2021-10-02",33530,23,27873],["2021-10-03",33530,23,27896],["2021-10-04",33530,59,27955],["2021-10-05",33530,95,28050],["2021-10-06",33530,54,28104],["2021-10-07",33530,53,28157],["2021-10-08",33530,68,28225],["2021-10-09",33530,38,28263],["2021-10-10",33530,21,28284],["2021-10-11",33530,36,28320],["2021-10-12",33530,55,28375],["2021-10-13",33530,37,28412],["2021-10-14",33530,111,28523],["2021-10-15",33530,47,28570],["2021-10-16",33530,11,28581],["2021-10-17",33530,14,28595],["2021-10-18",33530,43,28638],["2021-10-19",33530,50,28688],["2021-10-20",33530,42,28730],["2021-10-21",33530,71,28801],["2021-10-22",33530,94,28895],["2021-10-23",33530,65,28960],["2021-10-24",33530,42,29002],["2021-10-25",33530,142,29144],["2021-10-26",33530,243,29387],["2021-10-27",33530,151,29538],["2021-10-28",33530,180,29718],["2021-10-29",33530,154,29872],["2021-10-30",33530,43,29915],["2021-10-31",33530,29,29944],["2021-11-01",33530,115,30059],["2021-11-02",33530,190,30249],["2021-11-03",33530,91,30340],["2021-11-04",33530,149,30489],["2021-11-05",33530,127,30616],["2021-11-06",33530,55,30671],["2021-11-07",33530,37,30708],["2021-11-08",33530,116,30824],["2021-11-09",33530,116,30940],["2021-11-10",33530,91,31031],["2021-11-11",33530,91,31122],["2021-11-12",33530,92,31214],["2021-11-13",33530,46,31260],["2021-11-14",33530,25,31285],["2021-11-15",33530,109,31394],["2021-11-16",33530,146,31540],["2021-11-17",33530,76,31616],["2021-11-18",33530,118,31734],["2021-11-19",33530,118,31852],["2021-11-20",33530,53,31905],["2021-11-21",33530,37,31942],["2021-11-22",33530,121,32063],["2021-11-23",33530,94,32157],["2021-11-24",33530,63,32220],["2021-11-26",33530,85,32305],["2021-11-27",33530,37,32342],["2021-11-28",33530,31,32373],["2021-11-29",33530,117,32490],["2021-11-30",33530,156,32646],["2021-12-01",33530,103,32749],["2021-12-02",33530,114,32863],["2021-12-03",33530,91,32954],["2021-12-04",33530,56,33010],["2021-12-05",33530,23,33033],["2021-12-06",33530,113,33146],["2021-12-07",33530,103,33249],["2021-12-08",33530,69,33318],["2021-12-09",33530,86,33404],["2021-12-10",33530,86,33490],["2021-12-11",33530,33,33523],["2021-12-12",33530,26,33549],["2021-12-13",33530,76,33625],["2021-12-14",33530,61,33686],["2021-12-15",33530,56,33742],["2021-12-16",33530,47,33789],["2021-12-17",33530,80,33869],["2021-12-18",33530,31,33900],["2021-12-19",33530,30,33930],["2021-12-20",33530,109,34039],["2021-12-21",33530,90,34129],["2021-12-22",33530,97,34226],["2021-12-23",33530,66,34292],["2021-12-24",33530,15,34307],["2021-12-26",33530,16,34323],["2021-12-27",33530,62,34385],["2021-12-28",33530,68,34453],["2021-12-29",33530,54,34507],["2021-12-30",33530,67,34574],["2021-12-31",33530,52,34626],["2022-01-01",33530,9,34635],["2022-01-02",33530,25,34660],["2022-01-03",33530,13,34673]]} \ No newline at end of file diff --git a/public/data/overall/vaccinations/by-county/Pierce.json b/public/data/overall/vaccinations/by-county/Pierce.json new file mode 100644 index 000000000..50e1924aa --- /dev/null +++ b/public/data/overall/vaccinations/by-county/Pierce.json @@ -0,0 +1 @@ +{"segment":{"county":"Pierce"},"headers":["report_date","population","vaccinations","total_vaccinations"],"rows":[["2020-12-17",19545,2,2],["2020-12-18",19545,1,3],["2020-12-19",19545,1,4],["2020-12-21",19545,1,5],["2020-12-22",19545,9,14],["2020-12-23",19545,21,35],["2020-12-24",19545,10,45],["2020-12-28",19545,22,67],["2020-12-29",19545,34,101],["2020-12-30",19545,28,129],["2020-12-31",19545,13,142],["2021-01-01",19545,1,143],["2021-01-04",19545,9,152],["2021-01-05",19545,23,175],["2021-01-06",19545,23,198],["2021-01-07",19545,32,230],["2021-01-08",19545,17,247],["2021-01-09",19545,1,248],["2021-01-11",19545,64,312],["2021-01-12",19545,37,349],["2021-01-13",19545,46,395],["2021-01-14",19545,19,414],["2021-01-15",19545,85,499],["2021-01-16",19545,49,548],["2021-01-17",19545,6,554],["2021-01-18",19545,117,671],["2021-01-19",19545,40,711],["2021-01-20",19545,69,780],["2021-01-21",19545,36,816],["2021-01-22",19545,75,891],["2021-01-23",19545,12,903],["2021-01-24",19545,11,914],["2021-01-25",19545,117,1031],["2021-01-26",19545,50,1081],["2021-01-27",19545,51,1132],["2021-01-28",19545,22,1154],["2021-01-29",19545,93,1247],["2021-01-30",19545,66,1313],["2021-02-01",19545,117,1430],["2021-02-02",19545,47,1477],["2021-02-03",19545,94,1571],["2021-02-04",19545,34,1605],["2021-02-05",19545,80,1685],["2021-02-06",19545,3,1688],["2021-02-07",19545,3,1691],["2021-02-08",19545,163,1854],["2021-02-09",19545,34,1888],["2021-02-10",19545,78,1966],["2021-02-11",19545,47,2013],["2021-02-12",19545,119,2132],["2021-02-13",19545,80,2212],["2021-02-14",19545,2,2214],["2021-02-15",19545,181,2395],["2021-02-16",19545,73,2468],["2021-02-17",19545,128,2596],["2021-02-18",19545,30,2626],["2021-02-19",19545,122,2748],["2021-02-20",19545,24,2772],["2021-02-21",19545,1,2773],["2021-02-22",19545,166,2939],["2021-02-23",19545,47,2986],["2021-02-24",19545,56,3042],["2021-02-25",19545,47,3089],["2021-02-26",19545,108,3197],["2021-02-27",19545,3,3200],["2021-02-28",19545,2,3202],["2021-03-01",19545,141,3343],["2021-03-02",19545,71,3414],["2021-03-03",19545,68,3482],["2021-03-04",19545,48,3530],["2021-03-05",19545,142,3672],["2021-03-06",19545,5,3677],["2021-03-07",19545,2,3679],["2021-03-08",19545,101,3780],["2021-03-09",19545,42,3822],["2021-03-10",19545,83,3905],["2021-03-11",19545,142,4047],["2021-03-12",19545,154,4201],["2021-03-13",19545,5,4206],["2021-03-14",19545,6,4212],["2021-03-15",19545,139,4351],["2021-03-16",19545,93,4444],["2021-03-17",19545,198,4642],["2021-03-18",19545,62,4704],["2021-03-19",19545,122,4826],["2021-03-20",19545,31,4857],["2021-03-21",19545,9,4866],["2021-03-22",19545,146,5012],["2021-03-23",19545,68,5080],["2021-03-24",19545,121,5201],["2021-03-25",19545,97,5298],["2021-03-26",19545,128,5426],["2021-03-27",19545,36,5462],["2021-03-28",19545,4,5466],["2021-03-29",19545,85,5551],["2021-03-30",19545,125,5676],["2021-03-31",19545,121,5797],["2021-04-01",19545,103,5900],["2021-04-02",19545,109,6009],["2021-04-03",19545,33,6042],["2021-04-04",19545,3,6045],["2021-04-05",19545,70,6115],["2021-04-06",19545,75,6190],["2021-04-07",19545,94,6284],["2021-04-08",19545,111,6395],["2021-04-09",19545,85,6480],["2021-04-10",19545,47,6527],["2021-04-11",19545,21,6548],["2021-04-12",19545,53,6601],["2021-04-13",19545,129,6730],["2021-04-14",19545,139,6869],["2021-04-15",19545,165,7034],["2021-04-16",19545,90,7124],["2021-04-17",19545,43,7167],["2021-04-19",19545,79,7246],["2021-04-20",19545,123,7369],["2021-04-21",19545,79,7448],["2021-04-22",19545,96,7544],["2021-04-23",19545,103,7647],["2021-04-24",19545,46,7693],["2021-04-26",19545,62,7755],["2021-04-27",19545,92,7847],["2021-04-28",19545,77,7924],["2021-04-29",19545,50,7974],["2021-04-30",19545,72,8046],["2021-05-01",19545,36,8082],["2021-05-02",19545,3,8085],["2021-05-03",19545,19,8104],["2021-05-04",19545,66,8170],["2021-05-05",19545,42,8212],["2021-05-06",19545,46,8258],["2021-05-07",19545,23,8281],["2021-05-08",19545,26,8307],["2021-05-10",19545,10,8317],["2021-05-11",19545,65,8382],["2021-05-12",19545,56,8438],["2021-05-13",19545,31,8469],["2021-05-14",19545,40,8509],["2021-05-15",19545,19,8528],["2021-05-16",19545,4,8532],["2021-05-17",19545,21,8553],["2021-05-18",19545,56,8609],["2021-05-19",19545,56,8665],["2021-05-20",19545,52,8717],["2021-05-21",19545,36,8753],["2021-05-22",19545,5,8758],["2021-05-23",19545,10,8768],["2021-05-24",19545,18,8786],["2021-05-25",19545,37,8823],["2021-05-26",19545,25,8848],["2021-05-27",19545,18,8866],["2021-05-28",19545,23,8889],["2021-05-29",19545,1,8890],["2021-05-31",19545,2,8892],["2021-06-01",19545,38,8930],["2021-06-02",19545,28,8958],["2021-06-03",19545,10,8968],["2021-06-04",19545,9,8977],["2021-06-05",19545,18,8995],["2021-06-06",19545,4,8999],["2021-06-07",19545,15,9014],["2021-06-08",19545,26,9040],["2021-06-09",19545,44,9084],["2021-06-10",19545,14,9098],["2021-06-11",19545,25,9123],["2021-06-12",19545,12,9135],["2021-06-13",19545,5,9140],["2021-06-14",19545,14,9154],["2021-06-15",19545,24,9178],["2021-06-16",19545,28,9206],["2021-06-17",19545,5,9211],["2021-06-18",19545,10,9221],["2021-06-19",19545,2,9223],["2021-06-20",19545,2,9225],["2021-06-21",19545,10,9235],["2021-06-22",19545,26,9261],["2021-06-23",19545,16,9277],["2021-06-24",19545,6,9283],["2021-06-25",19545,6,9289],["2021-06-26",19545,2,9291],["2021-06-28",19545,10,9301],["2021-06-29",19545,28,9329],["2021-06-30",19545,14,9343],["2021-07-01",19545,7,9350],["2021-07-02",19545,16,9366],["2021-07-03",19545,5,9371],["2021-07-05",19545,10,9381],["2021-07-06",19545,25,9406],["2021-07-07",19545,17,9423],["2021-07-08",19545,16,9439],["2021-07-09",19545,8,9447],["2021-07-10",19545,1,9448],["2021-07-11",19545,1,9449],["2021-07-12",19545,11,9460],["2021-07-13",19545,17,9477],["2021-07-14",19545,18,9495],["2021-07-15",19545,7,9502],["2021-07-16",19545,13,9515],["2021-07-17",19545,6,9521],["2021-07-18",19545,3,9524],["2021-07-19",19545,3,9527],["2021-07-20",19545,34,9561],["2021-07-21",19545,28,9589],["2021-07-22",19545,19,9608],["2021-07-23",19545,45,9653],["2021-07-24",19545,11,9664],["2021-07-25",19545,10,9674],["2021-07-26",19545,43,9717],["2021-07-27",19545,63,9780],["2021-07-28",19545,55,9835],["2021-07-29",19545,41,9876],["2021-07-30",19545,55,9931],["2021-07-31",19545,30,9961],["2021-08-01",19545,28,9989],["2021-08-02",19545,49,10038],["2021-08-03",19545,50,10088],["2021-08-04",19545,49,10137],["2021-08-05",19545,52,10189],["2021-08-06",19545,62,10251],["2021-08-07",19545,15,10266],["2021-08-08",19545,10,10276],["2021-08-09",19545,42,10318],["2021-08-10",19545,66,10384],["2021-08-11",19545,59,10443],["2021-08-12",19545,54,10497],["2021-08-13",19545,74,10571],["2021-08-14",19545,13,10584],["2021-08-15",19545,18,10602],["2021-08-16",19545,53,10655],["2021-08-17",19545,54,10709],["2021-08-18",19545,62,10771],["2021-08-19",19545,29,10800],["2021-08-20",19545,104,10904],["2021-08-21",19545,32,10936],["2021-08-22",19545,27,10963],["2021-08-23",19545,48,11011],["2021-08-24",19545,72,11083],["2021-08-25",19545,61,11144],["2021-08-26",19545,99,11243],["2021-08-27",19545,89,11332],["2021-08-28",19545,18,11350],["2021-08-29",19545,26,11376],["2021-08-30",19545,65,11441],["2021-08-31",19545,62,11503],["2021-09-01",19545,75,11578],["2021-09-02",19545,66,11644],["2021-09-03",19545,64,11708],["2021-09-04",19545,20,11728],["2021-09-05",19545,9,11737],["2021-09-06",19545,11,11748],["2021-09-07",19545,64,11812],["2021-09-08",19545,55,11867],["2021-09-09",19545,52,11919],["2021-09-10",19545,57,11976],["2021-09-11",19545,27,12003],["2021-09-12",19545,8,12011],["2021-09-13",19545,47,12058],["2021-09-14",19545,52,12110],["2021-09-15",19545,45,12155],["2021-09-16",19545,48,12203],["2021-09-17",19545,84,12287],["2021-09-18",19545,13,12300],["2021-09-19",19545,8,12308],["2021-09-20",19545,36,12344],["2021-09-21",19545,32,12376],["2021-09-22",19545,26,12402],["2021-09-23",19545,34,12436],["2021-09-24",19545,30,12466],["2021-09-25",19545,12,12478],["2021-09-26",19545,8,12486],["2021-09-27",19545,24,12510],["2021-09-28",19545,33,12543],["2021-09-29",19545,20,12563],["2021-09-30",19545,33,12596],["2021-10-01",19545,37,12633],["2021-10-02",19545,11,12644],["2021-10-03",19545,4,12648],["2021-10-04",19545,21,12669],["2021-10-05",19545,18,12687],["2021-10-06",19545,16,12703],["2021-10-07",19545,17,12720],["2021-10-08",19545,23,12743],["2021-10-09",19545,8,12751],["2021-10-10",19545,4,12755],["2021-10-11",19545,7,12762],["2021-10-12",19545,17,12779],["2021-10-13",19545,15,12794],["2021-10-14",19545,18,12812],["2021-10-15",19545,23,12835],["2021-10-16",19545,4,12839],["2021-10-17",19545,2,12841],["2021-10-18",19545,16,12857],["2021-10-19",19545,14,12871],["2021-10-20",19545,18,12889],["2021-10-21",19545,11,12900],["2021-10-22",19545,25,12925],["2021-10-23",19545,11,12936],["2021-10-24",19545,9,12945],["2021-10-25",19545,18,12963],["2021-10-26",19545,42,13005],["2021-10-27",19545,70,13075],["2021-10-28",19545,48,13123],["2021-10-29",19545,61,13184],["2021-10-30",19545,5,13189],["2021-10-31",19545,4,13193],["2021-11-01",19545,51,13244],["2021-11-02",19545,58,13302],["2021-11-03",19545,49,13351],["2021-11-04",19545,50,13401],["2021-11-05",19545,43,13444],["2021-11-06",19545,10,13454],["2021-11-07",19545,6,13460],["2021-11-08",19545,54,13514],["2021-11-09",19545,54,13568],["2021-11-10",19545,46,13614],["2021-11-11",19545,18,13632],["2021-11-12",19545,58,13690],["2021-11-13",19545,9,13699],["2021-11-14",19545,1,13700],["2021-11-15",19545,40,13740],["2021-11-16",19545,30,13770],["2021-11-17",19545,43,13813],["2021-11-18",19545,28,13841],["2021-11-19",19545,40,13881],["2021-11-20",19545,9,13890],["2021-11-21",19545,8,13898],["2021-11-22",19545,41,13939],["2021-11-23",19545,34,13973],["2021-11-24",19545,15,13988],["2021-11-26",19545,15,14003],["2021-11-27",19545,6,14009],["2021-11-28",19545,2,14011],["2021-11-29",19545,64,14075],["2021-11-30",19545,80,14155],["2021-12-01",19545,61,14216],["2021-12-02",19545,37,14253],["2021-12-03",19545,54,14307],["2021-12-04",19545,16,14323],["2021-12-05",19545,4,14327],["2021-12-06",19545,32,14359],["2021-12-07",19545,41,14400],["2021-12-08",19545,53,14453],["2021-12-09",19545,43,14496],["2021-12-10",19545,36,14532],["2021-12-11",19545,9,14541],["2021-12-12",19545,2,14543],["2021-12-13",19545,25,14568],["2021-12-14",19545,28,14596],["2021-12-15",19545,33,14629],["2021-12-16",19545,26,14655],["2021-12-17",19545,37,14692],["2021-12-18",19545,11,14703],["2021-12-19",19545,7,14710],["2021-12-20",19545,35,14745],["2021-12-21",19545,46,14791],["2021-12-22",19545,33,14824],["2021-12-23",19545,8,14832],["2021-12-24",19545,5,14837],["2021-12-26",19545,5,14842],["2021-12-27",19545,22,14864],["2021-12-28",19545,63,14927],["2021-12-29",19545,37,14964],["2021-12-30",19545,24,14988],["2021-12-31",19545,23,15011],["2022-01-02",19545,7,15018],["2022-01-03",19545,6,15024]]} \ No newline at end of file diff --git a/public/data/overall/vaccinations/by-county/Pike.json b/public/data/overall/vaccinations/by-county/Pike.json new file mode 100644 index 000000000..bf0a6e13f --- /dev/null +++ b/public/data/overall/vaccinations/by-county/Pike.json @@ -0,0 +1 @@ +{"segment":{"county":"Pike"},"headers":["report_date","population","vaccinations","total_vaccinations"],"rows":[["2020-12-17",18860,1,1],["2020-12-18",18860,2,3],["2020-12-19",18860,14,17],["2020-12-21",18860,10,27],["2020-12-22",18860,7,34],["2020-12-23",18860,18,52],["2020-12-24",18860,4,56],["2020-12-27",18860,2,58],["2020-12-28",18860,16,74],["2020-12-29",18860,31,105],["2020-12-30",18860,29,134],["2020-12-31",18860,14,148],["2021-01-01",18860,5,153],["2021-01-02",18860,1,154],["2021-01-03",18860,3,157],["2021-01-04",18860,18,175],["2021-01-05",18860,27,202],["2021-01-06",18860,14,216],["2021-01-07",18860,10,226],["2021-01-08",18860,24,250],["2021-01-09",18860,28,278],["2021-01-10",18860,6,284],["2021-01-11",18860,17,301],["2021-01-12",18860,50,351],["2021-01-13",18860,42,393],["2021-01-14",18860,55,448],["2021-01-15",18860,67,515],["2021-01-16",18860,14,529],["2021-01-17",18860,8,537],["2021-01-18",18860,44,581],["2021-01-19",18860,109,690],["2021-01-20",18860,53,743],["2021-01-21",18860,73,816],["2021-01-22",18860,62,878],["2021-01-23",18860,6,884],["2021-01-24",18860,17,901],["2021-01-25",18860,53,954],["2021-01-26",18860,67,1021],["2021-01-27",18860,38,1059],["2021-01-28",18860,58,1117],["2021-01-29",18860,67,1184],["2021-01-30",18860,8,1192],["2021-01-31",18860,6,1198],["2021-02-01",18860,42,1240],["2021-02-02",18860,88,1328],["2021-02-03",18860,38,1366],["2021-02-04",18860,87,1453],["2021-02-05",18860,88,1541],["2021-02-06",18860,4,1545],["2021-02-07",18860,5,1550],["2021-02-08",18860,15,1565],["2021-02-09",18860,77,1642],["2021-02-10",18860,47,1689],["2021-02-11",18860,127,1816],["2021-02-12",18860,106,1922],["2021-02-13",18860,18,1940],["2021-02-14",18860,6,1946],["2021-02-15",18860,45,1991],["2021-02-16",18860,129,2120],["2021-02-17",18860,58,2178],["2021-02-18",18860,103,2281],["2021-02-19",18860,79,2360],["2021-02-20",18860,13,2373],["2021-02-21",18860,10,2383],["2021-02-22",18860,19,2402],["2021-02-23",18860,97,2499],["2021-02-24",18860,32,2531],["2021-02-25",18860,115,2646],["2021-02-26",18860,79,2725],["2021-02-27",18860,7,2732],["2021-02-28",18860,7,2739],["2021-03-01",18860,35,2774],["2021-03-02",18860,117,2891],["2021-03-03",18860,34,2925],["2021-03-04",18860,130,3055],["2021-03-05",18860,108,3163],["2021-03-06",18860,8,3171],["2021-03-07",18860,8,3179],["2021-03-08",18860,48,3227],["2021-03-09",18860,96,3323],["2021-03-10",18860,60,3383],["2021-03-11",18860,132,3515],["2021-03-12",18860,108,3623],["2021-03-13",18860,9,3632],["2021-03-14",18860,10,3642],["2021-03-15",18860,65,3707],["2021-03-16",18860,131,3838],["2021-03-17",18860,56,3894],["2021-03-18",18860,96,3990],["2021-03-19",18860,176,4166],["2021-03-20",18860,17,4183],["2021-03-21",18860,23,4206],["2021-03-22",18860,50,4256],["2021-03-23",18860,127,4383],["2021-03-24",18860,81,4464],["2021-03-25",18860,146,4610],["2021-03-26",18860,123,4733],["2021-03-27",18860,14,4747],["2021-03-28",18860,15,4762],["2021-03-29",18860,61,4823],["2021-03-30",18860,127,4950],["2021-03-31",18860,79,5029],["2021-04-01",18860,175,5204],["2021-04-02",18860,95,5299],["2021-04-03",18860,15,5314],["2021-04-04",18860,22,5336],["2021-04-05",18860,65,5401],["2021-04-06",18860,135,5536],["2021-04-07",18860,107,5643],["2021-04-08",18860,134,5777],["2021-04-09",18860,126,5903],["2021-04-10",18860,24,5927],["2021-04-11",18860,26,5953],["2021-04-12",18860,76,6029],["2021-04-13",18860,148,6177],["2021-04-14",18860,108,6285],["2021-04-15",18860,135,6420],["2021-04-16",18860,93,6513],["2021-04-17",18860,20,6533],["2021-04-18",18860,13,6546],["2021-04-19",18860,68,6614],["2021-04-20",18860,89,6703],["2021-04-21",18860,99,6802],["2021-04-22",18860,91,6893],["2021-04-23",18860,77,6970],["2021-04-24",18860,20,6990],["2021-04-25",18860,8,6998],["2021-04-26",18860,44,7042],["2021-04-27",18860,103,7145],["2021-04-28",18860,75,7220],["2021-04-29",18860,92,7312],["2021-04-30",18860,107,7419],["2021-05-01",18860,24,7443],["2021-05-02",18860,15,7458],["2021-05-03",18860,40,7498],["2021-05-04",18860,67,7565],["2021-05-05",18860,81,7646],["2021-05-06",18860,73,7719],["2021-05-07",18860,92,7811],["2021-05-08",18860,25,7836],["2021-05-09",18860,8,7844],["2021-05-10",18860,22,7866],["2021-05-11",18860,68,7934],["2021-05-12",18860,66,8000],["2021-05-13",18860,41,8041],["2021-05-14",18860,59,8100],["2021-05-15",18860,24,8124],["2021-05-16",18860,14,8138],["2021-05-17",18860,58,8196],["2021-05-18",18860,52,8248],["2021-05-19",18860,39,8287],["2021-05-20",18860,38,8325],["2021-05-21",18860,51,8376],["2021-05-22",18860,17,8393],["2021-05-23",18860,9,8402],["2021-05-24",18860,19,8421],["2021-05-25",18860,27,8448],["2021-05-26",18860,31,8479],["2021-05-27",18860,36,8515],["2021-05-28",18860,33,8548],["2021-05-29",18860,12,8560],["2021-05-30",18860,8,8568],["2021-05-31",18860,4,8572],["2021-06-01",18860,34,8606],["2021-06-02",18860,26,8632],["2021-06-03",18860,30,8662],["2021-06-04",18860,36,8698],["2021-06-05",18860,12,8710],["2021-06-06",18860,13,8723],["2021-06-07",18860,22,8745],["2021-06-08",18860,23,8768],["2021-06-09",18860,15,8783],["2021-06-10",18860,27,8810],["2021-06-11",18860,47,8857],["2021-06-12",18860,10,8867],["2021-06-13",18860,10,8877],["2021-06-14",18860,17,8894],["2021-06-15",18860,29,8923],["2021-06-16",18860,26,8949],["2021-06-17",18860,14,8963],["2021-06-18",18860,15,8978],["2021-06-19",18860,13,8991],["2021-06-20",18860,6,8997],["2021-06-21",18860,10,9007],["2021-06-22",18860,21,9028],["2021-06-23",18860,15,9043],["2021-06-24",18860,14,9057],["2021-06-25",18860,29,9086],["2021-06-26",18860,9,9095],["2021-06-27",18860,5,9100],["2021-06-28",18860,9,9109],["2021-06-29",18860,21,9130],["2021-06-30",18860,14,9144],["2021-07-01",18860,12,9156],["2021-07-02",18860,26,9182],["2021-07-03",18860,12,9194],["2021-07-04",18860,2,9196],["2021-07-05",18860,6,9202],["2021-07-06",18860,15,9217],["2021-07-07",18860,11,9228],["2021-07-08",18860,11,9239],["2021-07-09",18860,16,9255],["2021-07-10",18860,11,9266],["2021-07-11",18860,4,9270],["2021-07-12",18860,9,9279],["2021-07-13",18860,19,9298],["2021-07-14",18860,13,9311],["2021-07-15",18860,11,9322],["2021-07-16",18860,25,9347],["2021-07-17",18860,11,9358],["2021-07-18",18860,5,9363],["2021-07-19",18860,17,9380],["2021-07-20",18860,22,9402],["2021-07-21",18860,15,9417],["2021-07-22",18860,24,9441],["2021-07-23",18860,32,9473],["2021-07-24",18860,15,9488],["2021-07-25",18860,8,9496],["2021-07-26",18860,19,9515],["2021-07-27",18860,26,9541],["2021-07-28",18860,22,9563],["2021-07-29",18860,27,9590],["2021-07-30",18860,28,9618],["2021-07-31",18860,12,9630],["2021-08-01",18860,23,9653],["2021-08-02",18860,25,9678],["2021-08-03",18860,51,9729],["2021-08-04",18860,25,9754],["2021-08-05",18860,39,9793],["2021-08-06",18860,49,9842],["2021-08-07",18860,20,9862],["2021-08-08",18860,13,9875],["2021-08-09",18860,28,9903],["2021-08-10",18860,39,9942],["2021-08-11",18860,30,9972],["2021-08-12",18860,41,10013],["2021-08-13",18860,57,10070],["2021-08-14",18860,12,10082],["2021-08-15",18860,15,10097],["2021-08-16",18860,31,10128],["2021-08-17",18860,49,10177],["2021-08-18",18860,49,10226],["2021-08-19",18860,39,10265],["2021-08-20",18860,60,10325],["2021-08-21",18860,28,10353],["2021-08-22",18860,26,10379],["2021-08-23",18860,56,10435],["2021-08-24",18860,75,10510],["2021-08-25",18860,48,10558],["2021-08-26",18860,69,10627],["2021-08-27",18860,94,10721],["2021-08-28",18860,34,10755],["2021-08-29",18860,28,10783],["2021-08-30",18860,54,10837],["2021-08-31",18860,57,10894],["2021-09-01",18860,50,10944],["2021-09-02",18860,48,10992],["2021-09-03",18860,82,11074],["2021-09-04",18860,35,11109],["2021-09-05",18860,17,11126],["2021-09-06",18860,23,11149],["2021-09-07",18860,48,11197],["2021-09-08",18860,50,11247],["2021-09-09",18860,40,11287],["2021-09-10",18860,73,11360],["2021-09-11",18860,22,11382],["2021-09-12",18860,17,11399],["2021-09-13",18860,41,11440],["2021-09-14",18860,57,11497],["2021-09-15",18860,54,11551],["2021-09-16",18860,54,11605],["2021-09-17",18860,66,11671],["2021-09-18",18860,24,11695],["2021-09-19",18860,25,11720],["2021-09-20",18860,21,11741],["2021-09-21",18860,51,11792],["2021-09-22",18860,34,11826],["2021-09-23",18860,48,11874],["2021-09-24",18860,48,11922],["2021-09-25",18860,23,11945],["2021-09-26",18860,26,11971],["2021-09-27",18860,43,12014],["2021-09-28",18860,66,12080],["2021-09-29",18860,39,12119],["2021-09-30",18860,40,12159],["2021-10-01",18860,81,12240],["2021-10-02",18860,19,12259],["2021-10-03",18860,10,12269],["2021-10-04",18860,57,12326],["2021-10-05",18860,53,12379],["2021-10-06",18860,29,12408],["2021-10-07",18860,45,12453],["2021-10-08",18860,60,12513],["2021-10-09",18860,22,12535],["2021-10-10",18860,12,12547],["2021-10-11",18860,26,12573],["2021-10-12",18860,43,12616],["2021-10-13",18860,29,12645],["2021-10-14",18860,36,12681],["2021-10-15",18860,58,12739],["2021-10-16",18860,2,12741],["2021-10-17",18860,9,12750],["2021-10-18",18860,17,12767],["2021-10-19",18860,37,12804],["2021-10-20",18860,13,12817],["2021-10-21",18860,39,12856],["2021-10-22",18860,43,12899],["2021-10-23",18860,13,12912],["2021-10-24",18860,15,12927],["2021-10-25",18860,36,12963],["2021-10-26",18860,58,13021],["2021-10-27",18860,36,13057],["2021-10-28",18860,53,13110],["2021-10-29",18860,42,13152],["2021-10-30",18860,14,13166],["2021-10-31",18860,6,13172],["2021-11-01",18860,29,13201],["2021-11-02",18860,57,13258],["2021-11-03",18860,20,13278],["2021-11-04",18860,36,13314],["2021-11-05",18860,63,13377],["2021-11-06",18860,10,13387],["2021-11-07",18860,12,13399],["2021-11-08",18860,23,13422],["2021-11-09",18860,44,13466],["2021-11-10",18860,26,13492],["2021-11-11",18860,41,13533],["2021-11-12",18860,40,13573],["2021-11-13",18860,15,13588],["2021-11-14",18860,3,13591],["2021-11-15",18860,22,13613],["2021-11-16",18860,48,13661],["2021-11-17",18860,26,13687],["2021-11-18",18860,33,13720],["2021-11-19",18860,77,13797],["2021-11-20",18860,16,13813],["2021-11-21",18860,14,13827],["2021-11-22",18860,34,13861],["2021-11-23",18860,34,13895],["2021-11-24",18860,16,13911],["2021-11-26",18860,16,13927],["2021-11-27",18860,7,13934],["2021-11-28",18860,19,13953],["2021-11-29",18860,41,13994],["2021-11-30",18860,55,14049],["2021-12-01",18860,36,14085],["2021-12-02",18860,43,14128],["2021-12-03",18860,79,14207],["2021-12-04",18860,30,14237],["2021-12-05",18860,16,14253],["2021-12-06",18860,19,14272],["2021-12-07",18860,58,14330],["2021-12-08",18860,33,14363],["2021-12-09",18860,31,14394],["2021-12-10",18860,53,14447],["2021-12-11",18860,11,14458],["2021-12-12",18860,9,14467],["2021-12-13",18860,20,14487],["2021-12-14",18860,44,14531],["2021-12-15",18860,25,14556],["2021-12-16",18860,16,14572],["2021-12-17",18860,41,14613],["2021-12-18",18860,11,14624],["2021-12-19",18860,10,14634],["2021-12-20",18860,19,14653],["2021-12-21",18860,54,14707],["2021-12-22",18860,44,14751],["2021-12-23",18860,27,14778],["2021-12-24",18860,12,14790],["2021-12-26",18860,5,14795],["2021-12-27",18860,10,14805],["2021-12-28",18860,56,14861],["2021-12-29",18860,21,14882],["2021-12-30",18860,33,14915],["2021-12-31",18860,27,14942],["2022-01-01",18860,10,14952],["2022-01-02",18860,8,14960],["2022-01-03",18860,10,14970]]} \ No newline at end of file diff --git a/public/data/overall/vaccinations/by-county/Polk.json b/public/data/overall/vaccinations/by-county/Polk.json new file mode 100644 index 000000000..c884af468 --- /dev/null +++ b/public/data/overall/vaccinations/by-county/Polk.json @@ -0,0 +1 @@ +{"segment":{"county":"Polk"},"headers":["report_date","population","vaccinations","total_vaccinations"],"rows":[["2020-12-12",43482,1,1],["2020-12-18",43482,9,10],["2020-12-19",43482,2,12],["2020-12-21",43482,16,28],["2020-12-22",43482,35,63],["2020-12-23",43482,52,115],["2020-12-24",43482,5,120],["2020-12-26",43482,8,128],["2020-12-27",43482,5,133],["2020-12-28",43482,122,255],["2020-12-29",43482,33,288],["2020-12-30",43482,34,322],["2020-12-31",43482,42,364],["2021-01-01",43482,8,372],["2021-01-02",43482,7,379],["2021-01-03",43482,5,384],["2021-01-04",43482,50,434],["2021-01-05",43482,59,493],["2021-01-06",43482,74,567],["2021-01-07",43482,94,661],["2021-01-08",43482,77,738],["2021-01-09",43482,2,740],["2021-01-10",43482,12,752],["2021-01-11",43482,152,904],["2021-01-12",43482,188,1092],["2021-01-13",43482,218,1310],["2021-01-14",43482,274,1584],["2021-01-15",43482,250,1834],["2021-01-16",43482,16,1850],["2021-01-17",43482,9,1859],["2021-01-18",43482,366,2225],["2021-01-19",43482,311,2536],["2021-01-20",43482,292,2828],["2021-01-21",43482,139,2967],["2021-01-22",43482,117,3084],["2021-01-23",43482,6,3090],["2021-01-24",43482,9,3099],["2021-01-25",43482,244,3343],["2021-01-26",43482,324,3667],["2021-01-27",43482,246,3913],["2021-01-28",43482,272,4185],["2021-01-29",43482,236,4421],["2021-01-30",43482,5,4426],["2021-01-31",43482,3,4429],["2021-02-01",43482,229,4658],["2021-02-02",43482,164,4822],["2021-02-03",43482,201,5023],["2021-02-04",43482,175,5198],["2021-02-05",43482,220,5418],["2021-02-06",43482,54,5472],["2021-02-07",43482,6,5478],["2021-02-08",43482,264,5742],["2021-02-09",43482,230,5972],["2021-02-10",43482,295,6267],["2021-02-11",43482,234,6501],["2021-02-12",43482,262,6763],["2021-02-13",43482,35,6798],["2021-02-14",43482,2,6800],["2021-02-15",43482,288,7088],["2021-02-16",43482,98,7186],["2021-02-17",43482,369,7555],["2021-02-18",43482,199,7754],["2021-02-19",43482,216,7970],["2021-02-20",43482,6,7976],["2021-02-21",43482,7,7983],["2021-02-22",43482,116,8099],["2021-02-23",43482,214,8313],["2021-02-24",43482,272,8585],["2021-02-25",43482,235,8820],["2021-02-26",43482,237,9057],["2021-02-27",43482,21,9078],["2021-02-28",43482,30,9108],["2021-03-01",43482,337,9445],["2021-03-02",43482,306,9751],["2021-03-03",43482,195,9946],["2021-03-04",43482,157,10103],["2021-03-05",43482,139,10242],["2021-03-06",43482,35,10277],["2021-03-07",43482,26,10303],["2021-03-08",43482,159,10462],["2021-03-09",43482,195,10657],["2021-03-10",43482,215,10872],["2021-03-11",43482,149,11021],["2021-03-12",43482,189,11210],["2021-03-13",43482,168,11378],["2021-03-14",43482,17,11395],["2021-03-15",43482,209,11604],["2021-03-16",43482,269,11873],["2021-03-17",43482,345,12218],["2021-03-18",43482,189,12407],["2021-03-19",43482,246,12653],["2021-03-20",43482,22,12675],["2021-03-21",43482,27,12702],["2021-03-22",43482,124,12826],["2021-03-23",43482,284,13110],["2021-03-24",43482,152,13262],["2021-03-25",43482,157,13419],["2021-03-26",43482,209,13628],["2021-03-27",43482,34,13662],["2021-03-28",43482,38,13700],["2021-03-29",43482,171,13871],["2021-03-30",43482,246,14117],["2021-03-31",43482,221,14338],["2021-04-01",43482,212,14550],["2021-04-02",43482,312,14862],["2021-04-03",43482,29,14891],["2021-04-04",43482,41,14932],["2021-04-05",43482,297,15229],["2021-04-06",43482,174,15403],["2021-04-07",43482,321,15724],["2021-04-08",43482,157,15881],["2021-04-09",43482,278,16159],["2021-04-10",43482,146,16305],["2021-04-11",43482,32,16337],["2021-04-12",43482,314,16651],["2021-04-13",43482,181,16832],["2021-04-14",43482,452,17284],["2021-04-15",43482,252,17536],["2021-04-16",43482,389,17925],["2021-04-17",43482,35,17960],["2021-04-18",43482,20,17980],["2021-04-19",43482,156,18136],["2021-04-20",43482,168,18304],["2021-04-21",43482,184,18488],["2021-04-22",43482,181,18669],["2021-04-23",43482,220,18889],["2021-04-24",43482,35,18924],["2021-04-25",43482,24,18948],["2021-04-26",43482,193,19141],["2021-04-27",43482,133,19274],["2021-04-28",43482,183,19457],["2021-04-29",43482,124,19581],["2021-04-30",43482,210,19791],["2021-05-01",43482,164,19955],["2021-05-02",43482,31,19986],["2021-05-03",43482,147,20133],["2021-05-04",43482,100,20233],["2021-05-05",43482,177,20410],["2021-05-06",43482,189,20599],["2021-05-07",43482,137,20736],["2021-05-08",43482,58,20794],["2021-05-09",43482,20,20814],["2021-05-10",43482,106,20920],["2021-05-11",43482,84,21004],["2021-05-12",43482,98,21102],["2021-05-13",43482,103,21205],["2021-05-14",43482,148,21353],["2021-05-15",43482,45,21398],["2021-05-16",43482,30,21428],["2021-05-17",43482,100,21528],["2021-05-18",43482,88,21616],["2021-05-19",43482,119,21735],["2021-05-20",43482,167,21902],["2021-05-21",43482,110,22012],["2021-05-22",43482,64,22076],["2021-05-23",43482,15,22091],["2021-05-24",43482,85,22176],["2021-05-25",43482,71,22247],["2021-05-26",43482,88,22335],["2021-05-27",43482,103,22438],["2021-05-28",43482,87,22525],["2021-05-29",43482,31,22556],["2021-05-30",43482,18,22574],["2021-05-31",43482,15,22589],["2021-06-01",43482,60,22649],["2021-06-02",43482,66,22715],["2021-06-03",43482,68,22783],["2021-06-04",43482,82,22865],["2021-06-05",43482,28,22893],["2021-06-06",43482,27,22920],["2021-06-07",43482,73,22993],["2021-06-08",43482,43,23036],["2021-06-09",43482,59,23095],["2021-06-10",43482,73,23168],["2021-06-11",43482,94,23262],["2021-06-12",43482,34,23296],["2021-06-13",43482,18,23314],["2021-06-14",43482,51,23365],["2021-06-15",43482,52,23417],["2021-06-16",43482,57,23474],["2021-06-17",43482,88,23562],["2021-06-18",43482,93,23655],["2021-06-19",43482,24,23679],["2021-06-20",43482,10,23689],["2021-06-21",43482,21,23710],["2021-06-22",43482,50,23760],["2021-06-23",43482,43,23803],["2021-06-24",43482,79,23882],["2021-06-25",43482,84,23966],["2021-06-26",43482,27,23993],["2021-06-27",43482,15,24008],["2021-06-28",43482,37,24045],["2021-06-29",43482,43,24088],["2021-06-30",43482,39,24127],["2021-07-01",43482,53,24180],["2021-07-02",43482,52,24232],["2021-07-03",43482,15,24247],["2021-07-04",43482,9,24256],["2021-07-05",43482,14,24270],["2021-07-06",43482,42,24312],["2021-07-07",43482,35,24347],["2021-07-08",43482,53,24400],["2021-07-09",43482,48,24448],["2021-07-10",43482,14,24462],["2021-07-11",43482,14,24476],["2021-07-12",43482,24,24500],["2021-07-13",43482,38,24538],["2021-07-14",43482,26,24564],["2021-07-15",43482,87,24651],["2021-07-16",43482,47,24698],["2021-07-17",43482,27,24725],["2021-07-18",43482,11,24736],["2021-07-19",43482,48,24784],["2021-07-20",43482,54,24838],["2021-07-21",43482,53,24891],["2021-07-22",43482,83,24974],["2021-07-23",43482,82,25056],["2021-07-24",43482,45,25101],["2021-07-25",43482,24,25125],["2021-07-26",43482,47,25172],["2021-07-27",43482,66,25238],["2021-07-28",43482,52,25290],["2021-07-29",43482,125,25415],["2021-07-30",43482,110,25525],["2021-07-31",43482,33,25558],["2021-08-01",43482,28,25586],["2021-08-02",43482,59,25645],["2021-08-03",43482,87,25732],["2021-08-04",43482,55,25787],["2021-08-05",43482,100,25887],["2021-08-06",43482,136,26023],["2021-08-07",43482,33,26056],["2021-08-08",43482,27,26083],["2021-08-09",43482,97,26180],["2021-08-10",43482,118,26298],["2021-08-11",43482,62,26360],["2021-08-12",43482,117,26477],["2021-08-13",43482,126,26603],["2021-08-14",43482,70,26673],["2021-08-15",43482,35,26708],["2021-08-16",43482,90,26798],["2021-08-17",43482,113,26911],["2021-08-18",43482,93,27004],["2021-08-19",43482,160,27164],["2021-08-20",43482,158,27322],["2021-08-21",43482,61,27383],["2021-08-22",43482,72,27455],["2021-08-23",43482,144,27599],["2021-08-24",43482,164,27763],["2021-08-25",43482,112,27875],["2021-08-26",43482,195,28070],["2021-08-27",43482,214,28284],["2021-08-28",43482,78,28362],["2021-08-29",43482,39,28401],["2021-08-30",43482,167,28568],["2021-08-31",43482,172,28740],["2021-09-01",43482,128,28868],["2021-09-02",43482,168,29036],["2021-09-03",43482,203,29239],["2021-09-04",43482,76,29315],["2021-09-05",43482,41,29356],["2021-09-06",43482,31,29387],["2021-09-07",43482,167,29554],["2021-09-08",43482,91,29645],["2021-09-09",43482,137,29782],["2021-09-10",43482,188,29970],["2021-09-11",43482,72,30042],["2021-09-12",43482,65,30107],["2021-09-13",43482,143,30250],["2021-09-14",43482,141,30391],["2021-09-15",43482,113,30504],["2021-09-16",43482,135,30639],["2021-09-17",43482,176,30815],["2021-09-18",43482,72,30887],["2021-09-19",43482,57,30944],["2021-09-20",43482,109,31053],["2021-09-21",43482,131,31184],["2021-09-22",43482,104,31288],["2021-09-23",43482,136,31424],["2021-09-24",43482,145,31569],["2021-09-25",43482,55,31624],["2021-09-26",43482,55,31679],["2021-09-27",43482,63,31742],["2021-09-28",43482,93,31835],["2021-09-29",43482,93,31928],["2021-09-30",43482,100,32028],["2021-10-01",43482,154,32182],["2021-10-02",43482,42,32224],["2021-10-03",43482,38,32262],["2021-10-04",43482,66,32328],["2021-10-05",43482,118,32446],["2021-10-06",43482,50,32496],["2021-10-07",43482,87,32583],["2021-10-08",43482,146,32729],["2021-10-09",43482,37,32766],["2021-10-10",43482,33,32799],["2021-10-11",43482,50,32849],["2021-10-12",43482,97,32946],["2021-10-13",43482,65,33011],["2021-10-14",43482,62,33073],["2021-10-15",43482,84,33157],["2021-10-16",43482,33,33190],["2021-10-17",43482,34,33224],["2021-10-18",43482,39,33263],["2021-10-19",43482,82,33345],["2021-10-20",43482,39,33384],["2021-10-21",43482,63,33447],["2021-10-22",43482,129,33576],["2021-10-23",43482,48,33624],["2021-10-24",43482,36,33660],["2021-10-25",43482,174,33834],["2021-10-26",43482,180,34014],["2021-10-27",43482,177,34191],["2021-10-28",43482,281,34472],["2021-10-29",43482,139,34611],["2021-10-30",43482,31,34642],["2021-10-31",43482,20,34662],["2021-11-01",43482,165,34827],["2021-11-02",43482,147,34974],["2021-11-03",43482,164,35138],["2021-11-04",43482,133,35271],["2021-11-05",43482,104,35375],["2021-11-06",43482,33,35408],["2021-11-07",43482,29,35437],["2021-11-08",43482,165,35602],["2021-11-09",43482,154,35756],["2021-11-10",43482,96,35852],["2021-11-11",43482,62,35914],["2021-11-12",43482,126,36040],["2021-11-13",43482,36,36076],["2021-11-14",43482,22,36098],["2021-11-15",43482,110,36208],["2021-11-16",43482,106,36314],["2021-11-17",43482,102,36416],["2021-11-18",43482,237,36653],["2021-11-19",43482,114,36767],["2021-11-20",43482,49,36816],["2021-11-21",43482,21,36837],["2021-11-22",43482,98,36935],["2021-11-23",43482,108,37043],["2021-11-24",43482,65,37108],["2021-11-25",43482,1,37109],["2021-11-26",43482,33,37142],["2021-11-27",43482,33,37175],["2021-11-28",43482,26,37201],["2021-11-29",43482,124,37325],["2021-11-30",43482,143,37468],["2021-12-01",43482,153,37621],["2021-12-02",43482,169,37790],["2021-12-03",43482,180,37970],["2021-12-04",43482,42,38012],["2021-12-05",43482,25,38037],["2021-12-06",43482,129,38166],["2021-12-07",43482,125,38291],["2021-12-08",43482,97,38388],["2021-12-09",43482,98,38486],["2021-12-10",43482,111,38597],["2021-12-11",43482,41,38638],["2021-12-12",43482,32,38670],["2021-12-13",43482,60,38730],["2021-12-14",43482,95,38825],["2021-12-15",43482,75,38900],["2021-12-16",43482,65,38965],["2021-12-17",43482,92,39057],["2021-12-18",43482,32,39089],["2021-12-19",43482,32,39121],["2021-12-20",43482,99,39220],["2021-12-21",43482,114,39334],["2021-12-22",43482,90,39424],["2021-12-23",43482,38,39462],["2021-12-24",43482,23,39485],["2021-12-26",43482,21,39506],["2021-12-27",43482,89,39595],["2021-12-28",43482,131,39726],["2021-12-29",43482,94,39820],["2021-12-30",43482,102,39922],["2021-12-31",43482,40,39962],["2022-01-01",43482,16,39978],["2022-01-02",43482,32,40010],["2022-01-03",43482,23,40033]]} \ No newline at end of file diff --git a/public/data/overall/vaccinations/by-county/Pulaski.json b/public/data/overall/vaccinations/by-county/Pulaski.json new file mode 100644 index 000000000..c71da5d34 --- /dev/null +++ b/public/data/overall/vaccinations/by-county/Pulaski.json @@ -0,0 +1 @@ +{"segment":{"county":"Pulaski"},"headers":["report_date","population","vaccinations","total_vaccinations"],"rows":[["2020-12-17",10893,1,1],["2020-12-18",10893,2,3],["2020-12-21",10893,2,5],["2020-12-22",10893,4,9],["2020-12-23",10893,6,15],["2020-12-24",10893,4,19],["2020-12-26",10893,1,20],["2020-12-27",10893,1,21],["2020-12-28",10893,5,26],["2020-12-29",10893,30,56],["2020-12-30",10893,16,72],["2020-12-31",10893,1,73],["2021-01-01",10893,8,81],["2021-01-02",10893,1,82],["2021-01-03",10893,5,87],["2021-01-04",10893,13,100],["2021-01-05",10893,20,120],["2021-01-06",10893,91,211],["2021-01-07",10893,16,227],["2021-01-08",10893,32,259],["2021-01-09",10893,3,262],["2021-01-10",10893,1,263],["2021-01-11",10893,97,360],["2021-01-12",10893,43,403],["2021-01-13",10893,279,682],["2021-01-14",10893,76,758],["2021-01-15",10893,32,790],["2021-01-16",10893,4,794],["2021-01-17",10893,1,795],["2021-01-18",10893,16,811],["2021-01-19",10893,16,827],["2021-01-20",10893,39,866],["2021-01-21",10893,88,954],["2021-01-22",10893,16,970],["2021-01-23",10893,2,972],["2021-01-24",10893,5,977],["2021-01-25",10893,58,1035],["2021-01-26",10893,41,1076],["2021-01-27",10893,24,1100],["2021-01-28",10893,118,1218],["2021-01-29",10893,18,1236],["2021-01-30",10893,2,1238],["2021-02-01",10893,35,1273],["2021-02-02",10893,29,1302],["2021-02-03",10893,53,1355],["2021-02-04",10893,133,1488],["2021-02-05",10893,39,1527],["2021-02-06",10893,5,1532],["2021-02-07",10893,1,1533],["2021-02-08",10893,47,1580],["2021-02-09",10893,38,1618],["2021-02-10",10893,41,1659],["2021-02-11",10893,260,1919],["2021-02-12",10893,40,1959],["2021-02-13",10893,1,1960],["2021-02-15",10893,19,1979],["2021-02-16",10893,25,2004],["2021-02-17",10893,13,2017],["2021-02-18",10893,272,2289],["2021-02-19",10893,17,2306],["2021-02-20",10893,4,2310],["2021-02-22",10893,28,2338],["2021-02-23",10893,23,2361],["2021-02-24",10893,24,2385],["2021-02-25",10893,206,2591],["2021-02-26",10893,24,2615],["2021-02-27",10893,3,2618],["2021-02-28",10893,2,2620],["2021-03-01",10893,16,2636],["2021-03-02",10893,18,2654],["2021-03-03",10893,46,2700],["2021-03-04",10893,152,2852],["2021-03-05",10893,22,2874],["2021-03-06",10893,2,2876],["2021-03-07",10893,3,2879],["2021-03-08",10893,38,2917],["2021-03-09",10893,13,2930],["2021-03-10",10893,31,2961],["2021-03-11",10893,115,3076],["2021-03-12",10893,40,3116],["2021-03-13",10893,7,3123],["2021-03-14",10893,24,3147],["2021-03-15",10893,32,3179],["2021-03-16",10893,67,3246],["2021-03-17",10893,38,3284],["2021-03-18",10893,135,3419],["2021-03-19",10893,39,3458],["2021-03-20",10893,6,3464],["2021-03-21",10893,2,3466],["2021-03-22",10893,20,3486],["2021-03-23",10893,30,3516],["2021-03-24",10893,49,3565],["2021-03-25",10893,167,3732],["2021-03-26",10893,39,3771],["2021-03-27",10893,7,3778],["2021-03-28",10893,7,3785],["2021-03-29",10893,26,3811],["2021-03-30",10893,28,3839],["2021-03-31",10893,42,3881],["2021-04-01",10893,163,4044],["2021-04-02",10893,29,4073],["2021-04-03",10893,5,4078],["2021-04-04",10893,8,4086],["2021-04-05",10893,33,4119],["2021-04-06",10893,24,4143],["2021-04-07",10893,51,4194],["2021-04-08",10893,139,4333],["2021-04-09",10893,46,4379],["2021-04-10",10893,11,4390],["2021-04-11",10893,4,4394],["2021-04-12",10893,21,4415],["2021-04-13",10893,54,4469],["2021-04-14",10893,27,4496],["2021-04-15",10893,139,4635],["2021-04-16",10893,48,4683],["2021-04-17",10893,5,4688],["2021-04-18",10893,3,4691],["2021-04-19",10893,20,4711],["2021-04-20",10893,44,4755],["2021-04-21",10893,46,4801],["2021-04-22",10893,100,4901],["2021-04-23",10893,42,4943],["2021-04-24",10893,6,4949],["2021-04-25",10893,7,4956],["2021-04-26",10893,16,4972],["2021-04-27",10893,32,5004],["2021-04-28",10893,39,5043],["2021-04-29",10893,73,5116],["2021-04-30",10893,85,5201],["2021-05-01",10893,7,5208],["2021-05-02",10893,5,5213],["2021-05-03",10893,16,5229],["2021-05-04",10893,11,5240],["2021-05-05",10893,36,5276],["2021-05-06",10893,54,5330],["2021-05-07",10893,48,5378],["2021-05-08",10893,7,5385],["2021-05-09",10893,2,5387],["2021-05-10",10893,8,5395],["2021-05-11",10893,33,5428],["2021-05-12",10893,15,5443],["2021-05-13",10893,48,5491],["2021-05-14",10893,36,5527],["2021-05-15",10893,10,5537],["2021-05-16",10893,6,5543],["2021-05-17",10893,12,5555],["2021-05-18",10893,24,5579],["2021-05-19",10893,15,5594],["2021-05-20",10893,31,5625],["2021-05-21",10893,18,5643],["2021-05-22",10893,10,5653],["2021-05-23",10893,6,5659],["2021-05-24",10893,17,5676],["2021-05-25",10893,21,5697],["2021-05-26",10893,13,5710],["2021-05-27",10893,24,5734],["2021-05-28",10893,9,5743],["2021-05-29",10893,6,5749],["2021-05-30",10893,4,5753],["2021-05-31",10893,3,5756],["2021-06-01",10893,86,5842],["2021-06-02",10893,18,5860],["2021-06-03",10893,18,5878],["2021-06-04",10893,31,5909],["2021-06-05",10893,7,5916],["2021-06-06",10893,6,5922],["2021-06-07",10893,9,5931],["2021-06-08",10893,10,5941],["2021-06-09",10893,16,5957],["2021-06-10",10893,14,5971],["2021-06-11",10893,21,5992],["2021-06-12",10893,7,5999],["2021-06-13",10893,1,6000],["2021-06-14",10893,9,6009],["2021-06-15",10893,16,6025],["2021-06-16",10893,16,6041],["2021-06-17",10893,12,6053],["2021-06-18",10893,11,6064],["2021-06-19",10893,5,6069],["2021-06-20",10893,2,6071],["2021-06-21",10893,9,6080],["2021-06-22",10893,19,6099],["2021-06-23",10893,9,6108],["2021-06-24",10893,7,6115],["2021-06-25",10893,12,6127],["2021-06-26",10893,2,6129],["2021-06-27",10893,3,6132],["2021-06-28",10893,8,6140],["2021-06-29",10893,7,6147],["2021-06-30",10893,14,6161],["2021-07-01",10893,13,6174],["2021-07-02",10893,15,6189],["2021-07-03",10893,1,6190],["2021-07-05",10893,5,6195],["2021-07-06",10893,7,6202],["2021-07-07",10893,9,6211],["2021-07-08",10893,6,6217],["2021-07-09",10893,8,6225],["2021-07-10",10893,3,6228],["2021-07-11",10893,1,6229],["2021-07-12",10893,4,6233],["2021-07-13",10893,15,6248],["2021-07-14",10893,7,6255],["2021-07-15",10893,9,6264],["2021-07-16",10893,8,6272],["2021-07-17",10893,2,6274],["2021-07-18",10893,2,6276],["2021-07-19",10893,9,6285],["2021-07-20",10893,11,6296],["2021-07-21",10893,18,6314],["2021-07-22",10893,12,6326],["2021-07-23",10893,27,6353],["2021-07-24",10893,13,6366],["2021-07-25",10893,3,6369],["2021-07-26",10893,13,6382],["2021-07-27",10893,16,6398],["2021-07-28",10893,16,6414],["2021-07-29",10893,33,6447],["2021-07-30",10893,28,6475],["2021-07-31",10893,5,6480],["2021-08-01",10893,8,6488],["2021-08-02",10893,21,6509],["2021-08-03",10893,24,6533],["2021-08-04",10893,27,6560],["2021-08-05",10893,20,6580],["2021-08-06",10893,41,6621],["2021-08-07",10893,15,6636],["2021-08-08",10893,15,6651],["2021-08-09",10893,36,6687],["2021-08-10",10893,33,6720],["2021-08-11",10893,28,6748],["2021-08-12",10893,26,6774],["2021-08-13",10893,57,6831],["2021-08-14",10893,16,6847],["2021-08-15",10893,11,6858],["2021-08-16",10893,33,6891],["2021-08-17",10893,41,6932],["2021-08-18",10893,20,6952],["2021-08-19",10893,35,6987],["2021-08-20",10893,68,7055],["2021-08-21",10893,15,7070],["2021-08-22",10893,15,7085],["2021-08-23",10893,27,7112],["2021-08-24",10893,37,7149],["2021-08-25",10893,29,7178],["2021-08-26",10893,25,7203],["2021-08-27",10893,56,7259],["2021-08-28",10893,14,7273],["2021-08-29",10893,16,7289],["2021-08-30",10893,30,7319],["2021-08-31",10893,39,7358],["2021-09-01",10893,64,7422],["2021-09-02",10893,41,7463],["2021-09-03",10893,58,7521],["2021-09-04",10893,11,7532],["2021-09-05",10893,19,7551],["2021-09-06",10893,4,7555],["2021-09-07",10893,55,7610],["2021-09-08",10893,24,7634],["2021-09-09",10893,33,7667],["2021-09-10",10893,51,7718],["2021-09-11",10893,21,7739],["2021-09-12",10893,7,7746],["2021-09-13",10893,25,7771],["2021-09-14",10893,29,7800],["2021-09-15",10893,16,7816],["2021-09-16",10893,38,7854],["2021-09-17",10893,50,7904],["2021-09-18",10893,22,7926],["2021-09-19",10893,6,7932],["2021-09-20",10893,18,7950],["2021-09-21",10893,28,7978],["2021-09-22",10893,29,8007],["2021-09-23",10893,25,8032],["2021-09-24",10893,39,8071],["2021-09-25",10893,8,8079],["2021-09-26",10893,3,8082],["2021-09-27",10893,12,8094],["2021-09-28",10893,24,8118],["2021-09-29",10893,19,8137],["2021-09-30",10893,26,8163],["2021-10-01",10893,32,8195],["2021-10-02",10893,8,8203],["2021-10-03",10893,4,8207],["2021-10-04",10893,17,8224],["2021-10-05",10893,14,8238],["2021-10-06",10893,10,8248],["2021-10-07",10893,11,8259],["2021-10-08",10893,22,8281],["2021-10-09",10893,5,8286],["2021-10-10",10893,2,8288],["2021-10-11",10893,17,8305],["2021-10-12",10893,14,8319],["2021-10-13",10893,6,8325],["2021-10-14",10893,10,8335],["2021-10-15",10893,19,8354],["2021-10-16",10893,10,8364],["2021-10-17",10893,2,8366],["2021-10-18",10893,17,8383],["2021-10-19",10893,23,8406],["2021-10-20",10893,11,8417],["2021-10-21",10893,16,8433],["2021-10-22",10893,40,8473],["2021-10-23",10893,6,8479],["2021-10-24",10893,5,8484],["2021-10-25",10893,28,8512],["2021-10-26",10893,16,8528],["2021-10-27",10893,26,8554],["2021-10-28",10893,61,8615],["2021-10-29",10893,46,8661],["2021-10-30",10893,11,8672],["2021-11-01",10893,21,8693],["2021-11-02",10893,73,8766],["2021-11-03",10893,28,8794],["2021-11-04",10893,62,8856],["2021-11-05",10893,26,8882],["2021-11-06",10893,7,8889],["2021-11-07",10893,4,8893],["2021-11-08",10893,17,8910],["2021-11-09",10893,59,8969],["2021-11-10",10893,34,9003],["2021-11-11",10893,24,9027],["2021-11-12",10893,48,9075],["2021-11-13",10893,6,9081],["2021-11-14",10893,5,9086],["2021-11-15",10893,34,9120],["2021-11-16",10893,54,9174],["2021-11-17",10893,71,9245],["2021-11-18",10893,37,9282],["2021-11-19",10893,34,9316],["2021-11-20",10893,9,9325],["2021-11-21",10893,3,9328],["2021-11-22",10893,18,9346],["2021-11-23",10893,43,9389],["2021-11-24",10893,6,9395],["2021-11-26",10893,10,9405],["2021-11-27",10893,7,9412],["2021-11-28",10893,6,9418],["2021-11-29",10893,22,9440],["2021-11-30",10893,54,9494],["2021-12-01",10893,33,9527],["2021-12-02",10893,87,9614],["2021-12-03",10893,32,9646],["2021-12-04",10893,17,9663],["2021-12-05",10893,7,9670],["2021-12-06",10893,11,9681],["2021-12-07",10893,44,9725],["2021-12-08",10893,7,9732],["2021-12-09",10893,54,9786],["2021-12-10",10893,37,9823],["2021-12-11",10893,7,9830],["2021-12-12",10893,1,9831],["2021-12-13",10893,14,9845],["2021-12-14",10893,26,9871],["2021-12-15",10893,9,9880],["2021-12-16",10893,32,9912],["2021-12-17",10893,14,9926],["2021-12-18",10893,3,9929],["2021-12-19",10893,3,9932],["2021-12-20",10893,30,9962],["2021-12-21",10893,34,9996],["2021-12-22",10893,10,10006],["2021-12-23",10893,15,10021],["2021-12-24",10893,5,10026],["2021-12-26",10893,5,10031],["2021-12-27",10893,20,10051],["2021-12-28",10893,57,10108],["2021-12-29",10893,18,10126],["2021-12-30",10893,13,10139],["2021-12-31",10893,7,10146],["2022-01-01",10893,5,10151],["2022-01-02",10893,6,10157],["2022-01-03",10893,7,10164]]} \ No newline at end of file diff --git a/public/data/overall/vaccinations/by-county/Putnam.json b/public/data/overall/vaccinations/by-county/Putnam.json new file mode 100644 index 000000000..d985736be --- /dev/null +++ b/public/data/overall/vaccinations/by-county/Putnam.json @@ -0,0 +1 @@ +{"segment":{"county":"Putnam"},"headers":["report_date","population","vaccinations","total_vaccinations"],"rows":[["2020-12-16",21885,2,2],["2020-12-18",21885,1,3],["2020-12-19",21885,3,6],["2020-12-21",21885,1,7],["2020-12-22",21885,6,13],["2020-12-23",21885,31,44],["2020-12-24",21885,6,50],["2020-12-26",21885,3,53],["2020-12-28",21885,25,78],["2020-12-29",21885,57,135],["2020-12-30",21885,30,165],["2020-12-31",21885,13,178],["2021-01-01",21885,3,181],["2021-01-02",21885,3,184],["2021-01-03",21885,1,185],["2021-01-04",21885,32,217],["2021-01-05",21885,18,235],["2021-01-06",21885,28,263],["2021-01-07",21885,14,277],["2021-01-08",21885,30,307],["2021-01-09",21885,14,321],["2021-01-10",21885,5,326],["2021-01-11",21885,41,367],["2021-01-12",21885,67,434],["2021-01-13",21885,124,558],["2021-01-14",21885,52,610],["2021-01-15",21885,114,724],["2021-01-16",21885,33,757],["2021-01-17",21885,21,778],["2021-01-18",21885,87,865],["2021-01-19",21885,150,1015],["2021-01-20",21885,231,1246],["2021-01-21",21885,177,1423],["2021-01-22",21885,210,1633],["2021-01-23",21885,88,1721],["2021-01-24",21885,7,1728],["2021-01-25",21885,126,1854],["2021-01-26",21885,36,1890],["2021-01-27",21885,141,2031],["2021-01-28",21885,75,2106],["2021-01-29",21885,100,2206],["2021-01-30",21885,22,2228],["2021-01-31",21885,16,2244],["2021-02-01",21885,57,2301],["2021-02-02",21885,48,2349],["2021-02-03",21885,159,2508],["2021-02-04",21885,62,2570],["2021-02-05",21885,109,2679],["2021-02-06",21885,27,2706],["2021-02-07",21885,13,2719],["2021-02-08",21885,76,2795],["2021-02-09",21885,138,2933],["2021-02-10",21885,172,3105],["2021-02-11",21885,123,3228],["2021-02-12",21885,136,3364],["2021-02-13",21885,40,3404],["2021-02-14",21885,31,3435],["2021-02-15",21885,92,3527],["2021-02-16",21885,191,3718],["2021-02-17",21885,236,3954],["2021-02-18",21885,150,4104],["2021-02-19",21885,259,4363],["2021-02-20",21885,41,4404],["2021-02-21",21885,7,4411],["2021-02-22",21885,56,4467],["2021-02-23",21885,67,4534],["2021-02-24",21885,168,4702],["2021-02-25",21885,191,4893],["2021-02-26",21885,219,5112],["2021-02-27",21885,96,5208],["2021-02-28",21885,40,5248],["2021-03-01",21885,105,5353],["2021-03-02",21885,100,5453],["2021-03-03",21885,210,5663],["2021-03-04",21885,109,5772],["2021-03-05",21885,170,5942],["2021-03-06",21885,19,5961],["2021-03-07",21885,18,5979],["2021-03-08",21885,115,6094],["2021-03-09",21885,108,6202],["2021-03-10",21885,196,6398],["2021-03-11",21885,149,6547],["2021-03-12",21885,169,6716],["2021-03-13",21885,43,6759],["2021-03-14",21885,16,6775],["2021-03-15",21885,103,6878],["2021-03-16",21885,271,7149],["2021-03-17",21885,241,7390],["2021-03-18",21885,131,7521],["2021-03-19",21885,257,7778],["2021-03-20",21885,160,7938],["2021-03-21",21885,14,7952],["2021-03-22",21885,54,8006],["2021-03-23",21885,63,8069],["2021-03-24",21885,197,8266],["2021-03-25",21885,175,8441],["2021-03-26",21885,311,8752],["2021-03-27",21885,47,8799],["2021-03-28",21885,26,8825],["2021-03-29",21885,103,8928],["2021-03-30",21885,149,9077],["2021-03-31",21885,234,9311],["2021-04-01",21885,189,9500],["2021-04-02",21885,163,9663],["2021-04-03",21885,33,9696],["2021-04-04",21885,21,9717],["2021-04-05",21885,88,9805],["2021-04-06",21885,134,9939],["2021-04-07",21885,185,10124],["2021-04-08",21885,140,10264],["2021-04-09",21885,129,10393],["2021-04-10",21885,31,10424],["2021-04-11",21885,29,10453],["2021-04-12",21885,72,10525],["2021-04-13",21885,143,10668],["2021-04-14",21885,231,10899],["2021-04-15",21885,114,11013],["2021-04-16",21885,308,11321],["2021-04-17",21885,45,11366],["2021-04-18",21885,24,11390],["2021-04-19",21885,63,11453],["2021-04-20",21885,107,11560],["2021-04-21",21885,189,11749],["2021-04-22",21885,124,11873],["2021-04-23",21885,263,12136],["2021-04-24",21885,20,12156],["2021-04-25",21885,16,12172],["2021-04-26",21885,63,12235],["2021-04-27",21885,92,12327],["2021-04-28",21885,183,12510],["2021-04-29",21885,153,12663],["2021-04-30",21885,153,12816],["2021-05-01",21885,30,12846],["2021-05-02",21885,19,12865],["2021-05-03",21885,40,12905],["2021-05-04",21885,76,12981],["2021-05-05",21885,117,13098],["2021-05-06",21885,85,13183],["2021-05-07",21885,64,13247],["2021-05-08",21885,36,13283],["2021-05-09",21885,12,13295],["2021-05-10",21885,58,13353],["2021-05-11",21885,74,13427],["2021-05-12",21885,83,13510],["2021-05-13",21885,48,13558],["2021-05-14",21885,68,13626],["2021-05-15",21885,41,13667],["2021-05-16",21885,26,13693],["2021-05-17",21885,47,13740],["2021-05-18",21885,65,13805],["2021-05-19",21885,78,13883],["2021-05-20",21885,63,13946],["2021-05-21",21885,64,14010],["2021-05-22",21885,33,14043],["2021-05-23",21885,16,14059],["2021-05-24",21885,18,14077],["2021-05-25",21885,36,14113],["2021-05-26",21885,82,14195],["2021-05-27",21885,42,14237],["2021-05-28",21885,29,14266],["2021-05-29",21885,22,14288],["2021-05-30",21885,8,14296],["2021-05-31",21885,5,14301],["2021-06-01",21885,33,14334],["2021-06-02",21885,63,14397],["2021-06-03",21885,36,14433],["2021-06-04",21885,32,14465],["2021-06-05",21885,18,14483],["2021-06-06",21885,17,14500],["2021-06-07",21885,32,14532],["2021-06-08",21885,27,14559],["2021-06-09",21885,35,14594],["2021-06-10",21885,36,14630],["2021-06-11",21885,36,14666],["2021-06-12",21885,28,14694],["2021-06-13",21885,14,14708],["2021-06-14",21885,29,14737],["2021-06-15",21885,25,14762],["2021-06-16",21885,50,14812],["2021-06-17",21885,25,14837],["2021-06-18",21885,27,14864],["2021-06-19",21885,23,14887],["2021-06-20",21885,7,14894],["2021-06-21",21885,23,14917],["2021-06-22",21885,17,14934],["2021-06-23",21885,46,14980],["2021-06-24",21885,24,15004],["2021-06-25",21885,30,15034],["2021-06-26",21885,13,15047],["2021-06-27",21885,8,15055],["2021-06-28",21885,16,15071],["2021-06-29",21885,16,15087],["2021-06-30",21885,30,15117],["2021-07-01",21885,26,15143],["2021-07-02",21885,15,15158],["2021-07-03",21885,8,15166],["2021-07-04",21885,1,15167],["2021-07-05",21885,13,15180],["2021-07-06",21885,15,15195],["2021-07-07",21885,21,15216],["2021-07-08",21885,18,15234],["2021-07-09",21885,20,15254],["2021-07-10",21885,12,15266],["2021-07-11",21885,7,15273],["2021-07-12",21885,17,15290],["2021-07-13",21885,14,15304],["2021-07-14",21885,40,15344],["2021-07-15",21885,16,15360],["2021-07-16",21885,20,15380],["2021-07-17",21885,19,15399],["2021-07-18",21885,9,15408],["2021-07-19",21885,23,15431],["2021-07-20",21885,19,15450],["2021-07-21",21885,44,15494],["2021-07-22",21885,41,15535],["2021-07-23",21885,41,15576],["2021-07-24",21885,23,15599],["2021-07-25",21885,12,15611],["2021-07-26",21885,30,15641],["2021-07-27",21885,42,15683],["2021-07-28",21885,50,15733],["2021-07-29",21885,28,15761],["2021-07-30",21885,48,15809],["2021-07-31",21885,33,15842],["2021-08-01",21885,15,15857],["2021-08-02",21885,47,15904],["2021-08-03",21885,47,15951],["2021-08-04",21885,57,16008],["2021-08-05",21885,66,16074],["2021-08-06",21885,48,16122],["2021-08-07",21885,27,16149],["2021-08-08",21885,51,16200],["2021-08-09",21885,46,16246],["2021-08-10",21885,43,16289],["2021-08-11",21885,69,16358],["2021-08-12",21885,49,16407],["2021-08-13",21885,58,16465],["2021-08-14",21885,51,16516],["2021-08-15",21885,34,16550],["2021-08-16",21885,49,16599],["2021-08-17",21885,64,16663],["2021-08-18",21885,66,16729],["2021-08-19",21885,49,16778],["2021-08-20",21885,73,16851],["2021-08-21",21885,34,16885],["2021-08-22",21885,24,16909],["2021-08-23",21885,56,16965],["2021-08-24",21885,60,17025],["2021-08-25",21885,79,17104],["2021-08-26",21885,87,17191],["2021-08-27",21885,73,17264],["2021-08-28",21885,38,17302],["2021-08-29",21885,63,17365],["2021-08-30",21885,52,17417],["2021-08-31",21885,69,17486],["2021-09-01",21885,67,17553],["2021-09-02",21885,48,17601],["2021-09-03",21885,73,17674],["2021-09-04",21885,33,17707],["2021-09-05",21885,23,17730],["2021-09-06",21885,23,17753],["2021-09-07",21885,55,17808],["2021-09-08",21885,61,17869],["2021-09-09",21885,46,17915],["2021-09-10",21885,98,18013],["2021-09-11",21885,34,18047],["2021-09-12",21885,17,18064],["2021-09-13",21885,45,18109],["2021-09-14",21885,40,18149],["2021-09-15",21885,52,18201],["2021-09-16",21885,42,18243],["2021-09-17",21885,39,18282],["2021-09-18",21885,21,18303],["2021-09-19",21885,23,18326],["2021-09-20",21885,40,18366],["2021-09-21",21885,42,18408],["2021-09-22",21885,55,18463],["2021-09-23",21885,37,18500],["2021-09-24",21885,43,18543],["2021-09-25",21885,26,18569],["2021-09-26",21885,16,18585],["2021-09-27",21885,38,18623],["2021-09-28",21885,40,18663],["2021-09-29",21885,43,18706],["2021-09-30",21885,39,18745],["2021-10-01",21885,52,18797],["2021-10-02",21885,24,18821],["2021-10-03",21885,9,18830],["2021-10-04",21885,27,18857],["2021-10-05",21885,30,18887],["2021-10-06",21885,51,18938],["2021-10-07",21885,31,18969],["2021-10-08",21885,32,19001],["2021-10-09",21885,6,19007],["2021-10-10",21885,7,19014],["2021-10-11",21885,17,19031],["2021-10-12",21885,27,19058],["2021-10-13",21885,36,19094],["2021-10-14",21885,18,19112],["2021-10-15",21885,21,19133],["2021-10-16",21885,10,19143],["2021-10-17",21885,7,19150],["2021-10-18",21885,12,19162],["2021-10-19",21885,23,19185],["2021-10-20",21885,24,19209],["2021-10-21",21885,22,19231],["2021-10-22",21885,40,19271],["2021-10-23",21885,33,19304],["2021-10-24",21885,32,19336],["2021-10-25",21885,65,19401],["2021-10-26",21885,84,19485],["2021-10-27",21885,173,19658],["2021-10-28",21885,82,19740],["2021-10-29",21885,88,19828],["2021-10-30",21885,23,19851],["2021-10-31",21885,23,19874],["2021-11-01",21885,76,19950],["2021-11-02",21885,68,20018],["2021-11-03",21885,98,20116],["2021-11-04",21885,61,20177],["2021-11-05",21885,85,20262],["2021-11-06",21885,30,20292],["2021-11-07",21885,12,20304],["2021-11-08",21885,57,20361],["2021-11-09",21885,49,20410],["2021-11-10",21885,138,20548],["2021-11-11",21885,25,20573],["2021-11-12",21885,78,20651],["2021-11-13",21885,17,20668],["2021-11-14",21885,8,20676],["2021-11-15",21885,70,20746],["2021-11-16",21885,61,20807],["2021-11-17",21885,144,20951],["2021-11-18",21885,103,21054],["2021-11-19",21885,89,21143],["2021-11-20",21885,21,21164],["2021-11-21",21885,22,21186],["2021-11-22",21885,72,21258],["2021-11-23",21885,53,21311],["2021-11-24",21885,45,21356],["2021-11-26",21885,32,21388],["2021-11-27",21885,23,21411],["2021-11-28",21885,22,21433],["2021-11-29",21885,54,21487],["2021-11-30",21885,85,21572],["2021-12-01",21885,169,21741],["2021-12-02",21885,76,21817],["2021-12-03",21885,66,21883],["2021-12-04",21885,24,21907],["2021-12-05",21885,24,21931],["2021-12-06",21885,61,21992],["2021-12-07",21885,59,22051],["2021-12-08",21885,131,22182],["2021-12-09",21885,34,22216],["2021-12-10",21885,44,22260],["2021-12-11",21885,31,22291],["2021-12-12",21885,43,22334],["2021-12-13",21885,47,22381],["2021-12-14",21885,58,22439],["2021-12-15",21885,88,22527],["2021-12-16",21885,32,22559],["2021-12-17",21885,38,22597],["2021-12-18",21885,24,22621],["2021-12-19",21885,30,22651],["2021-12-20",21885,49,22700],["2021-12-21",21885,51,22751],["2021-12-22",21885,117,22868],["2021-12-23",21885,44,22912],["2021-12-24",21885,15,22927],["2021-12-26",21885,15,22942],["2021-12-27",21885,55,22997],["2021-12-28",21885,55,23052],["2021-12-29",21885,126,23178],["2021-12-30",21885,47,23225],["2021-12-31",21885,23,23248],["2022-01-01",21885,14,23262],["2022-01-02",21885,26,23288],["2022-01-03",21885,17,23305]]} \ No newline at end of file diff --git a/public/data/overall/vaccinations/by-county/Quitman.json b/public/data/overall/vaccinations/by-county/Quitman.json new file mode 100644 index 000000000..e5a3100ed --- /dev/null +++ b/public/data/overall/vaccinations/by-county/Quitman.json @@ -0,0 +1 @@ +{"segment":{"county":"Quitman"},"headers":["report_date","population","vaccinations","total_vaccinations"],"rows":[["2020-12-21",2294,1,1],["2020-12-22",2294,1,2],["2020-12-24",2294,1,3],["2020-12-26",2294,2,5],["2020-12-28",2294,2,7],["2020-12-29",2294,1,8],["2021-01-01",2294,1,9],["2021-01-02",2294,1,10],["2021-01-04",2294,1,11],["2021-01-05",2294,2,13],["2021-01-06",2294,1,14],["2021-01-07",2294,7,21],["2021-01-08",2294,1,22],["2021-01-11",2294,7,29],["2021-01-12",2294,25,54],["2021-01-13",2294,4,58],["2021-01-14",2294,5,63],["2021-01-15",2294,63,126],["2021-01-18",2294,8,134],["2021-01-19",2294,3,137],["2021-01-20",2294,19,156],["2021-01-21",2294,52,208],["2021-01-22",2294,2,210],["2021-01-23",2294,2,212],["2021-01-25",2294,2,214],["2021-01-26",2294,21,235],["2021-01-27",2294,8,243],["2021-01-28",2294,9,252],["2021-01-29",2294,1,253],["2021-02-01",2294,5,258],["2021-02-02",2294,21,279],["2021-02-03",2294,3,282],["2021-02-04",2294,11,293],["2021-02-05",2294,3,296],["2021-02-06",2294,2,298],["2021-02-08",2294,5,303],["2021-02-09",2294,71,374],["2021-02-10",2294,5,379],["2021-02-11",2294,3,382],["2021-02-12",2294,11,393],["2021-02-15",2294,5,398],["2021-02-16",2294,77,475],["2021-02-17",2294,5,480],["2021-02-18",2294,56,536],["2021-02-19",2294,3,539],["2021-02-20",2294,2,541],["2021-02-21",2294,1,542],["2021-02-23",2294,53,595],["2021-02-24",2294,8,603],["2021-02-25",2294,9,612],["2021-02-26",2294,10,622],["2021-02-27",2294,2,624],["2021-02-28",2294,1,625],["2021-03-01",2294,5,630],["2021-03-02",2294,38,668],["2021-03-03",2294,3,671],["2021-03-05",2294,11,682],["2021-03-08",2294,6,688],["2021-03-09",2294,55,743],["2021-03-10",2294,7,750],["2021-03-12",2294,4,754],["2021-03-15",2294,4,758],["2021-03-16",2294,54,812],["2021-03-17",2294,2,814],["2021-03-18",2294,5,819],["2021-03-19",2294,10,829],["2021-03-22",2294,1,830],["2021-03-23",2294,51,881],["2021-03-24",2294,4,885],["2021-03-25",2294,5,890],["2021-03-26",2294,3,893],["2021-03-28",2294,1,894],["2021-03-29",2294,3,897],["2021-03-30",2294,44,941],["2021-03-31",2294,11,952],["2021-04-01",2294,9,961],["2021-04-02",2294,3,964],["2021-04-05",2294,3,967],["2021-04-06",2294,36,1003],["2021-04-07",2294,9,1012],["2021-04-08",2294,6,1018],["2021-04-09",2294,2,1020],["2021-04-10",2294,5,1025],["2021-04-11",2294,2,1027],["2021-04-12",2294,4,1031],["2021-04-13",2294,42,1073],["2021-04-14",2294,4,1077],["2021-04-15",2294,7,1084],["2021-04-16",2294,7,1091],["2021-04-19",2294,4,1095],["2021-04-20",2294,30,1125],["2021-04-21",2294,2,1127],["2021-04-22",2294,7,1134],["2021-04-23",2294,6,1140],["2021-04-24",2294,1,1141],["2021-04-26",2294,3,1144],["2021-04-27",2294,49,1193],["2021-04-28",2294,11,1204],["2021-04-29",2294,5,1209],["2021-04-30",2294,6,1215],["2021-05-02",2294,1,1216],["2021-05-03",2294,3,1219],["2021-05-04",2294,8,1227],["2021-05-05",2294,9,1236],["2021-05-06",2294,4,1240],["2021-05-07",2294,3,1243],["2021-05-11",2294,28,1271],["2021-05-12",2294,5,1276],["2021-05-13",2294,2,1278],["2021-05-14",2294,7,1285],["2021-05-15",2294,2,1287],["2021-05-16",2294,1,1288],["2021-05-17",2294,3,1291],["2021-05-18",2294,2,1293],["2021-05-19",2294,1,1294],["2021-05-20",2294,3,1297],["2021-05-21",2294,3,1300],["2021-05-24",2294,1,1301],["2021-05-25",2294,27,1328],["2021-05-26",2294,3,1331],["2021-05-27",2294,2,1333],["2021-05-28",2294,2,1335],["2021-05-29",2294,1,1336],["2021-05-30",2294,1,1337],["2021-06-01",2294,2,1339],["2021-06-02",2294,1,1340],["2021-06-03",2294,2,1342],["2021-06-07",2294,2,1344],["2021-06-08",2294,25,1369],["2021-06-09",2294,1,1370],["2021-06-10",2294,3,1373],["2021-06-11",2294,1,1374],["2021-06-14",2294,1,1375],["2021-06-15",2294,4,1379],["2021-06-16",2294,1,1380],["2021-06-18",2294,2,1382],["2021-06-21",2294,3,1385],["2021-06-22",2294,2,1387],["2021-06-23",2294,1,1388],["2021-06-24",2294,2,1390],["2021-06-25",2294,1,1391],["2021-06-26",2294,1,1392],["2021-06-28",2294,1,1393],["2021-06-29",2294,14,1407],["2021-07-01",2294,2,1409],["2021-07-05",2294,1,1410],["2021-07-07",2294,1,1411],["2021-07-08",2294,1,1412],["2021-07-13",2294,7,1419],["2021-07-14",2294,1,1420],["2021-07-16",2294,2,1422],["2021-07-19",2294,3,1425],["2021-07-20",2294,2,1427],["2021-07-21",2294,1,1428],["2021-07-23",2294,2,1430],["2021-07-27",2294,17,1447],["2021-07-29",2294,7,1454],["2021-07-30",2294,4,1458],["2021-07-31",2294,2,1460],["2021-08-03",2294,1,1461],["2021-08-04",2294,1,1462],["2021-08-05",2294,3,1465],["2021-08-06",2294,2,1467],["2021-08-08",2294,3,1470],["2021-08-10",2294,4,1474],["2021-08-11",2294,2,1476],["2021-08-12",2294,1,1477],["2021-08-13",2294,5,1482],["2021-08-14",2294,1,1483],["2021-08-16",2294,8,1491],["2021-08-17",2294,3,1494],["2021-08-18",2294,1,1495],["2021-08-19",2294,5,1500],["2021-08-20",2294,3,1503],["2021-08-21",2294,1,1504],["2021-08-23",2294,1,1505],["2021-08-24",2294,3,1508],["2021-08-25",2294,1,1509],["2021-08-26",2294,2,1511],["2021-08-27",2294,1,1512],["2021-08-28",2294,2,1514],["2021-08-29",2294,2,1516],["2021-08-30",2294,1,1517],["2021-08-31",2294,8,1525],["2021-09-02",2294,3,1528],["2021-09-03",2294,2,1530],["2021-09-04",2294,2,1532],["2021-09-05",2294,1,1533],["2021-09-07",2294,4,1537],["2021-09-08",2294,1,1538],["2021-09-09",2294,1,1539],["2021-09-10",2294,5,1544],["2021-09-11",2294,1,1545],["2021-09-12",2294,4,1549],["2021-09-13",2294,9,1558],["2021-09-14",2294,3,1561],["2021-09-15",2294,3,1564],["2021-09-16",2294,2,1566],["2021-09-17",2294,2,1568],["2021-09-18",2294,2,1570],["2021-09-19",2294,2,1572],["2021-09-20",2294,2,1574],["2021-09-21",2294,1,1575],["2021-09-22",2294,4,1579],["2021-09-23",2294,1,1580],["2021-09-25",2294,1,1581],["2021-09-26",2294,1,1582],["2021-09-27",2294,3,1585],["2021-09-29",2294,3,1588],["2021-09-30",2294,2,1590],["2021-10-01",2294,5,1595],["2021-10-02",2294,1,1596],["2021-10-03",2294,3,1599],["2021-10-04",2294,2,1601],["2021-10-05",2294,2,1603],["2021-10-06",2294,1,1604],["2021-10-07",2294,2,1606],["2021-10-08",2294,1,1607],["2021-10-09",2294,2,1609],["2021-10-11",2294,1,1610],["2021-10-12",2294,1,1611],["2021-10-13",2294,2,1613],["2021-10-14",2294,1,1614],["2021-10-15",2294,2,1616],["2021-10-19",2294,2,1618],["2021-10-20",2294,2,1620],["2021-10-21",2294,3,1623],["2021-10-23",2294,1,1624],["2021-10-24",2294,1,1625],["2021-10-25",2294,5,1630],["2021-10-26",2294,8,1638],["2021-10-27",2294,3,1641],["2021-10-28",2294,1,1642],["2021-10-29",2294,1,1643],["2021-10-30",2294,1,1644],["2021-11-01",2294,19,1663],["2021-11-02",2294,5,1668],["2021-11-03",2294,5,1673],["2021-11-04",2294,4,1677],["2021-11-05",2294,5,1682],["2021-11-08",2294,20,1702],["2021-11-09",2294,2,1704],["2021-11-10",2294,6,1710],["2021-11-11",2294,4,1714],["2021-11-12",2294,2,1716],["2021-11-15",2294,35,1751],["2021-11-16",2294,2,1753],["2021-11-17",2294,5,1758],["2021-11-19",2294,2,1760],["2021-11-22",2294,14,1774],["2021-11-23",2294,4,1778],["2021-11-24",2294,9,1787],["2021-11-26",2294,2,1789],["2021-11-27",2294,1,1790],["2021-11-29",2294,21,1811],["2021-11-30",2294,16,1827],["2021-12-01",2294,3,1830],["2021-12-02",2294,5,1835],["2021-12-03",2294,3,1838],["2021-12-06",2294,19,1857],["2021-12-07",2294,7,1864],["2021-12-08",2294,2,1866],["2021-12-09",2294,3,1869],["2021-12-10",2294,1,1870],["2021-12-11",2294,2,1872],["2021-12-13",2294,21,1893],["2021-12-14",2294,17,1910],["2021-12-15",2294,2,1912],["2021-12-16",2294,3,1915],["2021-12-17",2294,3,1918],["2021-12-19",2294,1,1919],["2021-12-20",2294,9,1928],["2021-12-21",2294,2,1930],["2021-12-22",2294,3,1933],["2021-12-24",2294,2,1935],["2021-12-27",2294,6,1941],["2021-12-28",2294,2,1943],["2021-12-29",2294,1,1944],["2022-01-03",2294,4,1948]]} \ No newline at end of file diff --git a/public/data/overall/vaccinations/by-county/Rabun.json b/public/data/overall/vaccinations/by-county/Rabun.json new file mode 100644 index 000000000..b04b1ff7b --- /dev/null +++ b/public/data/overall/vaccinations/by-county/Rabun.json @@ -0,0 +1 @@ +{"segment":{"county":"Rabun"},"headers":["report_date","population","vaccinations","total_vaccinations"],"rows":[["2020-12-18",16986,4,4],["2020-12-19",16986,5,9],["2020-12-20",16986,1,10],["2020-12-21",16986,5,15],["2020-12-22",16986,9,24],["2020-12-23",16986,14,38],["2020-12-24",16986,7,45],["2020-12-27",16986,1,46],["2020-12-28",16986,26,72],["2020-12-29",16986,43,115],["2020-12-30",16986,42,157],["2020-12-31",16986,8,165],["2021-01-01",16986,17,182],["2021-01-03",16986,2,184],["2021-01-04",16986,43,227],["2021-01-05",16986,49,276],["2021-01-06",16986,20,296],["2021-01-07",16986,27,323],["2021-01-08",16986,27,350],["2021-01-09",16986,8,358],["2021-01-10",16986,8,366],["2021-01-11",16986,55,421],["2021-01-12",16986,82,503],["2021-01-13",16986,121,624],["2021-01-14",16986,112,736],["2021-01-15",16986,73,809],["2021-01-16",16986,31,840],["2021-01-17",16986,11,851],["2021-01-18",16986,120,971],["2021-01-19",16986,617,1588],["2021-01-20",16986,143,1731],["2021-01-21",16986,88,1819],["2021-01-22",16986,154,1973],["2021-01-23",16986,13,1986],["2021-01-24",16986,63,2049],["2021-01-25",16986,115,2164],["2021-01-26",16986,145,2309],["2021-01-27",16986,147,2456],["2021-01-28",16986,47,2503],["2021-01-29",16986,47,2550],["2021-01-30",16986,19,2569],["2021-01-31",16986,5,2574],["2021-02-01",16986,66,2640],["2021-02-02",16986,196,2836],["2021-02-03",16986,120,2956],["2021-02-04",16986,103,3059],["2021-02-05",16986,103,3162],["2021-02-06",16986,6,3168],["2021-02-07",16986,1,3169],["2021-02-08",16986,130,3299],["2021-02-09",16986,123,3422],["2021-02-10",16986,115,3537],["2021-02-11",16986,69,3606],["2021-02-12",16986,107,3713],["2021-02-13",16986,47,3760],["2021-02-14",16986,12,3772],["2021-02-15",16986,151,3923],["2021-02-16",16986,599,4522],["2021-02-17",16986,155,4677],["2021-02-18",16986,88,4765],["2021-02-19",16986,140,4905],["2021-02-20",16986,11,4916],["2021-02-21",16986,19,4935],["2021-02-22",16986,109,5044],["2021-02-23",16986,140,5184],["2021-02-24",16986,167,5351],["2021-02-25",16986,126,5477],["2021-02-26",16986,91,5568],["2021-02-27",16986,25,5593],["2021-02-28",16986,27,5620],["2021-03-01",16986,98,5718],["2021-03-02",16986,242,5960],["2021-03-03",16986,189,6149],["2021-03-04",16986,126,6275],["2021-03-05",16986,148,6423],["2021-03-06",16986,7,6430],["2021-03-07",16986,24,6454],["2021-03-08",16986,202,6656],["2021-03-09",16986,163,6819],["2021-03-10",16986,121,6940],["2021-03-11",16986,72,7012],["2021-03-12",16986,157,7169],["2021-03-13",16986,31,7200],["2021-03-14",16986,11,7211],["2021-03-15",16986,127,7338],["2021-03-16",16986,135,7473],["2021-03-17",16986,169,7642],["2021-03-18",16986,100,7742],["2021-03-19",16986,162,7904],["2021-03-20",16986,37,7941],["2021-03-21",16986,43,7984],["2021-03-22",16986,101,8085],["2021-03-23",16986,105,8190],["2021-03-24",16986,135,8325],["2021-03-25",16986,122,8447],["2021-03-26",16986,117,8564],["2021-03-27",16986,26,8590],["2021-03-28",16986,24,8614],["2021-03-29",16986,91,8705],["2021-03-30",16986,117,8822],["2021-03-31",16986,149,8971],["2021-04-01",16986,112,9083],["2021-04-02",16986,144,9227],["2021-04-03",16986,26,9253],["2021-04-04",16986,35,9288],["2021-04-05",16986,133,9421],["2021-04-06",16986,113,9534],["2021-04-07",16986,133,9667],["2021-04-08",16986,109,9776],["2021-04-09",16986,126,9902],["2021-04-10",16986,21,9923],["2021-04-11",16986,18,9941],["2021-04-12",16986,128,10069],["2021-04-13",16986,114,10183],["2021-04-14",16986,169,10352],["2021-04-15",16986,138,10490],["2021-04-16",16986,205,10695],["2021-04-17",16986,32,10727],["2021-04-18",16986,16,10743],["2021-04-19",16986,92,10835],["2021-04-20",16986,102,10937],["2021-04-21",16986,117,11054],["2021-04-22",16986,109,11163],["2021-04-23",16986,112,11275],["2021-04-24",16986,19,11294],["2021-04-25",16986,7,11301],["2021-04-26",16986,69,11370],["2021-04-27",16986,72,11442],["2021-04-28",16986,119,11561],["2021-04-29",16986,58,11619],["2021-04-30",16986,145,11764],["2021-05-01",16986,27,11791],["2021-05-02",16986,10,11801],["2021-05-03",16986,47,11848],["2021-05-04",16986,47,11895],["2021-05-05",16986,71,11966],["2021-05-06",16986,51,12017],["2021-05-07",16986,100,12117],["2021-05-08",16986,13,12130],["2021-05-09",16986,8,12138],["2021-05-10",16986,52,12190],["2021-05-11",16986,41,12231],["2021-05-12",16986,72,12303],["2021-05-13",16986,43,12346],["2021-05-14",16986,64,12410],["2021-05-15",16986,35,12445],["2021-05-16",16986,9,12454],["2021-05-17",16986,40,12494],["2021-05-18",16986,49,12543],["2021-05-19",16986,53,12596],["2021-05-20",16986,70,12666],["2021-05-21",16986,36,12702],["2021-05-22",16986,19,12721],["2021-05-23",16986,5,12726],["2021-05-24",16986,21,12747],["2021-05-25",16986,19,12766],["2021-05-26",16986,41,12807],["2021-05-27",16986,31,12838],["2021-05-28",16986,43,12881],["2021-05-29",16986,10,12891],["2021-05-30",16986,4,12895],["2021-05-31",16986,2,12897],["2021-06-01",16986,45,12942],["2021-06-02",16986,40,12982],["2021-06-03",16986,22,13004],["2021-06-04",16986,52,13056],["2021-06-05",16986,14,13070],["2021-06-06",16986,10,13080],["2021-06-07",16986,20,13100],["2021-06-08",16986,22,13122],["2021-06-09",16986,29,13151],["2021-06-10",16986,21,13172],["2021-06-11",16986,26,13198],["2021-06-12",16986,15,13213],["2021-06-13",16986,2,13215],["2021-06-14",16986,35,13250],["2021-06-15",16986,33,13283],["2021-06-16",16986,20,13303],["2021-06-17",16986,15,13318],["2021-06-18",16986,25,13343],["2021-06-19",16986,6,13349],["2021-06-20",16986,3,13352],["2021-06-21",16986,16,13368],["2021-06-22",16986,20,13388],["2021-06-23",16986,24,13412],["2021-06-24",16986,10,13422],["2021-06-25",16986,14,13436],["2021-06-26",16986,8,13444],["2021-06-27",16986,2,13446],["2021-06-28",16986,14,13460],["2021-06-29",16986,18,13478],["2021-06-30",16986,17,13495],["2021-07-01",16986,10,13505],["2021-07-02",16986,14,13519],["2021-07-03",16986,2,13521],["2021-07-05",16986,15,13536],["2021-07-06",16986,31,13567],["2021-07-07",16986,8,13575],["2021-07-08",16986,15,13590],["2021-07-09",16986,19,13609],["2021-07-11",16986,6,13615],["2021-07-12",16986,15,13630],["2021-07-13",16986,33,13663],["2021-07-14",16986,16,13679],["2021-07-15",16986,17,13696],["2021-07-16",16986,20,13716],["2021-07-17",16986,9,13725],["2021-07-18",16986,7,13732],["2021-07-19",16986,6,13738],["2021-07-20",16986,19,13757],["2021-07-21",16986,13,13770],["2021-07-22",16986,14,13784],["2021-07-23",16986,22,13806],["2021-07-24",16986,9,13815],["2021-07-25",16986,1,13816],["2021-07-26",16986,18,13834],["2021-07-27",16986,21,13855],["2021-07-28",16986,21,13876],["2021-07-29",16986,32,13908],["2021-07-30",16986,23,13931],["2021-07-31",16986,15,13946],["2021-08-01",16986,9,13955],["2021-08-02",16986,33,13988],["2021-08-03",16986,46,14034],["2021-08-04",16986,51,14085],["2021-08-05",16986,22,14107],["2021-08-06",16986,33,14140],["2021-08-07",16986,30,14170],["2021-08-08",16986,10,14180],["2021-08-09",16986,41,14221],["2021-08-10",16986,33,14254],["2021-08-11",16986,26,14280],["2021-08-12",16986,32,14312],["2021-08-13",16986,50,14362],["2021-08-14",16986,21,14383],["2021-08-15",16986,21,14404],["2021-08-16",16986,39,14443],["2021-08-17",16986,29,14472],["2021-08-18",16986,49,14521],["2021-08-19",16986,30,14551],["2021-08-20",16986,43,14594],["2021-08-21",16986,18,14612],["2021-08-22",16986,8,14620],["2021-08-23",16986,51,14671],["2021-08-24",16986,49,14720],["2021-08-25",16986,49,14769],["2021-08-26",16986,55,14824],["2021-08-27",16986,87,14911],["2021-08-28",16986,37,14948],["2021-08-29",16986,31,14979],["2021-08-30",16986,61,15040],["2021-08-31",16986,49,15089],["2021-09-01",16986,66,15155],["2021-09-02",16986,68,15223],["2021-09-03",16986,69,15292],["2021-09-04",16986,21,15313],["2021-09-05",16986,34,15347],["2021-09-06",16986,3,15350],["2021-09-07",16986,22,15372],["2021-09-08",16986,52,15424],["2021-09-09",16986,42,15466],["2021-09-10",16986,53,15519],["2021-09-11",16986,31,15550],["2021-09-12",16986,15,15565],["2021-09-13",16986,37,15602],["2021-09-14",16986,30,15632],["2021-09-15",16986,32,15664],["2021-09-16",16986,33,15697],["2021-09-17",16986,59,15756],["2021-09-18",16986,18,15774],["2021-09-19",16986,9,15783],["2021-09-20",16986,27,15810],["2021-09-21",16986,25,15835],["2021-09-22",16986,37,15872],["2021-09-23",16986,40,15912],["2021-09-24",16986,31,15943],["2021-09-25",16986,24,15967],["2021-09-26",16986,14,15981],["2021-09-27",16986,28,16009],["2021-09-28",16986,29,16038],["2021-09-29",16986,37,16075],["2021-09-30",16986,39,16114],["2021-10-01",16986,40,16154],["2021-10-02",16986,21,16175],["2021-10-03",16986,10,16185],["2021-10-04",16986,32,16217],["2021-10-05",16986,24,16241],["2021-10-06",16986,19,16260],["2021-10-07",16986,18,16278],["2021-10-08",16986,29,16307],["2021-10-09",16986,11,16318],["2021-10-10",16986,11,16329],["2021-10-11",16986,7,16336],["2021-10-12",16986,20,16356],["2021-10-13",16986,17,16373],["2021-10-14",16986,18,16391],["2021-10-15",16986,18,16409],["2021-10-16",16986,7,16416],["2021-10-17",16986,2,16418],["2021-10-18",16986,20,16438],["2021-10-19",16986,21,16459],["2021-10-20",16986,21,16480],["2021-10-21",16986,21,16501],["2021-10-22",16986,64,16565],["2021-10-23",16986,44,16609],["2021-10-24",16986,28,16637],["2021-10-25",16986,96,16733],["2021-10-26",16986,105,16838],["2021-10-27",16986,171,17009],["2021-10-28",16986,127,17136],["2021-10-29",16986,111,17247],["2021-10-30",16986,20,17267],["2021-10-31",16986,10,17277],["2021-11-01",16986,111,17388],["2021-11-02",16986,85,17473],["2021-11-03",16986,71,17544],["2021-11-04",16986,75,17619],["2021-11-05",16986,73,17692],["2021-11-06",16986,26,17718],["2021-11-07",16986,17,17735],["2021-11-08",16986,61,17796],["2021-11-09",16986,41,17837],["2021-11-10",16986,61,17898],["2021-11-11",16986,77,17975],["2021-11-12",16986,90,18065],["2021-11-13",16986,13,18078],["2021-11-14",16986,7,18085],["2021-11-15",16986,47,18132],["2021-11-16",16986,60,18192],["2021-11-17",16986,66,18258],["2021-11-18",16986,35,18293],["2021-11-19",16986,58,18351],["2021-11-20",16986,29,18380],["2021-11-21",16986,12,18392],["2021-11-22",16986,54,18446],["2021-11-23",16986,49,18495],["2021-11-24",16986,19,18514],["2021-11-26",16986,23,18537],["2021-11-27",16986,27,18564],["2021-11-28",16986,17,18581],["2021-11-29",16986,63,18644],["2021-11-30",16986,57,18701],["2021-12-01",16986,92,18793],["2021-12-02",16986,58,18851],["2021-12-03",16986,117,18968],["2021-12-04",16986,27,18995],["2021-12-05",16986,13,19008],["2021-12-06",16986,41,19049],["2021-12-07",16986,40,19089],["2021-12-08",16986,45,19134],["2021-12-09",16986,42,19176],["2021-12-10",16986,74,19250],["2021-12-11",16986,19,19269],["2021-12-12",16986,15,19284],["2021-12-13",16986,34,19318],["2021-12-14",16986,50,19368],["2021-12-15",16986,70,19438],["2021-12-16",16986,40,19478],["2021-12-17",16986,54,19532],["2021-12-18",16986,23,19555],["2021-12-19",16986,16,19571],["2021-12-20",16986,53,19624],["2021-12-21",16986,78,19702],["2021-12-22",16986,44,19746],["2021-12-23",16986,42,19788],["2021-12-24",16986,12,19800],["2021-12-26",16986,7,19807],["2021-12-27",16986,37,19844],["2021-12-28",16986,43,19887],["2021-12-29",16986,53,19940],["2021-12-30",16986,55,19995],["2021-12-31",16986,31,20026],["2022-01-01",16986,6,20032],["2022-01-02",16986,12,20044],["2022-01-03",16986,9,20053]]} \ No newline at end of file diff --git a/public/data/overall/vaccinations/by-county/Randolph.json b/public/data/overall/vaccinations/by-county/Randolph.json new file mode 100644 index 000000000..9e1cc9d29 --- /dev/null +++ b/public/data/overall/vaccinations/by-county/Randolph.json @@ -0,0 +1 @@ +{"segment":{"county":"Randolph"},"headers":["report_date","population","vaccinations","total_vaccinations"],"rows":[["2020-12-20",6754,1,1],["2020-12-21",6754,2,3],["2020-12-22",6754,5,8],["2020-12-23",6754,5,13],["2020-12-24",6754,8,21],["2020-12-26",6754,8,29],["2020-12-28",6754,5,34],["2020-12-29",6754,7,41],["2020-12-30",6754,4,45],["2020-12-31",6754,5,50],["2021-01-01",6754,2,52],["2021-01-02",6754,7,59],["2021-01-03",6754,1,60],["2021-01-04",6754,38,98],["2021-01-05",6754,9,107],["2021-01-06",6754,15,122],["2021-01-07",6754,5,127],["2021-01-08",6754,8,135],["2021-01-11",6754,41,176],["2021-01-12",6754,20,196],["2021-01-13",6754,28,224],["2021-01-14",6754,121,345],["2021-01-15",6754,97,442],["2021-01-16",6754,6,448],["2021-01-18",6754,21,469],["2021-01-19",6754,10,479],["2021-01-20",6754,17,496],["2021-01-21",6754,25,521],["2021-01-22",6754,146,667],["2021-01-23",6754,5,672],["2021-01-25",6754,45,717],["2021-01-26",6754,20,737],["2021-01-27",6754,28,765],["2021-01-28",6754,55,820],["2021-01-29",6754,17,837],["2021-01-31",6754,3,840],["2021-02-01",6754,27,867],["2021-02-02",6754,23,890],["2021-02-03",6754,30,920],["2021-02-04",6754,73,993],["2021-02-05",6754,34,1027],["2021-02-06",6754,6,1033],["2021-02-07",6754,1,1034],["2021-02-08",6754,43,1077],["2021-02-09",6754,27,1104],["2021-02-10",6754,35,1139],["2021-02-11",6754,103,1242],["2021-02-12",6754,23,1265],["2021-02-13",6754,8,1273],["2021-02-15",6754,148,1421],["2021-02-16",6754,28,1449],["2021-02-17",6754,11,1460],["2021-02-18",6754,24,1484],["2021-02-19",6754,141,1625],["2021-02-20",6754,2,1627],["2021-02-21",6754,2,1629],["2021-02-22",6754,8,1637],["2021-02-23",6754,17,1654],["2021-02-24",6754,34,1688],["2021-02-25",6754,30,1718],["2021-02-26",6754,122,1840],["2021-02-27",6754,3,1843],["2021-03-01",6754,13,1856],["2021-03-02",6754,17,1873],["2021-03-03",6754,11,1884],["2021-03-04",6754,15,1899],["2021-03-05",6754,134,2033],["2021-03-06",6754,2,2035],["2021-03-08",6754,20,2055],["2021-03-09",6754,30,2085],["2021-03-10",6754,37,2122],["2021-03-11",6754,145,2267],["2021-03-12",6754,19,2286],["2021-03-13",6754,4,2290],["2021-03-15",6754,26,2316],["2021-03-16",6754,21,2337],["2021-03-17",6754,30,2367],["2021-03-18",6754,17,2384],["2021-03-19",6754,90,2474],["2021-03-20",6754,8,2482],["2021-03-22",6754,11,2493],["2021-03-23",6754,21,2514],["2021-03-24",6754,27,2541],["2021-03-25",6754,101,2642],["2021-03-26",6754,11,2653],["2021-03-27",6754,2,2655],["2021-03-28",6754,2,2657],["2021-03-29",6754,77,2734],["2021-03-30",6754,29,2763],["2021-03-31",6754,26,2789],["2021-04-01",6754,64,2853],["2021-04-02",6754,12,2865],["2021-04-03",6754,2,2867],["2021-04-04",6754,5,2872],["2021-04-05",6754,13,2885],["2021-04-06",6754,25,2910],["2021-04-07",6754,25,2935],["2021-04-08",6754,43,2978],["2021-04-09",6754,105,3083],["2021-04-10",6754,61,3144],["2021-04-11",6754,4,3148],["2021-04-12",6754,15,3163],["2021-04-13",6754,51,3214],["2021-04-14",6754,17,3231],["2021-04-15",6754,47,3278],["2021-04-16",6754,73,3351],["2021-04-17",6754,2,3353],["2021-04-18",6754,2,3355],["2021-04-19",6754,22,3377],["2021-04-20",6754,24,3401],["2021-04-21",6754,6,3407],["2021-04-22",6754,135,3542],["2021-04-23",6754,51,3593],["2021-04-24",6754,1,3594],["2021-04-25",6754,3,3597],["2021-04-26",6754,29,3626],["2021-04-27",6754,37,3663],["2021-04-28",6754,24,3687],["2021-04-29",6754,45,3732],["2021-04-30",6754,54,3786],["2021-05-01",6754,5,3791],["2021-05-03",6754,7,3798],["2021-05-04",6754,13,3811],["2021-05-05",6754,15,3826],["2021-05-06",6754,37,3863],["2021-05-07",6754,36,3899],["2021-05-08",6754,7,3906],["2021-05-09",6754,1,3907],["2021-05-10",6754,11,3918],["2021-05-11",6754,8,3926],["2021-05-12",6754,12,3938],["2021-05-13",6754,15,3953],["2021-05-14",6754,31,3984],["2021-05-15",6754,25,4009],["2021-05-16",6754,3,4012],["2021-05-17",6754,14,4026],["2021-05-18",6754,18,4044],["2021-05-19",6754,19,4063],["2021-05-20",6754,24,4087],["2021-05-21",6754,14,4101],["2021-05-22",6754,7,4108],["2021-05-24",6754,35,4143],["2021-05-25",6754,18,4161],["2021-05-26",6754,13,4174],["2021-05-27",6754,9,4183],["2021-05-28",6754,52,4235],["2021-05-29",6754,7,4242],["2021-05-30",6754,3,4245],["2021-06-01",6754,24,4269],["2021-06-02",6754,11,4280],["2021-06-03",6754,13,4293],["2021-06-04",6754,6,4299],["2021-06-05",6754,1,4300],["2021-06-06",6754,2,4302],["2021-06-07",6754,8,4310],["2021-06-08",6754,17,4327],["2021-06-09",6754,11,4338],["2021-06-10",6754,12,4350],["2021-06-11",6754,23,4373],["2021-06-12",6754,6,4379],["2021-06-14",6754,6,4385],["2021-06-15",6754,7,4392],["2021-06-16",6754,16,4408],["2021-06-17",6754,13,4421],["2021-06-18",6754,14,4435],["2021-06-19",6754,7,4442],["2021-06-20",6754,4,4446],["2021-06-21",6754,33,4479],["2021-06-22",6754,4,4483],["2021-06-23",6754,13,4496],["2021-06-24",6754,22,4518],["2021-06-25",6754,5,4523],["2021-06-26",6754,16,4539],["2021-06-27",6754,4,4543],["2021-06-28",6754,14,4557],["2021-06-29",6754,18,4575],["2021-06-30",6754,10,4585],["2021-07-01",6754,20,4605],["2021-07-02",6754,5,4610],["2021-07-03",6754,3,4613],["2021-07-04",6754,1,4614],["2021-07-05",6754,2,4616],["2021-07-06",6754,4,4620],["2021-07-07",6754,13,4633],["2021-07-08",6754,12,4645],["2021-07-09",6754,20,4665],["2021-07-10",6754,3,4668],["2021-07-11",6754,3,4671],["2021-07-12",6754,9,4680],["2021-07-13",6754,4,4684],["2021-07-14",6754,10,4694],["2021-07-15",6754,12,4706],["2021-07-16",6754,7,4713],["2021-07-17",6754,8,4721],["2021-07-18",6754,4,4725],["2021-07-19",6754,13,4738],["2021-07-20",6754,7,4745],["2021-07-21",6754,12,4757],["2021-07-22",6754,9,4766],["2021-07-23",6754,31,4797],["2021-07-24",6754,11,4808],["2021-07-25",6754,7,4815],["2021-07-26",6754,12,4827],["2021-07-27",6754,13,4840],["2021-07-28",6754,15,4855],["2021-07-29",6754,24,4879],["2021-07-30",6754,18,4897],["2021-07-31",6754,9,4906],["2021-08-01",6754,5,4911],["2021-08-02",6754,23,4934],["2021-08-03",6754,15,4949],["2021-08-04",6754,24,4973],["2021-08-05",6754,40,5013],["2021-08-06",6754,28,5041],["2021-08-07",6754,11,5052],["2021-08-08",6754,10,5062],["2021-08-09",6754,21,5083],["2021-08-10",6754,19,5102],["2021-08-11",6754,28,5130],["2021-08-12",6754,33,5163],["2021-08-13",6754,29,5192],["2021-08-14",6754,11,5203],["2021-08-15",6754,10,5213],["2021-08-16",6754,20,5233],["2021-08-17",6754,28,5261],["2021-08-18",6754,21,5282],["2021-08-19",6754,47,5329],["2021-08-20",6754,55,5384],["2021-08-21",6754,35,5419],["2021-08-22",6754,7,5426],["2021-08-23",6754,21,5447],["2021-08-24",6754,21,5468],["2021-08-25",6754,14,5482],["2021-08-26",6754,43,5525],["2021-08-27",6754,25,5550],["2021-08-28",6754,8,5558],["2021-08-29",6754,15,5573],["2021-08-30",6754,31,5604],["2021-08-31",6754,25,5629],["2021-09-01",6754,36,5665],["2021-09-02",6754,47,5712],["2021-09-03",6754,23,5735],["2021-09-04",6754,10,5745],["2021-09-05",6754,8,5753],["2021-09-06",6754,3,5756],["2021-09-07",6754,27,5783],["2021-09-08",6754,30,5813],["2021-09-09",6754,34,5847],["2021-09-10",6754,42,5889],["2021-09-11",6754,33,5922],["2021-09-12",6754,10,5932],["2021-09-13",6754,30,5962],["2021-09-14",6754,22,5984],["2021-09-15",6754,23,6007],["2021-09-16",6754,18,6025],["2021-09-17",6754,41,6066],["2021-09-18",6754,17,6083],["2021-09-19",6754,5,6088],["2021-09-20",6754,10,6098],["2021-09-21",6754,21,6119],["2021-09-22",6754,13,6132],["2021-09-23",6754,13,6145],["2021-09-24",6754,35,6180],["2021-09-25",6754,12,6192],["2021-09-26",6754,9,6201],["2021-09-27",6754,16,6217],["2021-09-28",6754,17,6234],["2021-09-29",6754,10,6244],["2021-09-30",6754,27,6271],["2021-10-01",6754,33,6304],["2021-10-02",6754,4,6308],["2021-10-03",6754,4,6312],["2021-10-04",6754,12,6324],["2021-10-05",6754,15,6339],["2021-10-06",6754,13,6352],["2021-10-07",6754,5,6357],["2021-10-08",6754,24,6381],["2021-10-09",6754,14,6395],["2021-10-10",6754,3,6398],["2021-10-11",6754,9,6407],["2021-10-12",6754,11,6418],["2021-10-13",6754,13,6431],["2021-10-14",6754,11,6442],["2021-10-15",6754,17,6459],["2021-10-16",6754,7,6466],["2021-10-18",6754,11,6477],["2021-10-19",6754,4,6481],["2021-10-20",6754,10,6491],["2021-10-21",6754,3,6494],["2021-10-22",6754,12,6506],["2021-10-23",6754,6,6512],["2021-10-24",6754,2,6514],["2021-10-25",6754,26,6540],["2021-10-26",6754,34,6574],["2021-10-27",6754,31,6605],["2021-10-28",6754,39,6644],["2021-10-29",6754,26,6670],["2021-10-30",6754,4,6674],["2021-10-31",6754,3,6677],["2021-11-01",6754,20,6697],["2021-11-02",6754,26,6723],["2021-11-03",6754,25,6748],["2021-11-04",6754,27,6775],["2021-11-05",6754,66,6841],["2021-11-06",6754,9,6850],["2021-11-07",6754,2,6852],["2021-11-08",6754,17,6869],["2021-11-09",6754,17,6886],["2021-11-10",6754,27,6913],["2021-11-11",6754,18,6931],["2021-11-12",6754,55,6986],["2021-11-13",6754,7,6993],["2021-11-14",6754,1,6994],["2021-11-15",6754,37,7031],["2021-11-16",6754,32,7063],["2021-11-17",6754,36,7099],["2021-11-18",6754,25,7124],["2021-11-19",6754,71,7195],["2021-11-20",6754,6,7201],["2021-11-21",6754,5,7206],["2021-11-22",6754,16,7222],["2021-11-23",6754,17,7239],["2021-11-24",6754,7,7246],["2021-11-25",6754,2,7248],["2021-11-26",6754,7,7255],["2021-11-27",6754,5,7260],["2021-11-28",6754,3,7263],["2021-11-29",6754,12,7275],["2021-11-30",6754,21,7296],["2021-12-01",6754,36,7332],["2021-12-02",6754,52,7384],["2021-12-03",6754,34,7418],["2021-12-04",6754,7,7425],["2021-12-05",6754,4,7429],["2021-12-06",6754,20,7449],["2021-12-07",6754,25,7474],["2021-12-08",6754,50,7524],["2021-12-09",6754,22,7546],["2021-12-10",6754,40,7586],["2021-12-11",6754,4,7590],["2021-12-12",6754,2,7592],["2021-12-13",6754,11,7603],["2021-12-14",6754,15,7618],["2021-12-15",6754,11,7629],["2021-12-16",6754,18,7647],["2021-12-17",6754,32,7679],["2021-12-18",6754,8,7687],["2021-12-19",6754,5,7692],["2021-12-20",6754,9,7701],["2021-12-21",6754,17,7718],["2021-12-22",6754,19,7737],["2021-12-23",6754,15,7752],["2021-12-24",6754,1,7753],["2021-12-27",6754,16,7769],["2021-12-28",6754,6,7775],["2021-12-29",6754,12,7787],["2021-12-30",6754,16,7803],["2021-12-31",6754,29,7832],["2022-01-02",6754,1,7833],["2022-01-03",6754,17,7850]]} \ No newline at end of file diff --git a/public/data/overall/vaccinations/by-county/Richmond.json b/public/data/overall/vaccinations/by-county/Richmond.json new file mode 100644 index 000000000..912a2e4f6 --- /dev/null +++ b/public/data/overall/vaccinations/by-county/Richmond.json @@ -0,0 +1 @@ +{"segment":{"county":"Richmond"},"headers":["report_date","population","vaccinations","total_vaccinations"],"rows":[["2020-12-12",202240,1,1],["2020-12-15",202240,1,2],["2020-12-16",202240,8,10],["2020-12-17",202240,111,121],["2020-12-18",202240,263,384],["2020-12-19",202240,105,489],["2020-12-20",202240,10,499],["2020-12-21",202240,53,552],["2020-12-22",202240,640,1192],["2020-12-23",202240,654,1846],["2020-12-24",202240,104,1950],["2020-12-26",202240,43,1993],["2020-12-27",202240,22,2015],["2020-12-28",202240,173,2188],["2020-12-29",202240,385,2573],["2020-12-30",202240,432,3005],["2020-12-31",202240,276,3281],["2021-01-01",202240,27,3308],["2021-01-02",202240,73,3381],["2021-01-03",202240,10,3391],["2021-01-04",202240,431,3822],["2021-01-05",202240,510,4332],["2021-01-06",202240,424,4756],["2021-01-07",202240,463,5219],["2021-01-08",202240,594,5813],["2021-01-09",202240,272,6085],["2021-01-10",202240,86,6171],["2021-01-11",202240,376,6547],["2021-01-12",202240,1033,7580],["2021-01-13",202240,1083,8663],["2021-01-14",202240,920,9583],["2021-01-15",202240,438,10021],["2021-01-16",202240,171,10192],["2021-01-17",202240,29,10221],["2021-01-18",202240,290,10511],["2021-01-19",202240,668,11179],["2021-01-20",202240,868,12047],["2021-01-21",202240,1176,13223],["2021-01-22",202240,718,13941],["2021-01-23",202240,108,14049],["2021-01-24",202240,153,14202],["2021-01-25",202240,763,14965],["2021-01-26",202240,765,15730],["2021-01-27",202240,801,16531],["2021-01-28",202240,1590,18121],["2021-01-29",202240,565,18686],["2021-01-30",202240,681,19367],["2021-01-31",202240,34,19401],["2021-02-01",202240,505,19906],["2021-02-02",202240,1372,21278],["2021-02-03",202240,821,22099],["2021-02-04",202240,1069,23168],["2021-02-05",202240,632,23800],["2021-02-06",202240,205,24005],["2021-02-07",202240,9,24014],["2021-02-08",202240,415,24429],["2021-02-09",202240,724,25153],["2021-02-10",202240,1164,26317],["2021-02-11",202240,1293,27610],["2021-02-12",202240,678,28288],["2021-02-13",202240,1060,29348],["2021-02-14",202240,60,29408],["2021-02-15",202240,677,30085],["2021-02-16",202240,658,30743],["2021-02-17",202240,1331,32074],["2021-02-18",202240,1071,33145],["2021-02-19",202240,983,34128],["2021-02-20",202240,732,34860],["2021-02-21",202240,66,34926],["2021-02-22",202240,441,35367],["2021-02-23",202240,930,36297],["2021-02-24",202240,472,36769],["2021-02-25",202240,1834,38603],["2021-02-26",202240,1076,39679],["2021-02-27",202240,308,39987],["2021-02-28",202240,102,40089],["2021-03-01",202240,563,40652],["2021-03-02",202240,711,41363],["2021-03-03",202240,1078,42441],["2021-03-04",202240,1072,43513],["2021-03-05",202240,654,44167],["2021-03-06",202240,986,45153],["2021-03-07",202240,136,45289],["2021-03-08",202240,658,45947],["2021-03-09",202240,916,46863],["2021-03-10",202240,1333,48196],["2021-03-11",202240,2005,50201],["2021-03-12",202240,1457,51658],["2021-03-13",202240,772,52430],["2021-03-14",202240,177,52607],["2021-03-15",202240,721,53328],["2021-03-16",202240,974,54302],["2021-03-17",202240,1600,55902],["2021-03-18",202240,866,56768],["2021-03-19",202240,706,57474],["2021-03-20",202240,620,58094],["2021-03-21",202240,201,58295],["2021-03-22",202240,1357,59652],["2021-03-23",202240,942,60594],["2021-03-24",202240,855,61449],["2021-03-25",202240,1807,63256],["2021-03-26",202240,653,63909],["2021-03-27",202240,930,64839],["2021-03-28",202240,293,65132],["2021-03-29",202240,918,66050],["2021-03-30",202240,1663,67713],["2021-03-31",202240,1301,69014],["2021-04-01",202240,2502,71516],["2021-04-02",202240,1588,73104],["2021-04-03",202240,788,73892],["2021-04-04",202240,306,74198],["2021-04-05",202240,1148,75346],["2021-04-06",202240,1062,76408],["2021-04-07",202240,1648,78056],["2021-04-08",202240,1205,79261],["2021-04-09",202240,930,80191],["2021-04-10",202240,476,80667],["2021-04-11",202240,326,80993],["2021-04-12",202240,1465,82458],["2021-04-13",202240,1435,83893],["2021-04-14",202240,953,84846],["2021-04-15",202240,1824,86670],["2021-04-16",202240,1084,87754],["2021-04-17",202240,827,88581],["2021-04-18",202240,169,88750],["2021-04-19",202240,995,89745],["2021-04-20",202240,1551,91296],["2021-04-21",202240,1153,92449],["2021-04-22",202240,1771,94220],["2021-04-23",202240,979,95199],["2021-04-24",202240,588,95787],["2021-04-25",202240,203,95990],["2021-04-26",202240,854,96844],["2021-04-27",202240,1302,98146],["2021-04-28",202240,1006,99152],["2021-04-29",202240,1279,100431],["2021-04-30",202240,1009,101440],["2021-05-01",202240,442,101882],["2021-05-02",202240,211,102093],["2021-05-03",202240,591,102684],["2021-05-04",202240,773,103457],["2021-05-05",202240,867,104324],["2021-05-06",202240,1148,105472],["2021-05-07",202240,764,106236],["2021-05-08",202240,401,106637],["2021-05-09",202240,156,106793],["2021-05-10",202240,321,107114],["2021-05-11",202240,768,107882],["2021-05-12",202240,470,108352],["2021-05-13",202240,650,109002],["2021-05-14",202240,658,109660],["2021-05-15",202240,461,110121],["2021-05-16",202240,198,110319],["2021-05-17",202240,560,110879],["2021-05-18",202240,959,111838],["2021-05-19",202240,655,112493],["2021-05-20",202240,822,113315],["2021-05-21",202240,528,113843],["2021-05-22",202240,513,114356],["2021-05-23",202240,167,114523],["2021-05-24",202240,399,114922],["2021-05-25",202240,490,115412],["2021-05-26",202240,545,115957],["2021-05-27",202240,509,116466],["2021-05-28",202240,419,116885],["2021-05-29",202240,228,117113],["2021-05-30",202240,125,117238],["2021-05-31",202240,75,117313],["2021-06-01",202240,517,117830],["2021-06-02",202240,430,118260],["2021-06-03",202240,484,118744],["2021-06-04",202240,499,119243],["2021-06-05",202240,334,119577],["2021-06-06",202240,183,119760],["2021-06-07",202240,468,120228],["2021-06-08",202240,427,120655],["2021-06-09",202240,401,121056],["2021-06-10",202240,614,121670],["2021-06-11",202240,473,122143],["2021-06-12",202240,408,122551],["2021-06-13",202240,129,122680],["2021-06-14",202240,349,123029],["2021-06-15",202240,424,123453],["2021-06-16",202240,386,123839],["2021-06-17",202240,400,124239],["2021-06-18",202240,421,124660],["2021-06-19",202240,193,124853],["2021-06-20",202240,105,124958],["2021-06-21",202240,197,125155],["2021-06-22",202240,281,125436],["2021-06-23",202240,309,125745],["2021-06-24",202240,376,126121],["2021-06-25",202240,346,126467],["2021-06-26",202240,219,126686],["2021-06-27",202240,123,126809],["2021-06-28",202240,218,127027],["2021-06-29",202240,269,127296],["2021-06-30",202240,294,127590],["2021-07-01",202240,381,127971],["2021-07-02",202240,285,128256],["2021-07-03",202240,162,128418],["2021-07-04",202240,19,128437],["2021-07-05",202240,214,128651],["2021-07-06",202240,285,128936],["2021-07-07",202240,231,129167],["2021-07-08",202240,307,129474],["2021-07-09",202240,290,129764],["2021-07-10",202240,168,129932],["2021-07-11",202240,112,130044],["2021-07-12",202240,218,130262],["2021-07-13",202240,258,130520],["2021-07-14",202240,263,130783],["2021-07-15",202240,273,131056],["2021-07-16",202240,323,131379],["2021-07-17",202240,178,131557],["2021-07-18",202240,110,131667],["2021-07-19",202240,303,131970],["2021-07-20",202240,279,132249],["2021-07-21",202240,283,132532],["2021-07-22",202240,419,132951],["2021-07-23",202240,366,133317],["2021-07-24",202240,268,133585],["2021-07-25",202240,149,133734],["2021-07-26",202240,348,134082],["2021-07-27",202240,393,134475],["2021-07-28",202240,397,134872],["2021-07-29",202240,435,135307],["2021-07-30",202240,460,135767],["2021-07-31",202240,313,136080],["2021-08-01",202240,229,136309],["2021-08-02",202240,381,136690],["2021-08-03",202240,461,137151],["2021-08-04",202240,449,137600],["2021-08-05",202240,543,138143],["2021-08-06",202240,508,138651],["2021-08-07",202240,311,138962],["2021-08-08",202240,217,139179],["2021-08-09",202240,391,139570],["2021-08-10",202240,502,140072],["2021-08-11",202240,453,140525],["2021-08-12",202240,531,141056],["2021-08-13",202240,455,141511],["2021-08-14",202240,327,141838],["2021-08-15",202240,261,142099],["2021-08-16",202240,454,142553],["2021-08-17",202240,409,142962],["2021-08-18",202240,422,143384],["2021-08-19",202240,437,143821],["2021-08-20",202240,471,144292],["2021-08-21",202240,296,144588],["2021-08-22",202240,197,144785],["2021-08-23",202240,450,145235],["2021-08-24",202240,468,145703],["2021-08-25",202240,489,146192],["2021-08-26",202240,541,146733],["2021-08-27",202240,522,147255],["2021-08-28",202240,305,147560],["2021-08-29",202240,245,147805],["2021-08-30",202240,475,148280],["2021-08-31",202240,530,148810],["2021-09-01",202240,547,149357],["2021-09-02",202240,528,149885],["2021-09-03",202240,508,150393],["2021-09-04",202240,311,150704],["2021-09-05",202240,191,150895],["2021-09-06",202240,55,150950],["2021-09-07",202240,515,151465],["2021-09-08",202240,505,151970],["2021-09-09",202240,502,152472],["2021-09-10",202240,481,152953],["2021-09-11",202240,235,153188],["2021-09-12",202240,173,153361],["2021-09-13",202240,400,153761],["2021-09-14",202240,424,154185],["2021-09-15",202240,401,154586],["2021-09-16",202240,413,154999],["2021-09-17",202240,370,155369],["2021-09-18",202240,190,155559],["2021-09-19",202240,124,155683],["2021-09-20",202240,356,156039],["2021-09-21",202240,333,156372],["2021-09-22",202240,336,156708],["2021-09-23",202240,327,157035],["2021-09-24",202240,409,157444],["2021-09-25",202240,238,157682],["2021-09-26",202240,145,157827],["2021-09-27",202240,403,158230],["2021-09-28",202240,517,158747],["2021-09-29",202240,460,159207],["2021-09-30",202240,704,159911],["2021-10-01",202240,549,160460],["2021-10-02",202240,176,160636],["2021-10-03",202240,140,160776],["2021-10-04",202240,416,161192],["2021-10-05",202240,456,161648],["2021-10-06",202240,481,162129],["2021-10-07",202240,485,162614],["2021-10-08",202240,607,163221],["2021-10-09",202240,230,163451],["2021-10-10",202240,113,163564],["2021-10-11",202240,360,163924],["2021-10-12",202240,398,164322],["2021-10-13",202240,401,164723],["2021-10-14",202240,348,165071],["2021-10-15",202240,380,165451],["2021-10-16",202240,148,165599],["2021-10-17",202240,91,165690],["2021-10-18",202240,325,166015],["2021-10-19",202240,277,166292],["2021-10-20",202240,432,166724],["2021-10-21",202240,293,167017],["2021-10-22",202240,504,167521],["2021-10-23",202240,253,167774],["2021-10-24",202240,150,167924],["2021-10-25",202240,558,168482],["2021-10-26",202240,642,169124],["2021-10-27",202240,649,169773],["2021-10-28",202240,516,170289],["2021-10-29",202240,872,171161],["2021-10-30",202240,356,171517],["2021-10-31",202240,136,171653],["2021-11-01",202240,610,172263],["2021-11-02",202240,579,172842],["2021-11-03",202240,633,173475],["2021-11-04",202240,575,174050],["2021-11-05",202240,614,174664],["2021-11-06",202240,332,174996],["2021-11-07",202240,136,175132],["2021-11-08",202240,516,175648],["2021-11-09",202240,551,176199],["2021-11-10",202240,549,176748],["2021-11-11",202240,642,177390],["2021-11-12",202240,643,178033],["2021-11-13",202240,301,178334],["2021-11-14",202240,118,178452],["2021-11-15",202240,497,178949],["2021-11-16",202240,693,179642],["2021-11-17",202240,592,180234],["2021-11-18",202240,571,180805],["2021-11-19",202240,692,181497],["2021-11-20",202240,427,181924],["2021-11-21",202240,172,182096],["2021-11-22",202240,601,182697],["2021-11-23",202240,597,183294],["2021-11-24",202240,441,183735],["2021-11-26",202240,300,184035],["2021-11-27",202240,224,184259],["2021-11-28",202240,186,184445],["2021-11-29",202240,606,185051],["2021-11-30",202240,760,185811],["2021-12-01",202240,751,186562],["2021-12-02",202240,791,187353],["2021-12-03",202240,823,188176],["2021-12-04",202240,366,188542],["2021-12-05",202240,173,188715],["2021-12-06",202240,600,189315],["2021-12-07",202240,589,189904],["2021-12-08",202240,595,190499],["2021-12-09",202240,600,191099],["2021-12-10",202240,586,191685],["2021-12-11",202240,266,191951],["2021-12-12",202240,154,192105],["2021-12-13",202240,513,192618],["2021-12-14",202240,498,193116],["2021-12-15",202240,438,193554],["2021-12-16",202240,453,194007],["2021-12-17",202240,582,194589],["2021-12-18",202240,306,194895],["2021-12-19",202240,189,195084],["2021-12-20",202240,633,195717],["2021-12-21",202240,654,196371],["2021-12-22",202240,579,196950],["2021-12-23",202240,476,197426],["2021-12-24",202240,112,197538],["2021-12-26",202240,124,197662],["2021-12-27",202240,460,198122],["2021-12-28",202240,554,198676],["2021-12-29",202240,589,199265],["2021-12-30",202240,513,199778],["2021-12-31",202240,301,200079],["2022-01-01",202240,37,200116],["2022-01-02",202240,160,200276],["2022-01-03",202240,137,200413]]} \ No newline at end of file diff --git a/public/data/overall/vaccinations/by-county/Rockdale.json b/public/data/overall/vaccinations/by-county/Rockdale.json new file mode 100644 index 000000000..1595c75de --- /dev/null +++ b/public/data/overall/vaccinations/by-county/Rockdale.json @@ -0,0 +1 @@ +{"segment":{"county":"Rockdale"},"headers":["report_date","population","vaccinations","total_vaccinations"],"rows":[["2020-12-16",94960,1,1],["2020-12-17",94960,24,25],["2020-12-18",94960,21,46],["2020-12-19",94960,24,70],["2020-12-20",94960,19,89],["2020-12-21",94960,28,117],["2020-12-22",94960,48,165],["2020-12-23",94960,64,229],["2020-12-24",94960,20,249],["2020-12-25",94960,2,251],["2020-12-26",94960,12,263],["2020-12-27",94960,10,273],["2020-12-28",94960,86,359],["2020-12-29",94960,135,494],["2020-12-30",94960,100,594],["2020-12-31",94960,71,665],["2021-01-01",94960,16,681],["2021-01-02",94960,23,704],["2021-01-03",94960,85,789],["2021-01-04",94960,132,921],["2021-01-05",94960,101,1022],["2021-01-06",94960,105,1127],["2021-01-07",94960,108,1235],["2021-01-08",94960,123,1358],["2021-01-09",94960,68,1426],["2021-01-10",94960,47,1473],["2021-01-11",94960,146,1619],["2021-01-12",94960,141,1760],["2021-01-13",94960,284,2044],["2021-01-14",94960,222,2266],["2021-01-15",94960,301,2567],["2021-01-16",94960,169,2736],["2021-01-17",94960,60,2796],["2021-01-18",94960,261,3057],["2021-01-19",94960,361,3418],["2021-01-20",94960,347,3765],["2021-01-21",94960,360,4125],["2021-01-22",94960,273,4398],["2021-01-23",94960,84,4482],["2021-01-24",94960,124,4606],["2021-01-25",94960,392,4998],["2021-01-26",94960,357,5355],["2021-01-27",94960,354,5709],["2021-01-28",94960,415,6124],["2021-01-29",94960,324,6448],["2021-01-30",94960,196,6644],["2021-01-31",94960,21,6665],["2021-02-01",94960,261,6926],["2021-02-02",94960,212,7138],["2021-02-03",94960,245,7383],["2021-02-04",94960,330,7713],["2021-02-05",94960,294,8007],["2021-02-06",94960,170,8177],["2021-02-07",94960,39,8216],["2021-02-08",94960,271,8487],["2021-02-09",94960,283,8770],["2021-02-10",94960,382,9152],["2021-02-11",94960,403,9555],["2021-02-12",94960,337,9892],["2021-02-13",94960,216,10108],["2021-02-14",94960,79,10187],["2021-02-15",94960,435,10622],["2021-02-16",94960,423,11045],["2021-02-17",94960,424,11469],["2021-02-18",94960,379,11848],["2021-02-19",94960,391,12239],["2021-02-20",94960,227,12466],["2021-02-21",94960,52,12518],["2021-02-22",94960,360,12878],["2021-02-23",94960,426,13304],["2021-02-24",94960,551,13855],["2021-02-25",94960,573,14428],["2021-02-26",94960,532,14960],["2021-02-27",94960,120,15080],["2021-02-28",94960,80,15160],["2021-03-01",94960,448,15608],["2021-03-02",94960,490,16098],["2021-03-03",94960,532,16630],["2021-03-04",94960,591,17221],["2021-03-05",94960,634,17855],["2021-03-06",94960,192,18047],["2021-03-07",94960,99,18146],["2021-03-08",94960,550,18696],["2021-03-09",94960,608,19304],["2021-03-10",94960,640,19944],["2021-03-11",94960,711,20655],["2021-03-12",94960,686,21341],["2021-03-13",94960,229,21570],["2021-03-14",94960,130,21700],["2021-03-15",94960,665,22365],["2021-03-16",94960,810,23175],["2021-03-17",94960,794,23969],["2021-03-18",94960,710,24679],["2021-03-19",94960,751,25430],["2021-03-20",94960,351,25781],["2021-03-21",94960,232,26013],["2021-03-22",94960,634,26647],["2021-03-23",94960,709,27356],["2021-03-24",94960,807,28163],["2021-03-25",94960,815,28978],["2021-03-26",94960,906,29884],["2021-03-27",94960,338,30222],["2021-03-28",94960,199,30421],["2021-03-29",94960,806,31227],["2021-03-30",94960,901,32128],["2021-03-31",94960,940,33068],["2021-04-01",94960,1049,34117],["2021-04-02",94960,829,34946],["2021-04-03",94960,467,35413],["2021-04-04",94960,157,35570],["2021-04-05",94960,817,36387],["2021-04-06",94960,1082,37469],["2021-04-07",94960,1026,38495],["2021-04-08",94960,922,39417],["2021-04-09",94960,1061,40478],["2021-04-10",94960,474,40952],["2021-04-11",94960,179,41131],["2021-04-12",94960,692,41823],["2021-04-13",94960,825,42648],["2021-04-14",94960,797,43445],["2021-04-15",94960,882,44327],["2021-04-16",94960,910,45237],["2021-04-17",94960,355,45592],["2021-04-18",94960,397,45989],["2021-04-19",94960,676,46665],["2021-04-20",94960,828,47493],["2021-04-21",94960,901,48394],["2021-04-22",94960,906,49300],["2021-04-23",94960,991,50291],["2021-04-24",94960,371,50662],["2021-04-25",94960,225,50887],["2021-04-26",94960,634,51521],["2021-04-27",94960,655,52176],["2021-04-28",94960,746,52922],["2021-04-29",94960,787,53709],["2021-04-30",94960,869,54578],["2021-05-01",94960,549,55127],["2021-05-02",94960,157,55284],["2021-05-03",94960,426,55710],["2021-05-04",94960,556,56266],["2021-05-05",94960,569,56835],["2021-05-06",94960,607,57442],["2021-05-07",94960,647,58089],["2021-05-08",94960,256,58345],["2021-05-09",94960,111,58456],["2021-05-10",94960,338,58794],["2021-05-11",94960,436,59230],["2021-05-12",94960,387,59617],["2021-05-13",94960,444,60061],["2021-05-14",94960,505,60566],["2021-05-15",94960,419,60985],["2021-05-16",94960,242,61227],["2021-05-17",94960,450,61677],["2021-05-18",94960,446,62123],["2021-05-19",94960,416,62539],["2021-05-20",94960,384,62923],["2021-05-21",94960,465,63388],["2021-05-22",94960,264,63652],["2021-05-23",94960,146,63798],["2021-05-24",94960,256,64054],["2021-05-25",94960,257,64311],["2021-05-26",94960,297,64608],["2021-05-27",94960,268,64876],["2021-05-28",94960,276,65152],["2021-05-29",94960,191,65343],["2021-05-30",94960,85,65428],["2021-05-31",94960,37,65465],["2021-06-01",94960,298,65763],["2021-06-02",94960,238,66001],["2021-06-03",94960,240,66241],["2021-06-04",94960,335,66576],["2021-06-05",94960,295,66871],["2021-06-06",94960,171,67042],["2021-06-07",94960,258,67300],["2021-06-08",94960,236,67536],["2021-06-09",94960,220,67756],["2021-06-10",94960,257,68013],["2021-06-11",94960,293,68306],["2021-06-12",94960,285,68591],["2021-06-13",94960,90,68681],["2021-06-14",94960,199,68880],["2021-06-15",94960,177,69057],["2021-06-16",94960,202,69259],["2021-06-17",94960,205,69464],["2021-06-18",94960,244,69708],["2021-06-19",94960,125,69833],["2021-06-20",94960,38,69871],["2021-06-21",94960,151,70022],["2021-06-22",94960,161,70183],["2021-06-23",94960,209,70392],["2021-06-24",94960,161,70553],["2021-06-25",94960,214,70767],["2021-06-26",94960,179,70946],["2021-06-27",94960,83,71029],["2021-06-28",94960,143,71172],["2021-06-29",94960,139,71311],["2021-06-30",94960,166,71477],["2021-07-01",94960,136,71613],["2021-07-02",94960,157,71770],["2021-07-03",94960,129,71899],["2021-07-04",94960,16,71915],["2021-07-05",94960,118,72033],["2021-07-06",94960,128,72161],["2021-07-07",94960,136,72297],["2021-07-08",94960,149,72446],["2021-07-09",94960,175,72621],["2021-07-10",94960,216,72837],["2021-07-11",94960,59,72896],["2021-07-12",94960,142,73038],["2021-07-13",94960,95,73133],["2021-07-14",94960,143,73276],["2021-07-15",94960,137,73413],["2021-07-16",94960,170,73583],["2021-07-17",94960,85,73668],["2021-07-18",94960,65,73733],["2021-07-19",94960,158,73891],["2021-07-20",94960,149,74040],["2021-07-21",94960,171,74211],["2021-07-22",94960,173,74384],["2021-07-23",94960,245,74629],["2021-07-24",94960,157,74786],["2021-07-25",94960,84,74870],["2021-07-26",94960,185,75055],["2021-07-27",94960,202,75257],["2021-07-28",94960,209,75466],["2021-07-29",94960,180,75646],["2021-07-30",94960,223,75869],["2021-07-31",94960,269,76138],["2021-08-01",94960,100,76238],["2021-08-02",94960,238,76476],["2021-08-03",94960,200,76676],["2021-08-04",94960,236,76912],["2021-08-05",94960,211,77123],["2021-08-06",94960,303,77426],["2021-08-07",94960,178,77604],["2021-08-08",94960,159,77763],["2021-08-09",94960,219,77982],["2021-08-10",94960,245,78227],["2021-08-11",94960,221,78448],["2021-08-12",94960,232,78680],["2021-08-13",94960,233,78913],["2021-08-14",94960,202,79115],["2021-08-15",94960,115,79230],["2021-08-16",94960,233,79463],["2021-08-17",94960,206,79669],["2021-08-18",94960,209,79878],["2021-08-19",94960,250,80128],["2021-08-20",94960,267,80395],["2021-08-21",94960,212,80607],["2021-08-22",94960,216,80823],["2021-08-23",94960,266,81089],["2021-08-24",94960,244,81333],["2021-08-25",94960,255,81588],["2021-08-26",94960,245,81833],["2021-08-27",94960,306,82139],["2021-08-28",94960,293,82432],["2021-08-29",94960,186,82618],["2021-08-30",94960,275,82893],["2021-08-31",94960,235,83128],["2021-09-01",94960,271,83399],["2021-09-02",94960,218,83617],["2021-09-03",94960,247,83864],["2021-09-04",94960,176,84040],["2021-09-05",94960,127,84167],["2021-09-06",94960,30,84197],["2021-09-07",94960,242,84439],["2021-09-08",94960,230,84669],["2021-09-09",94960,245,84914],["2021-09-10",94960,256,85170],["2021-09-11",94960,186,85356],["2021-09-12",94960,120,85476],["2021-09-13",94960,216,85692],["2021-09-14",94960,176,85868],["2021-09-15",94960,200,86068],["2021-09-16",94960,187,86255],["2021-09-17",94960,257,86512],["2021-09-18",94960,178,86690],["2021-09-19",94960,109,86799],["2021-09-20",94960,197,86996],["2021-09-21",94960,169,87165],["2021-09-22",94960,185,87350],["2021-09-23",94960,141,87491],["2021-09-24",94960,186,87677],["2021-09-25",94960,130,87807],["2021-09-26",94960,109,87916],["2021-09-27",94960,226,88142],["2021-09-28",94960,190,88332],["2021-09-29",94960,207,88539],["2021-09-30",94960,228,88767],["2021-10-01",94960,267,89034],["2021-10-02",94960,219,89253],["2021-10-03",94960,81,89334],["2021-10-04",94960,206,89540],["2021-10-05",94960,179,89719],["2021-10-06",94960,217,89936],["2021-10-07",94960,205,90141],["2021-10-08",94960,264,90405],["2021-10-09",94960,114,90519],["2021-10-10",94960,95,90614],["2021-10-11",94960,182,90796],["2021-10-12",94960,200,90996],["2021-10-13",94960,181,91177],["2021-10-14",94960,171,91348],["2021-10-15",94960,210,91558],["2021-10-16",94960,93,91651],["2021-10-17",94960,81,91732],["2021-10-18",94960,167,91899],["2021-10-19",94960,172,92071],["2021-10-20",94960,170,92241],["2021-10-21",94960,168,92409],["2021-10-22",94960,273,92682],["2021-10-23",94960,201,92883],["2021-10-24",94960,110,92993],["2021-10-25",94960,333,93326],["2021-10-26",94960,305,93631],["2021-10-27",94960,363,93994],["2021-10-28",94960,283,94277],["2021-10-29",94960,398,94675],["2021-10-30",94960,166,94841],["2021-10-31",94960,122,94963],["2021-11-01",94960,272,95235],["2021-11-02",94960,262,95497],["2021-11-03",94960,268,95765],["2021-11-04",94960,253,96018],["2021-11-05",94960,313,96331],["2021-11-06",94960,180,96511],["2021-11-07",94960,90,96601],["2021-11-08",94960,259,96860],["2021-11-09",94960,275,97135],["2021-11-10",94960,246,97381],["2021-11-11",94960,220,97601],["2021-11-12",94960,337,97938],["2021-11-13",94960,174,98112],["2021-11-14",94960,111,98223],["2021-11-15",94960,251,98474],["2021-11-16",94960,254,98728],["2021-11-17",94960,275,99003],["2021-11-18",94960,279,99282],["2021-11-19",94960,354,99636],["2021-11-20",94960,260,99896],["2021-11-21",94960,167,100063],["2021-11-22",94960,302,100365],["2021-11-23",94960,307,100672],["2021-11-24",94960,236,100908],["2021-11-26",94960,232,101140],["2021-11-27",94960,178,101318],["2021-11-28",94960,113,101431],["2021-11-29",94960,289,101720],["2021-11-30",94960,333,102053],["2021-12-01",94960,444,102497],["2021-12-02",94960,362,102859],["2021-12-03",94960,459,103318],["2021-12-04",94960,450,103768],["2021-12-05",94960,142,103910],["2021-12-06",94960,345,104255],["2021-12-07",94960,321,104576],["2021-12-08",94960,313,104889],["2021-12-09",94960,305,105194],["2021-12-10",94960,382,105576],["2021-12-11",94960,206,105782],["2021-12-12",94960,149,105931],["2021-12-13",94960,218,106149],["2021-12-14",94960,235,106384],["2021-12-15",94960,252,106636],["2021-12-16",94960,291,106927],["2021-12-17",94960,285,107212],["2021-12-18",94960,184,107396],["2021-12-19",94960,125,107521],["2021-12-20",94960,360,107881],["2021-12-21",94960,368,108249],["2021-12-22",94960,368,108617],["2021-12-23",94960,280,108897],["2021-12-24",94960,112,109009],["2021-12-25",94960,1,109010],["2021-12-26",94960,115,109125],["2021-12-27",94960,263,109388],["2021-12-28",94960,305,109693],["2021-12-29",94960,335,110028],["2021-12-30",94960,241,110269],["2021-12-31",94960,161,110430],["2022-01-01",94960,27,110457],["2022-01-02",94960,69,110526],["2022-01-03",94960,81,110607]]} \ No newline at end of file diff --git a/public/data/overall/vaccinations/by-county/Schley.json b/public/data/overall/vaccinations/by-county/Schley.json new file mode 100644 index 000000000..0c55b2e2c --- /dev/null +++ b/public/data/overall/vaccinations/by-county/Schley.json @@ -0,0 +1 @@ +{"segment":{"county":"Schley"},"headers":["report_date","population","vaccinations","total_vaccinations"],"rows":[["2020-12-17",5275,1,1],["2020-12-18",5275,1,2],["2020-12-21",5275,1,3],["2020-12-22",5275,2,5],["2020-12-23",5275,9,14],["2020-12-24",5275,1,15],["2020-12-26",5275,6,21],["2020-12-28",5275,8,29],["2020-12-29",5275,6,35],["2020-12-30",5275,5,40],["2020-12-31",5275,6,46],["2021-01-03",5275,7,53],["2021-01-04",5275,8,61],["2021-01-05",5275,6,67],["2021-01-06",5275,8,75],["2021-01-07",5275,8,83],["2021-01-09",5275,1,84],["2021-01-11",5275,11,95],["2021-01-12",5275,50,145],["2021-01-13",5275,34,179],["2021-01-14",5275,51,230],["2021-01-15",5275,112,342],["2021-01-16",5275,3,345],["2021-01-17",5275,4,349],["2021-01-18",5275,17,366],["2021-01-19",5275,11,377],["2021-01-20",5275,19,396],["2021-01-21",5275,45,441],["2021-01-22",5275,57,498],["2021-01-23",5275,1,499],["2021-01-24",5275,7,506],["2021-01-25",5275,16,522],["2021-01-26",5275,17,539],["2021-01-27",5275,8,547],["2021-01-28",5275,28,575],["2021-01-29",5275,10,585],["2021-02-01",5275,3,588],["2021-02-02",5275,12,600],["2021-02-03",5275,24,624],["2021-02-04",5275,24,648],["2021-02-05",5275,10,658],["2021-02-06",5275,6,664],["2021-02-07",5275,7,671],["2021-02-08",5275,12,683],["2021-02-09",5275,11,694],["2021-02-10",5275,18,712],["2021-02-11",5275,22,734],["2021-02-12",5275,169,903],["2021-02-15",5275,17,920],["2021-02-16",5275,13,933],["2021-02-17",5275,16,949],["2021-02-18",5275,13,962],["2021-02-19",5275,91,1053],["2021-02-20",5275,2,1055],["2021-02-22",5275,16,1071],["2021-02-23",5275,7,1078],["2021-02-24",5275,15,1093],["2021-02-25",5275,16,1109],["2021-02-26",5275,8,1117],["2021-02-27",5275,1,1118],["2021-03-01",5275,22,1140],["2021-03-02",5275,15,1155],["2021-03-03",5275,18,1173],["2021-03-04",5275,19,1192],["2021-03-05",5275,72,1264],["2021-03-06",5275,2,1266],["2021-03-08",5275,11,1277],["2021-03-09",5275,12,1289],["2021-03-10",5275,11,1300],["2021-03-11",5275,7,1307],["2021-03-12",5275,77,1384],["2021-03-13",5275,1,1385],["2021-03-14",5275,2,1387],["2021-03-15",5275,19,1406],["2021-03-16",5275,9,1415],["2021-03-17",5275,20,1435],["2021-03-18",5275,14,1449],["2021-03-19",5275,77,1526],["2021-03-21",5275,1,1527],["2021-03-22",5275,15,1542],["2021-03-23",5275,17,1559],["2021-03-24",5275,4,1563],["2021-03-25",5275,16,1579],["2021-03-26",5275,27,1606],["2021-03-27",5275,1,1607],["2021-03-28",5275,1,1608],["2021-03-29",5275,13,1621],["2021-03-30",5275,13,1634],["2021-03-31",5275,21,1655],["2021-04-01",5275,45,1700],["2021-04-02",5275,14,1714],["2021-04-03",5275,5,1719],["2021-04-05",5275,73,1792],["2021-04-06",5275,21,1813],["2021-04-07",5275,16,1829],["2021-04-08",5275,34,1863],["2021-04-09",5275,67,1930],["2021-04-10",5275,3,1933],["2021-04-11",5275,3,1936],["2021-04-12",5275,12,1948],["2021-04-13",5275,17,1965],["2021-04-14",5275,11,1976],["2021-04-15",5275,41,2017],["2021-04-16",5275,73,2090],["2021-04-17",5275,3,2093],["2021-04-18",5275,2,2095],["2021-04-19",5275,8,2103],["2021-04-20",5275,8,2111],["2021-04-21",5275,10,2121],["2021-04-22",5275,18,2139],["2021-04-23",5275,7,2146],["2021-04-24",5275,3,2149],["2021-04-25",5275,1,2150],["2021-04-26",5275,24,2174],["2021-04-27",5275,15,2189],["2021-04-28",5275,15,2204],["2021-04-29",5275,29,2233],["2021-04-30",5275,28,2261],["2021-05-01",5275,2,2263],["2021-05-02",5275,1,2264],["2021-05-03",5275,2,2266],["2021-05-04",5275,11,2277],["2021-05-05",5275,8,2285],["2021-05-06",5275,18,2303],["2021-05-07",5275,16,2319],["2021-05-08",5275,2,2321],["2021-05-09",5275,2,2323],["2021-05-10",5275,5,2328],["2021-05-11",5275,8,2336],["2021-05-12",5275,5,2341],["2021-05-13",5275,23,2364],["2021-05-14",5275,8,2372],["2021-05-15",5275,1,2373],["2021-05-17",5275,4,2377],["2021-05-18",5275,4,2381],["2021-05-19",5275,9,2390],["2021-05-20",5275,23,2413],["2021-05-21",5275,10,2423],["2021-05-22",5275,1,2424],["2021-05-23",5275,1,2425],["2021-05-24",5275,2,2427],["2021-05-25",5275,4,2431],["2021-05-26",5275,8,2439],["2021-05-27",5275,6,2445],["2021-05-28",5275,14,2459],["2021-05-29",5275,1,2460],["2021-06-01",5275,4,2464],["2021-06-02",5275,1,2465],["2021-06-03",5275,14,2479],["2021-06-04",5275,3,2482],["2021-06-05",5275,1,2483],["2021-06-07",5275,5,2488],["2021-06-08",5275,5,2493],["2021-06-09",5275,3,2496],["2021-06-10",5275,5,2501],["2021-06-11",5275,8,2509],["2021-06-12",5275,3,2512],["2021-06-14",5275,2,2514],["2021-06-15",5275,6,2520],["2021-06-16",5275,2,2522],["2021-06-17",5275,13,2535],["2021-06-18",5275,10,2545],["2021-06-20",5275,1,2546],["2021-06-21",5275,2,2548],["2021-06-22",5275,2,2550],["2021-06-23",5275,6,2556],["2021-06-24",5275,4,2560],["2021-06-25",5275,13,2573],["2021-06-26",5275,3,2576],["2021-06-28",5275,5,2581],["2021-06-29",5275,1,2582],["2021-06-30",5275,4,2586],["2021-07-01",5275,5,2591],["2021-07-02",5275,1,2592],["2021-07-03",5275,3,2595],["2021-07-05",5275,5,2600],["2021-07-06",5275,5,2605],["2021-07-07",5275,2,2607],["2021-07-08",5275,10,2617],["2021-07-09",5275,10,2627],["2021-07-10",5275,4,2631],["2021-07-12",5275,1,2632],["2021-07-13",5275,4,2636],["2021-07-15",5275,4,2640],["2021-07-16",5275,5,2645],["2021-07-17",5275,3,2648],["2021-07-19",5275,4,2652],["2021-07-21",5275,3,2655],["2021-07-22",5275,22,2677],["2021-07-23",5275,22,2699],["2021-07-24",5275,1,2700],["2021-07-26",5275,6,2706],["2021-07-27",5275,5,2711],["2021-07-28",5275,4,2715],["2021-07-29",5275,33,2748],["2021-07-30",5275,8,2756],["2021-07-31",5275,3,2759],["2021-08-01",5275,1,2760],["2021-08-02",5275,5,2765],["2021-08-03",5275,9,2774],["2021-08-04",5275,4,2778],["2021-08-05",5275,17,2795],["2021-08-06",5275,12,2807],["2021-08-07",5275,9,2816],["2021-08-08",5275,5,2821],["2021-08-09",5275,18,2839],["2021-08-10",5275,7,2846],["2021-08-11",5275,7,2853],["2021-08-12",5275,13,2866],["2021-08-13",5275,12,2878],["2021-08-14",5275,7,2885],["2021-08-15",5275,3,2888],["2021-08-16",5275,4,2892],["2021-08-17",5275,14,2906],["2021-08-18",5275,13,2919],["2021-08-19",5275,60,2979],["2021-08-20",5275,54,3033],["2021-08-21",5275,6,3039],["2021-08-22",5275,1,3040],["2021-08-23",5275,12,3052],["2021-08-24",5275,18,3070],["2021-08-25",5275,24,3094],["2021-08-26",5275,17,3111],["2021-08-27",5275,50,3161],["2021-08-28",5275,7,3168],["2021-08-29",5275,3,3171],["2021-08-30",5275,17,3188],["2021-08-31",5275,17,3205],["2021-09-01",5275,9,3214],["2021-09-02",5275,11,3225],["2021-09-03",5275,18,3243],["2021-09-04",5275,2,3245],["2021-09-05",5275,3,3248],["2021-09-06",5275,1,3249],["2021-09-07",5275,13,3262],["2021-09-08",5275,10,3272],["2021-09-09",5275,7,3279],["2021-09-10",5275,39,3318],["2021-09-11",5275,8,3326],["2021-09-12",5275,5,3331],["2021-09-13",5275,6,3337],["2021-09-14",5275,13,3350],["2021-09-15",5275,12,3362],["2021-09-16",5275,45,3407],["2021-09-17",5275,21,3428],["2021-09-18",5275,2,3430],["2021-09-19",5275,1,3431],["2021-09-20",5275,24,3455],["2021-09-21",5275,14,3469],["2021-09-22",5275,19,3488],["2021-09-23",5275,7,3495],["2021-09-24",5275,22,3517],["2021-09-25",5275,2,3519],["2021-09-26",5275,4,3523],["2021-09-27",5275,9,3532],["2021-09-28",5275,9,3541],["2021-09-29",5275,4,3545],["2021-09-30",5275,12,3557],["2021-10-01",5275,31,3588],["2021-10-02",5275,7,3595],["2021-10-03",5275,3,3598],["2021-10-04",5275,9,3607],["2021-10-05",5275,16,3623],["2021-10-06",5275,14,3637],["2021-10-07",5275,13,3650],["2021-10-08",5275,17,3667],["2021-10-09",5275,4,3671],["2021-10-11",5275,4,3675],["2021-10-12",5275,5,3680],["2021-10-13",5275,6,3686],["2021-10-14",5275,4,3690],["2021-10-15",5275,6,3696],["2021-10-16",5275,3,3699],["2021-10-17",5275,1,3700],["2021-10-18",5275,8,3708],["2021-10-19",5275,3,3711],["2021-10-20",5275,3,3714],["2021-10-21",5275,6,3720],["2021-10-22",5275,17,3737],["2021-10-24",5275,3,3740],["2021-10-25",5275,11,3751],["2021-10-26",5275,3,3754],["2021-10-27",5275,40,3794],["2021-10-28",5275,12,3806],["2021-10-29",5275,21,3827],["2021-10-30",5275,4,3831],["2021-10-31",5275,3,3834],["2021-11-01",5275,3,3837],["2021-11-02",5275,13,3850],["2021-11-03",5275,49,3899],["2021-11-04",5275,5,3904],["2021-11-05",5275,16,3920],["2021-11-06",5275,4,3924],["2021-11-07",5275,3,3927],["2021-11-08",5275,5,3932],["2021-11-09",5275,17,3949],["2021-11-10",5275,47,3996],["2021-11-11",5275,5,4001],["2021-11-12",5275,20,4021],["2021-11-13",5275,2,4023],["2021-11-14",5275,2,4025],["2021-11-15",5275,7,4032],["2021-11-16",5275,6,4038],["2021-11-17",5275,60,4098],["2021-11-18",5275,14,4112],["2021-11-19",5275,6,4118],["2021-11-20",5275,1,4119],["2021-11-21",5275,2,4121],["2021-11-22",5275,5,4126],["2021-11-23",5275,28,4154],["2021-11-24",5275,5,4159],["2021-11-26",5275,1,4160],["2021-11-27",5275,2,4162],["2021-11-29",5275,11,4173],["2021-11-30",5275,12,4185],["2021-12-01",5275,31,4216],["2021-12-02",5275,21,4237],["2021-12-03",5275,25,4262],["2021-12-04",5275,1,4263],["2021-12-05",5275,2,4265],["2021-12-06",5275,14,4279],["2021-12-07",5275,9,4288],["2021-12-08",5275,10,4298],["2021-12-09",5275,1,4299],["2021-12-10",5275,12,4311],["2021-12-11",5275,1,4312],["2021-12-12",5275,2,4314],["2021-12-13",5275,6,4320],["2021-12-14",5275,4,4324],["2021-12-15",5275,8,4332],["2021-12-16",5275,10,4342],["2021-12-17",5275,9,4351],["2021-12-18",5275,7,4358],["2021-12-19",5275,1,4359],["2021-12-20",5275,8,4367],["2021-12-21",5275,4,4371],["2021-12-22",5275,7,4378],["2021-12-27",5275,16,4394],["2021-12-28",5275,12,4406],["2021-12-29",5275,16,4422],["2021-12-30",5275,10,4432],["2021-12-31",5275,3,4435],["2022-01-02",5275,1,4436],["2022-01-03",5275,1,4437]]} \ No newline at end of file diff --git a/public/data/overall/vaccinations/by-county/Screven.json b/public/data/overall/vaccinations/by-county/Screven.json new file mode 100644 index 000000000..2c669ecbb --- /dev/null +++ b/public/data/overall/vaccinations/by-county/Screven.json @@ -0,0 +1 @@ +{"segment":{"county":"Screven"},"headers":["report_date","population","vaccinations","total_vaccinations"],"rows":[["2020-12-18",13900,2,2],["2020-12-19",13900,1,3],["2020-12-20",13900,2,5],["2020-12-21",13900,5,10],["2020-12-22",13900,5,15],["2020-12-23",13900,10,25],["2020-12-24",13900,4,29],["2020-12-26",13900,1,30],["2020-12-27",13900,3,33],["2020-12-28",13900,19,52],["2020-12-29",13900,23,75],["2020-12-30",13900,10,85],["2020-12-31",13900,13,98],["2021-01-01",13900,2,100],["2021-01-04",13900,5,105],["2021-01-05",13900,17,122],["2021-01-06",13900,67,189],["2021-01-07",13900,21,210],["2021-01-08",13900,27,237],["2021-01-09",13900,3,240],["2021-01-10",13900,5,245],["2021-01-11",13900,27,272],["2021-01-12",13900,174,446],["2021-01-13",13900,39,485],["2021-01-14",13900,50,535],["2021-01-15",13900,32,567],["2021-01-16",13900,8,575],["2021-01-17",13900,2,577],["2021-01-18",13900,48,625],["2021-01-19",13900,101,726],["2021-01-20",13900,57,783],["2021-01-21",13900,92,875],["2021-01-22",13900,37,912],["2021-01-23",13900,8,920],["2021-01-24",13900,1,921],["2021-01-25",13900,55,976],["2021-01-26",13900,128,1104],["2021-01-27",13900,90,1194],["2021-01-28",13900,111,1305],["2021-01-29",13900,36,1341],["2021-01-30",13900,6,1347],["2021-01-31",13900,1,1348],["2021-02-01",13900,47,1395],["2021-02-02",13900,165,1560],["2021-02-03",13900,67,1627],["2021-02-04",13900,93,1720],["2021-02-05",13900,77,1797],["2021-02-06",13900,5,1802],["2021-02-07",13900,1,1803],["2021-02-08",13900,20,1823],["2021-02-09",13900,225,2048],["2021-02-10",13900,79,2127],["2021-02-11",13900,121,2248],["2021-02-12",13900,68,2316],["2021-02-13",13900,16,2332],["2021-02-14",13900,3,2335],["2021-02-15",13900,65,2400],["2021-02-16",13900,142,2542],["2021-02-17",13900,70,2612],["2021-02-18",13900,117,2729],["2021-02-19",13900,48,2777],["2021-02-20",13900,8,2785],["2021-02-21",13900,5,2790],["2021-02-22",13900,61,2851],["2021-02-23",13900,139,2990],["2021-02-24",13900,70,3060],["2021-02-25",13900,133,3193],["2021-02-26",13900,53,3246],["2021-02-27",13900,8,3254],["2021-02-28",13900,6,3260],["2021-03-01",13900,78,3338],["2021-03-02",13900,200,3538],["2021-03-03",13900,91,3629],["2021-03-04",13900,118,3747],["2021-03-05",13900,60,3807],["2021-03-06",13900,11,3818],["2021-03-07",13900,11,3829],["2021-03-08",13900,159,3988],["2021-03-09",13900,141,4129],["2021-03-10",13900,102,4231],["2021-03-11",13900,114,4345],["2021-03-12",13900,45,4390],["2021-03-13",13900,19,4409],["2021-03-14",13900,12,4421],["2021-03-15",13900,94,4515],["2021-03-16",13900,176,4691],["2021-03-17",13900,151,4842],["2021-03-18",13900,113,4955],["2021-03-19",13900,66,5021],["2021-03-20",13900,11,5032],["2021-03-21",13900,8,5040],["2021-03-22",13900,96,5136],["2021-03-23",13900,128,5264],["2021-03-24",13900,83,5347],["2021-03-25",13900,113,5460],["2021-03-26",13900,39,5499],["2021-03-27",13900,117,5616],["2021-03-28",13900,20,5636],["2021-03-29",13900,89,5725],["2021-03-30",13900,124,5849],["2021-03-31",13900,85,5934],["2021-04-01",13900,102,6036],["2021-04-02",13900,79,6115],["2021-04-03",13900,7,6122],["2021-04-04",13900,6,6128],["2021-04-05",13900,85,6213],["2021-04-06",13900,153,6366],["2021-04-07",13900,73,6439],["2021-04-08",13900,128,6567],["2021-04-09",13900,85,6652],["2021-04-10",13900,11,6663],["2021-04-11",13900,19,6682],["2021-04-12",13900,92,6774],["2021-04-13",13900,157,6931],["2021-04-14",13900,81,7012],["2021-04-15",13900,176,7188],["2021-04-16",13900,96,7284],["2021-04-17",13900,13,7297],["2021-04-18",13900,3,7300],["2021-04-19",13900,86,7386],["2021-04-20",13900,90,7476],["2021-04-21",13900,74,7550],["2021-04-22",13900,94,7644],["2021-04-23",13900,51,7695],["2021-04-24",13900,130,7825],["2021-04-25",13900,3,7828],["2021-04-26",13900,84,7912],["2021-04-27",13900,103,8015],["2021-04-28",13900,57,8072],["2021-04-29",13900,30,8102],["2021-04-30",13900,72,8174],["2021-05-01",13900,15,8189],["2021-05-02",13900,1,8190],["2021-05-03",13900,41,8231],["2021-05-04",13900,71,8302],["2021-05-05",13900,63,8365],["2021-05-06",13900,37,8402],["2021-05-07",13900,67,8469],["2021-05-08",13900,9,8478],["2021-05-09",13900,1,8479],["2021-05-10",13900,28,8507],["2021-05-11",13900,60,8567],["2021-05-12",13900,47,8614],["2021-05-13",13900,37,8651],["2021-05-14",13900,41,8692],["2021-05-15",13900,10,8702],["2021-05-16",13900,5,8707],["2021-05-17",13900,48,8755],["2021-05-18",13900,62,8817],["2021-05-19",13900,36,8853],["2021-05-20",13900,39,8892],["2021-05-21",13900,30,8922],["2021-05-22",13900,12,8934],["2021-05-23",13900,4,8938],["2021-05-24",13900,26,8964],["2021-05-25",13900,46,9010],["2021-05-26",13900,42,9052],["2021-05-27",13900,22,9074],["2021-05-28",13900,36,9110],["2021-05-29",13900,7,9117],["2021-05-30",13900,3,9120],["2021-05-31",13900,4,9124],["2021-06-01",13900,42,9166],["2021-06-02",13900,27,9193],["2021-06-03",13900,15,9208],["2021-06-04",13900,33,9241],["2021-06-05",13900,2,9243],["2021-06-06",13900,4,9247],["2021-06-07",13900,14,9261],["2021-06-08",13900,29,9290],["2021-06-09",13900,14,9304],["2021-06-10",13900,32,9336],["2021-06-11",13900,50,9386],["2021-06-12",13900,16,9402],["2021-06-13",13900,4,9406],["2021-06-14",13900,13,9419],["2021-06-15",13900,33,9452],["2021-06-16",13900,24,9476],["2021-06-17",13900,25,9501],["2021-06-18",13900,23,9524],["2021-06-19",13900,6,9530],["2021-06-20",13900,2,9532],["2021-06-21",13900,16,9548],["2021-06-22",13900,21,9569],["2021-06-23",13900,40,9609],["2021-06-24",13900,17,9626],["2021-06-25",13900,23,9649],["2021-06-26",13900,4,9653],["2021-06-28",13900,16,9669],["2021-06-29",13900,16,9685],["2021-06-30",13900,18,9703],["2021-07-01",13900,18,9721],["2021-07-02",13900,18,9739],["2021-07-03",13900,8,9747],["2021-07-05",13900,4,9751],["2021-07-06",13900,18,9769],["2021-07-07",13900,16,9785],["2021-07-08",13900,17,9802],["2021-07-09",13900,27,9829],["2021-07-10",13900,10,9839],["2021-07-11",13900,2,9841],["2021-07-12",13900,13,9854],["2021-07-13",13900,12,9866],["2021-07-14",13900,17,9883],["2021-07-15",13900,12,9895],["2021-07-16",13900,14,9909],["2021-07-17",13900,32,9941],["2021-07-18",13900,3,9944],["2021-07-19",13900,17,9961],["2021-07-20",13900,38,9999],["2021-07-21",13900,33,10032],["2021-07-22",13900,23,10055],["2021-07-23",13900,35,10090],["2021-07-24",13900,14,10104],["2021-07-25",13900,4,10108],["2021-07-26",13900,27,10135],["2021-07-27",13900,61,10196],["2021-07-28",13900,53,10249],["2021-07-29",13900,35,10284],["2021-07-30",13900,34,10318],["2021-07-31",13900,17,10335],["2021-08-01",13900,6,10341],["2021-08-02",13900,32,10373],["2021-08-03",13900,52,10425],["2021-08-04",13900,39,10464],["2021-08-05",13900,43,10507],["2021-08-06",13900,54,10561],["2021-08-07",13900,29,10590],["2021-08-08",13900,9,10599],["2021-08-09",13900,51,10650],["2021-08-10",13900,49,10699],["2021-08-11",13900,38,10737],["2021-08-12",13900,41,10778],["2021-08-13",13900,43,10821],["2021-08-14",13900,71,10892],["2021-08-15",13900,10,10902],["2021-08-16",13900,57,10959],["2021-08-17",13900,90,11049],["2021-08-18",13900,66,11115],["2021-08-19",13900,66,11181],["2021-08-20",13900,68,11249],["2021-08-21",13900,16,11265],["2021-08-22",13900,4,11269],["2021-08-23",13900,38,11307],["2021-08-24",13900,94,11401],["2021-08-25",13900,54,11455],["2021-08-26",13900,70,11525],["2021-08-27",13900,91,11616],["2021-08-28",13900,32,11648],["2021-08-29",13900,10,11658],["2021-08-30",13900,71,11729],["2021-08-31",13900,77,11806],["2021-09-01",13900,60,11866],["2021-09-02",13900,62,11928],["2021-09-03",13900,67,11995],["2021-09-04",13900,20,12015],["2021-09-05",13900,13,12028],["2021-09-06",13900,7,12035],["2021-09-07",13900,80,12115],["2021-09-08",13900,37,12152],["2021-09-09",13900,62,12214],["2021-09-10",13900,68,12282],["2021-09-11",13900,28,12310],["2021-09-12",13900,6,12316],["2021-09-13",13900,37,12353],["2021-09-14",13900,111,12464],["2021-09-15",13900,29,12493],["2021-09-16",13900,47,12540],["2021-09-17",13900,71,12611],["2021-09-18",13900,25,12636],["2021-09-19",13900,10,12646],["2021-09-20",13900,29,12675],["2021-09-21",13900,50,12725],["2021-09-22",13900,29,12754],["2021-09-23",13900,48,12802],["2021-09-24",13900,60,12862],["2021-09-25",13900,9,12871],["2021-09-26",13900,2,12873],["2021-09-27",13900,33,12906],["2021-09-28",13900,49,12955],["2021-09-29",13900,32,12987],["2021-09-30",13900,25,13012],["2021-10-01",13900,43,13055],["2021-10-02",13900,15,13070],["2021-10-03",13900,4,13074],["2021-10-04",13900,8,13082],["2021-10-05",13900,47,13129],["2021-10-06",13900,22,13151],["2021-10-07",13900,15,13166],["2021-10-08",13900,26,13192],["2021-10-09",13900,14,13206],["2021-10-10",13900,5,13211],["2021-10-11",13900,21,13232],["2021-10-12",13900,30,13262],["2021-10-13",13900,11,13273],["2021-10-14",13900,15,13288],["2021-10-15",13900,31,13319],["2021-10-16",13900,5,13324],["2021-10-17",13900,2,13326],["2021-10-18",13900,14,13340],["2021-10-19",13900,11,13351],["2021-10-20",13900,16,13367],["2021-10-21",13900,12,13379],["2021-10-22",13900,21,13400],["2021-10-23",13900,10,13410],["2021-10-24",13900,2,13412],["2021-10-25",13900,17,13429],["2021-10-26",13900,141,13570],["2021-10-27",13900,44,13614],["2021-10-28",13900,38,13652],["2021-10-29",13900,109,13761],["2021-10-30",13900,14,13775],["2021-10-31",13900,5,13780],["2021-11-01",13900,97,13877],["2021-11-02",13900,128,14005],["2021-11-03",13900,99,14104],["2021-11-04",13900,73,14177],["2021-11-05",13900,57,14234],["2021-11-06",13900,37,14271],["2021-11-07",13900,4,14275],["2021-11-08",13900,35,14310],["2021-11-09",13900,98,14408],["2021-11-10",13900,37,14445],["2021-11-11",13900,45,14490],["2021-11-12",13900,51,14541],["2021-11-13",13900,3,14544],["2021-11-14",13900,5,14549],["2021-11-15",13900,34,14583],["2021-11-16",13900,153,14736],["2021-11-17",13900,27,14763],["2021-11-18",13900,45,14808],["2021-11-19",13900,98,14906],["2021-11-20",13900,12,14918],["2021-11-21",13900,7,14925],["2021-11-22",13900,37,14962],["2021-11-23",13900,64,15026],["2021-11-24",13900,39,15065],["2021-11-26",13900,38,15103],["2021-11-27",13900,13,15116],["2021-11-28",13900,2,15118],["2021-11-29",13900,48,15166],["2021-11-30",13900,99,15265],["2021-12-01",13900,39,15304],["2021-12-02",13900,50,15354],["2021-12-03",13900,114,15468],["2021-12-04",13900,16,15484],["2021-12-05",13900,8,15492],["2021-12-06",13900,40,15532],["2021-12-07",13900,99,15631],["2021-12-08",13900,58,15689],["2021-12-09",13900,33,15722],["2021-12-10",13900,35,15757],["2021-12-11",13900,8,15765],["2021-12-12",13900,2,15767],["2021-12-13",13900,27,15794],["2021-12-14",13900,56,15850],["2021-12-15",13900,27,15877],["2021-12-16",13900,31,15908],["2021-12-17",13900,65,15973],["2021-12-18",13900,11,15984],["2021-12-19",13900,5,15989],["2021-12-20",13900,37,16026],["2021-12-21",13900,76,16102],["2021-12-22",13900,23,16125],["2021-12-23",13900,23,16148],["2021-12-24",13900,3,16151],["2021-12-26",13900,9,16160],["2021-12-27",13900,28,16188],["2021-12-28",13900,59,16247],["2021-12-29",13900,49,16296],["2021-12-30",13900,38,16334],["2021-12-31",13900,16,16350],["2022-01-02",13900,4,16354],["2022-01-03",13900,8,16362]]} \ No newline at end of file diff --git a/public/data/overall/vaccinations/by-county/Seminole.json b/public/data/overall/vaccinations/by-county/Seminole.json new file mode 100644 index 000000000..3c43554f4 --- /dev/null +++ b/public/data/overall/vaccinations/by-county/Seminole.json @@ -0,0 +1 @@ +{"segment":{"county":"Seminole"},"headers":["report_date","population","vaccinations","total_vaccinations"],"rows":[["2020-12-16",8140,1,1],["2020-12-18",8140,1,2],["2020-12-19",8140,1,3],["2020-12-21",8140,1,4],["2020-12-22",8140,19,23],["2020-12-23",8140,9,32],["2020-12-24",8140,1,33],["2020-12-27",8140,2,35],["2020-12-28",8140,14,49],["2020-12-29",8140,28,77],["2020-12-30",8140,21,98],["2020-12-31",8140,4,102],["2021-01-04",8140,14,116],["2021-01-05",8140,18,134],["2021-01-06",8140,56,190],["2021-01-07",8140,47,237],["2021-01-08",8140,12,249],["2021-01-09",8140,1,250],["2021-01-10",8140,1,251],["2021-01-11",8140,68,319],["2021-01-12",8140,53,372],["2021-01-13",8140,49,421],["2021-01-14",8140,65,486],["2021-01-15",8140,53,539],["2021-01-16",8140,2,541],["2021-01-17",8140,2,543],["2021-01-18",8140,46,589],["2021-01-19",8140,71,660],["2021-01-20",8140,53,713],["2021-01-21",8140,53,766],["2021-01-22",8140,47,813],["2021-01-23",8140,1,814],["2021-01-25",8140,51,865],["2021-01-26",8140,51,916],["2021-01-27",8140,108,1024],["2021-01-28",8140,62,1086],["2021-01-29",8140,47,1133],["2021-01-30",8140,1,1134],["2021-01-31",8140,1,1135],["2021-02-01",8140,70,1205],["2021-02-02",8140,66,1271],["2021-02-03",8140,61,1332],["2021-02-04",8140,54,1386],["2021-02-05",8140,44,1430],["2021-02-06",8140,3,1433],["2021-02-07",8140,1,1434],["2021-02-08",8140,73,1507],["2021-02-09",8140,89,1596],["2021-02-10",8140,70,1666],["2021-02-11",8140,79,1745],["2021-02-12",8140,58,1803],["2021-02-15",8140,53,1856],["2021-02-16",8140,89,1945],["2021-02-17",8140,50,1995],["2021-02-18",8140,62,2057],["2021-02-19",8140,51,2108],["2021-02-22",8140,52,2160],["2021-02-23",8140,57,2217],["2021-02-24",8140,48,2265],["2021-02-25",8140,57,2322],["2021-02-26",8140,48,2370],["2021-02-27",8140,2,2372],["2021-03-01",8140,67,2439],["2021-03-02",8140,72,2511],["2021-03-03",8140,62,2573],["2021-03-04",8140,43,2616],["2021-03-05",8140,33,2649],["2021-03-07",8140,1,2650],["2021-03-08",8140,46,2696],["2021-03-09",8140,40,2736],["2021-03-10",8140,87,2823],["2021-03-11",8140,39,2862],["2021-03-12",8140,52,2914],["2021-03-14",8140,7,2921],["2021-03-15",8140,76,2997],["2021-03-16",8140,58,3055],["2021-03-17",8140,56,3111],["2021-03-18",8140,47,3158],["2021-03-19",8140,16,3174],["2021-03-20",8140,3,3177],["2021-03-21",8140,5,3182],["2021-03-22",8140,70,3252],["2021-03-23",8140,24,3276],["2021-03-24",8140,58,3334],["2021-03-25",8140,66,3400],["2021-03-26",8140,9,3409],["2021-03-28",8140,8,3417],["2021-03-29",8140,48,3465],["2021-03-30",8140,32,3497],["2021-03-31",8140,76,3573],["2021-04-01",8140,40,3613],["2021-04-02",8140,7,3620],["2021-04-03",8140,3,3623],["2021-04-04",8140,9,3632],["2021-04-05",8140,40,3672],["2021-04-06",8140,50,3722],["2021-04-07",8140,65,3787],["2021-04-08",8140,19,3806],["2021-04-09",8140,13,3819],["2021-04-10",8140,4,3823],["2021-04-11",8140,12,3835],["2021-04-12",8140,75,3910],["2021-04-13",8140,48,3958],["2021-04-14",8140,53,4011],["2021-04-15",8140,47,4058],["2021-04-16",8140,21,4079],["2021-04-17",8140,2,4081],["2021-04-18",8140,1,4082],["2021-04-19",8140,68,4150],["2021-04-20",8140,19,4169],["2021-04-21",8140,53,4222],["2021-04-22",8140,41,4263],["2021-04-23",8140,17,4280],["2021-04-24",8140,1,4281],["2021-04-25",8140,1,4282],["2021-04-26",8140,34,4316],["2021-04-27",8140,27,4343],["2021-04-28",8140,67,4410],["2021-04-29",8140,16,4426],["2021-04-30",8140,12,4438],["2021-05-01",8140,9,4447],["2021-05-02",8140,5,4452],["2021-05-03",8140,34,4486],["2021-05-04",8140,9,4495],["2021-05-05",8140,33,4528],["2021-05-06",8140,12,4540],["2021-05-07",8140,15,4555],["2021-05-08",8140,12,4567],["2021-05-10",8140,35,4602],["2021-05-11",8140,13,4615],["2021-05-12",8140,27,4642],["2021-05-13",8140,18,4660],["2021-05-14",8140,9,4669],["2021-05-15",8140,4,4673],["2021-05-16",8140,1,4674],["2021-05-17",8140,23,4697],["2021-05-18",8140,24,4721],["2021-05-19",8140,28,4749],["2021-05-20",8140,19,4768],["2021-05-21",8140,11,4779],["2021-05-22",8140,7,4786],["2021-05-23",8140,3,4789],["2021-05-24",8140,21,4810],["2021-05-25",8140,15,4825],["2021-05-26",8140,30,4855],["2021-05-27",8140,4,4859],["2021-05-28",8140,10,4869],["2021-05-29",8140,4,4873],["2021-06-01",8140,19,4892],["2021-06-02",8140,30,4922],["2021-06-03",8140,10,4932],["2021-06-04",8140,9,4941],["2021-06-05",8140,6,4947],["2021-06-06",8140,3,4950],["2021-06-07",8140,22,4972],["2021-06-08",8140,8,4980],["2021-06-09",8140,9,4989],["2021-06-10",8140,56,5045],["2021-06-11",8140,10,5055],["2021-06-12",8140,5,5060],["2021-06-13",8140,2,5062],["2021-06-14",8140,9,5071],["2021-06-15",8140,8,5079],["2021-06-16",8140,16,5095],["2021-06-17",8140,13,5108],["2021-06-18",8140,3,5111],["2021-06-19",8140,2,5113],["2021-06-21",8140,12,5125],["2021-06-22",8140,12,5137],["2021-06-23",8140,13,5150],["2021-06-24",8140,3,5153],["2021-06-25",8140,3,5156],["2021-06-26",8140,5,5161],["2021-06-27",8140,1,5162],["2021-06-28",8140,8,5170],["2021-06-29",8140,8,5178],["2021-06-30",8140,15,5193],["2021-07-01",8140,7,5200],["2021-07-02",8140,5,5205],["2021-07-03",8140,2,5207],["2021-07-04",8140,1,5208],["2021-07-05",8140,6,5214],["2021-07-06",8140,5,5219],["2021-07-07",8140,16,5235],["2021-07-08",8140,8,5243],["2021-07-09",8140,10,5253],["2021-07-10",8140,4,5257],["2021-07-11",8140,3,5260],["2021-07-12",8140,7,5267],["2021-07-13",8140,6,5273],["2021-07-14",8140,15,5288],["2021-07-15",8140,16,5304],["2021-07-16",8140,6,5310],["2021-07-17",8140,6,5316],["2021-07-19",8140,33,5349],["2021-07-20",8140,6,5355],["2021-07-21",8140,27,5382],["2021-07-22",8140,16,5398],["2021-07-23",8140,19,5417],["2021-07-24",8140,6,5423],["2021-07-25",8140,5,5428],["2021-07-26",8140,35,5463],["2021-07-27",8140,16,5479],["2021-07-28",8140,45,5524],["2021-07-29",8140,23,5547],["2021-07-30",8140,21,5568],["2021-07-31",8140,11,5579],["2021-08-01",8140,9,5588],["2021-08-02",8140,48,5636],["2021-08-03",8140,22,5658],["2021-08-04",8140,53,5711],["2021-08-05",8140,16,5727],["2021-08-06",8140,23,5750],["2021-08-07",8140,11,5761],["2021-08-08",8140,6,5767],["2021-08-09",8140,58,5825],["2021-08-10",8140,21,5846],["2021-08-11",8140,44,5890],["2021-08-12",8140,30,5920],["2021-08-13",8140,46,5966],["2021-08-14",8140,12,5978],["2021-08-15",8140,5,5983],["2021-08-16",8140,48,6031],["2021-08-17",8140,24,6055],["2021-08-18",8140,67,6122],["2021-08-19",8140,32,6154],["2021-08-20",8140,27,6181],["2021-08-21",8140,14,6195],["2021-08-22",8140,14,6209],["2021-08-23",8140,48,6257],["2021-08-24",8140,43,6300],["2021-08-25",8140,59,6359],["2021-08-26",8140,46,6405],["2021-08-27",8140,26,6431],["2021-08-28",8140,13,6444],["2021-08-29",8140,7,6451],["2021-08-30",8140,73,6524],["2021-08-31",8140,35,6559],["2021-09-01",8140,65,6624],["2021-09-02",8140,24,6648],["2021-09-03",8140,25,6673],["2021-09-04",8140,13,6686],["2021-09-05",8140,7,6693],["2021-09-06",8140,10,6703],["2021-09-07",8140,35,6738],["2021-09-08",8140,66,6804],["2021-09-09",8140,32,6836],["2021-09-10",8140,26,6862],["2021-09-11",8140,10,6872],["2021-09-12",8140,11,6883],["2021-09-13",8140,44,6927],["2021-09-14",8140,35,6962],["2021-09-15",8140,43,7005],["2021-09-16",8140,19,7024],["2021-09-17",8140,15,7039],["2021-09-18",8140,10,7049],["2021-09-19",8140,6,7055],["2021-09-20",8140,36,7091],["2021-09-21",8140,18,7109],["2021-09-22",8140,34,7143],["2021-09-23",8140,16,7159],["2021-09-24",8140,19,7178],["2021-09-25",8140,5,7183],["2021-09-26",8140,2,7185],["2021-09-27",8140,31,7216],["2021-09-28",8140,13,7229],["2021-09-29",8140,30,7259],["2021-09-30",8140,10,7269],["2021-10-01",8140,13,7282],["2021-10-02",8140,5,7287],["2021-10-03",8140,4,7291],["2021-10-04",8140,16,7307],["2021-10-05",8140,29,7336],["2021-10-06",8140,19,7355],["2021-10-07",8140,15,7370],["2021-10-08",8140,7,7377],["2021-10-09",8140,2,7379],["2021-10-10",8140,4,7383],["2021-10-11",8140,6,7389],["2021-10-12",8140,13,7402],["2021-10-13",8140,10,7412],["2021-10-14",8140,11,7423],["2021-10-15",8140,9,7432],["2021-10-16",8140,2,7434],["2021-10-17",8140,2,7436],["2021-10-18",8140,20,7456],["2021-10-19",8140,7,7463],["2021-10-20",8140,13,7476],["2021-10-21",8140,6,7482],["2021-10-22",8140,2,7484],["2021-10-23",8140,5,7489],["2021-10-24",8140,6,7495],["2021-10-25",8140,25,7520],["2021-10-26",8140,10,7530],["2021-10-27",8140,42,7572],["2021-10-28",8140,42,7614],["2021-10-29",8140,7,7621],["2021-10-30",8140,3,7624],["2021-10-31",8140,2,7626],["2021-11-01",8140,46,7672],["2021-11-02",8140,29,7701],["2021-11-03",8140,45,7746],["2021-11-04",8140,17,7763],["2021-11-05",8140,7,7770],["2021-11-06",8140,7,7777],["2021-11-07",8140,1,7778],["2021-11-08",8140,57,7835],["2021-11-09",8140,50,7885],["2021-11-10",8140,48,7933],["2021-11-11",8140,10,7943],["2021-11-12",8140,10,7953],["2021-11-13",8140,2,7955],["2021-11-14",8140,3,7958],["2021-11-15",8140,40,7998],["2021-11-16",8140,50,8048],["2021-11-17",8140,49,8097],["2021-11-18",8140,15,8112],["2021-11-19",8140,10,8122],["2021-11-20",8140,6,8128],["2021-11-21",8140,2,8130],["2021-11-22",8140,47,8177],["2021-11-23",8140,34,8211],["2021-11-24",8140,4,8215],["2021-11-26",8140,5,8220],["2021-11-27",8140,4,8224],["2021-11-28",8140,2,8226],["2021-11-29",8140,45,8271],["2021-11-30",8140,12,8283],["2021-12-01",8140,71,8354],["2021-12-02",8140,40,8394],["2021-12-03",8140,15,8409],["2021-12-04",8140,5,8414],["2021-12-05",8140,1,8415],["2021-12-06",8140,47,8462],["2021-12-07",8140,7,8469],["2021-12-08",8140,58,8527],["2021-12-09",8140,9,8536],["2021-12-10",8140,5,8541],["2021-12-11",8140,7,8548],["2021-12-12",8140,2,8550],["2021-12-13",8140,30,8580],["2021-12-14",8140,4,8584],["2021-12-15",8140,29,8613],["2021-12-16",8140,6,8619],["2021-12-17",8140,10,8629],["2021-12-18",8140,9,8638],["2021-12-19",8140,1,8639],["2021-12-20",8140,30,8669],["2021-12-21",8140,20,8689],["2021-12-22",8140,21,8710],["2021-12-23",8140,6,8716],["2021-12-24",8140,2,8718],["2021-12-26",8140,1,8719],["2021-12-27",8140,24,8743],["2021-12-28",8140,34,8777],["2021-12-29",8140,13,8790],["2021-12-30",8140,14,8804],["2021-12-31",8140,13,8817],["2022-01-02",8140,5,8822],["2022-01-03",8140,3,8825]]} \ No newline at end of file diff --git a/public/data/overall/vaccinations/by-county/Spalding.json b/public/data/overall/vaccinations/by-county/Spalding.json new file mode 100644 index 000000000..c009db7d9 --- /dev/null +++ b/public/data/overall/vaccinations/by-county/Spalding.json @@ -0,0 +1 @@ +{"segment":{"county":"Spalding"},"headers":["report_date","population","vaccinations","total_vaccinations"],"rows":[["2020-12-17",69110,1,1],["2020-12-18",69110,8,9],["2020-12-19",69110,64,73],["2020-12-20",69110,4,77],["2020-12-21",69110,24,101],["2020-12-22",69110,29,130],["2020-12-23",69110,61,191],["2020-12-24",69110,4,195],["2020-12-26",69110,1,196],["2020-12-27",69110,5,201],["2020-12-28",69110,58,259],["2020-12-29",69110,79,338],["2020-12-30",69110,55,393],["2020-12-31",69110,47,440],["2021-01-01",69110,47,487],["2021-01-02",69110,1,488],["2021-01-03",69110,51,539],["2021-01-04",69110,47,586],["2021-01-05",69110,39,625],["2021-01-06",69110,40,665],["2021-01-07",69110,59,724],["2021-01-08",69110,52,776],["2021-01-09",69110,138,914],["2021-01-10",69110,68,982],["2021-01-11",69110,84,1066],["2021-01-12",69110,201,1267],["2021-01-13",69110,152,1419],["2021-01-14",69110,207,1626],["2021-01-15",69110,669,2295],["2021-01-16",69110,92,2387],["2021-01-17",69110,68,2455],["2021-01-18",69110,162,2617],["2021-01-19",69110,179,2796],["2021-01-20",69110,215,3011],["2021-01-21",69110,272,3283],["2021-01-22",69110,334,3617],["2021-01-23",69110,53,3670],["2021-01-24",69110,114,3784],["2021-01-25",69110,163,3947],["2021-01-26",69110,142,4089],["2021-01-27",69110,270,4359],["2021-01-28",69110,233,4592],["2021-01-29",69110,188,4780],["2021-01-30",69110,41,4821],["2021-01-31",69110,21,4842],["2021-02-01",69110,252,5094],["2021-02-02",69110,167,5261],["2021-02-03",69110,162,5423],["2021-02-04",69110,238,5661],["2021-02-05",69110,707,6368],["2021-02-06",69110,42,6410],["2021-02-07",69110,29,6439],["2021-02-08",69110,54,6493],["2021-02-09",69110,267,6760],["2021-02-10",69110,268,7028],["2021-02-11",69110,306,7334],["2021-02-12",69110,519,7853],["2021-02-13",69110,86,7939],["2021-02-14",69110,59,7998],["2021-02-15",69110,229,8227],["2021-02-16",69110,271,8498],["2021-02-17",69110,342,8840],["2021-02-18",69110,261,9101],["2021-02-19",69110,433,9534],["2021-02-20",69110,70,9604],["2021-02-21",69110,55,9659],["2021-02-22",69110,93,9752],["2021-02-23",69110,284,10036],["2021-02-24",69110,293,10329],["2021-02-25",69110,339,10668],["2021-02-26",69110,453,11121],["2021-02-27",69110,70,11191],["2021-02-28",69110,47,11238],["2021-03-01",69110,215,11453],["2021-03-02",69110,340,11793],["2021-03-03",69110,303,12096],["2021-03-04",69110,347,12443],["2021-03-05",69110,532,12975],["2021-03-06",69110,59,13034],["2021-03-07",69110,50,13084],["2021-03-08",69110,162,13246],["2021-03-09",69110,320,13566],["2021-03-10",69110,355,13921],["2021-03-11",69110,414,14335],["2021-03-12",69110,805,15140],["2021-03-13",69110,79,15219],["2021-03-14",69110,50,15269],["2021-03-15",69110,237,15506],["2021-03-16",69110,417,15923],["2021-03-17",69110,381,16304],["2021-03-18",69110,394,16698],["2021-03-19",69110,732,17430],["2021-03-20",69110,102,17532],["2021-03-21",69110,84,17616],["2021-03-22",69110,166,17782],["2021-03-23",69110,355,18137],["2021-03-24",69110,362,18499],["2021-03-25",69110,639,19138],["2021-03-26",69110,573,19711],["2021-03-27",69110,102,19813],["2021-03-28",69110,115,19928],["2021-03-29",69110,263,20191],["2021-03-30",69110,492,20683],["2021-03-31",69110,392,21075],["2021-04-01",69110,680,21755],["2021-04-02",69110,339,22094],["2021-04-03",69110,125,22219],["2021-04-04",69110,127,22346],["2021-04-05",69110,270,22616],["2021-04-06",69110,675,23291],["2021-04-07",69110,538,23829],["2021-04-08",69110,579,24408],["2021-04-09",69110,880,25288],["2021-04-10",69110,170,25458],["2021-04-11",69110,138,25596],["2021-04-12",69110,334,25930],["2021-04-13",69110,429,26359],["2021-04-14",69110,366,26725],["2021-04-15",69110,645,27370],["2021-04-16",69110,498,27868],["2021-04-17",69110,89,27957],["2021-04-18",69110,110,28067],["2021-04-19",69110,246,28313],["2021-04-20",69110,345,28658],["2021-04-21",69110,362,29020],["2021-04-22",69110,393,29413],["2021-04-23",69110,549,29962],["2021-04-24",69110,124,30086],["2021-04-25",69110,68,30154],["2021-04-26",69110,231,30385],["2021-04-27",69110,448,30833],["2021-04-28",69110,336,31169],["2021-04-29",69110,392,31561],["2021-04-30",69110,614,32175],["2021-05-01",69110,182,32357],["2021-05-02",69110,74,32431],["2021-05-03",69110,217,32648],["2021-05-04",69110,367,33015],["2021-05-05",69110,281,33296],["2021-05-06",69110,323,33619],["2021-05-07",69110,416,34035],["2021-05-08",69110,127,34162],["2021-05-09",69110,54,34216],["2021-05-10",69110,99,34315],["2021-05-11",69110,236,34551],["2021-05-12",69110,212,34763],["2021-05-13",69110,251,35014],["2021-05-14",69110,445,35459],["2021-05-15",69110,150,35609],["2021-05-16",69110,89,35698],["2021-05-17",69110,136,35834],["2021-05-18",69110,275,36109],["2021-05-19",69110,208,36317],["2021-05-20",69110,239,36556],["2021-05-21",69110,304,36860],["2021-05-22",69110,122,36982],["2021-05-23",69110,63,37045],["2021-05-24",69110,109,37154],["2021-05-25",69110,160,37314],["2021-05-26",69110,148,37462],["2021-05-27",69110,160,37622],["2021-05-28",69110,125,37747],["2021-05-29",69110,83,37830],["2021-05-30",69110,34,37864],["2021-05-31",69110,32,37896],["2021-06-01",69110,192,38088],["2021-06-02",69110,108,38196],["2021-06-03",69110,165,38361],["2021-06-04",69110,185,38546],["2021-06-05",69110,106,38652],["2021-06-06",69110,59,38711],["2021-06-07",69110,105,38816],["2021-06-08",69110,112,38928],["2021-06-09",69110,117,39045],["2021-06-10",69110,173,39218],["2021-06-11",69110,146,39364],["2021-06-12",69110,109,39473],["2021-06-13",69110,38,39511],["2021-06-14",69110,108,39619],["2021-06-15",69110,133,39752],["2021-06-16",69110,85,39837],["2021-06-17",69110,99,39936],["2021-06-18",69110,125,40061],["2021-06-19",69110,67,40128],["2021-06-20",69110,31,40159],["2021-06-21",69110,56,40215],["2021-06-22",69110,105,40320],["2021-06-23",69110,71,40391],["2021-06-24",69110,84,40475],["2021-06-25",69110,100,40575],["2021-06-26",69110,67,40642],["2021-06-27",69110,34,40676],["2021-06-28",69110,64,40740],["2021-06-29",69110,102,40842],["2021-06-30",69110,66,40908],["2021-07-01",69110,96,41004],["2021-07-02",69110,74,41078],["2021-07-03",69110,64,41142],["2021-07-04",69110,2,41144],["2021-07-05",69110,62,41206],["2021-07-06",69110,56,41262],["2021-07-07",69110,66,41328],["2021-07-08",69110,68,41396],["2021-07-09",69110,78,41474],["2021-07-10",69110,45,41519],["2021-07-11",69110,26,41545],["2021-07-12",69110,61,41606],["2021-07-13",69110,77,41683],["2021-07-14",69110,80,41763],["2021-07-15",69110,88,41851],["2021-07-16",69110,75,41926],["2021-07-17",69110,53,41979],["2021-07-18",69110,35,42014],["2021-07-19",69110,83,42097],["2021-07-20",69110,81,42178],["2021-07-21",69110,94,42272],["2021-07-22",69110,115,42387],["2021-07-23",69110,146,42533],["2021-07-24",69110,89,42622],["2021-07-25",69110,42,42664],["2021-07-26",69110,113,42777],["2021-07-27",69110,134,42911],["2021-07-28",69110,102,43013],["2021-07-29",69110,145,43158],["2021-07-30",69110,159,43317],["2021-07-31",69110,79,43396],["2021-08-01",69110,94,43490],["2021-08-02",69110,122,43612],["2021-08-03",69110,139,43751],["2021-08-04",69110,147,43898],["2021-08-05",69110,123,44021],["2021-08-06",69110,152,44173],["2021-08-07",69110,116,44289],["2021-08-08",69110,76,44365],["2021-08-09",69110,193,44558],["2021-08-10",69110,195,44753],["2021-08-11",69110,165,44918],["2021-08-12",69110,169,45087],["2021-08-13",69110,225,45312],["2021-08-14",69110,127,45439],["2021-08-15",69110,67,45506],["2021-08-16",69110,144,45650],["2021-08-17",69110,191,45841],["2021-08-18",69110,150,45991],["2021-08-19",69110,193,46184],["2021-08-20",69110,200,46384],["2021-08-21",69110,113,46497],["2021-08-22",69110,86,46583],["2021-08-23",69110,180,46763],["2021-08-24",69110,163,46926],["2021-08-25",69110,225,47151],["2021-08-26",69110,182,47333],["2021-08-27",69110,228,47561],["2021-08-28",69110,129,47690],["2021-08-29",69110,97,47787],["2021-08-30",69110,206,47993],["2021-08-31",69110,228,48221],["2021-09-01",69110,185,48406],["2021-09-02",69110,194,48600],["2021-09-03",69110,241,48841],["2021-09-04",69110,124,48965],["2021-09-05",69110,96,49061],["2021-09-06",69110,35,49096],["2021-09-07",69110,188,49284],["2021-09-08",69110,188,49472],["2021-09-09",69110,194,49666],["2021-09-10",69110,279,49945],["2021-09-11",69110,120,50065],["2021-09-12",69110,84,50149],["2021-09-13",69110,178,50327],["2021-09-14",69110,166,50493],["2021-09-15",69110,159,50652],["2021-09-16",69110,185,50837],["2021-09-17",69110,173,51010],["2021-09-18",69110,92,51102],["2021-09-19",69110,53,51155],["2021-09-20",69110,118,51273],["2021-09-21",69110,145,51418],["2021-09-22",69110,129,51547],["2021-09-23",69110,201,51748],["2021-09-24",69110,205,51953],["2021-09-25",69110,126,52079],["2021-09-26",69110,76,52155],["2021-09-27",69110,213,52368],["2021-09-28",69110,227,52595],["2021-09-29",69110,237,52832],["2021-09-30",69110,214,53046],["2021-10-01",69110,258,53304],["2021-10-02",69110,111,53415],["2021-10-03",69110,65,53480],["2021-10-04",69110,179,53659],["2021-10-05",69110,162,53821],["2021-10-06",69110,144,53965],["2021-10-07",69110,169,54134],["2021-10-08",69110,186,54320],["2021-10-09",69110,79,54399],["2021-10-10",69110,49,54448],["2021-10-11",69110,130,54578],["2021-10-12",69110,145,54723],["2021-10-13",69110,129,54852],["2021-10-14",69110,174,55026],["2021-10-15",69110,177,55203],["2021-10-16",69110,63,55266],["2021-10-17",69110,37,55303],["2021-10-18",69110,93,55396],["2021-10-19",69110,129,55525],["2021-10-20",69110,106,55631],["2021-10-21",69110,179,55810],["2021-10-22",69110,212,56022],["2021-10-23",69110,105,56127],["2021-10-24",69110,64,56191],["2021-10-25",69110,166,56357],["2021-10-26",69110,191,56548],["2021-10-27",69110,178,56726],["2021-10-28",69110,314,57040],["2021-10-29",69110,201,57241],["2021-10-30",69110,84,57325],["2021-10-31",69110,50,57375],["2021-11-01",69110,146,57521],["2021-11-02",69110,163,57684],["2021-11-03",69110,171,57855],["2021-11-04",69110,176,58031],["2021-11-05",69110,193,58224],["2021-11-06",69110,58,58282],["2021-11-07",69110,47,58329],["2021-11-08",69110,100,58429],["2021-11-09",69110,130,58559],["2021-11-10",69110,140,58699],["2021-11-11",69110,211,58910],["2021-11-12",69110,202,59112],["2021-11-13",69110,68,59180],["2021-11-14",69110,54,59234],["2021-11-15",69110,105,59339],["2021-11-16",69110,143,59482],["2021-11-17",69110,184,59666],["2021-11-18",69110,174,59840],["2021-11-19",69110,185,60025],["2021-11-20",69110,81,60106],["2021-11-21",69110,56,60162],["2021-11-22",69110,151,60313],["2021-11-23",69110,158,60471],["2021-11-24",69110,96,60567],["2021-11-25",69110,1,60568],["2021-11-26",69110,97,60665],["2021-11-27",69110,66,60731],["2021-11-28",69110,51,60782],["2021-11-29",69110,168,60950],["2021-11-30",69110,232,61182],["2021-12-01",69110,226,61408],["2021-12-02",69110,211,61619],["2021-12-03",69110,273,61892],["2021-12-04",69110,129,62021],["2021-12-05",69110,63,62084],["2021-12-06",69110,144,62228],["2021-12-07",69110,180,62408],["2021-12-08",69110,166,62574],["2021-12-09",69110,194,62768],["2021-12-10",69110,183,62951],["2021-12-11",69110,80,63031],["2021-12-12",69110,54,63085],["2021-12-13",69110,129,63214],["2021-12-14",69110,168,63382],["2021-12-15",69110,114,63496],["2021-12-16",69110,176,63672],["2021-12-17",69110,157,63829],["2021-12-18",69110,92,63921],["2021-12-19",69110,59,63980],["2021-12-20",69110,161,64141],["2021-12-21",69110,189,64330],["2021-12-22",69110,186,64516],["2021-12-23",69110,117,64633],["2021-12-24",69110,32,64665],["2021-12-25",69110,1,64666],["2021-12-26",69110,60,64726],["2021-12-27",69110,155,64881],["2021-12-28",69110,172,65053],["2021-12-29",69110,131,65184],["2021-12-30",69110,121,65305],["2021-12-31",69110,96,65401],["2022-01-01",69110,7,65408],["2022-01-02",69110,50,65458],["2022-01-03",69110,27,65485]]} \ No newline at end of file diff --git a/public/data/overall/vaccinations/by-county/Stephens.json b/public/data/overall/vaccinations/by-county/Stephens.json new file mode 100644 index 000000000..59f646fd0 --- /dev/null +++ b/public/data/overall/vaccinations/by-county/Stephens.json @@ -0,0 +1 @@ +{"segment":{"county":"Stephens"},"headers":["report_date","population","vaccinations","total_vaccinations"],"rows":[["2020-12-18",26328,7,7],["2020-12-19",26328,1,8],["2020-12-20",26328,4,12],["2020-12-21",26328,10,22],["2020-12-22",26328,19,41],["2020-12-23",26328,31,72],["2020-12-24",26328,6,78],["2020-12-26",26328,3,81],["2020-12-27",26328,2,83],["2020-12-28",26328,38,121],["2020-12-29",26328,53,174],["2020-12-30",26328,75,249],["2020-12-31",26328,4,253],["2021-01-01",26328,9,262],["2021-01-02",26328,4,266],["2021-01-03",26328,7,273],["2021-01-04",26328,50,323],["2021-01-05",26328,74,397],["2021-01-06",26328,84,481],["2021-01-07",26328,108,589],["2021-01-08",26328,60,649],["2021-01-09",26328,5,654],["2021-01-10",26328,96,750],["2021-01-11",26328,119,869],["2021-01-12",26328,132,1001],["2021-01-13",26328,599,1600],["2021-01-14",26328,191,1791],["2021-01-15",26328,104,1895],["2021-01-16",26328,19,1914],["2021-01-17",26328,6,1920],["2021-01-18",26328,174,2094],["2021-01-19",26328,193,2287],["2021-01-20",26328,274,2561],["2021-01-21",26328,166,2727],["2021-01-22",26328,96,2823],["2021-01-23",26328,10,2833],["2021-01-24",26328,16,2849],["2021-01-25",26328,145,2994],["2021-01-26",26328,151,3145],["2021-01-27",26328,145,3290],["2021-01-28",26328,150,3440],["2021-01-29",26328,83,3523],["2021-01-30",26328,13,3536],["2021-01-31",26328,116,3652],["2021-02-01",26328,147,3799],["2021-02-02",26328,163,3962],["2021-02-03",26328,582,4544],["2021-02-04",26328,150,4694],["2021-02-05",26328,99,4793],["2021-02-06",26328,11,4804],["2021-02-08",26328,160,4964],["2021-02-09",26328,161,5125],["2021-02-10",26328,166,5291],["2021-02-11",26328,183,5474],["2021-02-12",26328,132,5606],["2021-02-13",26328,19,5625],["2021-02-14",26328,12,5637],["2021-02-15",26328,160,5797],["2021-02-16",26328,192,5989],["2021-02-17",26328,242,6231],["2021-02-18",26328,161,6392],["2021-02-19",26328,99,6491],["2021-02-20",26328,7,6498],["2021-02-21",26328,10,6508],["2021-02-22",26328,158,6666],["2021-02-23",26328,188,6854],["2021-02-24",26328,144,6998],["2021-02-25",26328,175,7173],["2021-02-26",26328,85,7258],["2021-02-27",26328,14,7272],["2021-02-28",26328,21,7293],["2021-03-01",26328,108,7401],["2021-03-02",26328,154,7555],["2021-03-03",26328,139,7694],["2021-03-04",26328,107,7801],["2021-03-05",26328,101,7902],["2021-03-06",26328,16,7918],["2021-03-07",26328,13,7931],["2021-03-08",26328,117,8048],["2021-03-09",26328,133,8181],["2021-03-10",26328,134,8315],["2021-03-11",26328,100,8415],["2021-03-12",26328,199,8614],["2021-03-13",26328,118,8732],["2021-03-14",26328,12,8744],["2021-03-15",26328,143,8887],["2021-03-16",26328,190,9077],["2021-03-17",26328,175,9252],["2021-03-18",26328,122,9374],["2021-03-19",26328,111,9485],["2021-03-20",26328,25,9510],["2021-03-21",26328,18,9528],["2021-03-22",26328,156,9684],["2021-03-23",26328,129,9813],["2021-03-24",26328,130,9943],["2021-03-25",26328,114,10057],["2021-03-26",26328,119,10176],["2021-03-27",26328,24,10200],["2021-03-28",26328,47,10247],["2021-03-29",26328,135,10382],["2021-03-30",26328,149,10531],["2021-03-31",26328,137,10668],["2021-04-01",26328,175,10843],["2021-04-02",26328,181,11024],["2021-04-03",26328,178,11202],["2021-04-04",26328,32,11234],["2021-04-05",26328,131,11365],["2021-04-06",26328,163,11528],["2021-04-07",26328,145,11673],["2021-04-08",26328,113,11786],["2021-04-09",26328,120,11906],["2021-04-10",26328,25,11931],["2021-04-11",26328,17,11948],["2021-04-12",26328,220,12168],["2021-04-13",26328,158,12326],["2021-04-14",26328,204,12530],["2021-04-15",26328,170,12700],["2021-04-16",26328,130,12830],["2021-04-17",26328,38,12868],["2021-04-18",26328,14,12882],["2021-04-19",26328,110,12992],["2021-04-20",26328,125,13117],["2021-04-21",26328,129,13246],["2021-04-22",26328,136,13382],["2021-04-23",26328,122,13504],["2021-04-24",26328,27,13531],["2021-04-25",26328,26,13557],["2021-04-26",26328,92,13649],["2021-04-27",26328,122,13771],["2021-04-28",26328,97,13868],["2021-04-29",26328,114,13982],["2021-04-30",26328,116,14098],["2021-05-01",26328,47,14145],["2021-05-02",26328,26,14171],["2021-05-03",26328,45,14216],["2021-05-04",26328,85,14301],["2021-05-05",26328,56,14357],["2021-05-06",26328,77,14434],["2021-05-07",26328,102,14536],["2021-05-08",26328,46,14582],["2021-05-09",26328,8,14590],["2021-05-10",26328,26,14616],["2021-05-11",26328,65,14681],["2021-05-12",26328,51,14732],["2021-05-13",26328,70,14802],["2021-05-14",26328,71,14873],["2021-05-15",26328,25,14898],["2021-05-16",26328,14,14912],["2021-05-17",26328,47,14959],["2021-05-18",26328,73,15032],["2021-05-19",26328,53,15085],["2021-05-20",26328,72,15157],["2021-05-21",26328,60,15217],["2021-05-22",26328,25,15242],["2021-05-23",26328,21,15263],["2021-05-24",26328,32,15295],["2021-05-25",26328,61,15356],["2021-05-26",26328,31,15387],["2021-05-27",26328,42,15429],["2021-05-28",26328,67,15496],["2021-05-29",26328,30,15526],["2021-05-30",26328,5,15531],["2021-05-31",26328,4,15535],["2021-06-01",26328,61,15596],["2021-06-02",26328,26,15622],["2021-06-03",26328,41,15663],["2021-06-04",26328,48,15711],["2021-06-05",26328,22,15733],["2021-06-06",26328,15,15748],["2021-06-07",26328,28,15776],["2021-06-08",26328,34,15810],["2021-06-09",26328,35,15845],["2021-06-10",26328,48,15893],["2021-06-11",26328,36,15929],["2021-06-12",26328,33,15962],["2021-06-13",26328,13,15975],["2021-06-14",26328,30,16005],["2021-06-15",26328,34,16039],["2021-06-16",26328,27,16066],["2021-06-17",26328,32,16098],["2021-06-18",26328,47,16145],["2021-06-19",26328,21,16166],["2021-06-20",26328,6,16172],["2021-06-21",26328,18,16190],["2021-06-22",26328,39,16229],["2021-06-23",26328,22,16251],["2021-06-24",26328,34,16285],["2021-06-25",26328,39,16324],["2021-06-26",26328,15,16339],["2021-06-27",26328,11,16350],["2021-06-28",26328,18,16368],["2021-06-29",26328,21,16389],["2021-06-30",26328,39,16428],["2021-07-01",26328,25,16453],["2021-07-02",26328,21,16474],["2021-07-03",26328,20,16494],["2021-07-04",26328,3,16497],["2021-07-05",26328,13,16510],["2021-07-06",26328,13,16523],["2021-07-07",26328,19,16542],["2021-07-08",26328,41,16583],["2021-07-09",26328,16,16599],["2021-07-10",26328,16,16615],["2021-07-11",26328,13,16628],["2021-07-12",26328,21,16649],["2021-07-13",26328,32,16681],["2021-07-14",26328,28,16709],["2021-07-15",26328,23,16732],["2021-07-16",26328,32,16764],["2021-07-17",26328,11,16775],["2021-07-18",26328,8,16783],["2021-07-19",26328,20,16803],["2021-07-20",26328,20,16823],["2021-07-21",26328,47,16870],["2021-07-22",26328,40,16910],["2021-07-23",26328,36,16946],["2021-07-24",26328,31,16977],["2021-07-25",26328,9,16986],["2021-07-26",26328,27,17013],["2021-07-27",26328,32,17045],["2021-07-28",26328,64,17109],["2021-07-29",26328,55,17164],["2021-07-30",26328,50,17214],["2021-07-31",26328,40,17254],["2021-08-01",26328,10,17264],["2021-08-02",26328,55,17319],["2021-08-03",26328,48,17367],["2021-08-04",26328,69,17436],["2021-08-05",26328,55,17491],["2021-08-06",26328,56,17547],["2021-08-07",26328,37,17584],["2021-08-08",26328,25,17609],["2021-08-09",26328,53,17662],["2021-08-10",26328,50,17712],["2021-08-11",26328,85,17797],["2021-08-12",26328,94,17891],["2021-08-13",26328,85,17976],["2021-08-14",26328,38,18014],["2021-08-15",26328,29,18043],["2021-08-16",26328,49,18092],["2021-08-17",26328,52,18144],["2021-08-18",26328,80,18224],["2021-08-19",26328,70,18294],["2021-08-20",26328,86,18380],["2021-08-21",26328,39,18419],["2021-08-22",26328,30,18449],["2021-08-23",26328,88,18537],["2021-08-24",26328,93,18630],["2021-08-25",26328,83,18713],["2021-08-26",26328,120,18833],["2021-08-27",26328,101,18934],["2021-08-28",26328,42,18976],["2021-08-29",26328,29,19005],["2021-08-30",26328,95,19100],["2021-08-31",26328,83,19183],["2021-09-01",26328,94,19277],["2021-09-02",26328,71,19348],["2021-09-03",26328,107,19455],["2021-09-04",26328,44,19499],["2021-09-05",26328,25,19524],["2021-09-06",26328,12,19536],["2021-09-07",26328,72,19608],["2021-09-08",26328,89,19697],["2021-09-09",26328,85,19782],["2021-09-10",26328,103,19885],["2021-09-11",26328,37,19922],["2021-09-12",26328,29,19951],["2021-09-13",26328,64,20015],["2021-09-14",26328,60,20075],["2021-09-15",26328,62,20137],["2021-09-16",26328,72,20209],["2021-09-17",26328,107,20316],["2021-09-18",26328,27,20343],["2021-09-19",26328,24,20367],["2021-09-20",26328,48,20415],["2021-09-21",26328,67,20482],["2021-09-22",26328,79,20561],["2021-09-23",26328,65,20626],["2021-09-24",26328,75,20701],["2021-09-25",26328,29,20730],["2021-09-26",26328,26,20756],["2021-09-27",26328,79,20835],["2021-09-28",26328,85,20920],["2021-09-29",26328,84,21004],["2021-09-30",26328,78,21082],["2021-10-01",26328,71,21153],["2021-10-02",26328,19,21172],["2021-10-03",26328,23,21195],["2021-10-04",26328,73,21268],["2021-10-05",26328,71,21339],["2021-10-06",26328,67,21406],["2021-10-07",26328,43,21449],["2021-10-08",26328,50,21499],["2021-10-09",26328,15,21514],["2021-10-10",26328,15,21529],["2021-10-11",26328,38,21567],["2021-10-12",26328,39,21606],["2021-10-13",26328,42,21648],["2021-10-14",26328,50,21698],["2021-10-15",26328,63,21761],["2021-10-16",26328,15,21776],["2021-10-17",26328,6,21782],["2021-10-18",26328,37,21819],["2021-10-19",26328,31,21850],["2021-10-20",26328,37,21887],["2021-10-21",26328,33,21920],["2021-10-22",26328,42,21962],["2021-10-23",26328,34,21996],["2021-10-24",26328,8,22004],["2021-10-25",26328,72,22076],["2021-10-26",26328,136,22212],["2021-10-27",26328,100,22312],["2021-10-28",26328,114,22426],["2021-10-29",26328,64,22490],["2021-10-30",26328,24,22514],["2021-10-31",26328,11,22525],["2021-11-01",26328,86,22611],["2021-11-02",26328,75,22686],["2021-11-03",26328,74,22760],["2021-11-04",26328,126,22886],["2021-11-05",26328,82,22968],["2021-11-06",26328,24,22992],["2021-11-07",26328,15,23007],["2021-11-08",26328,80,23087],["2021-11-09",26328,83,23170],["2021-11-10",26328,82,23252],["2021-11-11",26328,76,23328],["2021-11-12",26328,61,23389],["2021-11-13",26328,35,23424],["2021-11-14",26328,10,23434],["2021-11-15",26328,76,23510],["2021-11-16",26328,74,23584],["2021-11-17",26328,66,23650],["2021-11-18",26328,70,23720],["2021-11-19",26328,58,23778],["2021-11-20",26328,33,23811],["2021-11-21",26328,14,23825],["2021-11-22",26328,92,23917],["2021-11-23",26328,70,23987],["2021-11-24",26328,84,24071],["2021-11-25",26328,1,24072],["2021-11-26",26328,34,24106],["2021-11-27",26328,16,24122],["2021-11-28",26328,11,24133],["2021-11-29",26328,77,24210],["2021-11-30",26328,90,24300],["2021-12-01",26328,97,24397],["2021-12-02",26328,109,24506],["2021-12-03",26328,76,24582],["2021-12-04",26328,32,24614],["2021-12-05",26328,10,24624],["2021-12-06",26328,81,24705],["2021-12-07",26328,64,24769],["2021-12-08",26328,84,24853],["2021-12-09",26328,90,24943],["2021-12-10",26328,71,25014],["2021-12-11",26328,29,25043],["2021-12-12",26328,11,25054],["2021-12-13",26328,69,25123],["2021-12-14",26328,77,25200],["2021-12-15",26328,67,25267],["2021-12-16",26328,75,25342],["2021-12-17",26328,56,25398],["2021-12-18",26328,27,25425],["2021-12-19",26328,17,25442],["2021-12-20",26328,70,25512],["2021-12-21",26328,98,25610],["2021-12-22",26328,56,25666],["2021-12-23",26328,52,25718],["2021-12-24",26328,13,25731],["2021-12-26",26328,15,25746],["2021-12-27",26328,66,25812],["2021-12-28",26328,77,25889],["2021-12-29",26328,73,25962],["2021-12-30",26328,54,26016],["2021-12-31",26328,34,26050],["2022-01-01",26328,4,26054],["2022-01-02",26328,10,26064],["2022-01-03",26328,16,26080]]} \ No newline at end of file diff --git a/public/data/overall/vaccinations/by-county/Stewart.json b/public/data/overall/vaccinations/by-county/Stewart.json new file mode 100644 index 000000000..178acb465 --- /dev/null +++ b/public/data/overall/vaccinations/by-county/Stewart.json @@ -0,0 +1 @@ +{"segment":{"county":"Stewart"},"headers":["report_date","population","vaccinations","total_vaccinations"],"rows":[["2020-12-18",6129,1,1],["2020-12-21",6129,1,2],["2020-12-22",6129,2,4],["2020-12-23",6129,2,6],["2020-12-27",6129,1,7],["2020-12-28",6129,2,9],["2020-12-29",6129,3,12],["2020-12-30",6129,1,13],["2020-12-31",6129,2,15],["2021-01-04",6129,5,20],["2021-01-05",6129,10,30],["2021-01-06",6129,44,74],["2021-01-07",6129,4,78],["2021-01-08",6129,1,79],["2021-01-11",6129,71,150],["2021-01-12",6129,5,155],["2021-01-13",6129,3,158],["2021-01-14",6129,50,208],["2021-01-15",6129,103,311],["2021-01-16",6129,1,312],["2021-01-17",6129,1,313],["2021-01-18",6129,8,321],["2021-01-19",6129,5,326],["2021-01-20",6129,3,329],["2021-01-21",6129,20,349],["2021-01-22",6129,47,396],["2021-01-25",6129,8,404],["2021-01-26",6129,16,420],["2021-01-27",6129,72,492],["2021-01-28",6129,31,523],["2021-01-29",6129,71,594],["2021-02-01",6129,7,601],["2021-02-02",6129,10,611],["2021-02-03",6129,13,624],["2021-02-04",6129,18,642],["2021-02-05",6129,51,693],["2021-02-06",6129,3,696],["2021-02-07",6129,1,697],["2021-02-08",6129,74,771],["2021-02-09",6129,10,781],["2021-02-10",6129,2,783],["2021-02-11",6129,106,889],["2021-02-12",6129,12,901],["2021-02-13",6129,1,902],["2021-02-15",6129,102,1004],["2021-02-16",6129,8,1012],["2021-02-17",6129,4,1016],["2021-02-18",6129,16,1032],["2021-02-19",6129,69,1101],["2021-02-21",6129,1,1102],["2021-02-22",6129,8,1110],["2021-02-23",6129,20,1130],["2021-02-24",6129,22,1152],["2021-02-25",6129,61,1213],["2021-02-26",6129,68,1281],["2021-02-27",6129,1,1282],["2021-03-01",6129,8,1290],["2021-03-02",6129,9,1299],["2021-03-03",6129,17,1316],["2021-03-04",6129,6,1322],["2021-03-05",6129,62,1384],["2021-03-06",6129,1,1385],["2021-03-08",6129,46,1431],["2021-03-09",6129,40,1471],["2021-03-10",6129,6,1477],["2021-03-11",6129,64,1541],["2021-03-12",6129,25,1566],["2021-03-13",6129,5,1571],["2021-03-14",6129,1,1572],["2021-03-15",6129,57,1629],["2021-03-16",6129,28,1657],["2021-03-17",6129,46,1703],["2021-03-18",6129,15,1718],["2021-03-19",6129,50,1768],["2021-03-20",6129,5,1773],["2021-03-21",6129,2,1775],["2021-03-22",6129,25,1800],["2021-03-23",6129,22,1822],["2021-03-24",6129,12,1834],["2021-03-25",6129,69,1903],["2021-03-26",6129,69,1972],["2021-03-27",6129,2,1974],["2021-03-28",6129,1,1975],["2021-03-29",6129,19,1994],["2021-03-30",6129,21,2015],["2021-03-31",6129,22,2037],["2021-04-01",6129,13,2050],["2021-04-02",6129,19,2069],["2021-04-03",6129,7,2076],["2021-04-04",6129,1,2077],["2021-04-05",6129,16,2093],["2021-04-06",6129,59,2152],["2021-04-07",6129,13,2165],["2021-04-08",6129,37,2202],["2021-04-09",6129,28,2230],["2021-04-10",6129,7,2237],["2021-04-12",6129,20,2257],["2021-04-13",6129,80,2337],["2021-04-14",6129,57,2394],["2021-04-15",6129,23,2417],["2021-04-16",6129,58,2475],["2021-04-17",6129,8,2483],["2021-04-18",6129,2,2485],["2021-04-19",6129,30,2515],["2021-04-20",6129,14,2529],["2021-04-21",6129,31,2560],["2021-04-22",6129,24,2584],["2021-04-23",6129,76,2660],["2021-04-24",6129,14,2674],["2021-04-25",6129,3,2677],["2021-04-26",6129,25,2702],["2021-04-27",6129,22,2724],["2021-04-28",6129,25,2749],["2021-04-29",6129,19,2768],["2021-04-30",6129,20,2788],["2021-05-01",6129,8,2796],["2021-05-02",6129,1,2797],["2021-05-03",6129,7,2804],["2021-05-04",6129,10,2814],["2021-05-05",6129,13,2827],["2021-05-06",6129,32,2859],["2021-05-07",6129,22,2881],["2021-05-08",6129,6,2887],["2021-05-10",6129,17,2904],["2021-05-11",6129,17,2921],["2021-05-12",6129,16,2937],["2021-05-13",6129,77,3014],["2021-05-14",6129,21,3035],["2021-05-15",6129,3,3038],["2021-05-16",6129,3,3041],["2021-05-17",6129,20,3061],["2021-05-18",6129,9,3070],["2021-05-19",6129,16,3086],["2021-05-20",6129,17,3103],["2021-05-21",6129,13,3116],["2021-05-22",6129,3,3119],["2021-05-23",6129,2,3121],["2021-05-24",6129,13,3134],["2021-05-25",6129,19,3153],["2021-05-26",6129,3,3156],["2021-05-27",6129,20,3176],["2021-05-28",6129,15,3191],["2021-05-29",6129,4,3195],["2021-05-30",6129,2,3197],["2021-06-01",6129,5,3202],["2021-06-02",6129,3,3205],["2021-06-03",6129,9,3214],["2021-06-04",6129,9,3223],["2021-06-05",6129,1,3224],["2021-06-06",6129,1,3225],["2021-06-07",6129,8,3233],["2021-06-08",6129,21,3254],["2021-06-09",6129,14,3268],["2021-06-10",6129,23,3291],["2021-06-11",6129,15,3306],["2021-06-12",6129,2,3308],["2021-06-13",6129,1,3309],["2021-06-14",6129,6,3315],["2021-06-15",6129,5,3320],["2021-06-16",6129,2,3322],["2021-06-17",6129,9,3331],["2021-06-18",6129,2,3333],["2021-06-19",6129,1,3334],["2021-06-20",6129,2,3336],["2021-06-21",6129,16,3352],["2021-06-22",6129,3,3355],["2021-06-23",6129,1,3356],["2021-06-24",6129,3,3359],["2021-06-25",6129,3,3362],["2021-06-26",6129,2,3364],["2021-06-28",6129,11,3375],["2021-06-29",6129,8,3383],["2021-06-30",6129,4,3387],["2021-07-01",6129,3,3390],["2021-07-02",6129,2,3392],["2021-07-06",6129,3,3395],["2021-07-07",6129,7,3402],["2021-07-08",6129,11,3413],["2021-07-09",6129,8,3421],["2021-07-10",6129,3,3424],["2021-07-11",6129,1,3425],["2021-07-12",6129,27,3452],["2021-07-13",6129,2,3454],["2021-07-14",6129,6,3460],["2021-07-15",6129,2,3462],["2021-07-16",6129,5,3467],["2021-07-17",6129,1,3468],["2021-07-18",6129,1,3469],["2021-07-19",6129,3,3472],["2021-07-20",6129,7,3479],["2021-07-21",6129,12,3491],["2021-07-22",6129,8,3499],["2021-07-23",6129,12,3511],["2021-07-24",6129,7,3518],["2021-07-26",6129,2,3520],["2021-07-27",6129,15,3535],["2021-07-28",6129,9,3544],["2021-07-29",6129,10,3554],["2021-07-30",6129,7,3561],["2021-07-31",6129,5,3566],["2021-08-01",6129,2,3568],["2021-08-02",6129,2,3570],["2021-08-03",6129,5,3575],["2021-08-04",6129,25,3600],["2021-08-05",6129,10,3610],["2021-08-06",6129,10,3620],["2021-08-07",6129,2,3622],["2021-08-08",6129,1,3623],["2021-08-09",6129,9,3632],["2021-08-10",6129,12,3644],["2021-08-11",6129,33,3677],["2021-08-12",6129,9,3686],["2021-08-13",6129,25,3711],["2021-08-14",6129,6,3717],["2021-08-15",6129,2,3719],["2021-08-16",6129,4,3723],["2021-08-17",6129,11,3734],["2021-08-18",6129,18,3752],["2021-08-19",6129,7,3759],["2021-08-20",6129,12,3771],["2021-08-21",6129,4,3775],["2021-08-22",6129,4,3779],["2021-08-23",6129,5,3784],["2021-08-24",6129,14,3798],["2021-08-25",6129,24,3822],["2021-08-26",6129,25,3847],["2021-08-27",6129,7,3854],["2021-08-28",6129,4,3858],["2021-08-29",6129,1,3859],["2021-08-30",6129,7,3866],["2021-08-31",6129,20,3886],["2021-09-01",6129,16,3902],["2021-09-02",6129,13,3915],["2021-09-03",6129,9,3924],["2021-09-04",6129,2,3926],["2021-09-05",6129,3,3929],["2021-09-07",6129,15,3944],["2021-09-08",6129,23,3967],["2021-09-09",6129,11,3978],["2021-09-10",6129,16,3994],["2021-09-11",6129,2,3996],["2021-09-12",6129,5,4001],["2021-09-13",6129,7,4008],["2021-09-14",6129,15,4023],["2021-09-15",6129,20,4043],["2021-09-16",6129,9,4052],["2021-09-17",6129,12,4064],["2021-09-18",6129,4,4068],["2021-09-19",6129,1,4069],["2021-09-20",6129,7,4076],["2021-09-21",6129,8,4084],["2021-09-22",6129,20,4104],["2021-09-23",6129,11,4115],["2021-09-24",6129,10,4125],["2021-09-25",6129,4,4129],["2021-09-26",6129,1,4130],["2021-09-27",6129,9,4139],["2021-09-28",6129,6,4145],["2021-09-29",6129,14,4159],["2021-09-30",6129,8,4167],["2021-10-01",6129,6,4173],["2021-10-02",6129,1,4174],["2021-10-04",6129,8,4182],["2021-10-05",6129,9,4191],["2021-10-06",6129,19,4210],["2021-10-07",6129,7,4217],["2021-10-08",6129,3,4220],["2021-10-11",6129,3,4223],["2021-10-12",6129,8,4231],["2021-10-13",6129,9,4240],["2021-10-14",6129,10,4250],["2021-10-15",6129,8,4258],["2021-10-16",6129,2,4260],["2021-10-18",6129,4,4264],["2021-10-19",6129,6,4270],["2021-10-20",6129,8,4278],["2021-10-21",6129,2,4280],["2021-10-22",6129,5,4285],["2021-10-23",6129,5,4290],["2021-10-24",6129,1,4291],["2021-10-25",6129,12,4303],["2021-10-26",6129,14,4317],["2021-10-27",6129,50,4367],["2021-10-28",6129,13,4380],["2021-10-29",6129,17,4397],["2021-10-30",6129,11,4408],["2021-10-31",6129,2,4410],["2021-11-01",6129,36,4446],["2021-11-02",6129,7,4453],["2021-11-03",6129,43,4496],["2021-11-04",6129,35,4531],["2021-11-05",6129,10,4541],["2021-11-07",6129,1,4542],["2021-11-08",6129,8,4550],["2021-11-09",6129,13,4563],["2021-11-10",6129,22,4585],["2021-11-11",6129,11,4596],["2021-11-12",6129,13,4609],["2021-11-13",6129,1,4610],["2021-11-14",6129,1,4611],["2021-11-15",6129,17,4628],["2021-11-16",6129,10,4638],["2021-11-17",6129,61,4699],["2021-11-18",6129,10,4709],["2021-11-19",6129,21,4730],["2021-11-20",6129,1,4731],["2021-11-21",6129,4,4735],["2021-11-22",6129,23,4758],["2021-11-23",6129,10,4768],["2021-11-24",6129,9,4777],["2021-11-25",6129,1,4778],["2021-11-26",6129,3,4781],["2021-11-28",6129,3,4784],["2021-11-29",6129,13,4797],["2021-11-30",6129,17,4814],["2021-12-01",6129,32,4846],["2021-12-02",6129,32,4878],["2021-12-03",6129,17,4895],["2021-12-04",6129,4,4899],["2021-12-05",6129,1,4900],["2021-12-06",6129,21,4921],["2021-12-07",6129,17,4938],["2021-12-08",6129,33,4971],["2021-12-09",6129,16,4987],["2021-12-10",6129,11,4998],["2021-12-11",6129,4,5002],["2021-12-13",6129,7,5009],["2021-12-14",6129,11,5020],["2021-12-15",6129,26,5046],["2021-12-16",6129,20,5066],["2021-12-17",6129,13,5079],["2021-12-18",6129,4,5083],["2021-12-19",6129,2,5085],["2021-12-20",6129,12,5097],["2021-12-21",6129,9,5106],["2021-12-22",6129,26,5132],["2021-12-23",6129,18,5150],["2021-12-26",6129,2,5152],["2021-12-27",6129,24,5176],["2021-12-28",6129,13,5189],["2021-12-29",6129,19,5208],["2021-12-30",6129,4,5212],["2021-12-31",6129,3,5215],["2022-01-02",6129,1,5216],["2022-01-03",6129,17,5233]]} \ No newline at end of file diff --git a/public/data/overall/vaccinations/by-county/Sumter.json b/public/data/overall/vaccinations/by-county/Sumter.json new file mode 100644 index 000000000..939179343 --- /dev/null +++ b/public/data/overall/vaccinations/by-county/Sumter.json @@ -0,0 +1 @@ +{"segment":{"county":"Sumter"},"headers":["report_date","population","vaccinations","total_vaccinations"],"rows":[["2020-12-17",29399,3,3],["2020-12-18",29399,13,16],["2020-12-19",29399,4,20],["2020-12-20",29399,2,22],["2020-12-21",29399,11,33],["2020-12-22",29399,30,63],["2020-12-23",29399,105,168],["2020-12-24",29399,36,204],["2020-12-26",29399,36,240],["2020-12-27",29399,2,242],["2020-12-28",29399,64,306],["2020-12-29",29399,55,361],["2020-12-30",29399,37,398],["2020-12-31",29399,43,441],["2021-01-01",29399,8,449],["2021-01-02",29399,1,450],["2021-01-03",29399,21,471],["2021-01-04",29399,33,504],["2021-01-05",29399,33,537],["2021-01-06",29399,30,567],["2021-01-07",29399,26,593],["2021-01-08",29399,19,612],["2021-01-09",29399,2,614],["2021-01-10",29399,11,625],["2021-01-11",29399,109,734],["2021-01-12",29399,328,1062],["2021-01-13",29399,223,1285],["2021-01-14",29399,401,1686],["2021-01-15",29399,269,1955],["2021-01-16",29399,66,2021],["2021-01-17",29399,102,2123],["2021-01-18",29399,223,2346],["2021-01-19",29399,264,2610],["2021-01-20",29399,217,2827],["2021-01-21",29399,222,3049],["2021-01-22",29399,246,3295],["2021-01-23",29399,13,3308],["2021-01-24",29399,23,3331],["2021-01-25",29399,171,3502],["2021-01-26",29399,210,3712],["2021-01-27",29399,189,3901],["2021-01-28",29399,241,4142],["2021-01-29",29399,142,4284],["2021-01-30",29399,6,4290],["2021-01-31",29399,12,4302],["2021-02-01",29399,34,4336],["2021-02-02",29399,223,4559],["2021-02-03",29399,219,4778],["2021-02-04",29399,285,5063],["2021-02-05",29399,149,5212],["2021-02-06",29399,43,5255],["2021-02-07",29399,113,5368],["2021-02-08",29399,192,5560],["2021-02-09",29399,300,5860],["2021-02-10",29399,159,6019],["2021-02-11",29399,387,6406],["2021-02-12",29399,117,6523],["2021-02-13",29399,22,6545],["2021-02-14",29399,10,6555],["2021-02-15",29399,211,6766],["2021-02-16",29399,296,7062],["2021-02-17",29399,207,7269],["2021-02-18",29399,256,7525],["2021-02-19",29399,134,7659],["2021-02-20",29399,7,7666],["2021-02-21",29399,3,7669],["2021-02-22",29399,271,7940],["2021-02-23",29399,194,8134],["2021-02-24",29399,190,8324],["2021-02-25",29399,364,8688],["2021-02-26",29399,85,8773],["2021-02-27",29399,6,8779],["2021-02-28",29399,3,8782],["2021-03-01",29399,282,9064],["2021-03-02",29399,233,9297],["2021-03-03",29399,259,9556],["2021-03-04",29399,294,9850],["2021-03-05",29399,91,9941],["2021-03-06",29399,8,9949],["2021-03-07",29399,10,9959],["2021-03-08",29399,222,10181],["2021-03-09",29399,261,10442],["2021-03-10",29399,162,10604],["2021-03-11",29399,208,10812],["2021-03-12",29399,205,11017],["2021-03-13",29399,15,11032],["2021-03-14",29399,18,11050],["2021-03-15",29399,271,11321],["2021-03-16",29399,250,11571],["2021-03-17",29399,208,11779],["2021-03-18",29399,151,11930],["2021-03-19",29399,253,12183],["2021-03-20",29399,25,12208],["2021-03-21",29399,17,12225],["2021-03-22",29399,165,12390],["2021-03-23",29399,264,12654],["2021-03-24",29399,86,12740],["2021-03-25",29399,392,13132],["2021-03-26",29399,192,13324],["2021-03-27",29399,35,13359],["2021-03-28",29399,14,13373],["2021-03-29",29399,241,13614],["2021-03-30",29399,291,13905],["2021-03-31",29399,112,14017],["2021-04-01",29399,314,14331],["2021-04-02",29399,165,14496],["2021-04-03",29399,23,14519],["2021-04-04",29399,11,14530],["2021-04-05",29399,272,14802],["2021-04-06",29399,349,15151],["2021-04-07",29399,89,15240],["2021-04-08",29399,369,15609],["2021-04-09",29399,189,15798],["2021-04-10",29399,40,15838],["2021-04-11",29399,26,15864],["2021-04-12",29399,138,16002],["2021-04-13",29399,298,16300],["2021-04-14",29399,91,16391],["2021-04-15",29399,368,16759],["2021-04-16",29399,194,16953],["2021-04-17",29399,25,16978],["2021-04-18",29399,14,16992],["2021-04-19",29399,128,17120],["2021-04-20",29399,267,17387],["2021-04-21",29399,97,17484],["2021-04-22",29399,463,17947],["2021-04-23",29399,103,18050],["2021-04-24",29399,14,18064],["2021-04-25",29399,7,18071],["2021-04-26",29399,95,18166],["2021-04-27",29399,238,18404],["2021-04-28",29399,88,18492],["2021-04-29",29399,248,18740],["2021-04-30",29399,165,18905],["2021-05-01",29399,32,18937],["2021-05-02",29399,12,18949],["2021-05-03",29399,76,19025],["2021-05-04",29399,139,19164],["2021-05-05",29399,73,19237],["2021-05-06",29399,204,19441],["2021-05-07",29399,106,19547],["2021-05-08",29399,28,19575],["2021-05-09",29399,3,19578],["2021-05-10",29399,67,19645],["2021-05-11",29399,99,19744],["2021-05-12",29399,62,19806],["2021-05-13",29399,183,19989],["2021-05-14",29399,142,20131],["2021-05-15",29399,30,20161],["2021-05-16",29399,11,20172],["2021-05-17",29399,62,20234],["2021-05-18",29399,104,20338],["2021-05-19",29399,106,20444],["2021-05-20",29399,241,20685],["2021-05-21",29399,152,20837],["2021-05-22",29399,15,20852],["2021-05-23",29399,5,20857],["2021-05-24",29399,77,20934],["2021-05-25",29399,81,21015],["2021-05-26",29399,66,21081],["2021-05-27",29399,55,21136],["2021-05-28",29399,109,21245],["2021-05-29",29399,26,21271],["2021-05-30",29399,7,21278],["2021-05-31",29399,5,21283],["2021-06-01",29399,71,21354],["2021-06-02",29399,58,21412],["2021-06-03",29399,96,21508],["2021-06-04",29399,95,21603],["2021-06-05",29399,24,21627],["2021-06-06",29399,7,21634],["2021-06-07",29399,77,21711],["2021-06-08",29399,97,21808],["2021-06-09",29399,71,21879],["2021-06-10",29399,85,21964],["2021-06-11",29399,83,22047],["2021-06-12",29399,24,22071],["2021-06-13",29399,2,22073],["2021-06-14",29399,70,22143],["2021-06-15",29399,59,22202],["2021-06-16",29399,82,22284],["2021-06-17",29399,60,22344],["2021-06-18",29399,141,22485],["2021-06-19",29399,20,22505],["2021-06-20",29399,10,22515],["2021-06-21",29399,40,22555],["2021-06-22",29399,47,22602],["2021-06-23",29399,47,22649],["2021-06-24",29399,57,22706],["2021-06-25",29399,74,22780],["2021-06-26",29399,19,22799],["2021-06-27",29399,5,22804],["2021-06-28",29399,36,22840],["2021-06-29",29399,49,22889],["2021-06-30",29399,66,22955],["2021-07-01",29399,50,23005],["2021-07-02",29399,53,23058],["2021-07-03",29399,9,23067],["2021-07-04",29399,1,23068],["2021-07-05",29399,15,23083],["2021-07-06",29399,62,23145],["2021-07-07",29399,39,23184],["2021-07-08",29399,51,23235],["2021-07-09",29399,72,23307],["2021-07-10",29399,17,23324],["2021-07-11",29399,2,23326],["2021-07-12",29399,39,23365],["2021-07-13",29399,41,23406],["2021-07-14",29399,28,23434],["2021-07-15",29399,44,23478],["2021-07-16",29399,72,23550],["2021-07-17",29399,20,23570],["2021-07-18",29399,8,23578],["2021-07-19",29399,39,23617],["2021-07-20",29399,50,23667],["2021-07-21",29399,43,23710],["2021-07-22",29399,67,23777],["2021-07-23",29399,88,23865],["2021-07-24",29399,47,23912],["2021-07-25",29399,13,23925],["2021-07-26",29399,54,23979],["2021-07-27",29399,56,24035],["2021-07-28",29399,88,24123],["2021-07-29",29399,85,24208],["2021-07-30",29399,124,24332],["2021-07-31",29399,43,24375],["2021-08-01",29399,18,24393],["2021-08-02",29399,78,24471],["2021-08-03",29399,64,24535],["2021-08-04",29399,83,24618],["2021-08-05",29399,92,24710],["2021-08-06",29399,102,24812],["2021-08-07",29399,35,24847],["2021-08-08",29399,25,24872],["2021-08-09",29399,73,24945],["2021-08-10",29399,90,25035],["2021-08-11",29399,92,25127],["2021-08-12",29399,107,25234],["2021-08-13",29399,148,25382],["2021-08-14",29399,103,25485],["2021-08-15",29399,25,25510],["2021-08-16",29399,91,25601],["2021-08-17",29399,135,25736],["2021-08-18",29399,113,25849],["2021-08-19",29399,104,25953],["2021-08-20",29399,152,26105],["2021-08-21",29399,42,26147],["2021-08-22",29399,24,26171],["2021-08-23",29399,91,26262],["2021-08-24",29399,133,26395],["2021-08-25",29399,109,26504],["2021-08-26",29399,126,26630],["2021-08-27",29399,152,26782],["2021-08-28",29399,53,26835],["2021-08-29",29399,38,26873],["2021-08-30",29399,87,26960],["2021-08-31",29399,111,27071],["2021-09-01",29399,81,27152],["2021-09-02",29399,112,27264],["2021-09-03",29399,183,27447],["2021-09-04",29399,44,27491],["2021-09-05",29399,21,27512],["2021-09-06",29399,12,27524],["2021-09-07",29399,129,27653],["2021-09-08",29399,99,27752],["2021-09-09",29399,106,27858],["2021-09-10",29399,181,28039],["2021-09-11",29399,66,28105],["2021-09-12",29399,39,28144],["2021-09-13",29399,71,28215],["2021-09-14",29399,123,28338],["2021-09-15",29399,93,28431],["2021-09-16",29399,89,28520],["2021-09-17",29399,150,28670],["2021-09-18",29399,39,28709],["2021-09-19",29399,26,28735],["2021-09-20",29399,78,28813],["2021-09-21",29399,79,28892],["2021-09-22",29399,77,28969],["2021-09-23",29399,77,29046],["2021-09-24",29399,138,29184],["2021-09-25",29399,33,29217],["2021-09-26",29399,12,29229],["2021-09-27",29399,52,29281],["2021-09-28",29399,86,29367],["2021-09-29",29399,98,29465],["2021-09-30",29399,121,29586],["2021-10-01",29399,124,29710],["2021-10-02",29399,21,29731],["2021-10-03",29399,23,29754],["2021-10-04",29399,56,29810],["2021-10-05",29399,178,29988],["2021-10-06",29399,116,30104],["2021-10-07",29399,112,30216],["2021-10-08",29399,79,30295],["2021-10-09",29399,50,30345],["2021-10-10",29399,23,30368],["2021-10-11",29399,67,30435],["2021-10-12",29399,112,30547],["2021-10-13",29399,82,30629],["2021-10-14",29399,83,30712],["2021-10-15",29399,131,30843],["2021-10-16",29399,26,30869],["2021-10-17",29399,8,30877],["2021-10-18",29399,49,30926],["2021-10-19",29399,62,30988],["2021-10-20",29399,59,31047],["2021-10-21",29399,55,31102],["2021-10-22",29399,115,31217],["2021-10-23",29399,19,31236],["2021-10-24",29399,16,31252],["2021-10-25",29399,113,31365],["2021-10-26",29399,144,31509],["2021-10-27",29399,97,31606],["2021-10-28",29399,189,31795],["2021-10-29",29399,130,31925],["2021-10-30",29399,20,31945],["2021-10-31",29399,15,31960],["2021-11-01",29399,119,32079],["2021-11-02",29399,219,32298],["2021-11-03",29399,183,32481],["2021-11-04",29399,214,32695],["2021-11-05",29399,151,32846],["2021-11-06",29399,28,32874],["2021-11-07",29399,25,32899],["2021-11-08",29399,76,32975],["2021-11-09",29399,136,33111],["2021-11-10",29399,76,33187],["2021-11-11",29399,89,33276],["2021-11-12",29399,160,33436],["2021-11-13",29399,13,33449],["2021-11-14",29399,11,33460],["2021-11-15",29399,85,33545],["2021-11-16",29399,105,33650],["2021-11-17",29399,105,33755],["2021-11-18",29399,135,33890],["2021-11-19",29399,122,34012],["2021-11-20",29399,34,34046],["2021-11-21",29399,12,34058],["2021-11-22",29399,82,34140],["2021-11-23",29399,109,34249],["2021-11-24",29399,47,34296],["2021-11-26",29399,49,34345],["2021-11-27",29399,13,34358],["2021-11-28",29399,14,34372],["2021-11-29",29399,98,34470],["2021-11-30",29399,152,34622],["2021-12-01",29399,103,34725],["2021-12-02",29399,130,34855],["2021-12-03",29399,159,35014],["2021-12-04",29399,27,35041],["2021-12-05",29399,21,35062],["2021-12-06",29399,110,35172],["2021-12-07",29399,98,35270],["2021-12-08",29399,82,35352],["2021-12-09",29399,124,35476],["2021-12-10",29399,178,35654],["2021-12-11",29399,34,35688],["2021-12-12",29399,8,35696],["2021-12-13",29399,79,35775],["2021-12-14",29399,77,35852],["2021-12-15",29399,67,35919],["2021-12-16",29399,98,36017],["2021-12-17",29399,129,36146],["2021-12-18",29399,28,36174],["2021-12-19",29399,11,36185],["2021-12-20",29399,80,36265],["2021-12-21",29399,88,36353],["2021-12-22",29399,91,36444],["2021-12-23",29399,65,36509],["2021-12-24",29399,16,36525],["2021-12-26",29399,20,36545],["2021-12-27",29399,89,36634],["2021-12-28",29399,123,36757],["2021-12-29",29399,119,36876],["2021-12-30",29399,112,36988],["2021-12-31",29399,43,37031],["2022-01-01",29399,5,37036],["2022-01-02",29399,13,37049],["2022-01-03",29399,61,37110]]} \ No newline at end of file diff --git a/public/data/overall/vaccinations/by-county/Talbot.json b/public/data/overall/vaccinations/by-county/Talbot.json new file mode 100644 index 000000000..378adedae --- /dev/null +++ b/public/data/overall/vaccinations/by-county/Talbot.json @@ -0,0 +1 @@ +{"segment":{"county":"Talbot"},"headers":["report_date","population","vaccinations","total_vaccinations"],"rows":[["2020-12-20",6158,1,1],["2020-12-21",6158,2,3],["2020-12-22",6158,5,8],["2020-12-23",6158,4,12],["2020-12-27",6158,1,13],["2020-12-29",6158,23,36],["2020-12-30",6158,9,45],["2020-12-31",6158,6,51],["2021-01-03",6158,1,52],["2021-01-04",6158,8,60],["2021-01-05",6158,7,67],["2021-01-06",6158,6,73],["2021-01-07",6158,23,96],["2021-01-08",6158,17,113],["2021-01-09",6158,2,115],["2021-01-10",6158,2,117],["2021-01-11",6158,28,145],["2021-01-12",6158,15,160],["2021-01-13",6158,51,211],["2021-01-14",6158,36,247],["2021-01-15",6158,49,296],["2021-01-16",6158,6,302],["2021-01-17",6158,2,304],["2021-01-18",6158,13,317],["2021-01-19",6158,48,365],["2021-01-20",6158,38,403],["2021-01-21",6158,15,418],["2021-01-22",6158,11,429],["2021-01-24",6158,4,433],["2021-01-25",6158,16,449],["2021-01-26",6158,14,463],["2021-01-27",6158,20,483],["2021-01-28",6158,14,497],["2021-01-29",6158,106,603],["2021-01-30",6158,1,604],["2021-02-01",6158,7,611],["2021-02-02",6158,69,680],["2021-02-03",6158,39,719],["2021-02-04",6158,48,767],["2021-02-05",6158,30,797],["2021-02-06",6158,2,799],["2021-02-07",6158,1,800],["2021-02-08",6158,32,832],["2021-02-09",6158,72,904],["2021-02-10",6158,75,979],["2021-02-11",6158,52,1031],["2021-02-12",6158,8,1039],["2021-02-13",6158,4,1043],["2021-02-14",6158,1,1044],["2021-02-15",6158,59,1103],["2021-02-16",6158,50,1153],["2021-02-17",6158,25,1178],["2021-02-18",6158,30,1208],["2021-02-19",6158,85,1293],["2021-02-20",6158,5,1298],["2021-02-22",6158,36,1334],["2021-02-23",6158,10,1344],["2021-02-24",6158,16,1360],["2021-02-25",6158,40,1400],["2021-02-26",6158,102,1502],["2021-02-27",6158,3,1505],["2021-03-01",6158,11,1516],["2021-03-02",6158,56,1572],["2021-03-03",6158,64,1636],["2021-03-04",6158,76,1712],["2021-03-05",6158,31,1743],["2021-03-06",6158,6,1749],["2021-03-07",6158,1,1750],["2021-03-08",6158,20,1770],["2021-03-09",6158,18,1788],["2021-03-10",6158,48,1836],["2021-03-11",6158,89,1925],["2021-03-12",6158,44,1969],["2021-03-13",6158,6,1975],["2021-03-15",6158,17,1992],["2021-03-16",6158,16,2008],["2021-03-17",6158,62,2070],["2021-03-18",6158,78,2148],["2021-03-19",6158,71,2219],["2021-03-20",6158,9,2228],["2021-03-21",6158,3,2231],["2021-03-22",6158,15,2246],["2021-03-23",6158,18,2264],["2021-03-24",6158,42,2306],["2021-03-25",6158,83,2389],["2021-03-26",6158,81,2470],["2021-03-27",6158,12,2482],["2021-03-28",6158,2,2484],["2021-03-29",6158,34,2518],["2021-03-30",6158,29,2547],["2021-03-31",6158,63,2610],["2021-04-01",6158,92,2702],["2021-04-02",6158,24,2726],["2021-04-03",6158,12,2738],["2021-04-04",6158,6,2744],["2021-04-05",6158,38,2782],["2021-04-06",6158,20,2802],["2021-04-07",6158,83,2885],["2021-04-08",6158,85,2970],["2021-04-09",6158,66,3036],["2021-04-10",6158,15,3051],["2021-04-11",6158,3,3054],["2021-04-12",6158,40,3094],["2021-04-13",6158,31,3125],["2021-04-14",6158,53,3178],["2021-04-15",6158,101,3279],["2021-04-16",6158,67,3346],["2021-04-17",6158,2,3348],["2021-04-18",6158,2,3350],["2021-04-19",6158,26,3376],["2021-04-20",6158,19,3395],["2021-04-21",6158,34,3429],["2021-04-22",6158,87,3516],["2021-04-23",6158,75,3591],["2021-04-24",6158,6,3597],["2021-04-25",6158,6,3603],["2021-04-26",6158,44,3647],["2021-04-27",6158,23,3670],["2021-04-28",6158,24,3694],["2021-04-29",6158,74,3768],["2021-04-30",6158,26,3794],["2021-05-01",6158,15,3809],["2021-05-02",6158,4,3813],["2021-05-03",6158,13,3826],["2021-05-04",6158,21,3847],["2021-05-05",6158,63,3910],["2021-05-06",6158,38,3948],["2021-05-07",6158,26,3974],["2021-05-08",6158,9,3983],["2021-05-09",6158,4,3987],["2021-05-10",6158,30,4017],["2021-05-11",6158,18,4035],["2021-05-12",6158,47,4082],["2021-05-13",6158,13,4095],["2021-05-14",6158,22,4117],["2021-05-15",6158,12,4129],["2021-05-16",6158,7,4136],["2021-05-17",6158,36,4172],["2021-05-18",6158,13,4185],["2021-05-19",6158,33,4218],["2021-05-20",6158,32,4250],["2021-05-21",6158,30,4280],["2021-05-22",6158,9,4289],["2021-05-23",6158,6,4295],["2021-05-24",6158,16,4311],["2021-05-25",6158,7,4318],["2021-05-26",6158,24,4342],["2021-05-27",6158,16,4358],["2021-05-28",6158,10,4368],["2021-05-29",6158,6,4374],["2021-05-30",6158,2,4376],["2021-05-31",6158,4,4380],["2021-06-01",6158,9,4389],["2021-06-02",6158,4,4393],["2021-06-03",6158,18,4411],["2021-06-04",6158,9,4420],["2021-06-05",6158,11,4431],["2021-06-06",6158,11,4442],["2021-06-07",6158,19,4461],["2021-06-08",6158,14,4475],["2021-06-09",6158,17,4492],["2021-06-10",6158,20,4512],["2021-06-11",6158,19,4531],["2021-06-12",6158,8,4539],["2021-06-13",6158,5,4544],["2021-06-14",6158,13,4557],["2021-06-15",6158,7,4564],["2021-06-16",6158,21,4585],["2021-06-17",6158,14,4599],["2021-06-18",6158,14,4613],["2021-06-19",6158,6,4619],["2021-06-20",6158,3,4622],["2021-06-21",6158,7,4629],["2021-06-22",6158,12,4641],["2021-06-23",6158,8,4649],["2021-06-24",6158,11,4660],["2021-06-25",6158,9,4669],["2021-06-26",6158,4,4673],["2021-06-27",6158,6,4679],["2021-06-28",6158,11,4690],["2021-06-29",6158,5,4695],["2021-06-30",6158,6,4701],["2021-07-01",6158,11,4712],["2021-07-02",6158,8,4720],["2021-07-03",6158,6,4726],["2021-07-04",6158,3,4729],["2021-07-05",6158,8,4737],["2021-07-06",6158,10,4747],["2021-07-07",6158,4,4751],["2021-07-08",6158,19,4770],["2021-07-09",6158,11,4781],["2021-07-10",6158,8,4789],["2021-07-11",6158,4,4793],["2021-07-12",6158,11,4804],["2021-07-13",6158,12,4816],["2021-07-14",6158,6,4822],["2021-07-15",6158,13,4835],["2021-07-16",6158,8,4843],["2021-07-17",6158,6,4849],["2021-07-18",6158,5,4854],["2021-07-19",6158,12,4866],["2021-07-20",6158,10,4876],["2021-07-21",6158,9,4885],["2021-07-22",6158,10,4895],["2021-07-23",6158,8,4903],["2021-07-24",6158,8,4911],["2021-07-25",6158,5,4916],["2021-07-26",6158,14,4930],["2021-07-27",6158,11,4941],["2021-07-28",6158,11,4952],["2021-07-29",6158,12,4964],["2021-07-30",6158,13,4977],["2021-07-31",6158,8,4985],["2021-08-01",6158,5,4990],["2021-08-02",6158,9,4999],["2021-08-03",6158,18,5017],["2021-08-04",6158,12,5029],["2021-08-05",6158,14,5043],["2021-08-06",6158,10,5053],["2021-08-07",6158,7,5060],["2021-08-08",6158,10,5070],["2021-08-09",6158,27,5097],["2021-08-10",6158,22,5119],["2021-08-11",6158,20,5139],["2021-08-12",6158,16,5155],["2021-08-13",6158,24,5179],["2021-08-14",6158,10,5189],["2021-08-15",6158,7,5196],["2021-08-16",6158,10,5206],["2021-08-17",6158,22,5228],["2021-08-18",6158,19,5247],["2021-08-19",6158,13,5260],["2021-08-20",6158,21,5281],["2021-08-21",6158,16,5297],["2021-08-22",6158,12,5309],["2021-08-23",6158,13,5322],["2021-08-24",6158,14,5336],["2021-08-25",6158,20,5356],["2021-08-26",6158,20,5376],["2021-08-27",6158,20,5396],["2021-08-28",6158,14,5410],["2021-08-29",6158,6,5416],["2021-08-30",6158,27,5443],["2021-08-31",6158,14,5457],["2021-09-01",6158,16,5473],["2021-09-02",6158,15,5488],["2021-09-03",6158,14,5502],["2021-09-04",6158,15,5517],["2021-09-05",6158,10,5527],["2021-09-06",6158,4,5531],["2021-09-07",6158,26,5557],["2021-09-08",6158,22,5579],["2021-09-09",6158,11,5590],["2021-09-10",6158,16,5606],["2021-09-11",6158,11,5617],["2021-09-12",6158,13,5630],["2021-09-13",6158,11,5641],["2021-09-14",6158,21,5662],["2021-09-15",6158,14,5676],["2021-09-16",6158,14,5690],["2021-09-17",6158,25,5715],["2021-09-18",6158,8,5723],["2021-09-19",6158,4,5727],["2021-09-20",6158,14,5741],["2021-09-21",6158,6,5747],["2021-09-22",6158,17,5764],["2021-09-23",6158,11,5775],["2021-09-24",6158,15,5790],["2021-09-25",6158,10,5800],["2021-09-26",6158,3,5803],["2021-09-27",6158,19,5822],["2021-09-28",6158,18,5840],["2021-09-29",6158,18,5858],["2021-09-30",6158,9,5867],["2021-10-01",6158,14,5881],["2021-10-02",6158,8,5889],["2021-10-03",6158,6,5895],["2021-10-04",6158,5,5900],["2021-10-05",6158,15,5915],["2021-10-06",6158,12,5927],["2021-10-07",6158,12,5939],["2021-10-08",6158,14,5953],["2021-10-09",6158,4,5957],["2021-10-10",6158,4,5961],["2021-10-11",6158,7,5968],["2021-10-12",6158,17,5985],["2021-10-13",6158,8,5993],["2021-10-14",6158,13,6006],["2021-10-15",6158,14,6020],["2021-10-16",6158,8,6028],["2021-10-17",6158,2,6030],["2021-10-18",6158,14,6044],["2021-10-19",6158,6,6050],["2021-10-20",6158,18,6068],["2021-10-21",6158,5,6073],["2021-10-22",6158,13,6086],["2021-10-23",6158,12,6098],["2021-10-24",6158,8,6106],["2021-10-25",6158,9,6115],["2021-10-26",6158,20,6135],["2021-10-27",6158,36,6171],["2021-10-28",6158,44,6215],["2021-10-29",6158,19,6234],["2021-10-30",6158,8,6242],["2021-10-31",6158,2,6244],["2021-11-01",6158,37,6281],["2021-11-02",6158,19,6300],["2021-11-03",6158,29,6329],["2021-11-04",6158,40,6369],["2021-11-05",6158,40,6409],["2021-11-06",6158,9,6418],["2021-11-07",6158,4,6422],["2021-11-08",6158,23,6445],["2021-11-09",6158,19,6464],["2021-11-10",6158,26,6490],["2021-11-11",6158,10,6500],["2021-11-12",6158,41,6541],["2021-11-13",6158,13,6554],["2021-11-14",6158,1,6555],["2021-11-15",6158,28,6583],["2021-11-16",6158,14,6597],["2021-11-17",6158,32,6629],["2021-11-18",6158,28,6657],["2021-11-19",6158,29,6686],["2021-11-20",6158,10,6696],["2021-11-21",6158,4,6700],["2021-11-22",6158,69,6769],["2021-11-23",6158,16,6785],["2021-11-24",6158,9,6794],["2021-11-26",6158,8,6802],["2021-11-27",6158,7,6809],["2021-11-28",6158,5,6814],["2021-11-29",6158,10,6824],["2021-11-30",6158,9,6833],["2021-12-01",6158,45,6878],["2021-12-02",6158,23,6901],["2021-12-03",6158,22,6923],["2021-12-04",6158,11,6934],["2021-12-05",6158,6,6940],["2021-12-06",6158,54,6994],["2021-12-07",6158,18,7012],["2021-12-08",6158,26,7038],["2021-12-09",6158,25,7063],["2021-12-10",6158,16,7079],["2021-12-11",6158,4,7083],["2021-12-12",6158,3,7086],["2021-12-13",6158,12,7098],["2021-12-14",6158,8,7106],["2021-12-15",6158,25,7131],["2021-12-16",6158,13,7144],["2021-12-17",6158,18,7162],["2021-12-18",6158,8,7170],["2021-12-19",6158,5,7175],["2021-12-20",6158,31,7206],["2021-12-21",6158,12,7218],["2021-12-22",6158,21,7239],["2021-12-23",6158,10,7249],["2021-12-24",6158,2,7251],["2021-12-27",6158,16,7267],["2021-12-28",6158,15,7282],["2021-12-29",6158,35,7317],["2021-12-30",6158,16,7333],["2021-12-31",6158,15,7348],["2022-01-01",6158,1,7349],["2022-01-02",6158,8,7357],["2022-01-03",6158,8,7365]]} \ No newline at end of file diff --git a/public/data/overall/vaccinations/by-county/Taliaferro.json b/public/data/overall/vaccinations/by-county/Taliaferro.json new file mode 100644 index 000000000..b23c42af7 --- /dev/null +++ b/public/data/overall/vaccinations/by-county/Taliaferro.json @@ -0,0 +1 @@ +{"segment":{"county":"Taliaferro"},"headers":["report_date","population","vaccinations","total_vaccinations"],"rows":[["2020-12-18",1632,1,1],["2020-12-22",1632,2,3],["2020-12-23",1632,1,4],["2020-12-28",1632,1,5],["2020-12-29",1632,1,6],["2021-01-02",1632,1,7],["2021-01-03",1632,1,8],["2021-01-04",1632,1,9],["2021-01-06",1632,4,13],["2021-01-07",1632,1,14],["2021-01-08",1632,1,15],["2021-01-09",1632,1,16],["2021-01-10",1632,1,17],["2021-01-11",1632,1,18],["2021-01-12",1632,1,19],["2021-01-14",1632,3,22],["2021-01-15",1632,3,25],["2021-01-16",1632,1,26],["2021-01-17",1632,1,27],["2021-01-19",1632,7,34],["2021-01-20",1632,6,40],["2021-01-21",1632,7,47],["2021-01-22",1632,1,48],["2021-01-23",1632,1,49],["2021-01-25",1632,5,54],["2021-01-26",1632,44,98],["2021-01-27",1632,2,100],["2021-01-28",1632,57,157],["2021-01-30",1632,1,158],["2021-01-31",1632,2,160],["2021-02-01",1632,4,164],["2021-02-03",1632,3,167],["2021-02-04",1632,4,171],["2021-02-05",1632,1,172],["2021-02-06",1632,1,173],["2021-02-07",1632,1,174],["2021-02-09",1632,4,178],["2021-02-10",1632,4,182],["2021-02-11",1632,40,222],["2021-02-12",1632,2,224],["2021-02-13",1632,1,225],["2021-02-14",1632,1,226],["2021-02-15",1632,1,227],["2021-02-16",1632,20,247],["2021-02-17",1632,3,250],["2021-02-18",1632,9,259],["2021-02-19",1632,2,261],["2021-02-20",1632,1,262],["2021-02-22",1632,3,265],["2021-02-23",1632,45,310],["2021-02-25",1632,58,368],["2021-02-26",1632,4,372],["2021-02-27",1632,3,375],["2021-03-01",1632,4,379],["2021-03-02",1632,5,384],["2021-03-03",1632,2,386],["2021-03-04",1632,8,394],["2021-03-05",1632,1,395],["2021-03-06",1632,1,396],["2021-03-07",1632,1,397],["2021-03-09",1632,9,406],["2021-03-10",1632,3,409],["2021-03-11",1632,54,463],["2021-03-12",1632,6,469],["2021-03-13",1632,2,471],["2021-03-15",1632,8,479],["2021-03-16",1632,27,506],["2021-03-17",1632,5,511],["2021-03-18",1632,10,521],["2021-03-19",1632,2,523],["2021-03-20",1632,2,525],["2021-03-21",1632,1,526],["2021-03-22",1632,2,528],["2021-03-23",1632,35,563],["2021-03-24",1632,1,564],["2021-03-25",1632,22,586],["2021-03-26",1632,11,597],["2021-03-27",1632,2,599],["2021-03-29",1632,5,604],["2021-03-30",1632,7,611],["2021-03-31",1632,11,622],["2021-04-01",1632,11,633],["2021-04-02",1632,13,646],["2021-04-03",1632,1,647],["2021-04-04",1632,1,648],["2021-04-05",1632,7,655],["2021-04-06",1632,16,671],["2021-04-07",1632,2,673],["2021-04-08",1632,14,687],["2021-04-09",1632,7,694],["2021-04-10",1632,3,697],["2021-04-11",1632,5,702],["2021-04-12",1632,10,712],["2021-04-13",1632,7,719],["2021-04-14",1632,11,730],["2021-04-15",1632,8,738],["2021-04-16",1632,5,743],["2021-04-18",1632,1,744],["2021-04-19",1632,5,749],["2021-04-20",1632,59,808],["2021-04-21",1632,4,812],["2021-04-22",1632,18,830],["2021-04-23",1632,5,835],["2021-04-24",1632,2,837],["2021-04-26",1632,5,842],["2021-04-27",1632,4,846],["2021-04-28",1632,3,849],["2021-04-29",1632,7,856],["2021-04-30",1632,6,862],["2021-05-03",1632,5,867],["2021-05-04",1632,16,883],["2021-05-05",1632,6,889],["2021-05-06",1632,10,899],["2021-05-07",1632,3,902],["2021-05-09",1632,2,904],["2021-05-10",1632,4,908],["2021-05-11",1632,4,912],["2021-05-12",1632,4,916],["2021-05-13",1632,1,917],["2021-05-14",1632,9,926],["2021-05-16",1632,1,927],["2021-05-17",1632,6,933],["2021-05-18",1632,29,962],["2021-05-19",1632,1,963],["2021-05-20",1632,12,975],["2021-05-21",1632,3,978],["2021-05-22",1632,2,980],["2021-05-23",1632,1,981],["2021-05-24",1632,2,983],["2021-05-25",1632,1,984],["2021-05-26",1632,1,985],["2021-05-27",1632,1,986],["2021-05-28",1632,2,988],["2021-05-29",1632,2,990],["2021-05-30",1632,1,991],["2021-05-31",1632,1,992],["2021-06-01",1632,3,995],["2021-06-02",1632,5,1000],["2021-06-03",1632,4,1004],["2021-06-04",1632,3,1007],["2021-06-05",1632,2,1009],["2021-06-06",1632,1,1010],["2021-06-07",1632,2,1012],["2021-06-08",1632,1,1013],["2021-06-09",1632,1,1014],["2021-06-10",1632,4,1018],["2021-06-12",1632,3,1021],["2021-06-14",1632,3,1024],["2021-06-15",1632,18,1042],["2021-06-16",1632,3,1045],["2021-06-17",1632,3,1048],["2021-06-18",1632,4,1052],["2021-06-19",1632,7,1059],["2021-06-20",1632,1,1060],["2021-06-21",1632,3,1063],["2021-06-22",1632,3,1066],["2021-06-23",1632,5,1071],["2021-06-24",1632,3,1074],["2021-06-25",1632,2,1076],["2021-06-28",1632,1,1077],["2021-06-29",1632,2,1079],["2021-06-30",1632,1,1080],["2021-07-01",1632,6,1086],["2021-07-02",1632,2,1088],["2021-07-03",1632,1,1089],["2021-07-05",1632,1,1090],["2021-07-06",1632,1,1091],["2021-07-07",1632,1,1092],["2021-07-08",1632,1,1093],["2021-07-09",1632,1,1094],["2021-07-10",1632,4,1098],["2021-07-11",1632,3,1101],["2021-07-12",1632,2,1103],["2021-07-13",1632,2,1105],["2021-07-14",1632,3,1108],["2021-07-15",1632,2,1110],["2021-07-16",1632,3,1113],["2021-07-19",1632,2,1115],["2021-07-20",1632,8,1123],["2021-07-21",1632,4,1127],["2021-07-22",1632,5,1132],["2021-07-23",1632,2,1134],["2021-07-24",1632,3,1137],["2021-07-26",1632,2,1139],["2021-07-27",1632,1,1140],["2021-07-28",1632,3,1143],["2021-07-29",1632,9,1152],["2021-07-30",1632,5,1157],["2021-07-31",1632,4,1161],["2021-08-01",1632,5,1166],["2021-08-02",1632,4,1170],["2021-08-03",1632,3,1173],["2021-08-04",1632,5,1178],["2021-08-05",1632,12,1190],["2021-08-06",1632,5,1195],["2021-08-07",1632,2,1197],["2021-08-09",1632,5,1202],["2021-08-10",1632,4,1206],["2021-08-11",1632,4,1210],["2021-08-12",1632,3,1213],["2021-08-13",1632,4,1217],["2021-08-14",1632,4,1221],["2021-08-16",1632,5,1226],["2021-08-18",1632,9,1235],["2021-08-19",1632,8,1243],["2021-08-20",1632,7,1250],["2021-08-21",1632,4,1254],["2021-08-22",1632,1,1255],["2021-08-23",1632,2,1257],["2021-08-24",1632,4,1261],["2021-08-25",1632,6,1267],["2021-08-26",1632,13,1280],["2021-08-27",1632,5,1285],["2021-08-28",1632,2,1287],["2021-08-30",1632,10,1297],["2021-08-31",1632,7,1304],["2021-09-01",1632,7,1311],["2021-09-02",1632,7,1318],["2021-09-03",1632,2,1320],["2021-09-04",1632,2,1322],["2021-09-05",1632,1,1323],["2021-09-06",1632,2,1325],["2021-09-07",1632,4,1329],["2021-09-08",1632,7,1336],["2021-09-09",1632,12,1348],["2021-09-10",1632,2,1350],["2021-09-11",1632,2,1352],["2021-09-12",1632,2,1354],["2021-09-13",1632,4,1358],["2021-09-15",1632,2,1360],["2021-09-16",1632,9,1369],["2021-09-17",1632,4,1373],["2021-09-20",1632,5,1378],["2021-09-21",1632,3,1381],["2021-09-22",1632,3,1384],["2021-09-23",1632,12,1396],["2021-09-24",1632,1,1397],["2021-09-27",1632,2,1399],["2021-09-28",1632,5,1404],["2021-09-29",1632,1,1405],["2021-09-30",1632,8,1413],["2021-10-01",1632,3,1416],["2021-10-02",1632,2,1418],["2021-10-03",1632,1,1419],["2021-10-06",1632,2,1421],["2021-10-07",1632,2,1423],["2021-10-08",1632,3,1426],["2021-10-09",1632,1,1427],["2021-10-11",1632,1,1428],["2021-10-12",1632,1,1429],["2021-10-13",1632,3,1432],["2021-10-14",1632,11,1443],["2021-10-16",1632,1,1444],["2021-10-18",1632,1,1445],["2021-10-19",1632,1,1446],["2021-10-20",1632,5,1451],["2021-10-21",1632,2,1453],["2021-10-22",1632,4,1457],["2021-10-25",1632,7,1464],["2021-10-26",1632,7,1471],["2021-10-27",1632,8,1479],["2021-10-28",1632,35,1514],["2021-10-29",1632,4,1518],["2021-10-31",1632,2,1520],["2021-11-01",1632,2,1522],["2021-11-02",1632,7,1529],["2021-11-03",1632,4,1533],["2021-11-04",1632,20,1553],["2021-11-05",1632,6,1559],["2021-11-07",1632,1,1560],["2021-11-08",1632,3,1563],["2021-11-09",1632,7,1570],["2021-11-10",1632,28,1598],["2021-11-11",1632,1,1599],["2021-11-12",1632,3,1602],["2021-11-14",1632,1,1603],["2021-11-15",1632,5,1608],["2021-11-16",1632,4,1612],["2021-11-17",1632,1,1613],["2021-11-18",1632,25,1638],["2021-11-19",1632,4,1642],["2021-11-20",1632,3,1645],["2021-11-22",1632,5,1650],["2021-11-23",1632,24,1674],["2021-11-24",1632,5,1679],["2021-11-26",1632,1,1680],["2021-11-28",1632,1,1681],["2021-11-29",1632,4,1685],["2021-11-30",1632,2,1687],["2021-12-01",1632,6,1693],["2021-12-02",1632,35,1728],["2021-12-03",1632,5,1733],["2021-12-04",1632,2,1735],["2021-12-07",1632,3,1738],["2021-12-08",1632,19,1757],["2021-12-09",1632,5,1762],["2021-12-10",1632,2,1764],["2021-12-11",1632,1,1765],["2021-12-13",1632,1,1766],["2021-12-14",1632,3,1769],["2021-12-15",1632,2,1771],["2021-12-16",1632,14,1785],["2021-12-17",1632,2,1787],["2021-12-18",1632,3,1790],["2021-12-20",1632,7,1797],["2021-12-21",1632,12,1809],["2021-12-22",1632,4,1813],["2021-12-23",1632,1,1814],["2021-12-24",1632,1,1815],["2021-12-26",1632,1,1816],["2021-12-27",1632,1,1817],["2021-12-28",1632,4,1821],["2021-12-29",1632,6,1827],["2021-12-30",1632,1,1828],["2021-12-31",1632,3,1831],["2022-01-02",1632,2,1833]]} \ No newline at end of file diff --git a/public/data/overall/vaccinations/by-county/Tattnall.json b/public/data/overall/vaccinations/by-county/Tattnall.json new file mode 100644 index 000000000..04670da9c --- /dev/null +++ b/public/data/overall/vaccinations/by-county/Tattnall.json @@ -0,0 +1 @@ +{"segment":{"county":"Tattnall"},"headers":["report_date","population","vaccinations","total_vaccinations"],"rows":[["2020-12-16",25411,4,4],["2020-12-18",25411,1,5],["2020-12-19",25411,1,6],["2020-12-20",25411,1,7],["2020-12-21",25411,2,9],["2020-12-22",25411,4,13],["2020-12-23",25411,5,18],["2020-12-24",25411,1,19],["2020-12-26",25411,1,20],["2020-12-27",25411,2,22],["2020-12-28",25411,14,36],["2020-12-29",25411,21,57],["2020-12-30",25411,34,91],["2020-12-31",25411,6,97],["2021-01-01",25411,11,108],["2021-01-02",25411,36,144],["2021-01-03",25411,3,147],["2021-01-04",25411,25,172],["2021-01-05",25411,7,179],["2021-01-06",25411,18,197],["2021-01-07",25411,40,237],["2021-01-08",25411,23,260],["2021-01-09",25411,1,261],["2021-01-10",25411,1,262],["2021-01-11",25411,68,330],["2021-01-12",25411,93,423],["2021-01-13",25411,85,508],["2021-01-14",25411,107,615],["2021-01-15",25411,111,726],["2021-01-16",25411,48,774],["2021-01-17",25411,67,841],["2021-01-18",25411,110,951],["2021-01-19",25411,61,1012],["2021-01-20",25411,109,1121],["2021-01-21",25411,132,1253],["2021-01-22",25411,116,1369],["2021-01-23",25411,49,1418],["2021-01-24",25411,4,1422],["2021-01-25",25411,24,1446],["2021-01-26",25411,47,1493],["2021-01-27",25411,70,1563],["2021-01-28",25411,113,1676],["2021-01-29",25411,60,1736],["2021-01-30",25411,3,1739],["2021-01-31",25411,2,1741],["2021-02-01",25411,33,1774],["2021-02-02",25411,109,1883],["2021-02-03",25411,61,1944],["2021-02-04",25411,77,2021],["2021-02-05",25411,85,2106],["2021-02-06",25411,7,2113],["2021-02-08",25411,69,2182],["2021-02-09",25411,100,2282],["2021-02-10",25411,173,2455],["2021-02-11",25411,201,2656],["2021-02-12",25411,130,2786],["2021-02-13",25411,147,2933],["2021-02-14",25411,4,2937],["2021-02-15",25411,82,3019],["2021-02-16",25411,99,3118],["2021-02-17",25411,229,3347],["2021-02-18",25411,205,3552],["2021-02-19",25411,112,3664],["2021-02-20",25411,68,3732],["2021-02-21",25411,9,3741],["2021-02-22",25411,40,3781],["2021-02-23",25411,79,3860],["2021-02-24",25411,119,3979],["2021-02-25",25411,158,4137],["2021-02-26",25411,60,4197],["2021-02-27",25411,13,4210],["2021-02-28",25411,8,4218],["2021-03-01",25411,57,4275],["2021-03-02",25411,85,4360],["2021-03-03",25411,69,4429],["2021-03-04",25411,98,4527],["2021-03-05",25411,81,4608],["2021-03-06",25411,3,4611],["2021-03-07",25411,11,4622],["2021-03-08",25411,68,4690],["2021-03-09",25411,103,4793],["2021-03-10",25411,102,4895],["2021-03-11",25411,138,5033],["2021-03-12",25411,117,5150],["2021-03-13",25411,27,5177],["2021-03-14",25411,16,5193],["2021-03-15",25411,90,5283],["2021-03-16",25411,89,5372],["2021-03-17",25411,177,5549],["2021-03-18",25411,93,5642],["2021-03-19",25411,85,5727],["2021-03-20",25411,129,5856],["2021-03-21",25411,18,5874],["2021-03-22",25411,60,5934],["2021-03-23",25411,116,6050],["2021-03-24",25411,156,6206],["2021-03-25",25411,148,6354],["2021-03-26",25411,112,6466],["2021-03-27",25411,10,6476],["2021-03-28",25411,28,6504],["2021-03-29",25411,103,6607],["2021-03-30",25411,131,6738],["2021-03-31",25411,157,6895],["2021-04-01",25411,147,7042],["2021-04-02",25411,245,7287],["2021-04-03",25411,13,7300],["2021-04-04",25411,17,7317],["2021-04-05",25411,85,7402],["2021-04-06",25411,119,7521],["2021-04-07",25411,102,7623],["2021-04-08",25411,308,7931],["2021-04-09",25411,54,7985],["2021-04-10",25411,98,8083],["2021-04-11",25411,10,8093],["2021-04-12",25411,92,8185],["2021-04-13",25411,82,8267],["2021-04-14",25411,122,8389],["2021-04-15",25411,98,8487],["2021-04-16",25411,95,8582],["2021-04-17",25411,12,8594],["2021-04-18",25411,5,8599],["2021-04-19",25411,21,8620],["2021-04-20",25411,71,8691],["2021-04-21",25411,146,8837],["2021-04-22",25411,137,8974],["2021-04-23",25411,61,9035],["2021-04-24",25411,81,9116],["2021-04-25",25411,6,9122],["2021-04-26",25411,75,9197],["2021-04-27",25411,134,9331],["2021-04-28",25411,110,9441],["2021-04-29",25411,184,9625],["2021-04-30",25411,73,9698],["2021-05-01",25411,34,9732],["2021-05-02",25411,4,9736],["2021-05-03",25411,41,9777],["2021-05-04",25411,57,9834],["2021-05-05",25411,78,9912],["2021-05-06",25411,98,10010],["2021-05-07",25411,74,10084],["2021-05-08",25411,25,10109],["2021-05-09",25411,1,10110],["2021-05-10",25411,33,10143],["2021-05-11",25411,50,10193],["2021-05-12",25411,49,10242],["2021-05-13",25411,39,10281],["2021-05-14",25411,64,10345],["2021-05-15",25411,33,10378],["2021-05-16",25411,6,10384],["2021-05-17",25411,26,10410],["2021-05-18",25411,77,10487],["2021-05-19",25411,89,10576],["2021-05-20",25411,103,10679],["2021-05-21",25411,50,10729],["2021-05-22",25411,32,10761],["2021-05-23",25411,5,10766],["2021-05-24",25411,22,10788],["2021-05-25",25411,72,10860],["2021-05-26",25411,66,10926],["2021-05-27",25411,45,10971],["2021-05-28",25411,19,10990],["2021-05-29",25411,7,10997],["2021-05-30",25411,4,11001],["2021-05-31",25411,4,11005],["2021-06-01",25411,54,11059],["2021-06-02",25411,34,11093],["2021-06-03",25411,55,11148],["2021-06-04",25411,22,11170],["2021-06-05",25411,23,11193],["2021-06-06",25411,8,11201],["2021-06-07",25411,18,11219],["2021-06-08",25411,30,11249],["2021-06-09",25411,29,11278],["2021-06-10",25411,38,11316],["2021-06-11",25411,19,11335],["2021-06-12",25411,44,11379],["2021-06-13",25411,9,11388],["2021-06-14",25411,24,11412],["2021-06-15",25411,58,11470],["2021-06-16",25411,48,11518],["2021-06-17",25411,37,11555],["2021-06-18",25411,27,11582],["2021-06-19",25411,10,11592],["2021-06-20",25411,3,11595],["2021-06-21",25411,13,11608],["2021-06-22",25411,21,11629],["2021-06-23",25411,38,11667],["2021-06-24",25411,14,11681],["2021-06-25",25411,23,11704],["2021-06-26",25411,11,11715],["2021-06-27",25411,11,11726],["2021-06-28",25411,16,11742],["2021-06-29",25411,23,11765],["2021-06-30",25411,25,11790],["2021-07-01",25411,32,11822],["2021-07-02",25411,13,11835],["2021-07-03",25411,12,11847],["2021-07-04",25411,1,11848],["2021-07-05",25411,13,11861],["2021-07-06",25411,26,11887],["2021-07-07",25411,13,11900],["2021-07-08",25411,21,11921],["2021-07-09",25411,17,11938],["2021-07-10",25411,6,11944],["2021-07-11",25411,6,11950],["2021-07-12",25411,13,11963],["2021-07-13",25411,22,11985],["2021-07-14",25411,49,12034],["2021-07-15",25411,18,12052],["2021-07-16",25411,28,12080],["2021-07-17",25411,9,12089],["2021-07-18",25411,6,12095],["2021-07-19",25411,17,12112],["2021-07-20",25411,33,12145],["2021-07-21",25411,43,12188],["2021-07-22",25411,56,12244],["2021-07-23",25411,43,12287],["2021-07-24",25411,44,12331],["2021-07-25",25411,12,12343],["2021-07-26",25411,38,12381],["2021-07-27",25411,43,12424],["2021-07-28",25411,65,12489],["2021-07-29",25411,82,12571],["2021-07-30",25411,43,12614],["2021-07-31",25411,37,12651],["2021-08-01",25411,12,12663],["2021-08-02",25411,33,12696],["2021-08-03",25411,48,12744],["2021-08-04",25411,83,12827],["2021-08-05",25411,60,12887],["2021-08-06",25411,59,12946],["2021-08-07",25411,39,12985],["2021-08-08",25411,15,13000],["2021-08-09",25411,59,13059],["2021-08-10",25411,60,13119],["2021-08-11",25411,65,13184],["2021-08-12",25411,53,13237],["2021-08-13",25411,81,13318],["2021-08-14",25411,46,13364],["2021-08-15",25411,12,13376],["2021-08-16",25411,63,13439],["2021-08-17",25411,64,13503],["2021-08-18",25411,89,13592],["2021-08-19",25411,81,13673],["2021-08-20",25411,92,13765],["2021-08-21",25411,39,13804],["2021-08-22",25411,21,13825],["2021-08-23",25411,47,13872],["2021-08-24",25411,64,13936],["2021-08-25",25411,76,14012],["2021-08-26",25411,56,14068],["2021-08-27",25411,94,14162],["2021-08-28",25411,59,14221],["2021-08-29",25411,26,14247],["2021-08-30",25411,59,14306],["2021-08-31",25411,59,14365],["2021-09-01",25411,87,14452],["2021-09-02",25411,71,14523],["2021-09-03",25411,74,14597],["2021-09-04",25411,32,14629],["2021-09-05",25411,21,14650],["2021-09-06",25411,8,14658],["2021-09-07",25411,76,14734],["2021-09-08",25411,69,14803],["2021-09-09",25411,70,14873],["2021-09-10",25411,119,14992],["2021-09-11",25411,38,15030],["2021-09-12",25411,18,15048],["2021-09-13",25411,59,15107],["2021-09-14",25411,69,15176],["2021-09-15",25411,63,15239],["2021-09-16",25411,44,15283],["2021-09-17",25411,87,15370],["2021-09-18",25411,22,15392],["2021-09-19",25411,9,15401],["2021-09-20",25411,33,15434],["2021-09-21",25411,30,15464],["2021-09-22",25411,74,15538],["2021-09-23",25411,29,15567],["2021-09-24",25411,64,15631],["2021-09-25",25411,21,15652],["2021-09-26",25411,9,15661],["2021-09-27",25411,19,15680],["2021-09-28",25411,36,15716],["2021-09-29",25411,39,15755],["2021-09-30",25411,44,15799],["2021-10-01",25411,65,15864],["2021-10-02",25411,15,15879],["2021-10-03",25411,1,15880],["2021-10-04",25411,24,15904],["2021-10-05",25411,27,15931],["2021-10-06",25411,30,15961],["2021-10-07",25411,33,15994],["2021-10-08",25411,41,16035],["2021-10-09",25411,8,16043],["2021-10-10",25411,6,16049],["2021-10-11",25411,13,16062],["2021-10-12",25411,27,16089],["2021-10-13",25411,34,16123],["2021-10-14",25411,47,16170],["2021-10-15",25411,32,16202],["2021-10-16",25411,10,16212],["2021-10-17",25411,3,16215],["2021-10-18",25411,12,16227],["2021-10-19",25411,28,16255],["2021-10-20",25411,25,16280],["2021-10-21",25411,32,16312],["2021-10-22",25411,34,16346],["2021-10-23",25411,16,16362],["2021-10-24",25411,4,16366],["2021-10-25",25411,45,16411],["2021-10-26",25411,89,16500],["2021-10-27",25411,52,16552],["2021-10-28",25411,85,16637],["2021-10-29",25411,112,16749],["2021-10-30",25411,8,16757],["2021-10-31",25411,7,16764],["2021-11-01",25411,43,16807],["2021-11-02",25411,65,16872],["2021-11-03",25411,144,17016],["2021-11-04",25411,67,17083],["2021-11-05",25411,54,17137],["2021-11-06",25411,14,17151],["2021-11-07",25411,7,17158],["2021-11-08",25411,34,17192],["2021-11-09",25411,77,17269],["2021-11-10",25411,44,17313],["2021-11-11",25411,145,17458],["2021-11-12",25411,92,17550],["2021-11-13",25411,14,17564],["2021-11-14",25411,3,17567],["2021-11-15",25411,28,17595],["2021-11-16",25411,55,17650],["2021-11-17",25411,86,17736],["2021-11-18",25411,92,17828],["2021-11-19",25411,74,17902],["2021-11-20",25411,13,17915],["2021-11-21",25411,13,17928],["2021-11-22",25411,50,17978],["2021-11-23",25411,47,18025],["2021-11-24",25411,25,18050],["2021-11-26",25411,19,18069],["2021-11-27",25411,10,18079],["2021-11-28",25411,3,18082],["2021-11-29",25411,55,18137],["2021-11-30",25411,78,18215],["2021-12-01",25411,125,18340],["2021-12-02",25411,78,18418],["2021-12-03",25411,78,18496],["2021-12-04",25411,52,18548],["2021-12-05",25411,8,18556],["2021-12-06",25411,43,18599],["2021-12-07",25411,71,18670],["2021-12-08",25411,89,18759],["2021-12-09",25411,61,18820],["2021-12-10",25411,82,18902],["2021-12-11",25411,14,18916],["2021-12-12",25411,12,18928],["2021-12-13",25411,40,18968],["2021-12-14",25411,49,19017],["2021-12-15",25411,64,19081],["2021-12-16",25411,25,19106],["2021-12-17",25411,47,19153],["2021-12-18",25411,16,19169],["2021-12-19",25411,16,19185],["2021-12-20",25411,38,19223],["2021-12-21",25411,37,19260],["2021-12-22",25411,30,19290],["2021-12-23",25411,13,19303],["2021-12-24",25411,9,19312],["2021-12-26",25411,2,19314],["2021-12-27",25411,41,19355],["2021-12-28",25411,61,19416],["2021-12-29",25411,98,19514],["2021-12-30",25411,38,19552],["2021-12-31",25411,35,19587],["2022-01-01",25411,2,19589],["2022-01-02",25411,11,19600],["2022-01-03",25411,10,19610]]} \ No newline at end of file diff --git a/public/data/overall/vaccinations/by-county/Taylor.json b/public/data/overall/vaccinations/by-county/Taylor.json new file mode 100644 index 000000000..d5faa1d6d --- /dev/null +++ b/public/data/overall/vaccinations/by-county/Taylor.json @@ -0,0 +1 @@ +{"segment":{"county":"Taylor"},"headers":["report_date","population","vaccinations","total_vaccinations"],"rows":[["2020-12-21",7958,1,1],["2020-12-22",7958,4,5],["2020-12-23",7958,8,13],["2020-12-24",7958,3,16],["2020-12-26",7958,1,17],["2020-12-28",7958,5,22],["2020-12-29",7958,10,32],["2020-12-30",7958,1,33],["2020-12-31",7958,6,39],["2021-01-01",7958,1,40],["2021-01-02",7958,1,41],["2021-01-03",7958,45,86],["2021-01-04",7958,7,93],["2021-01-05",7958,27,120],["2021-01-06",7958,12,132],["2021-01-07",7958,29,161],["2021-01-08",7958,5,166],["2021-01-09",7958,1,167],["2021-01-11",7958,52,219],["2021-01-12",7958,60,279],["2021-01-13",7958,35,314],["2021-01-14",7958,78,392],["2021-01-15",7958,28,420],["2021-01-16",7958,3,423],["2021-01-17",7958,3,426],["2021-01-18",7958,135,561],["2021-01-19",7958,46,607],["2021-01-20",7958,91,698],["2021-01-21",7958,28,726],["2021-01-22",7958,32,758],["2021-01-23",7958,1,759],["2021-01-24",7958,56,815],["2021-01-25",7958,14,829],["2021-01-26",7958,33,862],["2021-01-27",7958,30,892],["2021-01-28",7958,8,900],["2021-01-29",7958,20,920],["2021-01-31",7958,2,922],["2021-02-01",7958,14,936],["2021-02-02",7958,46,982],["2021-02-03",7958,42,1024],["2021-02-04",7958,52,1076],["2021-02-05",7958,25,1101],["2021-02-06",7958,1,1102],["2021-02-07",7958,1,1103],["2021-02-08",7958,54,1157],["2021-02-09",7958,80,1237],["2021-02-10",7958,18,1255],["2021-02-11",7958,104,1359],["2021-02-12",7958,35,1394],["2021-02-13",7958,4,1398],["2021-02-14",7958,1,1399],["2021-02-15",7958,101,1500],["2021-02-16",7958,82,1582],["2021-02-17",7958,56,1638],["2021-02-18",7958,115,1753],["2021-02-19",7958,36,1789],["2021-02-20",7958,1,1790],["2021-02-21",7958,1,1791],["2021-02-22",7958,9,1800],["2021-02-23",7958,9,1809],["2021-02-24",7958,26,1835],["2021-02-25",7958,111,1946],["2021-02-26",7958,29,1975],["2021-03-01",7958,15,1990],["2021-03-02",7958,49,2039],["2021-03-03",7958,49,2088],["2021-03-04",7958,58,2146],["2021-03-05",7958,27,2173],["2021-03-07",7958,1,2174],["2021-03-08",7958,20,2194],["2021-03-09",7958,53,2247],["2021-03-10",7958,35,2282],["2021-03-11",7958,71,2353],["2021-03-12",7958,28,2381],["2021-03-13",7958,4,2385],["2021-03-14",7958,2,2387],["2021-03-15",7958,31,2418],["2021-03-16",7958,34,2452],["2021-03-17",7958,58,2510],["2021-03-18",7958,39,2549],["2021-03-19",7958,77,2626],["2021-03-22",7958,49,2675],["2021-03-23",7958,134,2809],["2021-03-24",7958,73,2882],["2021-03-25",7958,147,3029],["2021-03-26",7958,57,3086],["2021-03-27",7958,2,3088],["2021-03-28",7958,3,3091],["2021-03-29",7958,54,3145],["2021-03-30",7958,65,3210],["2021-03-31",7958,50,3260],["2021-04-01",7958,99,3359],["2021-04-02",7958,37,3396],["2021-04-03",7958,5,3401],["2021-04-04",7958,3,3404],["2021-04-05",7958,18,3422],["2021-04-06",7958,73,3495],["2021-04-07",7958,56,3551],["2021-04-08",7958,63,3614],["2021-04-09",7958,57,3671],["2021-04-10",7958,9,3680],["2021-04-11",7958,2,3682],["2021-04-12",7958,32,3714],["2021-04-13",7958,45,3759],["2021-04-14",7958,42,3801],["2021-04-15",7958,49,3850],["2021-04-16",7958,102,3952],["2021-04-17",7958,14,3966],["2021-04-18",7958,1,3967],["2021-04-19",7958,33,4000],["2021-04-20",7958,126,4126],["2021-04-21",7958,74,4200],["2021-04-22",7958,46,4246],["2021-04-23",7958,54,4300],["2021-04-24",7958,2,4302],["2021-04-25",7958,1,4303],["2021-04-26",7958,26,4329],["2021-04-27",7958,71,4400],["2021-04-28",7958,42,4442],["2021-04-29",7958,58,4500],["2021-04-30",7958,45,4545],["2021-05-01",7958,8,4553],["2021-05-02",7958,3,4556],["2021-05-03",7958,16,4572],["2021-05-04",7958,38,4610],["2021-05-05",7958,53,4663],["2021-05-06",7958,57,4720],["2021-05-07",7958,49,4769],["2021-05-08",7958,4,4773],["2021-05-09",7958,1,4774],["2021-05-10",7958,11,4785],["2021-05-11",7958,16,4801],["2021-05-12",7958,19,4820],["2021-05-13",7958,72,4892],["2021-05-14",7958,33,4925],["2021-05-15",7958,13,4938],["2021-05-16",7958,3,4941],["2021-05-17",7958,23,4964],["2021-05-18",7958,35,4999],["2021-05-19",7958,14,5013],["2021-05-20",7958,20,5033],["2021-05-21",7958,32,5065],["2021-05-22",7958,2,5067],["2021-05-23",7958,2,5069],["2021-05-24",7958,14,5083],["2021-05-25",7958,42,5125],["2021-05-26",7958,22,5147],["2021-05-27",7958,14,5161],["2021-05-28",7958,19,5180],["2021-05-29",7958,4,5184],["2021-05-30",7958,2,5186],["2021-06-01",7958,22,5208],["2021-06-02",7958,18,5226],["2021-06-03",7958,13,5239],["2021-06-04",7958,23,5262],["2021-06-05",7958,4,5266],["2021-06-06",7958,4,5270],["2021-06-07",7958,11,5281],["2021-06-08",7958,8,5289],["2021-06-09",7958,15,5304],["2021-06-10",7958,20,5324],["2021-06-11",7958,23,5347],["2021-06-12",7958,6,5353],["2021-06-14",7958,9,5362],["2021-06-15",7958,3,5365],["2021-06-16",7958,13,5378],["2021-06-17",7958,13,5391],["2021-06-18",7958,9,5400],["2021-06-19",7958,3,5403],["2021-06-20",7958,1,5404],["2021-06-21",7958,8,5412],["2021-06-22",7958,14,5426],["2021-06-23",7958,4,5430],["2021-06-24",7958,7,5437],["2021-06-25",7958,13,5450],["2021-06-26",7958,7,5457],["2021-06-27",7958,1,5458],["2021-06-28",7958,5,5463],["2021-06-29",7958,18,5481],["2021-06-30",7958,9,5490],["2021-07-01",7958,4,5494],["2021-07-02",7958,10,5504],["2021-07-03",7958,1,5505],["2021-07-05",7958,3,5508],["2021-07-06",7958,6,5514],["2021-07-07",7958,11,5525],["2021-07-08",7958,11,5536],["2021-07-09",7958,12,5548],["2021-07-10",7958,2,5550],["2021-07-11",7958,1,5551],["2021-07-12",7958,3,5554],["2021-07-13",7958,10,5564],["2021-07-14",7958,12,5576],["2021-07-15",7958,5,5581],["2021-07-16",7958,7,5588],["2021-07-17",7958,9,5597],["2021-07-19",7958,10,5607],["2021-07-20",7958,15,5622],["2021-07-21",7958,8,5630],["2021-07-22",7958,7,5637],["2021-07-23",7958,12,5649],["2021-07-24",7958,7,5656],["2021-07-25",7958,5,5661],["2021-07-26",7958,20,5681],["2021-07-27",7958,16,5697],["2021-07-28",7958,11,5708],["2021-07-29",7958,39,5747],["2021-07-30",7958,36,5783],["2021-07-31",7958,13,5796],["2021-08-01",7958,4,5800],["2021-08-02",7958,6,5806],["2021-08-03",7958,12,5818],["2021-08-04",7958,8,5826],["2021-08-05",7958,23,5849],["2021-08-06",7958,44,5893],["2021-08-07",7958,8,5901],["2021-08-08",7958,6,5907],["2021-08-09",7958,11,5918],["2021-08-10",7958,17,5935],["2021-08-11",7958,19,5954],["2021-08-12",7958,29,5983],["2021-08-13",7958,41,6024],["2021-08-14",7958,41,6065],["2021-08-15",7958,12,6077],["2021-08-16",7958,11,6088],["2021-08-17",7958,33,6121],["2021-08-18",7958,19,6140],["2021-08-19",7958,35,6175],["2021-08-20",7958,33,6208],["2021-08-21",7958,15,6223],["2021-08-22",7958,6,6229],["2021-08-23",7958,25,6254],["2021-08-24",7958,44,6298],["2021-08-25",7958,20,6318],["2021-08-26",7958,49,6367],["2021-08-27",7958,52,6419],["2021-08-28",7958,11,6430],["2021-08-29",7958,9,6439],["2021-08-30",7958,19,6458],["2021-08-31",7958,36,6494],["2021-09-01",7958,19,6513],["2021-09-02",7958,42,6555],["2021-09-03",7958,52,6607],["2021-09-04",7958,39,6646],["2021-09-05",7958,2,6648],["2021-09-07",7958,19,6667],["2021-09-08",7958,18,6685],["2021-09-09",7958,34,6719],["2021-09-10",7958,50,6769],["2021-09-11",7958,12,6781],["2021-09-12",7958,10,6791],["2021-09-13",7958,12,6803],["2021-09-14",7958,31,6834],["2021-09-15",7958,15,6849],["2021-09-16",7958,25,6874],["2021-09-17",7958,17,6891],["2021-09-18",7958,10,6901],["2021-09-19",7958,7,6908],["2021-09-20",7958,15,6923],["2021-09-21",7958,42,6965],["2021-09-22",7958,17,6982],["2021-09-23",7958,37,7019],["2021-09-24",7958,47,7066],["2021-09-25",7958,10,7076],["2021-09-26",7958,5,7081],["2021-09-27",7958,17,7098],["2021-09-28",7958,26,7124],["2021-09-29",7958,8,7132],["2021-09-30",7958,37,7169],["2021-10-01",7958,30,7199],["2021-10-02",7958,22,7221],["2021-10-03",7958,1,7222],["2021-10-04",7958,7,7229],["2021-10-05",7958,33,7262],["2021-10-06",7958,9,7271],["2021-10-07",7958,19,7290],["2021-10-08",7958,13,7303],["2021-10-09",7958,5,7308],["2021-10-10",7958,2,7310],["2021-10-11",7958,12,7322],["2021-10-12",7958,18,7340],["2021-10-13",7958,8,7348],["2021-10-14",7958,6,7354],["2021-10-15",7958,19,7373],["2021-10-16",7958,3,7376],["2021-10-17",7958,3,7379],["2021-10-18",7958,10,7389],["2021-10-19",7958,10,7399],["2021-10-20",7958,12,7411],["2021-10-21",7958,9,7420],["2021-10-22",7958,16,7436],["2021-10-23",7958,2,7438],["2021-10-24",7958,1,7439],["2021-10-25",7958,23,7462],["2021-10-26",7958,50,7512],["2021-10-27",7958,28,7540],["2021-10-28",7958,30,7570],["2021-10-29",7958,106,7676],["2021-10-30",7958,1,7677],["2021-10-31",7958,3,7680],["2021-11-01",7958,34,7714],["2021-11-02",7958,33,7747],["2021-11-03",7958,51,7798],["2021-11-04",7958,46,7844],["2021-11-05",7958,36,7880],["2021-11-06",7958,28,7908],["2021-11-07",7958,1,7909],["2021-11-08",7958,30,7939],["2021-11-09",7958,36,7975],["2021-11-10",7958,22,7997],["2021-11-11",7958,19,8016],["2021-11-12",7958,22,8038],["2021-11-13",7958,2,8040],["2021-11-14",7958,3,8043],["2021-11-15",7958,22,8065],["2021-11-16",7958,39,8104],["2021-11-17",7958,38,8142],["2021-11-18",7958,18,8160],["2021-11-19",7958,33,8193],["2021-11-20",7958,9,8202],["2021-11-21",7958,6,8208],["2021-11-22",7958,33,8241],["2021-11-23",7958,23,8264],["2021-11-24",7958,12,8276],["2021-11-26",7958,9,8285],["2021-11-27",7958,4,8289],["2021-11-28",7958,3,8292],["2021-11-29",7958,27,8319],["2021-11-30",7958,34,8353],["2021-12-01",7958,51,8404],["2021-12-02",7958,39,8443],["2021-12-03",7958,57,8500],["2021-12-04",7958,3,8503],["2021-12-05",7958,3,8506],["2021-12-06",7958,27,8533],["2021-12-07",7958,18,8551],["2021-12-08",7958,33,8584],["2021-12-09",7958,18,8602],["2021-12-10",7958,52,8654],["2021-12-11",7958,2,8656],["2021-12-12",7958,2,8658],["2021-12-13",7958,18,8676],["2021-12-14",7958,29,8705],["2021-12-15",7958,7,8712],["2021-12-16",7958,17,8729],["2021-12-17",7958,29,8758],["2021-12-18",7958,4,8762],["2021-12-19",7958,1,8763],["2021-12-20",7958,22,8785],["2021-12-21",7958,14,8799],["2021-12-22",7958,21,8820],["2021-12-23",7958,15,8835],["2021-12-27",7958,19,8854],["2021-12-28",7958,23,8877],["2021-12-29",7958,40,8917],["2021-12-30",7958,15,8932],["2021-12-31",7958,13,8945],["2022-01-02",7958,2,8947],["2022-01-03",7958,15,8962]]} \ No newline at end of file diff --git a/public/data/overall/vaccinations/by-county/Telfair.json b/public/data/overall/vaccinations/by-county/Telfair.json new file mode 100644 index 000000000..66a82a789 --- /dev/null +++ b/public/data/overall/vaccinations/by-county/Telfair.json @@ -0,0 +1 @@ +{"segment":{"county":"Telfair"},"headers":["report_date","population","vaccinations","total_vaccinations"],"rows":[["2020-12-17",15644,1,1],["2020-12-18",15644,4,5],["2020-12-20",15644,1,6],["2020-12-21",15644,2,8],["2020-12-22",15644,2,10],["2020-12-23",15644,3,13],["2020-12-24",15644,1,14],["2020-12-28",15644,29,43],["2020-12-29",15644,30,73],["2020-12-30",15644,34,107],["2020-12-31",15644,36,143],["2021-01-01",15644,2,145],["2021-01-02",15644,1,146],["2021-01-03",15644,7,153],["2021-01-04",15644,40,193],["2021-01-05",15644,19,212],["2021-01-06",15644,16,228],["2021-01-07",15644,40,268],["2021-01-08",15644,10,278],["2021-01-09",15644,10,288],["2021-01-10",15644,2,290],["2021-01-11",15644,121,411],["2021-01-12",15644,169,580],["2021-01-13",15644,28,608],["2021-01-14",15644,16,624],["2021-01-15",15644,29,653],["2021-01-16",15644,3,656],["2021-01-17",15644,1,657],["2021-01-18",15644,45,702],["2021-01-19",15644,195,897],["2021-01-20",15644,58,955],["2021-01-21",15644,49,1004],["2021-01-22",15644,7,1011],["2021-01-23",15644,4,1015],["2021-01-24",15644,6,1021],["2021-01-25",15644,37,1058],["2021-01-26",15644,175,1233],["2021-01-27",15644,30,1263],["2021-01-28",15644,27,1290],["2021-01-29",15644,11,1301],["2021-01-30",15644,3,1304],["2021-01-31",15644,3,1307],["2021-02-01",15644,42,1349],["2021-02-02",15644,133,1482],["2021-02-03",15644,38,1520],["2021-02-04",15644,46,1566],["2021-02-05",15644,14,1580],["2021-02-06",15644,50,1630],["2021-02-08",15644,159,1789],["2021-02-09",15644,199,1988],["2021-02-10",15644,52,2040],["2021-02-11",15644,28,2068],["2021-02-12",15644,36,2104],["2021-02-13",15644,1,2105],["2021-02-14",15644,2,2107],["2021-02-15",15644,28,2135],["2021-02-16",15644,230,2365],["2021-02-17",15644,17,2382],["2021-02-18",15644,14,2396],["2021-02-19",15644,6,2402],["2021-02-20",15644,3,2405],["2021-02-22",15644,27,2432],["2021-02-23",15644,206,2638],["2021-02-24",15644,17,2655],["2021-02-25",15644,34,2689],["2021-02-26",15644,9,2698],["2021-02-27",15644,1,2699],["2021-02-28",15644,1,2700],["2021-03-01",15644,27,2727],["2021-03-02",15644,175,2902],["2021-03-03",15644,34,2936],["2021-03-04",15644,10,2946],["2021-03-05",15644,2,2948],["2021-03-06",15644,2,2950],["2021-03-07",15644,1,2951],["2021-03-08",15644,13,2964],["2021-03-09",15644,184,3148],["2021-03-10",15644,19,3167],["2021-03-11",15644,20,3187],["2021-03-12",15644,27,3214],["2021-03-13",15644,3,3217],["2021-03-14",15644,2,3219],["2021-03-15",15644,80,3299],["2021-03-16",15644,175,3474],["2021-03-17",15644,32,3506],["2021-03-18",15644,20,3526],["2021-03-19",15644,12,3538],["2021-03-20",15644,4,3542],["2021-03-21",15644,1,3543],["2021-03-22",15644,25,3568],["2021-03-23",15644,135,3703],["2021-03-24",15644,19,3722],["2021-03-25",15644,24,3746],["2021-03-26",15644,14,3760],["2021-03-27",15644,3,3763],["2021-03-28",15644,4,3767],["2021-03-29",15644,40,3807],["2021-03-30",15644,143,3950],["2021-03-31",15644,32,3982],["2021-04-01",15644,37,4019],["2021-04-02",15644,37,4056],["2021-04-03",15644,23,4079],["2021-04-04",15644,2,4081],["2021-04-05",15644,25,4106],["2021-04-06",15644,142,4248],["2021-04-07",15644,29,4277],["2021-04-08",15644,27,4304],["2021-04-09",15644,42,4346],["2021-04-10",15644,22,4368],["2021-04-11",15644,2,4370],["2021-04-12",15644,74,4444],["2021-04-13",15644,190,4634],["2021-04-14",15644,118,4752],["2021-04-15",15644,25,4777],["2021-04-16",15644,18,4795],["2021-04-17",15644,6,4801],["2021-04-18",15644,2,4803],["2021-04-19",15644,23,4826],["2021-04-20",15644,119,4945],["2021-04-21",15644,41,4986],["2021-04-22",15644,39,5025],["2021-04-23",15644,47,5072],["2021-04-24",15644,19,5091],["2021-04-25",15644,4,5095],["2021-04-26",15644,25,5120],["2021-04-27",15644,101,5221],["2021-04-28",15644,26,5247],["2021-04-29",15644,29,5276],["2021-04-30",15644,23,5299],["2021-05-01",15644,15,5314],["2021-05-02",15644,3,5317],["2021-05-03",15644,25,5342],["2021-05-04",15644,17,5359],["2021-05-05",15644,84,5443],["2021-05-06",15644,14,5457],["2021-05-07",15644,18,5475],["2021-05-08",15644,11,5486],["2021-05-09",15644,2,5488],["2021-05-10",15644,10,5498],["2021-05-11",15644,41,5539],["2021-05-12",15644,61,5600],["2021-05-13",15644,27,5627],["2021-05-14",15644,16,5643],["2021-05-15",15644,9,5652],["2021-05-16",15644,3,5655],["2021-05-17",15644,18,5673],["2021-05-18",15644,125,5798],["2021-05-19",15644,65,5863],["2021-05-20",15644,39,5902],["2021-05-21",15644,11,5913],["2021-05-22",15644,8,5921],["2021-05-23",15644,2,5923],["2021-05-24",15644,15,5938],["2021-05-25",15644,22,5960],["2021-05-26",15644,48,6008],["2021-05-27",15644,15,6023],["2021-05-28",15644,15,6038],["2021-05-29",15644,10,6048],["2021-05-30",15644,1,6049],["2021-05-31",15644,4,6053],["2021-06-01",15644,25,6078],["2021-06-02",15644,34,6112],["2021-06-03",15644,20,6132],["2021-06-04",15644,13,6145],["2021-06-05",15644,4,6149],["2021-06-06",15644,5,6154],["2021-06-07",15644,18,6172],["2021-06-08",15644,16,6188],["2021-06-09",15644,21,6209],["2021-06-10",15644,15,6224],["2021-06-11",15644,16,6240],["2021-06-12",15644,18,6258],["2021-06-13",15644,2,6260],["2021-06-14",15644,16,6276],["2021-06-15",15644,8,6284],["2021-06-16",15644,28,6312],["2021-06-17",15644,9,6321],["2021-06-18",15644,11,6332],["2021-06-19",15644,3,6335],["2021-06-21",15644,8,6343],["2021-06-22",15644,11,6354],["2021-06-23",15644,19,6373],["2021-06-24",15644,9,6382],["2021-06-25",15644,13,6395],["2021-06-26",15644,3,6398],["2021-06-27",15644,4,6402],["2021-06-28",15644,6,6408],["2021-06-29",15644,15,6423],["2021-06-30",15644,13,6436],["2021-07-01",15644,22,6458],["2021-07-02",15644,3,6461],["2021-07-03",15644,4,6465],["2021-07-04",15644,1,6466],["2021-07-05",15644,8,6474],["2021-07-06",15644,15,6489],["2021-07-07",15644,11,6500],["2021-07-08",15644,6,6506],["2021-07-09",15644,16,6522],["2021-07-10",15644,2,6524],["2021-07-11",15644,3,6527],["2021-07-12",15644,16,6543],["2021-07-13",15644,13,6556],["2021-07-14",15644,14,6570],["2021-07-15",15644,7,6577],["2021-07-16",15644,13,6590],["2021-07-17",15644,2,6592],["2021-07-18",15644,3,6595],["2021-07-19",15644,12,6607],["2021-07-20",15644,18,6625],["2021-07-21",15644,25,6650],["2021-07-22",15644,14,6664],["2021-07-23",15644,12,6676],["2021-07-24",15644,16,6692],["2021-07-25",15644,2,6694],["2021-07-26",15644,16,6710],["2021-07-27",15644,32,6742],["2021-07-28",15644,29,6771],["2021-07-29",15644,26,6797],["2021-07-30",15644,26,6823],["2021-07-31",15644,5,6828],["2021-08-01",15644,3,6831],["2021-08-02",15644,39,6870],["2021-08-03",15644,33,6903],["2021-08-04",15644,19,6922],["2021-08-05",15644,58,6980],["2021-08-06",15644,29,7009],["2021-08-07",15644,11,7020],["2021-08-08",15644,15,7035],["2021-08-09",15644,33,7068],["2021-08-10",15644,48,7116],["2021-08-11",15644,30,7146],["2021-08-12",15644,42,7188],["2021-08-13",15644,41,7229],["2021-08-14",15644,15,7244],["2021-08-15",15644,5,7249],["2021-08-16",15644,32,7281],["2021-08-17",15644,46,7327],["2021-08-18",15644,39,7366],["2021-08-19",15644,45,7411],["2021-08-20",15644,64,7475],["2021-08-21",15644,14,7489],["2021-08-22",15644,9,7498],["2021-08-23",15644,34,7532],["2021-08-24",15644,38,7570],["2021-08-25",15644,20,7590],["2021-08-26",15644,30,7620],["2021-08-27",15644,49,7669],["2021-08-28",15644,16,7685],["2021-08-29",15644,10,7695],["2021-08-30",15644,45,7740],["2021-08-31",15644,72,7812],["2021-09-01",15644,47,7859],["2021-09-02",15644,55,7914],["2021-09-03",15644,32,7946],["2021-09-04",15644,22,7968],["2021-09-05",15644,7,7975],["2021-09-06",15644,7,7982],["2021-09-07",15644,46,8028],["2021-09-08",15644,37,8065],["2021-09-09",15644,53,8118],["2021-09-10",15644,46,8164],["2021-09-11",15644,9,8173],["2021-09-12",15644,7,8180],["2021-09-13",15644,24,8204],["2021-09-14",15644,37,8241],["2021-09-15",15644,43,8284],["2021-09-16",15644,30,8314],["2021-09-17",15644,42,8356],["2021-09-18",15644,15,8371],["2021-09-19",15644,2,8373],["2021-09-20",15644,16,8389],["2021-09-21",15644,40,8429],["2021-09-22",15644,28,8457],["2021-09-23",15644,27,8484],["2021-09-24",15644,41,8525],["2021-09-25",15644,11,8536],["2021-09-26",15644,8,8544],["2021-09-27",15644,10,8554],["2021-09-28",15644,31,8585],["2021-09-29",15644,15,8600],["2021-09-30",15644,28,8628],["2021-10-01",15644,17,8645],["2021-10-02",15644,9,8654],["2021-10-03",15644,2,8656],["2021-10-04",15644,15,8671],["2021-10-05",15644,28,8699],["2021-10-06",15644,21,8720],["2021-10-07",15644,13,8733],["2021-10-08",15644,20,8753],["2021-10-09",15644,6,8759],["2021-10-10",15644,1,8760],["2021-10-11",15644,6,8766],["2021-10-12",15644,25,8791],["2021-10-13",15644,11,8802],["2021-10-14",15644,14,8816],["2021-10-15",15644,14,8830],["2021-10-16",15644,4,8834],["2021-10-17",15644,4,8838],["2021-10-18",15644,16,8854],["2021-10-19",15644,13,8867],["2021-10-20",15644,10,8877],["2021-10-21",15644,9,8886],["2021-10-22",15644,21,8907],["2021-10-23",15644,12,8919],["2021-10-24",15644,2,8921],["2021-10-25",15644,27,8948],["2021-10-26",15644,29,8977],["2021-10-27",15644,38,9015],["2021-10-28",15644,59,9074],["2021-10-29",15644,44,9118],["2021-10-30",15644,3,9121],["2021-10-31",15644,6,9127],["2021-11-01",15644,54,9181],["2021-11-02",15644,89,9270],["2021-11-03",15644,48,9318],["2021-11-04",15644,60,9378],["2021-11-05",15644,18,9396],["2021-11-06",15644,17,9413],["2021-11-07",15644,6,9419],["2021-11-08",15644,21,9440],["2021-11-09",15644,59,9499],["2021-11-10",15644,48,9547],["2021-11-11",15644,20,9567],["2021-11-12",15644,30,9597],["2021-11-13",15644,6,9603],["2021-11-14",15644,4,9607],["2021-11-15",15644,24,9631],["2021-11-16",15644,63,9694],["2021-11-17",15644,55,9749],["2021-11-18",15644,74,9823],["2021-11-19",15644,27,9850],["2021-11-20",15644,9,9859],["2021-11-21",15644,2,9861],["2021-11-22",15644,20,9881],["2021-11-23",15644,47,9928],["2021-11-24",15644,18,9946],["2021-11-26",15644,6,9952],["2021-11-27",15644,7,9959],["2021-11-28",15644,3,9962],["2021-11-29",15644,22,9984],["2021-11-30",15644,123,10107],["2021-12-01",15644,30,10137],["2021-12-02",15644,43,10180],["2021-12-03",15644,21,10201],["2021-12-04",15644,13,10214],["2021-12-05",15644,2,10216],["2021-12-06",15644,11,10227],["2021-12-07",15644,42,10269],["2021-12-08",15644,26,10295],["2021-12-09",15644,28,10323],["2021-12-10",15644,16,10339],["2021-12-11",15644,3,10342],["2021-12-12",15644,2,10344],["2021-12-13",15644,11,10355],["2021-12-14",15644,29,10384],["2021-12-15",15644,22,10406],["2021-12-16",15644,25,10431],["2021-12-17",15644,9,10440],["2021-12-18",15644,11,10451],["2021-12-19",15644,1,10452],["2021-12-20",15644,28,10480],["2021-12-21",15644,40,10520],["2021-12-22",15644,26,10546],["2021-12-23",15644,9,10555],["2021-12-24",15644,2,10557],["2021-12-26",15644,7,10564],["2021-12-27",15644,14,10578],["2021-12-28",15644,50,10628],["2021-12-29",15644,20,10648],["2021-12-30",15644,38,10686],["2021-12-31",15644,12,10698],["2022-01-01",15644,1,10699],["2022-01-02",15644,3,10702],["2022-01-03",15644,11,10713]]} \ No newline at end of file diff --git a/public/data/overall/vaccinations/by-county/Terrell.json b/public/data/overall/vaccinations/by-county/Terrell.json new file mode 100644 index 000000000..caf8ecca2 --- /dev/null +++ b/public/data/overall/vaccinations/by-county/Terrell.json @@ -0,0 +1 @@ +{"segment":{"county":"Terrell"},"headers":["report_date","population","vaccinations","total_vaccinations"],"rows":[["2020-12-17",8467,2,2],["2020-12-18",8467,4,6],["2020-12-19",8467,1,7],["2020-12-20",8467,1,8],["2020-12-21",8467,6,14],["2020-12-22",8467,7,21],["2020-12-23",8467,17,38],["2020-12-24",8467,1,39],["2020-12-26",8467,4,43],["2020-12-28",8467,7,50],["2020-12-29",8467,8,58],["2020-12-30",8467,7,65],["2020-12-31",8467,2,67],["2021-01-01",8467,5,72],["2021-01-04",8467,17,89],["2021-01-05",8467,2,91],["2021-01-06",8467,36,127],["2021-01-07",8467,20,147],["2021-01-08",8467,15,162],["2021-01-09",8467,1,163],["2021-01-10",8467,6,169],["2021-01-11",8467,31,200],["2021-01-12",8467,45,245],["2021-01-13",8467,73,318],["2021-01-14",8467,65,383],["2021-01-15",8467,71,454],["2021-01-16",8467,29,483],["2021-01-17",8467,8,491],["2021-01-18",8467,108,599],["2021-01-19",8467,75,674],["2021-01-20",8467,65,739],["2021-01-21",8467,63,802],["2021-01-22",8467,71,873],["2021-01-23",8467,4,877],["2021-01-25",8467,67,944],["2021-01-26",8467,92,1036],["2021-01-27",8467,92,1128],["2021-01-28",8467,70,1198],["2021-01-29",8467,55,1253],["2021-01-31",8467,6,1259],["2021-02-01",8467,50,1309],["2021-02-02",8467,51,1360],["2021-02-03",8467,55,1415],["2021-02-04",8467,72,1487],["2021-02-05",8467,62,1549],["2021-02-06",8467,26,1575],["2021-02-07",8467,7,1582],["2021-02-08",8467,78,1660],["2021-02-09",8467,79,1739],["2021-02-10",8467,81,1820],["2021-02-11",8467,65,1885],["2021-02-12",8467,77,1962],["2021-02-13",8467,9,1971],["2021-02-14",8467,2,1973],["2021-02-15",8467,66,2039],["2021-02-16",8467,67,2106],["2021-02-17",8467,55,2161],["2021-02-18",8467,117,2278],["2021-02-19",8467,86,2364],["2021-02-20",8467,6,2370],["2021-02-22",8467,63,2433],["2021-02-23",8467,100,2533],["2021-02-24",8467,46,2579],["2021-02-25",8467,75,2654],["2021-02-26",8467,82,2736],["2021-02-27",8467,5,2741],["2021-02-28",8467,1,2742],["2021-03-01",8467,61,2803],["2021-03-02",8467,92,2895],["2021-03-03",8467,69,2964],["2021-03-04",8467,67,3031],["2021-03-05",8467,52,3083],["2021-03-06",8467,1,3084],["2021-03-07",8467,2,3086],["2021-03-08",8467,56,3142],["2021-03-09",8467,71,3213],["2021-03-10",8467,53,3266],["2021-03-11",8467,53,3319],["2021-03-12",8467,87,3406],["2021-03-13",8467,14,3420],["2021-03-14",8467,1,3421],["2021-03-15",8467,59,3480],["2021-03-16",8467,104,3584],["2021-03-17",8467,68,3652],["2021-03-18",8467,39,3691],["2021-03-19",8467,68,3759],["2021-03-20",8467,16,3775],["2021-03-21",8467,1,3776],["2021-03-22",8467,54,3830],["2021-03-23",8467,51,3881],["2021-03-24",8467,72,3953],["2021-03-25",8467,54,4007],["2021-03-26",8467,80,4087],["2021-03-27",8467,6,4093],["2021-03-28",8467,5,4098],["2021-03-29",8467,50,4148],["2021-03-30",8467,78,4226],["2021-03-31",8467,107,4333],["2021-04-01",8467,53,4386],["2021-04-02",8467,30,4416],["2021-04-03",8467,7,4423],["2021-04-04",8467,2,4425],["2021-04-05",8467,52,4477],["2021-04-06",8467,67,4544],["2021-04-07",8467,72,4616],["2021-04-08",8467,57,4673],["2021-04-09",8467,97,4770],["2021-04-10",8467,8,4778],["2021-04-11",8467,3,4781],["2021-04-12",8467,66,4847],["2021-04-13",8467,85,4932],["2021-04-14",8467,88,5020],["2021-04-15",8467,42,5062],["2021-04-16",8467,89,5151],["2021-04-17",8467,2,5153],["2021-04-18",8467,6,5159],["2021-04-19",8467,60,5219],["2021-04-20",8467,66,5285],["2021-04-21",8467,50,5335],["2021-04-22",8467,57,5392],["2021-04-23",8467,78,5470],["2021-04-24",8467,7,5477],["2021-04-25",8467,3,5480],["2021-04-26",8467,48,5528],["2021-04-27",8467,66,5594],["2021-04-28",8467,74,5668],["2021-04-29",8467,35,5703],["2021-04-30",8467,46,5749],["2021-05-01",8467,8,5757],["2021-05-02",8467,4,5761],["2021-05-03",8467,44,5805],["2021-05-04",8467,44,5849],["2021-05-05",8467,36,5885],["2021-05-06",8467,26,5911],["2021-05-07",8467,36,5947],["2021-05-08",8467,8,5955],["2021-05-10",8467,23,5978],["2021-05-11",8467,45,6023],["2021-05-12",8467,42,6065],["2021-05-13",8467,28,6093],["2021-05-14",8467,40,6133],["2021-05-15",8467,1,6134],["2021-05-16",8467,8,6142],["2021-05-17",8467,35,6177],["2021-05-18",8467,40,6217],["2021-05-19",8467,51,6268],["2021-05-20",8467,36,6304],["2021-05-21",8467,49,6353],["2021-05-22",8467,9,6362],["2021-05-23",8467,3,6365],["2021-05-24",8467,19,6384],["2021-05-25",8467,19,6403],["2021-05-26",8467,39,6442],["2021-05-27",8467,20,6462],["2021-05-28",8467,43,6505],["2021-05-29",8467,31,6536],["2021-05-31",8467,2,6538],["2021-06-01",8467,19,6557],["2021-06-02",8467,34,6591],["2021-06-03",8467,13,6604],["2021-06-04",8467,33,6637],["2021-06-05",8467,4,6641],["2021-06-06",8467,6,6647],["2021-06-07",8467,26,6673],["2021-06-08",8467,19,6692],["2021-06-09",8467,26,6718],["2021-06-10",8467,17,6735],["2021-06-11",8467,41,6776],["2021-06-12",8467,8,6784],["2021-06-13",8467,1,6785],["2021-06-14",8467,24,6809],["2021-06-15",8467,26,6835],["2021-06-16",8467,30,6865],["2021-06-17",8467,11,6876],["2021-06-18",8467,35,6911],["2021-06-19",8467,3,6914],["2021-06-20",8467,1,6915],["2021-06-21",8467,7,6922],["2021-06-22",8467,11,6933],["2021-06-23",8467,30,6963],["2021-06-24",8467,14,6977],["2021-06-25",8467,29,7006],["2021-06-26",8467,39,7045],["2021-06-27",8467,2,7047],["2021-06-28",8467,24,7071],["2021-06-29",8467,6,7077],["2021-06-30",8467,16,7093],["2021-07-01",8467,6,7099],["2021-07-02",8467,16,7115],["2021-07-03",8467,6,7121],["2021-07-05",8467,11,7132],["2021-07-06",8467,18,7150],["2021-07-07",8467,34,7184],["2021-07-08",8467,13,7197],["2021-07-09",8467,17,7214],["2021-07-10",8467,1,7215],["2021-07-11",8467,4,7219],["2021-07-12",8467,13,7232],["2021-07-13",8467,12,7244],["2021-07-14",8467,22,7266],["2021-07-15",8467,17,7283],["2021-07-16",8467,31,7314],["2021-07-17",8467,9,7323],["2021-07-18",8467,4,7327],["2021-07-19",8467,13,7340],["2021-07-20",8467,7,7347],["2021-07-21",8467,33,7380],["2021-07-22",8467,11,7391],["2021-07-23",8467,23,7414],["2021-07-24",8467,11,7425],["2021-07-25",8467,8,7433],["2021-07-26",8467,13,7446],["2021-07-27",8467,25,7471],["2021-07-28",8467,25,7496],["2021-07-29",8467,23,7519],["2021-07-30",8467,37,7556],["2021-07-31",8467,17,7573],["2021-08-01",8467,3,7576],["2021-08-02",8467,17,7593],["2021-08-03",8467,30,7623],["2021-08-04",8467,44,7667],["2021-08-05",8467,30,7697],["2021-08-06",8467,48,7745],["2021-08-07",8467,16,7761],["2021-08-08",8467,13,7774],["2021-08-09",8467,27,7801],["2021-08-10",8467,23,7824],["2021-08-11",8467,54,7878],["2021-08-12",8467,75,7953],["2021-08-13",8467,46,7999],["2021-08-14",8467,36,8035],["2021-08-15",8467,8,8043],["2021-08-16",8467,43,8086],["2021-08-17",8467,31,8117],["2021-08-18",8467,60,8177],["2021-08-19",8467,27,8204],["2021-08-20",8467,42,8246],["2021-08-21",8467,19,8265],["2021-08-22",8467,9,8274],["2021-08-23",8467,45,8319],["2021-08-24",8467,28,8347],["2021-08-25",8467,56,8403],["2021-08-26",8467,39,8442],["2021-08-27",8467,66,8508],["2021-08-28",8467,10,8518],["2021-08-29",8467,11,8529],["2021-08-30",8467,48,8577],["2021-08-31",8467,39,8616],["2021-09-01",8467,47,8663],["2021-09-02",8467,55,8718],["2021-09-03",8467,47,8765],["2021-09-04",8467,15,8780],["2021-09-05",8467,11,8791],["2021-09-06",8467,2,8793],["2021-09-07",8467,29,8822],["2021-09-08",8467,69,8891],["2021-09-09",8467,35,8926],["2021-09-10",8467,69,8995],["2021-09-11",8467,32,9027],["2021-09-12",8467,8,9035],["2021-09-13",8467,37,9072],["2021-09-14",8467,51,9123],["2021-09-15",8467,54,9177],["2021-09-16",8467,28,9205],["2021-09-17",8467,53,9258],["2021-09-18",8467,11,9269],["2021-09-19",8467,8,9277],["2021-09-20",8467,47,9324],["2021-09-21",8467,32,9356],["2021-09-22",8467,47,9403],["2021-09-23",8467,21,9424],["2021-09-24",8467,39,9463],["2021-09-25",8467,4,9467],["2021-09-26",8467,7,9474],["2021-09-27",8467,31,9505],["2021-09-28",8467,24,9529],["2021-09-29",8467,45,9574],["2021-09-30",8467,25,9599],["2021-10-01",8467,60,9659],["2021-10-02",8467,11,9670],["2021-10-03",8467,7,9677],["2021-10-04",8467,17,9694],["2021-10-05",8467,36,9730],["2021-10-06",8467,34,9764],["2021-10-07",8467,16,9780],["2021-10-08",8467,43,9823],["2021-10-09",8467,10,9833],["2021-10-10",8467,7,9840],["2021-10-11",8467,11,9851],["2021-10-12",8467,37,9888],["2021-10-13",8467,31,9919],["2021-10-14",8467,24,9943],["2021-10-15",8467,29,9972],["2021-10-16",8467,22,9994],["2021-10-17",8467,4,9998],["2021-10-18",8467,15,10013],["2021-10-19",8467,15,10028],["2021-10-20",8467,21,10049],["2021-10-21",8467,12,10061],["2021-10-22",8467,19,10080],["2021-10-23",8467,4,10084],["2021-10-24",8467,6,10090],["2021-10-25",8467,29,10119],["2021-10-26",8467,29,10148],["2021-10-27",8467,54,10202],["2021-10-28",8467,36,10238],["2021-10-29",8467,46,10284],["2021-10-30",8467,13,10297],["2021-10-31",8467,2,10299],["2021-11-01",8467,39,10338],["2021-11-02",8467,38,10376],["2021-11-03",8467,74,10450],["2021-11-04",8467,34,10484],["2021-11-05",8467,55,10539],["2021-11-06",8467,17,10556],["2021-11-07",8467,5,10561],["2021-11-08",8467,64,10625],["2021-11-09",8467,20,10645],["2021-11-10",8467,63,10708],["2021-11-11",8467,22,10730],["2021-11-12",8467,57,10787],["2021-11-13",8467,6,10793],["2021-11-14",8467,1,10794],["2021-11-15",8467,87,10881],["2021-11-16",8467,24,10905],["2021-11-17",8467,66,10971],["2021-11-18",8467,14,10985],["2021-11-19",8467,58,11043],["2021-11-20",8467,19,11062],["2021-11-21",8467,3,11065],["2021-11-22",8467,46,11111],["2021-11-23",8467,34,11145],["2021-11-24",8467,33,11178],["2021-11-26",8467,1,11179],["2021-11-27",8467,2,11181],["2021-11-28",8467,4,11185],["2021-11-29",8467,40,11225],["2021-11-30",8467,32,11257],["2021-12-01",8467,57,11314],["2021-12-02",8467,22,11336],["2021-12-03",8467,65,11401],["2021-12-04",8467,9,11410],["2021-12-05",8467,1,11411],["2021-12-06",8467,47,11458],["2021-12-07",8467,26,11484],["2021-12-08",8467,81,11565],["2021-12-09",8467,24,11589],["2021-12-10",8467,45,11634],["2021-12-11",8467,18,11652],["2021-12-12",8467,3,11655],["2021-12-13",8467,37,11692],["2021-12-14",8467,18,11710],["2021-12-15",8467,43,11753],["2021-12-16",8467,14,11767],["2021-12-17",8467,39,11806],["2021-12-18",8467,3,11809],["2021-12-19",8467,4,11813],["2021-12-20",8467,41,11854],["2021-12-21",8467,29,11883],["2021-12-22",8467,38,11921],["2021-12-23",8467,12,11933],["2021-12-24",8467,1,11934],["2021-12-26",8467,3,11937],["2021-12-27",8467,28,11965],["2021-12-28",8467,15,11980],["2021-12-29",8467,40,12020],["2021-12-30",8467,28,12048],["2021-12-31",8467,27,12075],["2022-01-01",8467,4,12079],["2022-01-02",8467,4,12083],["2022-01-03",8467,14,12097]]} \ No newline at end of file diff --git a/public/data/overall/vaccinations/by-county/Thomas.json b/public/data/overall/vaccinations/by-county/Thomas.json new file mode 100644 index 000000000..004936d8b --- /dev/null +++ b/public/data/overall/vaccinations/by-county/Thomas.json @@ -0,0 +1 @@ +{"segment":{"county":"Thomas"},"headers":["report_date","population","vaccinations","total_vaccinations"],"rows":[["2020-12-12",44431,1,1],["2020-12-17",44431,9,10],["2020-12-18",44431,29,39],["2020-12-19",44431,80,119],["2020-12-20",44431,1,120],["2020-12-21",44431,106,226],["2020-12-22",44431,35,261],["2020-12-23",44431,188,449],["2020-12-24",44431,8,457],["2020-12-26",44431,2,459],["2020-12-27",44431,3,462],["2020-12-28",44431,131,593],["2020-12-29",44431,58,651],["2020-12-30",44431,181,832],["2020-12-31",44431,31,863],["2021-01-01",44431,5,868],["2021-01-03",44431,3,871],["2021-01-04",44431,210,1081],["2021-01-05",44431,58,1139],["2021-01-06",44431,166,1305],["2021-01-07",44431,62,1367],["2021-01-08",44431,158,1525],["2021-01-09",44431,2,1527],["2021-01-10",44431,3,1530],["2021-01-11",44431,362,1892],["2021-01-12",44431,387,2279],["2021-01-13",44431,431,2710],["2021-01-14",44431,656,3366],["2021-01-15",44431,221,3587],["2021-01-16",44431,49,3636],["2021-01-17",44431,3,3639],["2021-01-18",44431,296,3935],["2021-01-19",44431,532,4467],["2021-01-20",44431,432,4899],["2021-01-21",44431,454,5353],["2021-01-22",44431,289,5642],["2021-01-23",44431,61,5703],["2021-01-24",44431,3,5706],["2021-01-25",44431,358,6064],["2021-01-26",44431,493,6557],["2021-01-27",44431,376,6933],["2021-01-28",44431,401,7334],["2021-01-29",44431,353,7687],["2021-01-30",44431,3,7690],["2021-01-31",44431,2,7692],["2021-02-01",44431,275,7967],["2021-02-02",44431,380,8347],["2021-02-03",44431,377,8724],["2021-02-04",44431,605,9329],["2021-02-05",44431,313,9642],["2021-02-06",44431,46,9688],["2021-02-07",44431,3,9691],["2021-02-08",44431,387,10078],["2021-02-09",44431,616,10694],["2021-02-10",44431,364,11058],["2021-02-11",44431,162,11220],["2021-02-12",44431,174,11394],["2021-02-13",44431,99,11493],["2021-02-14",44431,2,11495],["2021-02-15",44431,205,11700],["2021-02-16",44431,189,11889],["2021-02-17",44431,337,12226],["2021-02-18",44431,474,12700],["2021-02-19",44431,187,12887],["2021-02-20",44431,58,12945],["2021-02-21",44431,2,12947],["2021-02-22",44431,204,13151],["2021-02-23",44431,516,13667],["2021-02-24",44431,288,13955],["2021-02-25",44431,356,14311],["2021-02-26",44431,287,14598],["2021-02-27",44431,6,14604],["2021-02-28",44431,7,14611],["2021-03-01",44431,258,14869],["2021-03-02",44431,151,15020],["2021-03-03",44431,317,15337],["2021-03-04",44431,109,15446],["2021-03-05",44431,199,15645],["2021-03-06",44431,14,15659],["2021-03-07",44431,22,15681],["2021-03-08",44431,449,16130],["2021-03-09",44431,204,16334],["2021-03-10",44431,265,16599],["2021-03-11",44431,194,16793],["2021-03-12",44431,207,17000],["2021-03-13",44431,106,17106],["2021-03-14",44431,25,17131],["2021-03-15",44431,312,17443],["2021-03-16",44431,254,17697],["2021-03-17",44431,381,18078],["2021-03-18",44431,120,18198],["2021-03-19",44431,186,18384],["2021-03-20",44431,26,18410],["2021-03-21",44431,22,18432],["2021-03-22",44431,309,18741],["2021-03-23",44431,175,18916],["2021-03-24",44431,339,19255],["2021-03-25",44431,342,19597],["2021-03-26",44431,304,19901],["2021-03-27",44431,17,19918],["2021-03-28",44431,23,19941],["2021-03-29",44431,503,20444],["2021-03-30",44431,342,20786],["2021-03-31",44431,401,21187],["2021-04-01",44431,325,21512],["2021-04-02",44431,403,21915],["2021-04-03",44431,33,21948],["2021-04-04",44431,48,21996],["2021-04-05",44431,428,22424],["2021-04-06",44431,206,22630],["2021-04-07",44431,399,23029],["2021-04-08",44431,230,23259],["2021-04-09",44431,270,23529],["2021-04-10",44431,44,23573],["2021-04-11",44431,39,23612],["2021-04-12",44431,270,23882],["2021-04-13",44431,206,24088],["2021-04-14",44431,373,24461],["2021-04-15",44431,196,24657],["2021-04-16",44431,249,24906],["2021-04-17",44431,23,24929],["2021-04-18",44431,16,24945],["2021-04-19",44431,288,25233],["2021-04-20",44431,219,25452],["2021-04-21",44431,245,25697],["2021-04-22",44431,305,26002],["2021-04-23",44431,336,26338],["2021-04-24",44431,26,26364],["2021-04-25",44431,15,26379],["2021-04-26",44431,231,26610],["2021-04-27",44431,153,26763],["2021-04-28",44431,305,27068],["2021-04-29",44431,179,27247],["2021-04-30",44431,204,27451],["2021-05-01",44431,38,27489],["2021-05-02",44431,15,27504],["2021-05-03",44431,124,27628],["2021-05-04",44431,155,27783],["2021-05-05",44431,189,27972],["2021-05-06",44431,133,28105],["2021-05-07",44431,109,28214],["2021-05-08",44431,26,28240],["2021-05-09",44431,7,28247],["2021-05-10",44431,82,28329],["2021-05-11",44431,182,28511],["2021-05-12",44431,124,28635],["2021-05-13",44431,149,28784],["2021-05-14",44431,108,28892],["2021-05-15",44431,38,28930],["2021-05-16",44431,25,28955],["2021-05-17",44431,114,29069],["2021-05-18",44431,172,29241],["2021-05-19",44431,260,29501],["2021-05-20",44431,171,29672],["2021-05-21",44431,184,29856],["2021-05-22",44431,26,29882],["2021-05-23",44431,21,29903],["2021-05-24",44431,52,29955],["2021-05-25",44431,133,30088],["2021-05-26",44431,86,30174],["2021-05-27",44431,107,30281],["2021-05-28",44431,24,30305],["2021-05-29",44431,24,30329],["2021-05-30",44431,9,30338],["2021-05-31",44431,13,30351],["2021-06-01",44431,115,30466],["2021-06-02",44431,76,30542],["2021-06-03",44431,115,30657],["2021-06-04",44431,76,30733],["2021-06-05",44431,23,30756],["2021-06-06",44431,30,30786],["2021-06-07",44431,58,30844],["2021-06-08",44431,91,30935],["2021-06-09",44431,74,31009],["2021-06-10",44431,231,31240],["2021-06-11",44431,71,31311],["2021-06-12",44431,30,31341],["2021-06-13",44431,19,31360],["2021-06-14",44431,57,31417],["2021-06-15",44431,90,31507],["2021-06-16",44431,54,31561],["2021-06-17",44431,94,31655],["2021-06-18",44431,57,31712],["2021-06-19",44431,34,31746],["2021-06-20",44431,7,31753],["2021-06-21",44431,43,31796],["2021-06-22",44431,92,31888],["2021-06-23",44431,53,31941],["2021-06-24",44431,91,32032],["2021-06-25",44431,52,32084],["2021-06-26",44431,19,32103],["2021-06-27",44431,13,32116],["2021-06-28",44431,30,32146],["2021-06-29",44431,66,32212],["2021-06-30",44431,37,32249],["2021-07-01",44431,94,32343],["2021-07-02",44431,44,32387],["2021-07-03",44431,11,32398],["2021-07-04",44431,4,32402],["2021-07-05",44431,34,32436],["2021-07-06",44431,49,32485],["2021-07-07",44431,32,32517],["2021-07-08",44431,77,32594],["2021-07-09",44431,61,32655],["2021-07-10",44431,32,32687],["2021-07-11",44431,14,32701],["2021-07-12",44431,33,32734],["2021-07-13",44431,99,32833],["2021-07-14",44431,50,32883],["2021-07-15",44431,87,32970],["2021-07-16",44431,59,33029],["2021-07-17",44431,38,33067],["2021-07-18",44431,13,33080],["2021-07-19",44431,40,33120],["2021-07-20",44431,97,33217],["2021-07-21",44431,63,33280],["2021-07-22",44431,120,33400],["2021-07-23",44431,116,33516],["2021-07-24",44431,52,33568],["2021-07-25",44431,25,33593],["2021-07-26",44431,92,33685],["2021-07-27",44431,150,33835],["2021-07-28",44431,148,33983],["2021-07-29",44431,176,34159],["2021-07-30",44431,151,34310],["2021-07-31",44431,70,34380],["2021-08-01",44431,44,34424],["2021-08-02",44431,113,34537],["2021-08-03",44431,151,34688],["2021-08-04",44431,369,35057],["2021-08-05",44431,185,35242],["2021-08-06",44431,155,35397],["2021-08-07",44431,75,35472],["2021-08-08",44431,70,35542],["2021-08-09",44431,115,35657],["2021-08-10",44431,158,35815],["2021-08-11",44431,238,36053],["2021-08-12",44431,176,36229],["2021-08-13",44431,157,36386],["2021-08-14",44431,88,36474],["2021-08-15",44431,56,36530],["2021-08-16",44431,129,36659],["2021-08-17",44431,194,36853],["2021-08-18",44431,344,37197],["2021-08-19",44431,199,37396],["2021-08-20",44431,290,37686],["2021-08-21",44431,113,37799],["2021-08-22",44431,65,37864],["2021-08-23",44431,134,37998],["2021-08-24",44431,180,38178],["2021-08-25",44431,481,38659],["2021-08-26",44431,226,38885],["2021-08-27",44431,213,39098],["2021-08-28",44431,110,39208],["2021-08-29",44431,64,39272],["2021-08-30",44431,136,39408],["2021-08-31",44431,129,39537],["2021-09-01",44431,321,39858],["2021-09-02",44431,203,40061],["2021-09-03",44431,161,40222],["2021-09-04",44431,73,40295],["2021-09-05",44431,34,40329],["2021-09-06",44431,7,40336],["2021-09-07",44431,149,40485],["2021-09-08",44431,257,40742],["2021-09-09",44431,149,40891],["2021-09-10",44431,216,41107],["2021-09-11",44431,65,41172],["2021-09-12",44431,41,41213],["2021-09-13",44431,105,41318],["2021-09-14",44431,108,41426],["2021-09-15",44431,188,41614],["2021-09-16",44431,141,41755],["2021-09-17",44431,111,41866],["2021-09-18",44431,52,41918],["2021-09-19",44431,27,41945],["2021-09-20",44431,70,42015],["2021-09-21",44431,95,42110],["2021-09-22",44431,153,42263],["2021-09-23",44431,105,42368],["2021-09-24",44431,105,42473],["2021-09-25",44431,46,42519],["2021-09-26",44431,29,42548],["2021-09-27",44431,280,42828],["2021-09-28",44431,303,43131],["2021-09-29",44431,307,43438],["2021-09-30",44431,245,43683],["2021-10-01",44431,304,43987],["2021-10-02",44431,36,44023],["2021-10-03",44431,19,44042],["2021-10-04",44431,50,44092],["2021-10-05",44431,82,44174],["2021-10-06",44431,264,44438],["2021-10-07",44431,69,44507],["2021-10-08",44431,73,44580],["2021-10-09",44431,18,44598],["2021-10-10",44431,5,44603],["2021-10-11",44431,36,44639],["2021-10-12",44431,44,44683],["2021-10-13",44431,216,44899],["2021-10-14",44431,52,44951],["2021-10-15",44431,32,44983],["2021-10-16",44431,35,45018],["2021-10-17",44431,20,45038],["2021-10-18",44431,38,45076],["2021-10-19",44431,58,45134],["2021-10-20",44431,177,45311],["2021-10-21",44431,51,45362],["2021-10-22",44431,54,45416],["2021-10-23",44431,25,45441],["2021-10-24",44431,15,45456],["2021-10-25",44431,67,45523],["2021-10-26",44431,94,45617],["2021-10-27",44431,201,45818],["2021-10-28",44431,167,45985],["2021-10-29",44431,74,46059],["2021-10-30",44431,23,46082],["2021-10-31",44431,20,46102],["2021-11-01",44431,54,46156],["2021-11-02",44431,133,46289],["2021-11-03",44431,197,46486],["2021-11-04",44431,161,46647],["2021-11-05",44431,90,46737],["2021-11-06",44431,83,46820],["2021-11-07",44431,22,46842],["2021-11-08",44431,66,46908],["2021-11-09",44431,173,47081],["2021-11-10",44431,228,47309],["2021-11-11",44431,126,47435],["2021-11-12",44431,113,47548],["2021-11-13",44431,25,47573],["2021-11-14",44431,13,47586],["2021-11-15",44431,67,47653],["2021-11-16",44431,197,47850],["2021-11-17",44431,280,48130],["2021-11-18",44431,167,48297],["2021-11-19",44431,88,48385],["2021-11-20",44431,129,48514],["2021-11-21",44431,27,48541],["2021-11-22",44431,75,48616],["2021-11-23",44431,112,48728],["2021-11-24",44431,58,48786],["2021-11-26",44431,47,48833],["2021-11-27",44431,43,48876],["2021-11-28",44431,37,48913],["2021-11-29",44431,87,49000],["2021-11-30",44431,170,49170],["2021-12-01",44431,431,49601],["2021-12-02",44431,145,49746],["2021-12-03",44431,128,49874],["2021-12-04",44431,58,49932],["2021-12-05",44431,32,49964],["2021-12-06",44431,67,50031],["2021-12-07",44431,153,50184],["2021-12-08",44431,197,50381],["2021-12-09",44431,148,50529],["2021-12-10",44431,76,50605],["2021-12-11",44431,148,50753],["2021-12-12",44431,17,50770],["2021-12-13",44431,59,50829],["2021-12-14",44431,156,50985],["2021-12-15",44431,207,51192],["2021-12-16",44431,114,51306],["2021-12-17",44431,94,51400],["2021-12-18",44431,43,51443],["2021-12-19",44431,23,51466],["2021-12-20",44431,81,51547],["2021-12-21",44431,141,51688],["2021-12-22",44431,136,51824],["2021-12-23",44431,77,51901],["2021-12-24",44431,19,51920],["2021-12-26",44431,22,51942],["2021-12-27",44431,89,52031],["2021-12-28",44431,134,52165],["2021-12-29",44431,99,52264],["2021-12-30",44431,142,52406],["2021-12-31",44431,57,52463],["2022-01-01",44431,3,52466],["2022-01-02",44431,25,52491],["2022-01-03",44431,32,52523]]} \ No newline at end of file diff --git a/public/data/overall/vaccinations/by-county/Tift.json b/public/data/overall/vaccinations/by-county/Tift.json new file mode 100644 index 000000000..40b251117 --- /dev/null +++ b/public/data/overall/vaccinations/by-county/Tift.json @@ -0,0 +1 @@ +{"segment":{"county":"Tift"},"headers":["report_date","population","vaccinations","total_vaccinations"],"rows":[["2020-12-14",40830,2,2],["2020-12-15",40830,1,3],["2020-12-16",40830,2,5],["2020-12-17",40830,14,19],["2020-12-18",40830,8,27],["2020-12-19",40830,1,28],["2020-12-20",40830,1,29],["2020-12-21",40830,9,38],["2020-12-22",40830,43,81],["2020-12-23",40830,113,194],["2020-12-24",40830,19,213],["2020-12-26",40830,4,217],["2020-12-28",40830,108,325],["2020-12-29",40830,107,432],["2020-12-30",40830,104,536],["2020-12-31",40830,65,601],["2021-01-01",40830,2,603],["2021-01-02",40830,2,605],["2021-01-03",40830,1,606],["2021-01-04",40830,121,727],["2021-01-05",40830,128,855],["2021-01-06",40830,86,941],["2021-01-07",40830,141,1082],["2021-01-08",40830,125,1207],["2021-01-09",40830,4,1211],["2021-01-10",40830,3,1214],["2021-01-11",40830,203,1417],["2021-01-12",40830,204,1621],["2021-01-13",40830,258,1879],["2021-01-14",40830,309,2188],["2021-01-15",40830,484,2672],["2021-01-16",40830,18,2690],["2021-01-17",40830,3,2693],["2021-01-18",40830,278,2971],["2021-01-19",40830,236,3207],["2021-01-20",40830,359,3566],["2021-01-21",40830,310,3876],["2021-01-22",40830,254,4130],["2021-01-23",40830,8,4138],["2021-01-24",40830,8,4146],["2021-01-25",40830,249,4395],["2021-01-26",40830,281,4676],["2021-01-27",40830,291,4967],["2021-01-28",40830,382,5349],["2021-01-29",40830,232,5581],["2021-01-30",40830,6,5587],["2021-01-31",40830,4,5591],["2021-02-01",40830,307,5898],["2021-02-02",40830,234,6132],["2021-02-03",40830,271,6403],["2021-02-04",40830,335,6738],["2021-02-05",40830,418,7156],["2021-02-06",40830,6,7162],["2021-02-07",40830,1,7163],["2021-02-08",40830,318,7481],["2021-02-09",40830,265,7746],["2021-02-10",40830,324,8070],["2021-02-11",40830,336,8406],["2021-02-12",40830,386,8792],["2021-02-13",40830,17,8809],["2021-02-14",40830,5,8814],["2021-02-15",40830,295,9109],["2021-02-16",40830,289,9398],["2021-02-17",40830,424,9822],["2021-02-18",40830,282,10104],["2021-02-19",40830,248,10352],["2021-02-20",40830,7,10359],["2021-02-21",40830,13,10372],["2021-02-22",40830,254,10626],["2021-02-23",40830,228,10854],["2021-02-24",40830,203,11057],["2021-02-25",40830,213,11270],["2021-02-26",40830,249,11519],["2021-02-27",40830,27,11546],["2021-02-28",40830,11,11557],["2021-03-01",40830,179,11736],["2021-03-02",40830,189,11925],["2021-03-03",40830,243,12168],["2021-03-04",40830,144,12312],["2021-03-05",40830,187,12499],["2021-03-06",40830,8,12507],["2021-03-07",40830,14,12521],["2021-03-08",40830,194,12715],["2021-03-09",40830,167,12882],["2021-03-10",40830,288,13170],["2021-03-11",40830,242,13412],["2021-03-12",40830,245,13657],["2021-03-13",40830,31,13688],["2021-03-14",40830,28,13716],["2021-03-15",40830,217,13933],["2021-03-16",40830,211,14144],["2021-03-17",40830,203,14347],["2021-03-18",40830,121,14468],["2021-03-19",40830,162,14630],["2021-03-20",40830,18,14648],["2021-03-21",40830,19,14667],["2021-03-22",40830,205,14872],["2021-03-23",40830,145,15017],["2021-03-24",40830,178,15195],["2021-03-25",40830,163,15358],["2021-03-26",40830,180,15538],["2021-03-27",40830,39,15577],["2021-03-28",40830,25,15602],["2021-03-29",40830,178,15780],["2021-03-30",40830,153,15933],["2021-03-31",40830,341,16274],["2021-04-01",40830,243,16517],["2021-04-02",40830,229,16746],["2021-04-03",40830,25,16771],["2021-04-04",40830,21,16792],["2021-04-05",40830,229,17021],["2021-04-06",40830,225,17246],["2021-04-07",40830,268,17514],["2021-04-08",40830,231,17745],["2021-04-09",40830,201,17946],["2021-04-10",40830,44,17990],["2021-04-11",40830,28,18018],["2021-04-12",40830,204,18222],["2021-04-13",40830,136,18358],["2021-04-14",40830,253,18611],["2021-04-15",40830,207,18818],["2021-04-16",40830,219,19037],["2021-04-17",40830,25,19062],["2021-04-18",40830,11,19073],["2021-04-19",40830,110,19183],["2021-04-20",40830,92,19275],["2021-04-21",40830,272,19547],["2021-04-22",40830,207,19754],["2021-04-23",40830,194,19948],["2021-04-24",40830,22,19970],["2021-04-25",40830,23,19993],["2021-04-26",40830,106,20099],["2021-04-27",40830,103,20202],["2021-04-28",40830,189,20391],["2021-04-29",40830,153,20544],["2021-04-30",40830,242,20786],["2021-05-01",40830,22,20808],["2021-05-02",40830,6,20814],["2021-05-03",40830,146,20960],["2021-05-04",40830,78,21038],["2021-05-05",40830,187,21225],["2021-05-06",40830,127,21352],["2021-05-07",40830,111,21463],["2021-05-08",40830,25,21488],["2021-05-09",40830,16,21504],["2021-05-10",40830,62,21566],["2021-05-11",40830,72,21638],["2021-05-12",40830,128,21766],["2021-05-13",40830,83,21849],["2021-05-14",40830,134,21983],["2021-05-15",40830,40,22023],["2021-05-16",40830,11,22034],["2021-05-17",40830,93,22127],["2021-05-18",40830,145,22272],["2021-05-19",40830,171,22443],["2021-05-20",40830,79,22522],["2021-05-21",40830,93,22615],["2021-05-22",40830,74,22689],["2021-05-23",40830,13,22702],["2021-05-24",40830,75,22777],["2021-05-25",40830,79,22856],["2021-05-26",40830,148,23004],["2021-05-27",40830,42,23046],["2021-05-28",40830,95,23141],["2021-05-29",40830,14,23155],["2021-05-30",40830,9,23164],["2021-05-31",40830,7,23171],["2021-06-01",40830,94,23265],["2021-06-02",40830,57,23322],["2021-06-03",40830,88,23410],["2021-06-04",40830,95,23505],["2021-06-05",40830,28,23533],["2021-06-06",40830,22,23555],["2021-06-07",40830,39,23594],["2021-06-08",40830,52,23646],["2021-06-09",40830,63,23709],["2021-06-10",40830,75,23784],["2021-06-11",40830,71,23855],["2021-06-12",40830,41,23896],["2021-06-13",40830,29,23925],["2021-06-14",40830,47,23972],["2021-06-15",40830,69,24041],["2021-06-16",40830,56,24097],["2021-06-17",40830,69,24166],["2021-06-18",40830,73,24239],["2021-06-19",40830,23,24262],["2021-06-20",40830,13,24275],["2021-06-21",40830,50,24325],["2021-06-22",40830,51,24376],["2021-06-23",40830,37,24413],["2021-06-24",40830,85,24498],["2021-06-25",40830,62,24560],["2021-06-26",40830,23,24583],["2021-06-27",40830,12,24595],["2021-06-28",40830,37,24632],["2021-06-29",40830,55,24687],["2021-06-30",40830,53,24740],["2021-07-01",40830,59,24799],["2021-07-02",40830,43,24842],["2021-07-03",40830,24,24866],["2021-07-04",40830,2,24868],["2021-07-05",40830,12,24880],["2021-07-06",40830,36,24916],["2021-07-07",40830,58,24974],["2021-07-08",40830,49,25023],["2021-07-09",40830,66,25089],["2021-07-10",40830,14,25103],["2021-07-11",40830,14,25117],["2021-07-12",40830,48,25165],["2021-07-13",40830,51,25216],["2021-07-14",40830,41,25257],["2021-07-15",40830,57,25314],["2021-07-16",40830,85,25399],["2021-07-17",40830,19,25418],["2021-07-18",40830,18,25436],["2021-07-19",40830,58,25494],["2021-07-20",40830,66,25560],["2021-07-21",40830,71,25631],["2021-07-22",40830,82,25713],["2021-07-23",40830,84,25797],["2021-07-24",40830,52,25849],["2021-07-25",40830,21,25870],["2021-07-26",40830,90,25960],["2021-07-27",40830,98,26058],["2021-07-28",40830,143,26201],["2021-07-29",40830,113,26314],["2021-07-30",40830,116,26430],["2021-07-31",40830,60,26490],["2021-08-01",40830,34,26524],["2021-08-02",40830,77,26601],["2021-08-03",40830,89,26690],["2021-08-04",40830,150,26840],["2021-08-05",40830,135,26975],["2021-08-06",40830,182,27157],["2021-08-07",40830,77,27234],["2021-08-08",40830,50,27284],["2021-08-09",40830,144,27428],["2021-08-10",40830,111,27539],["2021-08-11",40830,139,27678],["2021-08-12",40830,167,27845],["2021-08-13",40830,181,28026],["2021-08-14",40830,91,28117],["2021-08-15",40830,38,28155],["2021-08-16",40830,167,28322],["2021-08-17",40830,139,28461],["2021-08-18",40830,150,28611],["2021-08-19",40830,151,28762],["2021-08-20",40830,141,28903],["2021-08-21",40830,72,28975],["2021-08-22",40830,35,29010],["2021-08-23",40830,118,29128],["2021-08-24",40830,106,29234],["2021-08-25",40830,172,29406],["2021-08-26",40830,122,29528],["2021-08-27",40830,174,29702],["2021-08-28",40830,76,29778],["2021-08-29",40830,35,29813],["2021-08-30",40830,135,29948],["2021-08-31",40830,133,30081],["2021-09-01",40830,157,30238],["2021-09-02",40830,166,30404],["2021-09-03",40830,185,30589],["2021-09-04",40830,65,30654],["2021-09-05",40830,65,30719],["2021-09-06",40830,16,30735],["2021-09-07",40830,162,30897],["2021-09-08",40830,117,31014],["2021-09-09",40830,191,31205],["2021-09-10",40830,166,31371],["2021-09-11",40830,61,31432],["2021-09-12",40830,34,31466],["2021-09-13",40830,112,31578],["2021-09-14",40830,101,31679],["2021-09-15",40830,111,31790],["2021-09-16",40830,88,31878],["2021-09-17",40830,95,31973],["2021-09-18",40830,43,32016],["2021-09-19",40830,19,32035],["2021-09-20",40830,88,32123],["2021-09-21",40830,85,32208],["2021-09-22",40830,89,32297],["2021-09-23",40830,71,32368],["2021-09-24",40830,88,32456],["2021-09-25",40830,24,32480],["2021-09-26",40830,29,32509],["2021-09-27",40830,65,32574],["2021-09-28",40830,74,32648],["2021-09-29",40830,101,32749],["2021-09-30",40830,75,32824],["2021-10-01",40830,104,32928],["2021-10-02",40830,30,32958],["2021-10-03",40830,15,32973],["2021-10-04",40830,59,33032],["2021-10-05",40830,111,33143],["2021-10-06",40830,92,33235],["2021-10-07",40830,99,33334],["2021-10-08",40830,109,33443],["2021-10-09",40830,24,33467],["2021-10-10",40830,13,33480],["2021-10-11",40830,82,33562],["2021-10-12",40830,76,33638],["2021-10-13",40830,82,33720],["2021-10-14",40830,75,33795],["2021-10-15",40830,109,33904],["2021-10-16",40830,20,33924],["2021-10-17",40830,6,33930],["2021-10-18",40830,82,34012],["2021-10-19",40830,76,34088],["2021-10-20",40830,90,34178],["2021-10-21",40830,83,34261],["2021-10-22",40830,99,34360],["2021-10-23",40830,30,34390],["2021-10-24",40830,21,34411],["2021-10-25",40830,80,34491],["2021-10-26",40830,92,34583],["2021-10-27",40830,94,34677],["2021-10-28",40830,101,34778],["2021-10-29",40830,93,34871],["2021-10-30",40830,19,34890],["2021-10-31",40830,13,34903],["2021-11-01",40830,74,34977],["2021-11-02",40830,76,35053],["2021-11-03",40830,148,35201],["2021-11-04",40830,90,35291],["2021-11-05",40830,82,35373],["2021-11-06",40830,34,35407],["2021-11-07",40830,20,35427],["2021-11-08",40830,100,35527],["2021-11-09",40830,87,35614],["2021-11-10",40830,111,35725],["2021-11-11",40830,98,35823],["2021-11-12",40830,74,35897],["2021-11-13",40830,27,35924],["2021-11-14",40830,24,35948],["2021-11-15",40830,82,36030],["2021-11-16",40830,148,36178],["2021-11-17",40830,148,36326],["2021-11-18",40830,100,36426],["2021-11-19",40830,85,36511],["2021-11-20",40830,39,36550],["2021-11-21",40830,21,36571],["2021-11-22",40830,85,36656],["2021-11-23",40830,116,36772],["2021-11-24",40830,78,36850],["2021-11-26",40830,28,36878],["2021-11-27",40830,31,36909],["2021-11-28",40830,23,36932],["2021-11-29",40830,98,37030],["2021-11-30",40830,110,37140],["2021-12-01",40830,179,37319],["2021-12-02",40830,114,37433],["2021-12-03",40830,117,37550],["2021-12-04",40830,42,37592],["2021-12-05",40830,36,37628],["2021-12-06",40830,82,37710],["2021-12-07",40830,119,37829],["2021-12-08",40830,152,37981],["2021-12-09",40830,80,38061],["2021-12-10",40830,114,38175],["2021-12-11",40830,21,38196],["2021-12-12",40830,15,38211],["2021-12-13",40830,84,38295],["2021-12-14",40830,91,38386],["2021-12-15",40830,129,38515],["2021-12-16",40830,80,38595],["2021-12-17",40830,124,38719],["2021-12-18",40830,30,38749],["2021-12-19",40830,47,38796],["2021-12-20",40830,94,38890],["2021-12-21",40830,119,39009],["2021-12-22",40830,119,39128],["2021-12-23",40830,66,39194],["2021-12-24",40830,12,39206],["2021-12-26",40830,15,39221],["2021-12-27",40830,78,39299],["2021-12-28",40830,92,39391],["2021-12-29",40830,144,39535],["2021-12-30",40830,98,39633],["2021-12-31",40830,46,39679],["2022-01-01",40830,6,39685],["2022-01-02",40830,28,39713],["2022-01-03",40830,39,39752]]} \ No newline at end of file diff --git a/public/data/overall/vaccinations/by-county/Toombs.json b/public/data/overall/vaccinations/by-county/Toombs.json new file mode 100644 index 000000000..2b7962776 --- /dev/null +++ b/public/data/overall/vaccinations/by-county/Toombs.json @@ -0,0 +1 @@ +{"segment":{"county":"Toombs"},"headers":["report_date","population","vaccinations","total_vaccinations"],"rows":[["2020-12-15",26983,1,1],["2020-12-16",26983,1,2],["2020-12-18",26983,3,5],["2020-12-19",26983,1,6],["2020-12-21",26983,2,8],["2020-12-22",26983,4,12],["2020-12-23",26983,25,37],["2020-12-24",26983,11,48],["2020-12-27",26983,3,51],["2020-12-28",26983,39,90],["2020-12-29",26983,26,116],["2020-12-30",26983,28,144],["2020-12-31",26983,6,150],["2021-01-01",26983,32,182],["2021-01-02",26983,1,183],["2021-01-03",26983,2,185],["2021-01-04",26983,30,215],["2021-01-05",26983,16,231],["2021-01-06",26983,30,261],["2021-01-07",26983,29,290],["2021-01-08",26983,17,307],["2021-01-09",26983,2,309],["2021-01-10",26983,3,312],["2021-01-11",26983,58,370],["2021-01-12",26983,48,418],["2021-01-13",26983,62,480],["2021-01-14",26983,51,531],["2021-01-15",26983,50,581],["2021-01-16",26983,45,626],["2021-01-17",26983,13,639],["2021-01-18",26983,93,732],["2021-01-19",26983,94,826],["2021-01-20",26983,94,920],["2021-01-21",26983,86,1006],["2021-01-22",26983,105,1111],["2021-01-23",26983,6,1117],["2021-01-24",26983,2,1119],["2021-01-25",26983,66,1185],["2021-01-26",26983,69,1254],["2021-01-27",26983,77,1331],["2021-01-28",26983,83,1414],["2021-01-29",26983,48,1462],["2021-01-30",26983,4,1466],["2021-01-31",26983,3,1469],["2021-02-01",26983,128,1597],["2021-02-02",26983,92,1689],["2021-02-03",26983,90,1779],["2021-02-04",26983,53,1832],["2021-02-05",26983,51,1883],["2021-02-06",26983,64,1947],["2021-02-07",26983,14,1961],["2021-02-08",26983,134,2095],["2021-02-09",26983,117,2212],["2021-02-10",26983,136,2348],["2021-02-11",26983,193,2541],["2021-02-12",26983,56,2597],["2021-02-13",26983,25,2622],["2021-02-14",26983,2,2624],["2021-02-15",26983,146,2770],["2021-02-16",26983,121,2891],["2021-02-17",26983,139,3030],["2021-02-18",26983,107,3137],["2021-02-19",26983,77,3214],["2021-02-20",26983,24,3238],["2021-02-21",26983,4,3242],["2021-02-22",26983,128,3370],["2021-02-23",26983,98,3468],["2021-02-24",26983,105,3573],["2021-02-25",26983,118,3691],["2021-02-26",26983,54,3745],["2021-02-27",26983,3,3748],["2021-02-28",26983,21,3769],["2021-03-01",26983,175,3944],["2021-03-02",26983,221,4165],["2021-03-03",26983,157,4322],["2021-03-04",26983,101,4423],["2021-03-05",26983,66,4489],["2021-03-06",26983,5,4494],["2021-03-07",26983,2,4496],["2021-03-08",26983,145,4641],["2021-03-09",26983,185,4826],["2021-03-10",26983,180,5006],["2021-03-11",26983,254,5260],["2021-03-12",26983,237,5497],["2021-03-13",26983,17,5514],["2021-03-14",26983,4,5518],["2021-03-15",26983,123,5641],["2021-03-16",26983,235,5876],["2021-03-17",26983,162,6038],["2021-03-18",26983,147,6185],["2021-03-19",26983,92,6277],["2021-03-20",26983,19,6296],["2021-03-21",26983,26,6322],["2021-03-22",26983,174,6496],["2021-03-23",26983,179,6675],["2021-03-24",26983,112,6787],["2021-03-25",26983,131,6918],["2021-03-26",26983,123,7041],["2021-03-27",26983,36,7077],["2021-03-28",26983,4,7081],["2021-03-29",26983,113,7194],["2021-03-30",26983,368,7562],["2021-03-31",26983,297,7859],["2021-04-01",26983,134,7993],["2021-04-02",26983,96,8089],["2021-04-03",26983,16,8105],["2021-04-04",26983,7,8112],["2021-04-05",26983,140,8252],["2021-04-06",26983,286,8538],["2021-04-07",26983,305,8843],["2021-04-08",26983,217,9060],["2021-04-09",26983,70,9130],["2021-04-10",26983,29,9159],["2021-04-11",26983,11,9170],["2021-04-12",26983,100,9270],["2021-04-13",26983,224,9494],["2021-04-14",26983,114,9608],["2021-04-15",26983,137,9745],["2021-04-16",26983,105,9850],["2021-04-17",26983,29,9879],["2021-04-18",26983,25,9904],["2021-04-19",26983,108,10012],["2021-04-20",26983,171,10183],["2021-04-21",26983,118,10301],["2021-04-22",26983,113,10414],["2021-04-23",26983,90,10504],["2021-04-24",26983,53,10557],["2021-04-25",26983,4,10561],["2021-04-26",26983,93,10654],["2021-04-27",26983,178,10832],["2021-04-28",26983,119,10951],["2021-04-29",26983,92,11043],["2021-04-30",26983,96,11139],["2021-05-01",26983,39,11178],["2021-05-02",26983,9,11187],["2021-05-03",26983,40,11227],["2021-05-04",26983,109,11336],["2021-05-05",26983,145,11481],["2021-05-06",26983,122,11603],["2021-05-07",26983,73,11676],["2021-05-08",26983,23,11699],["2021-05-09",26983,1,11700],["2021-05-10",26983,21,11721],["2021-05-11",26983,136,11857],["2021-05-12",26983,52,11909],["2021-05-13",26983,83,11992],["2021-05-14",26983,42,12034],["2021-05-15",26983,31,12065],["2021-05-16",26983,13,12078],["2021-05-17",26983,45,12123],["2021-05-18",26983,95,12218],["2021-05-19",26983,58,12276],["2021-05-20",26983,54,12330],["2021-05-21",26983,37,12367],["2021-05-22",26983,30,12397],["2021-05-23",26983,12,12409],["2021-05-24",26983,26,12435],["2021-05-25",26983,80,12515],["2021-05-26",26983,67,12582],["2021-05-27",26983,122,12704],["2021-05-28",26983,33,12737],["2021-05-29",26983,33,12770],["2021-05-30",26983,9,12779],["2021-05-31",26983,8,12787],["2021-06-01",26983,57,12844],["2021-06-02",26983,56,12900],["2021-06-03",26983,39,12939],["2021-06-04",26983,42,12981],["2021-06-05",26983,30,13011],["2021-06-06",26983,5,13016],["2021-06-07",26983,29,13045],["2021-06-08",26983,84,13129],["2021-06-09",26983,108,13237],["2021-06-10",26983,107,13344],["2021-06-11",26983,37,13381],["2021-06-12",26983,20,13401],["2021-06-13",26983,3,13404],["2021-06-14",26983,27,13431],["2021-06-15",26983,56,13487],["2021-06-16",26983,27,13514],["2021-06-17",26983,31,13545],["2021-06-18",26983,39,13584],["2021-06-19",26983,13,13597],["2021-06-20",26983,5,13602],["2021-06-21",26983,17,13619],["2021-06-22",26983,93,13712],["2021-06-23",26983,59,13771],["2021-06-24",26983,19,13790],["2021-06-25",26983,35,13825],["2021-06-26",26983,17,13842],["2021-06-27",26983,5,13847],["2021-06-28",26983,20,13867],["2021-06-29",26983,69,13936],["2021-06-30",26983,27,13963],["2021-07-01",26983,14,13977],["2021-07-02",26983,14,13991],["2021-07-03",26983,8,13999],["2021-07-04",26983,3,14002],["2021-07-05",26983,16,14018],["2021-07-06",26983,40,14058],["2021-07-07",26983,42,14100],["2021-07-08",26983,12,14112],["2021-07-09",26983,27,14139],["2021-07-10",26983,6,14145],["2021-07-11",26983,6,14151],["2021-07-12",26983,21,14172],["2021-07-13",26983,53,14225],["2021-07-14",26983,21,14246],["2021-07-15",26983,24,14270],["2021-07-16",26983,20,14290],["2021-07-17",26983,13,14303],["2021-07-18",26983,2,14305],["2021-07-19",26983,43,14348],["2021-07-20",26983,57,14405],["2021-07-21",26983,91,14496],["2021-07-22",26983,57,14553],["2021-07-23",26983,60,14613],["2021-07-24",26983,38,14651],["2021-07-25",26983,18,14669],["2021-07-26",26983,56,14725],["2021-07-27",26983,106,14831],["2021-07-28",26983,79,14910],["2021-07-29",26983,75,14985],["2021-07-30",26983,86,15071],["2021-07-31",26983,17,15088],["2021-08-01",26983,13,15101],["2021-08-02",26983,49,15150],["2021-08-03",26983,98,15248],["2021-08-04",26983,77,15325],["2021-08-05",26983,89,15414],["2021-08-06",26983,85,15499],["2021-08-07",26983,43,15542],["2021-08-08",26983,13,15555],["2021-08-09",26983,77,15632],["2021-08-10",26983,128,15760],["2021-08-11",26983,103,15863],["2021-08-12",26983,86,15949],["2021-08-13",26983,114,16063],["2021-08-14",26983,60,16123],["2021-08-15",26983,40,16163],["2021-08-16",26983,110,16273],["2021-08-17",26983,114,16387],["2021-08-18",26983,106,16493],["2021-08-19",26983,124,16617],["2021-08-20",26983,136,16753],["2021-08-21",26983,79,16832],["2021-08-22",26983,18,16850],["2021-08-23",26983,83,16933],["2021-08-24",26983,140,17073],["2021-08-25",26983,112,17185],["2021-08-26",26983,151,17336],["2021-08-27",26983,138,17474],["2021-08-28",26983,50,17524],["2021-08-29",26983,20,17544],["2021-08-30",26983,147,17691],["2021-08-31",26983,130,17821],["2021-09-01",26983,131,17952],["2021-09-02",26983,126,18078],["2021-09-03",26983,142,18220],["2021-09-04",26983,40,18260],["2021-09-05",26983,34,18294],["2021-09-06",26983,53,18347],["2021-09-07",26983,139,18486],["2021-09-08",26983,114,18600],["2021-09-09",26983,112,18712],["2021-09-10",26983,136,18848],["2021-09-11",26983,41,18889],["2021-09-12",26983,24,18913],["2021-09-13",26983,61,18974],["2021-09-14",26983,138,19112],["2021-09-15",26983,105,19217],["2021-09-16",26983,67,19284],["2021-09-17",26983,113,19397],["2021-09-18",26983,46,19443],["2021-09-19",26983,16,19459],["2021-09-20",26983,80,19539],["2021-09-21",26983,144,19683],["2021-09-22",26983,66,19749],["2021-09-23",26983,85,19834],["2021-09-24",26983,70,19904],["2021-09-25",26983,32,19936],["2021-09-26",26983,17,19953],["2021-09-27",26983,78,20031],["2021-09-28",26983,44,20075],["2021-09-29",26983,70,20145],["2021-09-30",26983,71,20216],["2021-10-01",26983,82,20298],["2021-10-02",26983,27,20325],["2021-10-03",26983,8,20333],["2021-10-04",26983,38,20371],["2021-10-05",26983,39,20410],["2021-10-06",26983,59,20469],["2021-10-07",26983,40,20509],["2021-10-08",26983,46,20555],["2021-10-09",26983,20,20575],["2021-10-10",26983,15,20590],["2021-10-11",26983,24,20614],["2021-10-12",26983,48,20662],["2021-10-13",26983,24,20686],["2021-10-14",26983,23,20709],["2021-10-15",26983,42,20751],["2021-10-16",26983,13,20764],["2021-10-17",26983,6,20770],["2021-10-18",26983,24,20794],["2021-10-19",26983,44,20838],["2021-10-20",26983,22,20860],["2021-10-21",26983,21,20881],["2021-10-22",26983,48,20929],["2021-10-23",26983,12,20941],["2021-10-24",26983,7,20948],["2021-10-25",26983,88,21036],["2021-10-26",26983,101,21137],["2021-10-27",26983,164,21301],["2021-10-28",26983,79,21380],["2021-10-29",26983,74,21454],["2021-10-30",26983,11,21465],["2021-10-31",26983,4,21469],["2021-11-01",26983,101,21570],["2021-11-02",26983,103,21673],["2021-11-03",26983,94,21767],["2021-11-04",26983,78,21845],["2021-11-05",26983,75,21920],["2021-11-06",26983,17,21937],["2021-11-07",26983,11,21948],["2021-11-08",26983,86,22034],["2021-11-09",26983,82,22116],["2021-11-10",26983,108,22224],["2021-11-11",26983,46,22270],["2021-11-12",26983,78,22348],["2021-11-13",26983,7,22355],["2021-11-14",26983,5,22360],["2021-11-15",26983,76,22436],["2021-11-16",26983,91,22527],["2021-11-17",26983,109,22636],["2021-11-18",26983,114,22750],["2021-11-19",26983,87,22837],["2021-11-20",26983,17,22854],["2021-11-21",26983,12,22866],["2021-11-22",26983,99,22965],["2021-11-23",26983,75,23040],["2021-11-24",26983,45,23085],["2021-11-26",26983,17,23102],["2021-11-27",26983,13,23115],["2021-11-28",26983,15,23130],["2021-11-29",26983,103,23233],["2021-11-30",26983,92,23325],["2021-12-01",26983,127,23452],["2021-12-02",26983,94,23546],["2021-12-03",26983,83,23629],["2021-12-04",26983,21,23650],["2021-12-05",26983,10,23660],["2021-12-06",26983,77,23737],["2021-12-07",26983,68,23805],["2021-12-08",26983,69,23874],["2021-12-09",26983,63,23937],["2021-12-10",26983,98,24035],["2021-12-11",26983,19,24054],["2021-12-12",26983,6,24060],["2021-12-13",26983,75,24135],["2021-12-14",26983,46,24181],["2021-12-15",26983,69,24250],["2021-12-16",26983,61,24311],["2021-12-17",26983,64,24375],["2021-12-18",26983,23,24398],["2021-12-19",26983,6,24404],["2021-12-20",26983,82,24486],["2021-12-21",26983,71,24557],["2021-12-22",26983,56,24613],["2021-12-23",26983,10,24623],["2021-12-24",26983,9,24632],["2021-12-26",26983,4,24636],["2021-12-27",26983,45,24681],["2021-12-28",26983,64,24745],["2021-12-29",26983,85,24830],["2021-12-30",26983,71,24901],["2021-12-31",26983,33,24934],["2022-01-01",26983,10,24944],["2022-01-02",26983,11,24955],["2022-01-03",26983,14,24969]]} \ No newline at end of file diff --git a/public/data/overall/vaccinations/by-county/Towns.json b/public/data/overall/vaccinations/by-county/Towns.json new file mode 100644 index 000000000..46e686975 --- /dev/null +++ b/public/data/overall/vaccinations/by-county/Towns.json @@ -0,0 +1 @@ +{"segment":{"county":"Towns"},"headers":["report_date","population","vaccinations","total_vaccinations"],"rows":[["2020-12-15",12034,1,1],["2020-12-18",12034,1,2],["2020-12-22",12034,4,6],["2020-12-23",12034,54,60],["2020-12-24",12034,9,69],["2020-12-28",12034,15,84],["2020-12-29",12034,60,144],["2020-12-30",12034,46,190],["2020-12-31",12034,4,194],["2021-01-01",12034,3,197],["2021-01-02",12034,1,198],["2021-01-03",12034,2,200],["2021-01-04",12034,96,296],["2021-01-05",12034,39,335],["2021-01-06",12034,25,360],["2021-01-07",12034,24,384],["2021-01-08",12034,8,392],["2021-01-09",12034,2,394],["2021-01-10",12034,5,399],["2021-01-11",12034,72,471],["2021-01-12",12034,67,538],["2021-01-13",12034,96,634],["2021-01-14",12034,127,761],["2021-01-15",12034,45,806],["2021-01-16",12034,26,832],["2021-01-17",12034,21,853],["2021-01-18",12034,101,954],["2021-01-19",12034,95,1049],["2021-01-20",12034,92,1141],["2021-01-21",12034,55,1196],["2021-01-22",12034,230,1426],["2021-01-23",12034,19,1445],["2021-01-24",12034,14,1459],["2021-01-25",12034,106,1565],["2021-01-26",12034,65,1630],["2021-01-27",12034,148,1778],["2021-01-28",12034,66,1844],["2021-01-29",12034,78,1922],["2021-01-30",12034,1,1923],["2021-01-31",12034,4,1927],["2021-02-01",12034,113,2040],["2021-02-02",12034,66,2106],["2021-02-03",12034,118,2224],["2021-02-04",12034,140,2364],["2021-02-05",12034,383,2747],["2021-02-06",12034,12,2759],["2021-02-07",12034,2,2761],["2021-02-08",12034,105,2866],["2021-02-09",12034,80,2946],["2021-02-10",12034,226,3172],["2021-02-11",12034,109,3281],["2021-02-12",12034,66,3347],["2021-02-13",12034,34,3381],["2021-02-14",12034,25,3406],["2021-02-15",12034,91,3497],["2021-02-16",12034,105,3602],["2021-02-17",12034,90,3692],["2021-02-18",12034,75,3767],["2021-02-19",12034,70,3837],["2021-02-20",12034,24,3861],["2021-02-21",12034,10,3871],["2021-02-22",12034,56,3927],["2021-02-23",12034,111,4038],["2021-02-24",12034,91,4129],["2021-02-25",12034,80,4209],["2021-02-26",12034,506,4715],["2021-02-27",12034,37,4752],["2021-02-28",12034,41,4793],["2021-03-01",12034,124,4917],["2021-03-02",12034,100,5017],["2021-03-03",12034,140,5157],["2021-03-04",12034,140,5297],["2021-03-05",12034,418,5715],["2021-03-06",12034,22,5737],["2021-03-07",12034,28,5765],["2021-03-08",12034,86,5851],["2021-03-09",12034,70,5921],["2021-03-10",12034,75,5996],["2021-03-11",12034,85,6081],["2021-03-12",12034,183,6264],["2021-03-13",12034,17,6281],["2021-03-14",12034,19,6300],["2021-03-15",12034,101,6401],["2021-03-16",12034,75,6476],["2021-03-17",12034,109,6585],["2021-03-18",12034,88,6673],["2021-03-19",12034,187,6860],["2021-03-20",12034,28,6888],["2021-03-21",12034,21,6909],["2021-03-22",12034,64,6973],["2021-03-23",12034,65,7038],["2021-03-24",12034,58,7096],["2021-03-25",12034,111,7207],["2021-03-26",12034,207,7414],["2021-03-27",12034,37,7451],["2021-03-28",12034,41,7492],["2021-03-29",12034,89,7581],["2021-03-30",12034,76,7657],["2021-03-31",12034,76,7733],["2021-04-01",12034,129,7862],["2021-04-02",12034,46,7908],["2021-04-03",12034,20,7928],["2021-04-04",12034,41,7969],["2021-04-05",12034,78,8047],["2021-04-06",12034,66,8113],["2021-04-07",12034,89,8202],["2021-04-08",12034,71,8273],["2021-04-09",12034,188,8461],["2021-04-10",12034,21,8482],["2021-04-11",12034,26,8508],["2021-04-12",12034,74,8582],["2021-04-13",12034,71,8653],["2021-04-14",12034,54,8707],["2021-04-15",12034,46,8753],["2021-04-16",12034,200,8953],["2021-04-17",12034,25,8978],["2021-04-18",12034,10,8988],["2021-04-19",12034,54,9042],["2021-04-20",12034,44,9086],["2021-04-21",12034,128,9214],["2021-04-22",12034,24,9238],["2021-04-23",12034,91,9329],["2021-04-24",12034,21,9350],["2021-04-25",12034,9,9359],["2021-04-26",12034,30,9389],["2021-04-27",12034,40,9429],["2021-04-28",12034,80,9509],["2021-04-29",12034,30,9539],["2021-04-30",12034,59,9598],["2021-05-01",12034,14,9612],["2021-05-02",12034,6,9618],["2021-05-03",12034,23,9641],["2021-05-04",12034,59,9700],["2021-05-05",12034,38,9738],["2021-05-06",12034,20,9758],["2021-05-07",12034,49,9807],["2021-05-08",12034,19,9826],["2021-05-09",12034,9,9835],["2021-05-10",12034,24,9859],["2021-05-11",12034,25,9884],["2021-05-12",12034,11,9895],["2021-05-13",12034,17,9912],["2021-05-14",12034,34,9946],["2021-05-15",12034,15,9961],["2021-05-16",12034,6,9967],["2021-05-17",12034,18,9985],["2021-05-18",12034,36,10021],["2021-05-19",12034,25,10046],["2021-05-20",12034,17,10063],["2021-05-21",12034,33,10096],["2021-05-22",12034,6,10102],["2021-05-23",12034,8,10110],["2021-05-24",12034,15,10125],["2021-05-25",12034,24,10149],["2021-05-26",12034,13,10162],["2021-05-27",12034,12,10174],["2021-05-28",12034,11,10185],["2021-05-29",12034,9,10194],["2021-05-30",12034,1,10195],["2021-05-31",12034,2,10197],["2021-06-01",12034,28,10225],["2021-06-02",12034,23,10248],["2021-06-03",12034,14,10262],["2021-06-04",12034,24,10286],["2021-06-05",12034,7,10293],["2021-06-06",12034,3,10296],["2021-06-07",12034,5,10301],["2021-06-08",12034,10,10311],["2021-06-09",12034,11,10322],["2021-06-10",12034,6,10328],["2021-06-11",12034,14,10342],["2021-06-12",12034,6,10348],["2021-06-13",12034,4,10352],["2021-06-14",12034,9,10361],["2021-06-15",12034,10,10371],["2021-06-16",12034,13,10384],["2021-06-17",12034,14,10398],["2021-06-18",12034,16,10414],["2021-06-19",12034,5,10419],["2021-06-20",12034,1,10420],["2021-06-21",12034,8,10428],["2021-06-22",12034,16,10444],["2021-06-23",12034,14,10458],["2021-06-24",12034,6,10464],["2021-06-25",12034,10,10474],["2021-06-26",12034,4,10478],["2021-06-27",12034,2,10480],["2021-06-28",12034,8,10488],["2021-06-29",12034,9,10497],["2021-06-30",12034,9,10506],["2021-07-01",12034,10,10516],["2021-07-02",12034,14,10530],["2021-07-03",12034,4,10534],["2021-07-05",12034,4,10538],["2021-07-06",12034,4,10542],["2021-07-07",12034,7,10549],["2021-07-08",12034,5,10554],["2021-07-09",12034,2,10556],["2021-07-10",12034,6,10562],["2021-07-11",12034,7,10569],["2021-07-12",12034,5,10574],["2021-07-13",12034,9,10583],["2021-07-14",12034,9,10592],["2021-07-15",12034,9,10601],["2021-07-16",12034,15,10616],["2021-07-17",12034,4,10620],["2021-07-18",12034,3,10623],["2021-07-19",12034,11,10634],["2021-07-20",12034,17,10651],["2021-07-21",12034,18,10669],["2021-07-22",12034,6,10675],["2021-07-23",12034,12,10687],["2021-07-24",12034,5,10692],["2021-07-25",12034,8,10700],["2021-07-26",12034,12,10712],["2021-07-27",12034,15,10727],["2021-07-28",12034,8,10735],["2021-07-29",12034,10,10745],["2021-07-30",12034,13,10758],["2021-07-31",12034,4,10762],["2021-08-01",12034,11,10773],["2021-08-02",12034,21,10794],["2021-08-03",12034,12,10806],["2021-08-04",12034,14,10820],["2021-08-05",12034,16,10836],["2021-08-06",12034,12,10848],["2021-08-07",12034,6,10854],["2021-08-08",12034,7,10861],["2021-08-09",12034,21,10882],["2021-08-10",12034,26,10908],["2021-08-11",12034,27,10935],["2021-08-12",12034,29,10964],["2021-08-13",12034,27,10991],["2021-08-14",12034,16,11007],["2021-08-15",12034,17,11024],["2021-08-16",12034,35,11059],["2021-08-17",12034,30,11089],["2021-08-18",12034,33,11122],["2021-08-19",12034,15,11137],["2021-08-20",12034,28,11165],["2021-08-21",12034,5,11170],["2021-08-22",12034,8,11178],["2021-08-23",12034,29,11207],["2021-08-24",12034,18,11225],["2021-08-25",12034,37,11262],["2021-08-26",12034,22,11284],["2021-08-27",12034,36,11320],["2021-08-28",12034,12,11332],["2021-08-29",12034,28,11360],["2021-08-30",12034,41,11401],["2021-08-31",12034,27,11428],["2021-09-01",12034,44,11472],["2021-09-02",12034,36,11508],["2021-09-03",12034,34,11542],["2021-09-04",12034,18,11560],["2021-09-05",12034,6,11566],["2021-09-06",12034,5,11571],["2021-09-07",12034,32,11603],["2021-09-08",12034,32,11635],["2021-09-09",12034,30,11665],["2021-09-10",12034,43,11708],["2021-09-11",12034,22,11730],["2021-09-12",12034,7,11737],["2021-09-13",12034,30,11767],["2021-09-14",12034,23,11790],["2021-09-15",12034,28,11818],["2021-09-16",12034,11,11829],["2021-09-17",12034,25,11854],["2021-09-18",12034,6,11860],["2021-09-19",12034,14,11874],["2021-09-20",12034,23,11897],["2021-09-21",12034,19,11916],["2021-09-22",12034,37,11953],["2021-09-23",12034,15,11968],["2021-09-24",12034,22,11990],["2021-09-25",12034,12,12002],["2021-09-26",12034,6,12008],["2021-09-27",12034,26,12034],["2021-09-28",12034,33,12067],["2021-09-29",12034,19,12086],["2021-09-30",12034,14,12100],["2021-10-01",12034,34,12134],["2021-10-02",12034,11,12145],["2021-10-03",12034,8,12153],["2021-10-04",12034,17,12170],["2021-10-05",12034,16,12186],["2021-10-06",12034,27,12213],["2021-10-07",12034,18,12231],["2021-10-08",12034,18,12249],["2021-10-09",12034,10,12259],["2021-10-10",12034,5,12264],["2021-10-11",12034,9,12273],["2021-10-12",12034,21,12294],["2021-10-13",12034,14,12308],["2021-10-14",12034,15,12323],["2021-10-15",12034,18,12341],["2021-10-16",12034,4,12345],["2021-10-17",12034,2,12347],["2021-10-18",12034,19,12366],["2021-10-19",12034,11,12377],["2021-10-20",12034,18,12395],["2021-10-21",12034,14,12409],["2021-10-22",12034,122,12531],["2021-10-23",12034,34,12565],["2021-10-24",12034,24,12589],["2021-10-25",12034,88,12677],["2021-10-26",12034,145,12822],["2021-10-27",12034,184,13006],["2021-10-28",12034,84,13090],["2021-10-29",12034,70,13160],["2021-10-30",12034,21,13181],["2021-10-31",12034,20,13201],["2021-11-01",12034,92,13293],["2021-11-02",12034,79,13372],["2021-11-03",12034,109,13481],["2021-11-04",12034,108,13589],["2021-11-05",12034,56,13645],["2021-11-06",12034,20,13665],["2021-11-07",12034,16,13681],["2021-11-08",12034,54,13735],["2021-11-09",12034,57,13792],["2021-11-10",12034,41,13833],["2021-11-11",12034,30,13863],["2021-11-12",12034,43,13906],["2021-11-13",12034,16,13922],["2021-11-14",12034,13,13935],["2021-11-15",12034,71,14006],["2021-11-16",12034,55,14061],["2021-11-17",12034,60,14121],["2021-11-18",12034,45,14166],["2021-11-19",12034,40,14206],["2021-11-20",12034,20,14226],["2021-11-21",12034,16,14242],["2021-11-22",12034,51,14293],["2021-11-23",12034,37,14330],["2021-11-24",12034,22,14352],["2021-11-26",12034,22,14374],["2021-11-27",12034,14,14388],["2021-11-28",12034,18,14406],["2021-11-29",12034,57,14463],["2021-11-30",12034,69,14532],["2021-12-01",12034,51,14583],["2021-12-02",12034,41,14624],["2021-12-03",12034,49,14673],["2021-12-04",12034,8,14681],["2021-12-05",12034,16,14697],["2021-12-06",12034,48,14745],["2021-12-07",12034,36,14781],["2021-12-08",12034,30,14811],["2021-12-09",12034,35,14846],["2021-12-10",12034,24,14870],["2021-12-11",12034,12,14882],["2021-12-12",12034,5,14887],["2021-12-13",12034,21,14908],["2021-12-14",12034,24,14932],["2021-12-15",12034,34,14966],["2021-12-16",12034,21,14987],["2021-12-17",12034,26,15013],["2021-12-18",12034,15,15028],["2021-12-19",12034,7,15035],["2021-12-20",12034,38,15073],["2021-12-21",12034,45,15118],["2021-12-22",12034,37,15155],["2021-12-23",12034,23,15178],["2021-12-24",12034,4,15182],["2021-12-26",12034,8,15190],["2021-12-27",12034,33,15223],["2021-12-28",12034,23,15246],["2021-12-29",12034,47,15293],["2021-12-30",12034,25,15318],["2021-12-31",12034,7,15325],["2022-01-01",12034,11,15336],["2022-01-02",12034,10,15346],["2022-01-03",12034,1,15347]]} \ No newline at end of file diff --git a/public/data/overall/vaccinations/by-county/Treutlen.json b/public/data/overall/vaccinations/by-county/Treutlen.json new file mode 100644 index 000000000..64f6c714e --- /dev/null +++ b/public/data/overall/vaccinations/by-county/Treutlen.json @@ -0,0 +1 @@ +{"segment":{"county":"Treutlen"},"headers":["report_date","population","vaccinations","total_vaccinations"],"rows":[["2020-12-18",6829,3,3],["2020-12-21",6829,1,4],["2020-12-22",6829,1,5],["2020-12-23",6829,3,8],["2020-12-27",6829,2,10],["2020-12-28",6829,10,20],["2020-12-29",6829,3,23],["2020-12-30",6829,9,32],["2020-12-31",6829,4,36],["2021-01-01",6829,1,37],["2021-01-02",6829,1,38],["2021-01-04",6829,6,44],["2021-01-05",6829,17,61],["2021-01-06",6829,2,63],["2021-01-07",6829,16,79],["2021-01-08",6829,15,94],["2021-01-09",6829,1,95],["2021-01-10",6829,1,96],["2021-01-11",6829,6,102],["2021-01-12",6829,3,105],["2021-01-13",6829,165,270],["2021-01-14",6829,15,285],["2021-01-15",6829,32,317],["2021-01-16",6829,5,322],["2021-01-17",6829,36,358],["2021-01-18",6829,9,367],["2021-01-19",6829,6,373],["2021-01-20",6829,114,487],["2021-01-21",6829,9,496],["2021-01-22",6829,5,501],["2021-01-23",6829,2,503],["2021-01-25",6829,10,513],["2021-01-26",6829,6,519],["2021-01-27",6829,19,538],["2021-01-28",6829,136,674],["2021-01-29",6829,8,682],["2021-01-30",6829,2,684],["2021-01-31",6829,1,685],["2021-02-01",6829,10,695],["2021-02-02",6829,13,708],["2021-02-03",6829,81,789],["2021-02-04",6829,11,800],["2021-02-05",6829,14,814],["2021-02-06",6829,4,818],["2021-02-07",6829,60,878],["2021-02-08",6829,14,892],["2021-02-09",6829,15,907],["2021-02-10",6829,177,1084],["2021-02-11",6829,10,1094],["2021-02-12",6829,2,1096],["2021-02-15",6829,10,1106],["2021-02-16",6829,7,1113],["2021-02-17",6829,129,1242],["2021-02-18",6829,11,1253],["2021-02-19",6829,2,1255],["2021-02-20",6829,1,1256],["2021-02-22",6829,9,1265],["2021-02-23",6829,8,1273],["2021-02-24",6829,13,1286],["2021-02-25",6829,141,1427],["2021-02-26",6829,4,1431],["2021-02-27",6829,1,1432],["2021-02-28",6829,2,1434],["2021-03-01",6829,14,1448],["2021-03-02",6829,10,1458],["2021-03-03",6829,108,1566],["2021-03-04",6829,5,1571],["2021-03-05",6829,8,1579],["2021-03-08",6829,4,1583],["2021-03-09",6829,16,1599],["2021-03-10",6829,64,1663],["2021-03-11",6829,9,1672],["2021-03-12",6829,15,1687],["2021-03-13",6829,1,1688],["2021-03-15",6829,8,1696],["2021-03-16",6829,31,1727],["2021-03-17",6829,87,1814],["2021-03-18",6829,11,1825],["2021-03-19",6829,5,1830],["2021-03-20",6829,1,1831],["2021-03-21",6829,3,1834],["2021-03-22",6829,3,1837],["2021-03-23",6829,11,1848],["2021-03-24",6829,51,1899],["2021-03-25",6829,13,1912],["2021-03-26",6829,7,1919],["2021-03-27",6829,4,1923],["2021-03-29",6829,18,1941],["2021-03-30",6829,13,1954],["2021-03-31",6829,67,2021],["2021-04-01",6829,9,2030],["2021-04-02",6829,12,2042],["2021-04-03",6829,4,2046],["2021-04-05",6829,8,2054],["2021-04-06",6829,18,2072],["2021-04-07",6829,63,2135],["2021-04-08",6829,23,2158],["2021-04-09",6829,10,2168],["2021-04-10",6829,12,2180],["2021-04-11",6829,5,2185],["2021-04-12",6829,15,2200],["2021-04-13",6829,25,2225],["2021-04-14",6829,85,2310],["2021-04-15",6829,13,2323],["2021-04-16",6829,18,2341],["2021-04-17",6829,3,2344],["2021-04-19",6829,12,2356],["2021-04-20",6829,16,2372],["2021-04-21",6829,73,2445],["2021-04-22",6829,8,2453],["2021-04-23",6829,14,2467],["2021-04-24",6829,4,2471],["2021-04-26",6829,12,2483],["2021-04-27",6829,7,2490],["2021-04-28",6829,50,2540],["2021-04-29",6829,13,2553],["2021-04-30",6829,11,2564],["2021-05-01",6829,11,2575],["2021-05-03",6829,4,2579],["2021-05-04",6829,16,2595],["2021-05-05",6829,45,2640],["2021-05-06",6829,10,2650],["2021-05-07",6829,13,2663],["2021-05-08",6829,6,2669],["2021-05-10",6829,4,2673],["2021-05-11",6829,12,2685],["2021-05-12",6829,24,2709],["2021-05-13",6829,4,2713],["2021-05-14",6829,9,2722],["2021-05-15",6829,3,2725],["2021-05-17",6829,7,2732],["2021-05-18",6829,8,2740],["2021-05-19",6829,43,2783],["2021-05-20",6829,6,2789],["2021-05-21",6829,8,2797],["2021-05-22",6829,3,2800],["2021-05-23",6829,1,2801],["2021-05-24",6829,7,2808],["2021-05-25",6829,6,2814],["2021-05-26",6829,25,2839],["2021-05-27",6829,7,2846],["2021-05-28",6829,6,2852],["2021-05-29",6829,1,2853],["2021-06-01",6829,12,2865],["2021-06-02",6829,7,2872],["2021-06-03",6829,6,2878],["2021-06-04",6829,6,2884],["2021-06-05",6829,2,2886],["2021-06-07",6829,8,2894],["2021-06-08",6829,15,2909],["2021-06-09",6829,8,2917],["2021-06-10",6829,6,2923],["2021-06-11",6829,10,2933],["2021-06-12",6829,4,2937],["2021-06-14",6829,8,2945],["2021-06-15",6829,13,2958],["2021-06-16",6829,10,2968],["2021-06-17",6829,5,2973],["2021-06-18",6829,5,2978],["2021-06-19",6829,2,2980],["2021-06-21",6829,3,2983],["2021-06-22",6829,4,2987],["2021-06-23",6829,10,2997],["2021-06-24",6829,7,3004],["2021-06-25",6829,9,3013],["2021-06-26",6829,1,3014],["2021-06-28",6829,3,3017],["2021-06-29",6829,9,3026],["2021-06-30",6829,7,3033],["2021-07-01",6829,4,3037],["2021-07-02",6829,3,3040],["2021-07-03",6829,2,3042],["2021-07-05",6829,5,3047],["2021-07-06",6829,5,3052],["2021-07-07",6829,7,3059],["2021-07-08",6829,5,3064],["2021-07-09",6829,4,3068],["2021-07-10",6829,1,3069],["2021-07-12",6829,6,3075],["2021-07-13",6829,12,3087],["2021-07-14",6829,2,3089],["2021-07-15",6829,17,3106],["2021-07-16",6829,10,3116],["2021-07-17",6829,3,3119],["2021-07-18",6829,1,3120],["2021-07-19",6829,12,3132],["2021-07-20",6829,12,3144],["2021-07-21",6829,10,3154],["2021-07-22",6829,11,3165],["2021-07-23",6829,13,3178],["2021-07-24",6829,4,3182],["2021-07-25",6829,1,3183],["2021-07-26",6829,13,3196],["2021-07-27",6829,17,3213],["2021-07-28",6829,33,3246],["2021-07-29",6829,22,3268],["2021-07-30",6829,15,3283],["2021-07-31",6829,3,3286],["2021-08-01",6829,2,3288],["2021-08-02",6829,34,3322],["2021-08-03",6829,34,3356],["2021-08-04",6829,20,3376],["2021-08-05",6829,16,3392],["2021-08-06",6829,23,3415],["2021-08-07",6829,6,3421],["2021-08-08",6829,4,3425],["2021-08-09",6829,28,3453],["2021-08-10",6829,25,3478],["2021-08-11",6829,34,3512],["2021-08-12",6829,24,3536],["2021-08-13",6829,25,3561],["2021-08-14",6829,15,3576],["2021-08-15",6829,1,3577],["2021-08-16",6829,31,3608],["2021-08-17",6829,26,3634],["2021-08-18",6829,25,3659],["2021-08-19",6829,26,3685],["2021-08-20",6829,31,3716],["2021-08-21",6829,3,3719],["2021-08-22",6829,1,3720],["2021-08-23",6829,21,3741],["2021-08-24",6829,28,3769],["2021-08-25",6829,57,3826],["2021-08-26",6829,35,3861],["2021-08-27",6829,37,3898],["2021-08-28",6829,5,3903],["2021-08-29",6829,1,3904],["2021-08-30",6829,33,3937],["2021-08-31",6829,41,3978],["2021-09-01",6829,35,4013],["2021-09-02",6829,27,4040],["2021-09-03",6829,14,4054],["2021-09-04",6829,9,4063],["2021-09-05",6829,11,4074],["2021-09-06",6829,9,4083],["2021-09-07",6829,55,4138],["2021-09-08",6829,19,4157],["2021-09-09",6829,63,4220],["2021-09-10",6829,21,4241],["2021-09-11",6829,5,4246],["2021-09-12",6829,3,4249],["2021-09-13",6829,30,4279],["2021-09-14",6829,12,4291],["2021-09-15",6829,20,4311],["2021-09-16",6829,33,4344],["2021-09-17",6829,13,4357],["2021-09-18",6829,5,4362],["2021-09-19",6829,1,4363],["2021-09-20",6829,35,4398],["2021-09-21",6829,12,4410],["2021-09-22",6829,19,4429],["2021-09-23",6829,41,4470],["2021-09-24",6829,12,4482],["2021-09-25",6829,7,4489],["2021-09-26",6829,4,4493],["2021-09-27",6829,26,4519],["2021-09-28",6829,14,4533],["2021-09-29",6829,9,4542],["2021-09-30",6829,28,4570],["2021-10-01",6829,7,4577],["2021-10-02",6829,2,4579],["2021-10-03",6829,1,4580],["2021-10-04",6829,23,4603],["2021-10-05",6829,9,4612],["2021-10-06",6829,13,4625],["2021-10-07",6829,23,4648],["2021-10-08",6829,6,4654],["2021-10-09",6829,3,4657],["2021-10-10",6829,2,4659],["2021-10-11",6829,5,4664],["2021-10-12",6829,3,4667],["2021-10-13",6829,6,4673],["2021-10-14",6829,24,4697],["2021-10-15",6829,5,4702],["2021-10-16",6829,6,4708],["2021-10-18",6829,14,4722],["2021-10-19",6829,6,4728],["2021-10-20",6829,7,4735],["2021-10-21",6829,8,4743],["2021-10-22",6829,6,4749],["2021-10-23",6829,1,4750],["2021-10-24",6829,2,4752],["2021-10-25",6829,13,4765],["2021-10-26",6829,7,4772],["2021-10-27",6829,10,4782],["2021-10-28",6829,33,4815],["2021-10-29",6829,4,4819],["2021-10-30",6829,3,4822],["2021-11-01",6829,56,4878],["2021-11-02",6829,14,4892],["2021-11-03",6829,9,4901],["2021-11-04",6829,45,4946],["2021-11-05",6829,7,4953],["2021-11-06",6829,2,4955],["2021-11-08",6829,52,5007],["2021-11-09",6829,14,5021],["2021-11-10",6829,7,5028],["2021-11-11",6829,5,5033],["2021-11-12",6829,8,5041],["2021-11-13",6829,1,5042],["2021-11-14",6829,1,5043],["2021-11-15",6829,65,5108],["2021-11-16",6829,6,5114],["2021-11-17",6829,6,5120],["2021-11-18",6829,50,5170],["2021-11-19",6829,7,5177],["2021-11-22",6829,31,5208],["2021-11-23",6829,10,5218],["2021-11-24",6829,3,5221],["2021-11-26",6829,2,5223],["2021-11-27",6829,3,5226],["2021-11-28",6829,2,5228],["2021-11-29",6829,31,5259],["2021-11-30",6829,8,5267],["2021-12-01",6829,10,5277],["2021-12-02",6829,35,5312],["2021-12-03",6829,7,5319],["2021-12-04",6829,9,5328],["2021-12-05",6829,2,5330],["2021-12-06",6829,26,5356],["2021-12-07",6829,7,5363],["2021-12-08",6829,9,5372],["2021-12-09",6829,27,5399],["2021-12-10",6829,11,5410],["2021-12-11",6829,1,5411],["2021-12-12",6829,7,5418],["2021-12-13",6829,16,5434],["2021-12-14",6829,14,5448],["2021-12-15",6829,6,5454],["2021-12-16",6829,25,5479],["2021-12-17",6829,10,5489],["2021-12-18",6829,3,5492],["2021-12-19",6829,3,5495],["2021-12-20",6829,15,5510],["2021-12-21",6829,14,5524],["2021-12-22",6829,10,5534],["2021-12-23",6829,4,5538],["2021-12-24",6829,3,5541],["2021-12-26",6829,3,5544],["2021-12-27",6829,7,5551],["2021-12-28",6829,13,5564],["2021-12-29",6829,7,5571],["2021-12-30",6829,51,5622],["2021-12-31",6829,2,5624],["2022-01-01",6829,1,5625],["2022-01-02",6829,4,5629],["2022-01-03",6829,6,5635]]} \ No newline at end of file diff --git a/public/data/overall/vaccinations/by-county/Troup.json b/public/data/overall/vaccinations/by-county/Troup.json new file mode 100644 index 000000000..39503d855 --- /dev/null +++ b/public/data/overall/vaccinations/by-county/Troup.json @@ -0,0 +1 @@ +{"segment":{"county":"Troup"},"headers":["report_date","population","vaccinations","total_vaccinations"],"rows":[["2020-12-17",70414,2,2],["2020-12-18",70414,3,5],["2020-12-19",70414,6,11],["2020-12-20",70414,3,14],["2020-12-21",70414,46,60],["2020-12-22",70414,55,115],["2020-12-23",70414,89,204],["2020-12-24",70414,6,210],["2020-12-26",70414,45,255],["2020-12-27",70414,1,256],["2020-12-28",70414,146,402],["2020-12-29",70414,165,567],["2020-12-30",70414,56,623],["2020-12-31",70414,78,701],["2021-01-01",70414,17,718],["2021-01-02",70414,3,721],["2021-01-03",70414,4,725],["2021-01-04",70414,78,803],["2021-01-05",70414,22,825],["2021-01-06",70414,85,910],["2021-01-07",70414,92,1002],["2021-01-08",70414,131,1133],["2021-01-09",70414,16,1149],["2021-01-10",70414,15,1164],["2021-01-11",70414,90,1254],["2021-01-12",70414,100,1354],["2021-01-13",70414,175,1529],["2021-01-14",70414,174,1703],["2021-01-15",70414,410,2113],["2021-01-16",70414,72,2185],["2021-01-17",70414,21,2206],["2021-01-18",70414,68,2274],["2021-01-19",70414,204,2478],["2021-01-20",70414,183,2661],["2021-01-21",70414,147,2808],["2021-01-22",70414,372,3180],["2021-01-23",70414,88,3268],["2021-01-24",70414,6,3274],["2021-01-25",70414,315,3589],["2021-01-26",70414,242,3831],["2021-01-27",70414,301,4132],["2021-01-28",70414,262,4394],["2021-01-29",70414,273,4667],["2021-01-30",70414,46,4713],["2021-01-31",70414,16,4729],["2021-02-01",70414,145,4874],["2021-02-02",70414,141,5015],["2021-02-03",70414,107,5122],["2021-02-04",70414,162,5284],["2021-02-05",70414,148,5432],["2021-02-06",70414,12,5444],["2021-02-07",70414,14,5458],["2021-02-08",70414,57,5515],["2021-02-09",70414,215,5730],["2021-02-10",70414,142,5872],["2021-02-11",70414,148,6020],["2021-02-12",70414,598,6618],["2021-02-13",70414,61,6679],["2021-02-14",70414,8,6687],["2021-02-15",70414,552,7239],["2021-02-16",70414,277,7516],["2021-02-17",70414,319,7835],["2021-02-18",70414,269,8104],["2021-02-19",70414,208,8312],["2021-02-20",70414,82,8394],["2021-02-21",70414,9,8403],["2021-02-22",70414,247,8650],["2021-02-23",70414,199,8849],["2021-02-24",70414,193,9042],["2021-02-25",70414,234,9276],["2021-02-26",70414,302,9578],["2021-02-27",70414,56,9634],["2021-02-28",70414,19,9653],["2021-03-01",70414,87,9740],["2021-03-02",70414,202,9942],["2021-03-03",70414,204,10146],["2021-03-04",70414,172,10318],["2021-03-05",70414,458,10776],["2021-03-06",70414,37,10813],["2021-03-07",70414,20,10833],["2021-03-08",70414,115,10948],["2021-03-09",70414,215,11163],["2021-03-10",70414,260,11423],["2021-03-11",70414,195,11618],["2021-03-12",70414,463,12081],["2021-03-13",70414,35,12116],["2021-03-14",70414,27,12143],["2021-03-15",70414,760,12903],["2021-03-16",70414,202,13105],["2021-03-17",70414,335,13440],["2021-03-18",70414,264,13704],["2021-03-19",70414,656,14360],["2021-03-20",70414,85,14445],["2021-03-21",70414,54,14499],["2021-03-22",70414,190,14689],["2021-03-23",70414,272,14961],["2021-03-24",70414,420,15381],["2021-03-25",70414,330,15711],["2021-03-26",70414,631,16342],["2021-03-27",70414,859,17201],["2021-03-28",70414,54,17255],["2021-03-29",70414,191,17446],["2021-03-30",70414,438,17884],["2021-03-31",70414,333,18217],["2021-04-01",70414,354,18571],["2021-04-02",70414,360,18931],["2021-04-03",70414,96,19027],["2021-04-04",70414,78,19105],["2021-04-05",70414,376,19481],["2021-04-06",70414,328,19809],["2021-04-07",70414,398,20207],["2021-04-08",70414,386,20593],["2021-04-09",70414,698,21291],["2021-04-10",70414,205,21496],["2021-04-11",70414,55,21551],["2021-04-12",70414,380,21931],["2021-04-13",70414,305,22236],["2021-04-14",70414,400,22636],["2021-04-15",70414,290,22926],["2021-04-16",70414,693,23619],["2021-04-17",70414,807,24426],["2021-04-18",70414,78,24504],["2021-04-19",70414,280,24784],["2021-04-20",70414,443,25227],["2021-04-21",70414,347,25574],["2021-04-22",70414,459,26033],["2021-04-23",70414,748,26781],["2021-04-24",70414,107,26888],["2021-04-25",70414,76,26964],["2021-04-26",70414,290,27254],["2021-04-27",70414,285,27539],["2021-04-28",70414,354,27893],["2021-04-29",70414,263,28156],["2021-04-30",70414,280,28436],["2021-05-01",70414,142,28578],["2021-05-02",70414,86,28664],["2021-05-03",70414,200,28864],["2021-05-04",70414,211,29075],["2021-05-05",70414,247,29322],["2021-05-06",70414,163,29485],["2021-05-07",70414,278,29763],["2021-05-08",70414,125,29888],["2021-05-09",70414,50,29938],["2021-05-10",70414,231,30169],["2021-05-11",70414,201,30370],["2021-05-12",70414,162,30532],["2021-05-13",70414,214,30746],["2021-05-14",70414,159,30905],["2021-05-15",70414,101,31006],["2021-05-16",70414,89,31095],["2021-05-17",70414,195,31290],["2021-05-18",70414,255,31545],["2021-05-19",70414,196,31741],["2021-05-20",70414,322,32063],["2021-05-21",70414,209,32272],["2021-05-22",70414,71,32343],["2021-05-23",70414,78,32421],["2021-05-24",70414,159,32580],["2021-05-25",70414,192,32772],["2021-05-26",70414,138,32910],["2021-05-27",70414,153,33063],["2021-05-28",70414,135,33198],["2021-05-29",70414,81,33279],["2021-05-30",70414,48,33327],["2021-05-31",70414,42,33369],["2021-06-01",70414,163,33532],["2021-06-02",70414,134,33666],["2021-06-03",70414,118,33784],["2021-06-04",70414,236,34020],["2021-06-05",70414,101,34121],["2021-06-06",70414,90,34211],["2021-06-07",70414,113,34324],["2021-06-08",70414,167,34491],["2021-06-09",70414,107,34598],["2021-06-10",70414,173,34771],["2021-06-11",70414,187,34958],["2021-06-12",70414,182,35140],["2021-06-13",70414,40,35180],["2021-06-14",70414,107,35287],["2021-06-15",70414,106,35393],["2021-06-16",70414,80,35473],["2021-06-17",70414,108,35581],["2021-06-18",70414,138,35719],["2021-06-19",70414,45,35764],["2021-06-20",70414,34,35798],["2021-06-21",70414,72,35870],["2021-06-22",70414,104,35974],["2021-06-23",70414,89,36063],["2021-06-24",70414,67,36130],["2021-06-25",70414,128,36258],["2021-06-26",70414,61,36319],["2021-06-27",70414,41,36360],["2021-06-28",70414,83,36443],["2021-06-29",70414,105,36548],["2021-06-30",70414,63,36611],["2021-07-01",70414,60,36671],["2021-07-02",70414,89,36760],["2021-07-03",70414,48,36808],["2021-07-04",70414,5,36813],["2021-07-05",70414,56,36869],["2021-07-06",70414,78,36947],["2021-07-07",70414,71,37018],["2021-07-08",70414,78,37096],["2021-07-09",70414,89,37185],["2021-07-10",70414,58,37243],["2021-07-11",70414,25,37268],["2021-07-12",70414,109,37377],["2021-07-13",70414,114,37491],["2021-07-14",70414,60,37551],["2021-07-15",70414,104,37655],["2021-07-16",70414,134,37789],["2021-07-17",70414,45,37834],["2021-07-18",70414,34,37868],["2021-07-19",70414,111,37979],["2021-07-20",70414,107,38086],["2021-07-21",70414,105,38191],["2021-07-22",70414,128,38319],["2021-07-23",70414,187,38506],["2021-07-24",70414,111,38617],["2021-07-25",70414,41,38658],["2021-07-26",70414,143,38801],["2021-07-27",70414,155,38956],["2021-07-28",70414,138,39094],["2021-07-29",70414,147,39241],["2021-07-30",70414,199,39440],["2021-07-31",70414,112,39552],["2021-08-01",70414,79,39631],["2021-08-02",70414,134,39765],["2021-08-03",70414,180,39945],["2021-08-04",70414,171,40116],["2021-08-05",70414,155,40271],["2021-08-06",70414,245,40516],["2021-08-07",70414,118,40634],["2021-08-08",70414,70,40704],["2021-08-09",70414,149,40853],["2021-08-10",70414,165,41018],["2021-08-11",70414,159,41177],["2021-08-12",70414,131,41308],["2021-08-13",70414,230,41538],["2021-08-14",70414,162,41700],["2021-08-15",70414,75,41775],["2021-08-16",70414,190,41965],["2021-08-17",70414,236,42201],["2021-08-18",70414,207,42408],["2021-08-19",70414,240,42648],["2021-08-20",70414,296,42944],["2021-08-21",70414,136,43080],["2021-08-22",70414,98,43178],["2021-08-23",70414,181,43359],["2021-08-24",70414,234,43593],["2021-08-25",70414,194,43787],["2021-08-26",70414,278,44065],["2021-08-27",70414,245,44310],["2021-08-28",70414,124,44434],["2021-08-29",70414,79,44513],["2021-08-30",70414,192,44705],["2021-08-31",70414,217,44922],["2021-09-01",70414,154,45076],["2021-09-02",70414,237,45313],["2021-09-03",70414,248,45561],["2021-09-04",70414,118,45679],["2021-09-05",70414,103,45782],["2021-09-06",70414,23,45805],["2021-09-07",70414,231,46036],["2021-09-08",70414,205,46241],["2021-09-09",70414,243,46484],["2021-09-10",70414,297,46781],["2021-09-11",70414,148,46929],["2021-09-12",70414,80,47009],["2021-09-13",70414,224,47233],["2021-09-14",70414,208,47441],["2021-09-15",70414,127,47568],["2021-09-16",70414,190,47758],["2021-09-17",70414,236,47994],["2021-09-18",70414,77,48071],["2021-09-19",70414,66,48137],["2021-09-20",70414,124,48261],["2021-09-21",70414,159,48420],["2021-09-22",70414,126,48546],["2021-09-23",70414,178,48724],["2021-09-24",70414,187,48911],["2021-09-25",70414,95,49006],["2021-09-26",70414,63,49069],["2021-09-27",70414,136,49205],["2021-09-28",70414,205,49410],["2021-09-29",70414,134,49544],["2021-09-30",70414,152,49696],["2021-10-01",70414,196,49892],["2021-10-02",70414,90,49982],["2021-10-03",70414,43,50025],["2021-10-04",70414,113,50138],["2021-10-05",70414,207,50345],["2021-10-06",70414,143,50488],["2021-10-07",70414,150,50638],["2021-10-08",70414,203,50841],["2021-10-09",70414,74,50915],["2021-10-10",70414,42,50957],["2021-10-11",70414,84,51041],["2021-10-12",70414,109,51150],["2021-10-13",70414,90,51240],["2021-10-14",70414,92,51332],["2021-10-15",70414,110,51442],["2021-10-16",70414,44,51486],["2021-10-17",70414,33,51519],["2021-10-18",70414,97,51616],["2021-10-19",70414,108,51724],["2021-10-20",70414,108,51832],["2021-10-21",70414,114,51946],["2021-10-22",70414,130,52076],["2021-10-23",70414,170,52246],["2021-10-24",70414,47,52293],["2021-10-25",70414,194,52487],["2021-10-26",70414,242,52729],["2021-10-27",70414,169,52898],["2021-10-28",70414,275,53173],["2021-10-29",70414,219,53392],["2021-10-30",70414,75,53467],["2021-10-31",70414,37,53504],["2021-11-01",70414,141,53645],["2021-11-02",70414,180,53825],["2021-11-03",70414,172,53997],["2021-11-04",70414,157,54154],["2021-11-05",70414,247,54401],["2021-11-06",70414,61,54462],["2021-11-07",70414,53,54515],["2021-11-08",70414,101,54616],["2021-11-09",70414,183,54799],["2021-11-10",70414,105,54904],["2021-11-11",70414,161,55065],["2021-11-12",70414,227,55292],["2021-11-13",70414,51,55343],["2021-11-14",70414,25,55368],["2021-11-15",70414,133,55501],["2021-11-16",70414,121,55622],["2021-11-17",70414,108,55730],["2021-11-18",70414,159,55889],["2021-11-19",70414,213,56102],["2021-11-20",70414,90,56192],["2021-11-21",70414,39,56231],["2021-11-22",70414,147,56378],["2021-11-23",70414,135,56513],["2021-11-24",70414,117,56630],["2021-11-25",70414,1,56631],["2021-11-26",70414,95,56726],["2021-11-27",70414,67,56793],["2021-11-28",70414,59,56852],["2021-11-29",70414,156,57008],["2021-11-30",70414,198,57206],["2021-12-01",70414,181,57387],["2021-12-02",70414,244,57631],["2021-12-03",70414,285,57916],["2021-12-04",70414,107,58023],["2021-12-05",70414,65,58088],["2021-12-06",70414,147,58235],["2021-12-07",70414,159,58394],["2021-12-08",70414,121,58515],["2021-12-09",70414,177,58692],["2021-12-10",70414,205,58897],["2021-12-11",70414,116,59013],["2021-12-12",70414,41,59054],["2021-12-13",70414,115,59169],["2021-12-14",70414,107,59276],["2021-12-15",70414,127,59403],["2021-12-16",70414,153,59556],["2021-12-17",70414,200,59756],["2021-12-18",70414,97,59853],["2021-12-19",70414,50,59903],["2021-12-20",70414,180,60083],["2021-12-21",70414,156,60239],["2021-12-22",70414,187,60426],["2021-12-23",70414,140,60566],["2021-12-24",70414,65,60631],["2021-12-26",70414,83,60714],["2021-12-27",70414,152,60866],["2021-12-28",70414,185,61051],["2021-12-29",70414,184,61235],["2021-12-30",70414,187,61422],["2021-12-31",70414,122,61544],["2022-01-01",70414,7,61551],["2022-01-02",70414,76,61627],["2022-01-03",70414,58,61685]]} \ No newline at end of file diff --git a/public/data/overall/vaccinations/by-county/Turner.json b/public/data/overall/vaccinations/by-county/Turner.json new file mode 100644 index 000000000..d96560d58 --- /dev/null +++ b/public/data/overall/vaccinations/by-county/Turner.json @@ -0,0 +1 @@ +{"segment":{"county":"Turner"},"headers":["report_date","population","vaccinations","total_vaccinations"],"rows":[["2020-12-17",8076,2,2],["2020-12-18",8076,2,4],["2020-12-20",8076,1,5],["2020-12-21",8076,3,8],["2020-12-22",8076,2,10],["2020-12-23",8076,16,26],["2020-12-24",8076,4,30],["2020-12-28",8076,28,58],["2020-12-29",8076,11,69],["2020-12-30",8076,18,87],["2020-12-31",8076,14,101],["2021-01-01",8076,1,102],["2021-01-03",8076,43,145],["2021-01-04",8076,29,174],["2021-01-05",8076,14,188],["2021-01-06",8076,24,212],["2021-01-07",8076,20,232],["2021-01-08",8076,16,248],["2021-01-09",8076,1,249],["2021-01-11",8076,57,306],["2021-01-12",8076,14,320],["2021-01-13",8076,47,367],["2021-01-14",8076,51,418],["2021-01-15",8076,58,476],["2021-01-16",8076,1,477],["2021-01-18",8076,54,531],["2021-01-19",8076,23,554],["2021-01-20",8076,57,611],["2021-01-21",8076,82,693],["2021-01-22",8076,69,762],["2021-01-24",8076,67,829],["2021-01-25",8076,65,894],["2021-01-26",8076,32,926],["2021-01-27",8076,70,996],["2021-01-28",8076,74,1070],["2021-01-29",8076,45,1115],["2021-01-30",8076,2,1117],["2021-01-31",8076,2,1119],["2021-02-01",8076,77,1196],["2021-02-02",8076,22,1218],["2021-02-03",8076,83,1301],["2021-02-04",8076,72,1373],["2021-02-05",8076,61,1434],["2021-02-06",8076,5,1439],["2021-02-08",8076,69,1508],["2021-02-09",8076,19,1527],["2021-02-10",8076,59,1586],["2021-02-11",8076,74,1660],["2021-02-12",8076,74,1734],["2021-02-13",8076,1,1735],["2021-02-14",8076,1,1736],["2021-02-15",8076,61,1797],["2021-02-16",8076,34,1831],["2021-02-17",8076,82,1913],["2021-02-18",8076,76,1989],["2021-02-19",8076,66,2055],["2021-02-22",8076,80,2135],["2021-02-23",8076,24,2159],["2021-02-24",8076,74,2233],["2021-02-25",8076,69,2302],["2021-02-26",8076,56,2358],["2021-02-27",8076,2,2360],["2021-02-28",8076,2,2362],["2021-03-01",8076,63,2425],["2021-03-02",8076,22,2447],["2021-03-03",8076,60,2507],["2021-03-04",8076,28,2535],["2021-03-05",8076,64,2599],["2021-03-06",8076,3,2602],["2021-03-07",8076,2,2604],["2021-03-08",8076,57,2661],["2021-03-09",8076,19,2680],["2021-03-10",8076,105,2785],["2021-03-11",8076,51,2836],["2021-03-12",8076,48,2884],["2021-03-13",8076,8,2892],["2021-03-14",8076,10,2902],["2021-03-15",8076,54,2956],["2021-03-16",8076,42,2998],["2021-03-17",8076,79,3077],["2021-03-18",8076,24,3101],["2021-03-19",8076,43,3144],["2021-03-20",8076,1,3145],["2021-03-21",8076,10,3155],["2021-03-22",8076,23,3178],["2021-03-23",8076,35,3213],["2021-03-24",8076,59,3272],["2021-03-25",8076,123,3395],["2021-03-26",8076,23,3418],["2021-03-27",8076,2,3420],["2021-03-28",8076,11,3431],["2021-03-29",8076,14,3445],["2021-03-30",8076,57,3502],["2021-03-31",8076,59,3561],["2021-04-01",8076,82,3643],["2021-04-02",8076,93,3736],["2021-04-03",8076,6,3742],["2021-04-04",8076,1,3743],["2021-04-05",8076,57,3800],["2021-04-06",8076,39,3839],["2021-04-07",8076,103,3942],["2021-04-08",8076,32,3974],["2021-04-09",8076,28,4002],["2021-04-10",8076,7,4009],["2021-04-11",8076,9,4018],["2021-04-12",8076,33,4051],["2021-04-13",8076,38,4089],["2021-04-14",8076,75,4164],["2021-04-15",8076,146,4310],["2021-04-16",8076,36,4346],["2021-04-17",8076,4,4350],["2021-04-19",8076,28,4378],["2021-04-20",8076,25,4403],["2021-04-21",8076,70,4473],["2021-04-22",8076,30,4503],["2021-04-23",8076,64,4567],["2021-04-25",8076,1,4568],["2021-04-26",8076,13,4581],["2021-04-27",8076,25,4606],["2021-04-28",8076,65,4671],["2021-04-29",8076,69,4740],["2021-04-30",8076,22,4762],["2021-05-01",8076,3,4765],["2021-05-03",8076,15,4780],["2021-05-04",8076,12,4792],["2021-05-05",8076,81,4873],["2021-05-06",8076,80,4953],["2021-05-07",8076,20,4973],["2021-05-08",8076,4,4977],["2021-05-09",8076,3,4980],["2021-05-10",8076,17,4997],["2021-05-11",8076,28,5025],["2021-05-12",8076,43,5068],["2021-05-13",8076,27,5095],["2021-05-14",8076,51,5146],["2021-05-15",8076,6,5152],["2021-05-16",8076,5,5157],["2021-05-17",8076,14,5171],["2021-05-18",8076,18,5189],["2021-05-19",8076,53,5242],["2021-05-20",8076,31,5273],["2021-05-21",8076,24,5297],["2021-05-22",8076,5,5302],["2021-05-23",8076,1,5303],["2021-05-24",8076,13,5316],["2021-05-25",8076,8,5324],["2021-05-26",8076,33,5357],["2021-05-27",8076,34,5391],["2021-05-28",8076,14,5405],["2021-05-29",8076,4,5409],["2021-05-30",8076,6,5415],["2021-05-31",8076,2,5417],["2021-06-01",8076,13,5430],["2021-06-02",8076,19,5449],["2021-06-03",8076,38,5487],["2021-06-04",8076,10,5497],["2021-06-05",8076,4,5501],["2021-06-06",8076,4,5505],["2021-06-07",8076,14,5519],["2021-06-08",8076,17,5536],["2021-06-09",8076,28,5564],["2021-06-10",8076,10,5574],["2021-06-11",8076,19,5593],["2021-06-12",8076,9,5602],["2021-06-14",8076,6,5608],["2021-06-15",8076,6,5614],["2021-06-16",8076,30,5644],["2021-06-17",8076,12,5656],["2021-06-18",8076,15,5671],["2021-06-19",8076,2,5673],["2021-06-20",8076,5,5678],["2021-06-21",8076,7,5685],["2021-06-22",8076,92,5777],["2021-06-23",8076,9,5786],["2021-06-24",8076,18,5804],["2021-06-25",8076,16,5820],["2021-06-26",8076,19,5839],["2021-06-28",8076,5,5844],["2021-06-29",8076,7,5851],["2021-06-30",8076,7,5858],["2021-07-01",8076,11,5869],["2021-07-02",8076,9,5878],["2021-07-03",8076,7,5885],["2021-07-05",8076,5,5890],["2021-07-06",8076,5,5895],["2021-07-07",8076,6,5901],["2021-07-08",8076,18,5919],["2021-07-09",8076,11,5930],["2021-07-10",8076,5,5935],["2021-07-12",8076,7,5942],["2021-07-13",8076,10,5952],["2021-07-14",8076,9,5961],["2021-07-15",8076,18,5979],["2021-07-16",8076,8,5987],["2021-07-17",8076,17,6004],["2021-07-18",8076,2,6006],["2021-07-19",8076,5,6011],["2021-07-20",8076,13,6024],["2021-07-21",8076,13,6037],["2021-07-22",8076,45,6082],["2021-07-23",8076,20,6102],["2021-07-24",8076,8,6110],["2021-07-25",8076,8,6118],["2021-07-26",8076,28,6146],["2021-07-27",8076,45,6191],["2021-07-28",8076,26,6217],["2021-07-29",8076,41,6258],["2021-07-30",8076,59,6317],["2021-07-31",8076,7,6324],["2021-08-01",8076,4,6328],["2021-08-02",8076,37,6365],["2021-08-03",8076,23,6388],["2021-08-04",8076,36,6424],["2021-08-05",8076,43,6467],["2021-08-06",8076,38,6505],["2021-08-07",8076,19,6524],["2021-08-08",8076,6,6530],["2021-08-09",8076,35,6565],["2021-08-10",8076,24,6589],["2021-08-11",8076,31,6620],["2021-08-12",8076,42,6662],["2021-08-13",8076,42,6704],["2021-08-14",8076,21,6725],["2021-08-15",8076,10,6735],["2021-08-16",8076,37,6772],["2021-08-17",8076,49,6821],["2021-08-18",8076,22,6843],["2021-08-19",8076,39,6882],["2021-08-20",8076,49,6931],["2021-08-21",8076,6,6937],["2021-08-22",8076,11,6948],["2021-08-23",8076,46,6994],["2021-08-24",8076,30,7024],["2021-08-25",8076,23,7047],["2021-08-26",8076,50,7097],["2021-08-27",8076,32,7129],["2021-08-28",8076,14,7143],["2021-08-29",8076,9,7152],["2021-08-30",8076,56,7208],["2021-08-31",8076,34,7242],["2021-09-01",8076,36,7278],["2021-09-02",8076,46,7324],["2021-09-03",8076,43,7367],["2021-09-04",8076,14,7381],["2021-09-05",8076,10,7391],["2021-09-06",8076,5,7396],["2021-09-07",8076,49,7445],["2021-09-08",8076,21,7466],["2021-09-09",8076,67,7533],["2021-09-10",8076,45,7578],["2021-09-11",8076,11,7589],["2021-09-12",8076,4,7593],["2021-09-13",8076,35,7628],["2021-09-14",8076,29,7657],["2021-09-15",8076,19,7676],["2021-09-16",8076,24,7700],["2021-09-17",8076,39,7739],["2021-09-18",8076,10,7749],["2021-09-19",8076,5,7754],["2021-09-20",8076,25,7779],["2021-09-21",8076,17,7796],["2021-09-22",8076,10,7806],["2021-09-23",8076,40,7846],["2021-09-24",8076,14,7860],["2021-09-25",8076,6,7866],["2021-09-26",8076,6,7872],["2021-09-27",8076,18,7890],["2021-09-28",8076,15,7905],["2021-09-29",8076,9,7914],["2021-09-30",8076,25,7939],["2021-10-01",8076,28,7967],["2021-10-02",8076,3,7970],["2021-10-03",8076,3,7973],["2021-10-04",8076,11,7984],["2021-10-05",8076,11,7995],["2021-10-06",8076,16,8011],["2021-10-07",8076,36,8047],["2021-10-08",8076,7,8054],["2021-10-09",8076,4,8058],["2021-10-10",8076,3,8061],["2021-10-11",8076,8,8069],["2021-10-12",8076,10,8079],["2021-10-13",8076,8,8087],["2021-10-14",8076,20,8107],["2021-10-15",8076,4,8111],["2021-10-16",8076,3,8114],["2021-10-17",8076,2,8116],["2021-10-18",8076,16,8132],["2021-10-19",8076,10,8142],["2021-10-20",8076,9,8151],["2021-10-21",8076,28,8179],["2021-10-22",8076,11,8190],["2021-10-23",8076,2,8192],["2021-10-24",8076,1,8193],["2021-10-25",8076,14,8207],["2021-10-26",8076,15,8222],["2021-10-27",8076,32,8254],["2021-10-28",8076,15,8269],["2021-10-29",8076,28,8297],["2021-10-30",8076,1,8298],["2021-10-31",8076,3,8301],["2021-11-01",8076,20,8321],["2021-11-02",8076,10,8331],["2021-11-03",8076,39,8370],["2021-11-04",8076,10,8380],["2021-11-05",8076,31,8411],["2021-11-06",8076,1,8412],["2021-11-08",8076,6,8418],["2021-11-09",8076,34,8452],["2021-11-10",8076,40,8492],["2021-11-11",8076,9,8501],["2021-11-12",8076,9,8510],["2021-11-13",8076,8,8518],["2021-11-14",8076,16,8534],["2021-11-15",8076,29,8563],["2021-11-16",8076,12,8575],["2021-11-17",8076,34,8609],["2021-11-18",8076,10,8619],["2021-11-19",8076,25,8644],["2021-11-20",8076,3,8647],["2021-11-21",8076,10,8657],["2021-11-22",8076,23,8680],["2021-11-23",8076,25,8705],["2021-11-24",8076,5,8710],["2021-11-26",8076,6,8716],["2021-11-27",8076,3,8719],["2021-11-28",8076,4,8723],["2021-11-29",8076,11,8734],["2021-11-30",8076,15,8749],["2021-12-01",8076,23,8772],["2021-12-02",8076,48,8820],["2021-12-03",8076,45,8865],["2021-12-04",8076,7,8872],["2021-12-05",8076,5,8877],["2021-12-06",8076,14,8891],["2021-12-07",8076,11,8902],["2021-12-08",8076,55,8957],["2021-12-09",8076,30,8987],["2021-12-10",8076,36,9023],["2021-12-11",8076,2,9025],["2021-12-12",8076,2,9027],["2021-12-13",8076,20,9047],["2021-12-14",8076,11,9058],["2021-12-15",8076,59,9117],["2021-12-16",8076,18,9135],["2021-12-17",8076,24,9159],["2021-12-18",8076,5,9164],["2021-12-19",8076,1,9165],["2021-12-20",8076,13,9178],["2021-12-21",8076,45,9223],["2021-12-22",8076,43,9266],["2021-12-23",8076,13,9279],["2021-12-24",8076,4,9283],["2021-12-26",8076,2,9285],["2021-12-27",8076,20,9305],["2021-12-28",8076,15,9320],["2021-12-29",8076,25,9345],["2021-12-30",8076,42,9387],["2021-12-31",8076,18,9405],["2022-01-01",8076,1,9406],["2022-01-02",8076,3,9409],["2022-01-03",8076,6,9415]]} \ No newline at end of file diff --git a/public/data/overall/vaccinations/by-county/Twiggs.json b/public/data/overall/vaccinations/by-county/Twiggs.json new file mode 100644 index 000000000..fb8bc81e0 --- /dev/null +++ b/public/data/overall/vaccinations/by-county/Twiggs.json @@ -0,0 +1 @@ +{"segment":{"county":"Twiggs"},"headers":["report_date","population","vaccinations","total_vaccinations"],"rows":[["2020-12-17",8086,1,1],["2020-12-18",8086,3,4],["2020-12-19",8086,1,5],["2020-12-22",8086,5,10],["2020-12-23",8086,7,17],["2020-12-24",8086,4,21],["2020-12-26",8086,1,22],["2020-12-27",8086,26,48],["2020-12-28",8086,38,86],["2020-12-29",8086,7,93],["2020-12-30",8086,9,102],["2020-12-31",8086,4,106],["2021-01-03",8086,1,107],["2021-01-04",8086,4,111],["2021-01-05",8086,5,116],["2021-01-06",8086,22,138],["2021-01-07",8086,5,143],["2021-01-08",8086,9,152],["2021-01-09",8086,1,153],["2021-01-10",8086,2,155],["2021-01-11",8086,14,169],["2021-01-12",8086,7,176],["2021-01-13",8086,30,206],["2021-01-14",8086,24,230],["2021-01-15",8086,37,267],["2021-01-16",8086,10,277],["2021-01-17",8086,33,310],["2021-01-18",8086,64,374],["2021-01-19",8086,23,397],["2021-01-20",8086,83,480],["2021-01-21",8086,43,523],["2021-01-22",8086,64,587],["2021-01-23",8086,12,599],["2021-01-24",8086,2,601],["2021-01-25",8086,51,652],["2021-01-26",8086,20,672],["2021-01-27",8086,102,774],["2021-01-28",8086,26,800],["2021-01-29",8086,34,834],["2021-01-31",8086,2,836],["2021-02-01",8086,23,859],["2021-02-02",8086,17,876],["2021-02-03",8086,71,947],["2021-02-04",8086,46,993],["2021-02-05",8086,38,1031],["2021-02-06",8086,6,1037],["2021-02-07",8086,3,1040],["2021-02-08",8086,60,1100],["2021-02-09",8086,22,1122],["2021-02-10",8086,69,1191],["2021-02-11",8086,26,1217],["2021-02-12",8086,61,1278],["2021-02-13",8086,23,1301],["2021-02-14",8086,2,1303],["2021-02-15",8086,43,1346],["2021-02-16",8086,23,1369],["2021-02-17",8086,78,1447],["2021-02-18",8086,40,1487],["2021-02-19",8086,67,1554],["2021-02-20",8086,12,1566],["2021-02-22",8086,25,1591],["2021-02-23",8086,32,1623],["2021-02-24",8086,143,1766],["2021-02-25",8086,73,1839],["2021-02-26",8086,91,1930],["2021-02-27",8086,5,1935],["2021-02-28",8086,2,1937],["2021-03-01",8086,72,2009],["2021-03-02",8086,38,2047],["2021-03-03",8086,106,2153],["2021-03-04",8086,57,2210],["2021-03-05",8086,60,2270],["2021-03-06",8086,6,2276],["2021-03-07",8086,4,2280],["2021-03-08",8086,49,2329],["2021-03-09",8086,20,2349],["2021-03-10",8086,102,2451],["2021-03-11",8086,44,2495],["2021-03-12",8086,94,2589],["2021-03-13",8086,17,2606],["2021-03-14",8086,3,2609],["2021-03-15",8086,68,2677],["2021-03-16",8086,51,2728],["2021-03-17",8086,142,2870],["2021-03-18",8086,43,2913],["2021-03-19",8086,99,3012],["2021-03-20",8086,7,3019],["2021-03-21",8086,2,3021],["2021-03-22",8086,62,3083],["2021-03-23",8086,30,3113],["2021-03-24",8086,120,3233],["2021-03-25",8086,60,3293],["2021-03-26",8086,89,3382],["2021-03-27",8086,14,3396],["2021-03-28",8086,10,3406],["2021-03-29",8086,64,3470],["2021-03-30",8086,39,3509],["2021-03-31",8086,105,3614],["2021-04-01",8086,61,3675],["2021-04-02",8086,77,3752],["2021-04-03",8086,16,3768],["2021-04-04",8086,8,3776],["2021-04-05",8086,54,3830],["2021-04-06",8086,39,3869],["2021-04-07",8086,106,3975],["2021-04-08",8086,67,4042],["2021-04-09",8086,93,4135],["2021-04-10",8086,18,4153],["2021-04-11",8086,7,4160],["2021-04-12",8086,60,4220],["2021-04-13",8086,45,4265],["2021-04-14",8086,121,4386],["2021-04-15",8086,37,4423],["2021-04-16",8086,57,4480],["2021-04-17",8086,16,4496],["2021-04-18",8086,8,4504],["2021-04-19",8086,65,4569],["2021-04-20",8086,40,4609],["2021-04-21",8086,127,4736],["2021-04-22",8086,52,4788],["2021-04-23",8086,60,4848],["2021-04-24",8086,10,4858],["2021-04-25",8086,4,4862],["2021-04-26",8086,54,4916],["2021-04-27",8086,30,4946],["2021-04-28",8086,87,5033],["2021-04-29",8086,34,5067],["2021-04-30",8086,60,5127],["2021-05-01",8086,13,5140],["2021-05-02",8086,7,5147],["2021-05-03",8086,36,5183],["2021-05-04",8086,34,5217],["2021-05-05",8086,58,5275],["2021-05-06",8086,32,5307],["2021-05-07",8086,34,5341],["2021-05-08",8086,16,5357],["2021-05-09",8086,1,5358],["2021-05-10",8086,28,5386],["2021-05-11",8086,28,5414],["2021-05-12",8086,62,5476],["2021-05-13",8086,25,5501],["2021-05-14",8086,28,5529],["2021-05-15",8086,8,5537],["2021-05-16",8086,14,5551],["2021-05-17",8086,38,5589],["2021-05-18",8086,35,5624],["2021-05-19",8086,45,5669],["2021-05-20",8086,29,5698],["2021-05-21",8086,35,5733],["2021-05-22",8086,24,5757],["2021-05-23",8086,9,5766],["2021-05-24",8086,16,5782],["2021-05-25",8086,15,5797],["2021-05-26",8086,36,5833],["2021-05-27",8086,21,5854],["2021-05-28",8086,20,5874],["2021-05-29",8086,9,5883],["2021-05-30",8086,8,5891],["2021-05-31",8086,2,5893],["2021-06-01",8086,15,5908],["2021-06-02",8086,49,5957],["2021-06-03",8086,29,5986],["2021-06-04",8086,21,6007],["2021-06-05",8086,34,6041],["2021-06-06",8086,36,6077],["2021-06-07",8086,13,6090],["2021-06-08",8086,12,6102],["2021-06-09",8086,29,6131],["2021-06-10",8086,21,6152],["2021-06-11",8086,17,6169],["2021-06-12",8086,35,6204],["2021-06-13",8086,12,6216],["2021-06-14",8086,6,6222],["2021-06-15",8086,13,6235],["2021-06-16",8086,30,6265],["2021-06-17",8086,17,6282],["2021-06-18",8086,17,6299],["2021-06-19",8086,9,6308],["2021-06-20",8086,6,6314],["2021-06-21",8086,9,6323],["2021-06-22",8086,7,6330],["2021-06-23",8086,36,6366],["2021-06-24",8086,8,6374],["2021-06-25",8086,23,6397],["2021-06-26",8086,42,6439],["2021-06-27",8086,64,6503],["2021-06-28",8086,12,6515],["2021-06-29",8086,22,6537],["2021-06-30",8086,13,6550],["2021-07-01",8086,14,6564],["2021-07-02",8086,16,6580],["2021-07-03",8086,12,6592],["2021-07-05",8086,4,6596],["2021-07-06",8086,8,6604],["2021-07-07",8086,37,6641],["2021-07-08",8086,14,6655],["2021-07-09",8086,11,6666],["2021-07-10",8086,7,6673],["2021-07-11",8086,5,6678],["2021-07-12",8086,5,6683],["2021-07-13",8086,11,6694],["2021-07-14",8086,14,6708],["2021-07-15",8086,16,6724],["2021-07-16",8086,12,6736],["2021-07-17",8086,30,6766],["2021-07-18",8086,1,6767],["2021-07-19",8086,10,6777],["2021-07-20",8086,22,6799],["2021-07-21",8086,29,6828],["2021-07-22",8086,15,6843],["2021-07-23",8086,20,6863],["2021-07-24",8086,18,6881],["2021-07-25",8086,3,6884],["2021-07-26",8086,21,6905],["2021-07-27",8086,14,6919],["2021-07-28",8086,57,6976],["2021-07-29",8086,15,6991],["2021-07-30",8086,26,7017],["2021-07-31",8086,40,7057],["2021-08-01",8086,7,7064],["2021-08-02",8086,15,7079],["2021-08-03",8086,14,7093],["2021-08-04",8086,33,7126],["2021-08-05",8086,30,7156],["2021-08-06",8086,26,7182],["2021-08-07",8086,34,7216],["2021-08-08",8086,10,7226],["2021-08-09",8086,19,7245],["2021-08-10",8086,14,7259],["2021-08-11",8086,53,7312],["2021-08-12",8086,20,7332],["2021-08-13",8086,22,7354],["2021-08-14",8086,31,7385],["2021-08-15",8086,11,7396],["2021-08-16",8086,25,7421],["2021-08-17",8086,58,7479],["2021-08-18",8086,54,7533],["2021-08-19",8086,25,7558],["2021-08-20",8086,28,7586],["2021-08-21",8086,67,7653],["2021-08-22",8086,8,7661],["2021-08-23",8086,31,7692],["2021-08-24",8086,17,7709],["2021-08-25",8086,33,7742],["2021-08-26",8086,28,7770],["2021-08-27",8086,42,7812],["2021-08-28",8086,28,7840],["2021-08-29",8086,10,7850],["2021-08-30",8086,23,7873],["2021-08-31",8086,16,7889],["2021-09-01",8086,44,7933],["2021-09-02",8086,32,7965],["2021-09-03",8086,24,7989],["2021-09-04",8086,38,8027],["2021-09-05",8086,9,8036],["2021-09-06",8086,5,8041],["2021-09-07",8086,26,8067],["2021-09-08",8086,46,8113],["2021-09-09",8086,29,8142],["2021-09-10",8086,27,8169],["2021-09-11",8086,39,8208],["2021-09-12",8086,8,8216],["2021-09-13",8086,25,8241],["2021-09-14",8086,23,8264],["2021-09-15",8086,42,8306],["2021-09-16",8086,25,8331],["2021-09-17",8086,41,8372],["2021-09-18",8086,21,8393],["2021-09-19",8086,7,8400],["2021-09-20",8086,19,8419],["2021-09-21",8086,12,8431],["2021-09-22",8086,47,8478],["2021-09-23",8086,15,8493],["2021-09-24",8086,19,8512],["2021-09-25",8086,9,8521],["2021-09-26",8086,5,8526],["2021-09-27",8086,14,8540],["2021-09-28",8086,14,8554],["2021-09-29",8086,29,8583],["2021-09-30",8086,25,8608],["2021-10-01",8086,20,8628],["2021-10-02",8086,12,8640],["2021-10-03",8086,5,8645],["2021-10-04",8086,19,8664],["2021-10-05",8086,12,8676],["2021-10-06",8086,18,8694],["2021-10-07",8086,12,8706],["2021-10-08",8086,20,8726],["2021-10-09",8086,16,8742],["2021-10-10",8086,7,8749],["2021-10-11",8086,11,8760],["2021-10-12",8086,11,8771],["2021-10-13",8086,26,8797],["2021-10-14",8086,14,8811],["2021-10-15",8086,14,8825],["2021-10-16",8086,15,8840],["2021-10-17",8086,5,8845],["2021-10-18",8086,11,8856],["2021-10-19",8086,11,8867],["2021-10-20",8086,27,8894],["2021-10-21",8086,13,8907],["2021-10-22",8086,12,8919],["2021-10-23",8086,16,8935],["2021-10-24",8086,14,8949],["2021-10-25",8086,22,8971],["2021-10-26",8086,14,8985],["2021-10-27",8086,55,9040],["2021-10-28",8086,39,9079],["2021-10-29",8086,24,9103],["2021-10-30",8086,16,9119],["2021-10-31",8086,5,9124],["2021-11-01",8086,22,9146],["2021-11-02",8086,20,9166],["2021-11-03",8086,93,9259],["2021-11-04",8086,20,9279],["2021-11-05",8086,37,9316],["2021-11-06",8086,14,9330],["2021-11-07",8086,2,9332],["2021-11-08",8086,20,9352],["2021-11-09",8086,19,9371],["2021-11-10",8086,89,9460],["2021-11-11",8086,21,9481],["2021-11-12",8086,28,9509],["2021-11-13",8086,19,9528],["2021-11-14",8086,5,9533],["2021-11-15",8086,12,9545],["2021-11-16",8086,12,9557],["2021-11-17",8086,62,9619],["2021-11-18",8086,33,9652],["2021-11-19",8086,16,9668],["2021-11-20",8086,26,9694],["2021-11-21",8086,3,9697],["2021-11-22",8086,14,9711],["2021-11-23",8086,36,9747],["2021-11-24",8086,32,9779],["2021-11-26",8086,6,9785],["2021-11-27",8086,16,9801],["2021-11-28",8086,2,9803],["2021-11-29",8086,18,9821],["2021-11-30",8086,23,9844],["2021-12-01",8086,42,9886],["2021-12-02",8086,34,9920],["2021-12-03",8086,31,9951],["2021-12-04",8086,28,9979],["2021-12-05",8086,3,9982],["2021-12-06",8086,19,10001],["2021-12-07",8086,21,10022],["2021-12-08",8086,39,10061],["2021-12-09",8086,18,10079],["2021-12-10",8086,34,10113],["2021-12-11",8086,9,10122],["2021-12-12",8086,5,10127],["2021-12-13",8086,13,10140],["2021-12-14",8086,12,10152],["2021-12-15",8086,34,10186],["2021-12-16",8086,16,10202],["2021-12-17",8086,26,10228],["2021-12-18",8086,21,10249],["2021-12-19",8086,3,10252],["2021-12-20",8086,13,10265],["2021-12-21",8086,15,10280],["2021-12-22",8086,23,10303],["2021-12-23",8086,18,10321],["2021-12-24",8086,3,10324],["2021-12-26",8086,8,10332],["2021-12-27",8086,15,10347],["2021-12-28",8086,28,10375],["2021-12-29",8086,18,10393],["2021-12-30",8086,25,10418],["2021-12-31",8086,11,10429],["2022-01-02",8086,2,10431],["2022-01-03",8086,3,10434]]} \ No newline at end of file diff --git a/public/data/overall/vaccinations/by-county/Union.json b/public/data/overall/vaccinations/by-county/Union.json new file mode 100644 index 000000000..5b0591e1e --- /dev/null +++ b/public/data/overall/vaccinations/by-county/Union.json @@ -0,0 +1 @@ +{"segment":{"county":"Union"},"headers":["report_date","population","vaccinations","total_vaccinations"],"rows":[["2020-12-16",25335,1,1],["2020-12-18",25335,3,4],["2020-12-19",25335,1,5],["2020-12-20",25335,6,11],["2020-12-21",25335,1,12],["2020-12-22",25335,2,14],["2020-12-23",25335,88,102],["2020-12-24",25335,63,165],["2020-12-26",25335,1,166],["2020-12-28",25335,44,210],["2020-12-29",25335,105,315],["2020-12-30",25335,12,327],["2020-12-31",25335,5,332],["2021-01-01",25335,11,343],["2021-01-02",25335,1,344],["2021-01-04",25335,82,426],["2021-01-05",25335,91,517],["2021-01-06",25335,51,568],["2021-01-07",25335,45,613],["2021-01-08",25335,10,623],["2021-01-09",25335,6,629],["2021-01-10",25335,3,632],["2021-01-11",25335,46,678],["2021-01-12",25335,163,841],["2021-01-13",25335,130,971],["2021-01-14",25335,297,1268],["2021-01-15",25335,71,1339],["2021-01-16",25335,40,1379],["2021-01-17",25335,19,1398],["2021-01-18",25335,237,1635],["2021-01-19",25335,136,1771],["2021-01-20",25335,144,1915],["2021-01-21",25335,101,2016],["2021-01-22",25335,778,2794],["2021-01-23",25335,29,2823],["2021-01-24",25335,6,2829],["2021-01-25",25335,214,3043],["2021-01-26",25335,110,3153],["2021-01-27",25335,106,3259],["2021-01-28",25335,78,3337],["2021-01-29",25335,237,3574],["2021-01-30",25335,15,3589],["2021-01-31",25335,5,3594],["2021-02-01",25335,326,3920],["2021-02-02",25335,117,4037],["2021-02-03",25335,124,4161],["2021-02-04",25335,251,4412],["2021-02-05",25335,136,4548],["2021-02-06",25335,22,4570],["2021-02-07",25335,16,4586],["2021-02-08",25335,273,4859],["2021-02-09",25335,213,5072],["2021-02-10",25335,181,5253],["2021-02-11",25335,201,5454],["2021-02-12",25335,101,5555],["2021-02-13",25335,49,5604],["2021-02-14",25335,20,5624],["2021-02-15",25335,118,5742],["2021-02-16",25335,145,5887],["2021-02-17",25335,167,6054],["2021-02-18",25335,159,6213],["2021-02-19",25335,213,6426],["2021-02-20",25335,30,6456],["2021-02-21",25335,7,6463],["2021-02-22",25335,74,6537],["2021-02-23",25335,167,6704],["2021-02-24",25335,132,6836],["2021-02-25",25335,136,6972],["2021-02-26",25335,1056,8028],["2021-02-27",25335,27,8055],["2021-02-28",25335,42,8097],["2021-03-01",25335,261,8358],["2021-03-02",25335,153,8511],["2021-03-03",25335,229,8740],["2021-03-04",25335,294,9034],["2021-03-05",25335,249,9283],["2021-03-06",25335,26,9309],["2021-03-07",25335,45,9354],["2021-03-08",25335,212,9566],["2021-03-09",25335,213,9779],["2021-03-10",25335,215,9994],["2021-03-11",25335,210,10204],["2021-03-12",25335,228,10432],["2021-03-13",25335,27,10459],["2021-03-14",25335,50,10509],["2021-03-15",25335,210,10719],["2021-03-16",25335,134,10853],["2021-03-17",25335,448,11301],["2021-03-18",25335,179,11480],["2021-03-19",25335,212,11692],["2021-03-20",25335,28,11720],["2021-03-21",25335,46,11766],["2021-03-22",25335,125,11891],["2021-03-23",25335,159,12050],["2021-03-24",25335,150,12200],["2021-03-25",25335,165,12365],["2021-03-26",25335,206,12571],["2021-03-27",25335,55,12626],["2021-03-28",25335,68,12694],["2021-03-29",25335,170,12864],["2021-03-30",25335,165,13029],["2021-03-31",25335,255,13284],["2021-04-01",25335,251,13535],["2021-04-02",25335,67,13602],["2021-04-03",25335,35,13637],["2021-04-04",25335,42,13679],["2021-04-05",25335,132,13811],["2021-04-06",25335,219,14030],["2021-04-07",25335,483,14513],["2021-04-08",25335,209,14722],["2021-04-09",25335,158,14880],["2021-04-10",25335,38,14918],["2021-04-11",25335,43,14961],["2021-04-12",25335,205,15166],["2021-04-13",25335,204,15370],["2021-04-14",25335,165,15535],["2021-04-15",25335,199,15734],["2021-04-16",25335,210,15944],["2021-04-17",25335,83,16027],["2021-04-18",25335,36,16063],["2021-04-19",25335,156,16219],["2021-04-20",25335,113,16332],["2021-04-21",25335,174,16506],["2021-04-22",25335,84,16590],["2021-04-23",25335,147,16737],["2021-04-24",25335,28,16765],["2021-04-25",25335,14,16779],["2021-04-26",25335,84,16863],["2021-04-27",25335,126,16989],["2021-04-28",25335,86,17075],["2021-04-29",25335,111,17186],["2021-04-30",25335,85,17271],["2021-05-01",25335,38,17309],["2021-05-02",25335,16,17325],["2021-05-03",25335,48,17373],["2021-05-04",25335,137,17510],["2021-05-05",25335,86,17596],["2021-05-06",25335,52,17648],["2021-05-07",25335,73,17721],["2021-05-08",25335,65,17786],["2021-05-09",25335,8,17794],["2021-05-10",25335,39,17833],["2021-05-11",25335,54,17887],["2021-05-12",25335,74,17961],["2021-05-13",25335,34,17995],["2021-05-14",25335,30,18025],["2021-05-15",25335,19,18044],["2021-05-16",25335,8,18052],["2021-05-17",25335,41,18093],["2021-05-18",25335,83,18176],["2021-05-19",25335,57,18233],["2021-05-20",25335,47,18280],["2021-05-21",25335,45,18325],["2021-05-22",25335,15,18340],["2021-05-23",25335,19,18359],["2021-05-24",25335,19,18378],["2021-05-25",25335,53,18431],["2021-05-26",25335,40,18471],["2021-05-27",25335,36,18507],["2021-05-28",25335,35,18542],["2021-05-29",25335,14,18556],["2021-05-30",25335,9,18565],["2021-05-31",25335,11,18576],["2021-06-01",25335,55,18631],["2021-06-02",25335,54,18685],["2021-06-03",25335,19,18704],["2021-06-04",25335,33,18737],["2021-06-05",25335,13,18750],["2021-06-06",25335,15,18765],["2021-06-07",25335,25,18790],["2021-06-08",25335,39,18829],["2021-06-09",25335,36,18865],["2021-06-10",25335,18,18883],["2021-06-11",25335,23,18906],["2021-06-12",25335,16,18922],["2021-06-13",25335,6,18928],["2021-06-14",25335,22,18950],["2021-06-15",25335,30,18980],["2021-06-16",25335,33,19013],["2021-06-17",25335,23,19036],["2021-06-18",25335,16,19052],["2021-06-19",25335,9,19061],["2021-06-20",25335,8,19069],["2021-06-21",25335,19,19088],["2021-06-22",25335,29,19117],["2021-06-23",25335,15,19132],["2021-06-24",25335,14,19146],["2021-06-25",25335,21,19167],["2021-06-26",25335,9,19176],["2021-06-27",25335,3,19179],["2021-06-28",25335,11,19190],["2021-06-29",25335,23,19213],["2021-06-30",25335,25,19238],["2021-07-01",25335,23,19261],["2021-07-02",25335,22,19283],["2021-07-03",25335,8,19291],["2021-07-04",25335,1,19292],["2021-07-05",25335,12,19304],["2021-07-06",25335,6,19310],["2021-07-07",25335,18,19328],["2021-07-08",25335,13,19341],["2021-07-09",25335,16,19357],["2021-07-10",25335,7,19364],["2021-07-11",25335,4,19368],["2021-07-12",25335,21,19389],["2021-07-13",25335,16,19405],["2021-07-14",25335,12,19417],["2021-07-15",25335,12,19429],["2021-07-16",25335,23,19452],["2021-07-17",25335,5,19457],["2021-07-18",25335,6,19463],["2021-07-19",25335,14,19477],["2021-07-20",25335,25,19502],["2021-07-21",25335,20,19522],["2021-07-22",25335,22,19544],["2021-07-23",25335,28,19572],["2021-07-24",25335,18,19590],["2021-07-25",25335,7,19597],["2021-07-26",25335,23,19620],["2021-07-27",25335,24,19644],["2021-07-28",25335,35,19679],["2021-07-29",25335,23,19702],["2021-07-30",25335,33,19735],["2021-07-31",25335,15,19750],["2021-08-01",25335,13,19763],["2021-08-02",25335,29,19792],["2021-08-03",25335,29,19821],["2021-08-04",25335,25,19846],["2021-08-05",25335,26,19872],["2021-08-06",25335,49,19921],["2021-08-07",25335,26,19947],["2021-08-08",25335,10,19957],["2021-08-09",25335,45,20002],["2021-08-10",25335,64,20066],["2021-08-11",25335,48,20114],["2021-08-12",25335,46,20160],["2021-08-13",25335,51,20211],["2021-08-14",25335,28,20239],["2021-08-15",25335,21,20260],["2021-08-16",25335,46,20306],["2021-08-17",25335,37,20343],["2021-08-18",25335,74,20417],["2021-08-19",25335,54,20471],["2021-08-20",25335,68,20539],["2021-08-21",25335,29,20568],["2021-08-22",25335,14,20582],["2021-08-23",25335,76,20658],["2021-08-24",25335,61,20719],["2021-08-25",25335,58,20777],["2021-08-26",25335,56,20833],["2021-08-27",25335,82,20915],["2021-08-28",25335,42,20957],["2021-08-29",25335,29,20986],["2021-08-30",25335,76,21062],["2021-08-31",25335,39,21101],["2021-09-01",25335,78,21179],["2021-09-02",25335,60,21239],["2021-09-03",25335,86,21325],["2021-09-04",25335,35,21360],["2021-09-05",25335,16,21376],["2021-09-06",25335,12,21388],["2021-09-07",25335,49,21437],["2021-09-08",25335,77,21514],["2021-09-09",25335,64,21578],["2021-09-10",25335,85,21663],["2021-09-11",25335,36,21699],["2021-09-12",25335,12,21711],["2021-09-13",25335,65,21776],["2021-09-14",25335,52,21828],["2021-09-15",25335,71,21899],["2021-09-16",25335,42,21941],["2021-09-17",25335,75,22016],["2021-09-18",25335,19,22035],["2021-09-19",25335,18,22053],["2021-09-20",25335,52,22105],["2021-09-21",25335,45,22150],["2021-09-22",25335,52,22202],["2021-09-23",25335,47,22249],["2021-09-24",25335,49,22298],["2021-09-25",25335,27,22325],["2021-09-26",25335,26,22351],["2021-09-27",25335,56,22407],["2021-09-28",25335,39,22446],["2021-09-29",25335,43,22489],["2021-09-30",25335,64,22553],["2021-10-01",25335,76,22629],["2021-10-02",25335,19,22648],["2021-10-03",25335,15,22663],["2021-10-04",25335,48,22711],["2021-10-05",25335,41,22752],["2021-10-06",25335,35,22787],["2021-10-07",25335,36,22823],["2021-10-08",25335,43,22866],["2021-10-09",25335,10,22876],["2021-10-10",25335,8,22884],["2021-10-11",25335,18,22902],["2021-10-12",25335,37,22939],["2021-10-13",25335,32,22971],["2021-10-14",25335,29,23000],["2021-10-15",25335,38,23038],["2021-10-16",25335,10,23048],["2021-10-17",25335,6,23054],["2021-10-18",25335,19,23073],["2021-10-19",25335,18,23091],["2021-10-20",25335,57,23148],["2021-10-21",25335,27,23175],["2021-10-22",25335,61,23236],["2021-10-23",25335,58,23294],["2021-10-24",25335,64,23358],["2021-10-25",25335,126,23484],["2021-10-26",25335,132,23616],["2021-10-27",25335,180,23796],["2021-10-28",25335,151,23947],["2021-10-29",25335,122,24069],["2021-10-30",25335,38,24107],["2021-10-31",25335,37,24144],["2021-11-01",25335,125,24269],["2021-11-02",25335,130,24399],["2021-11-03",25335,464,24863],["2021-11-04",25335,199,25062],["2021-11-05",25335,109,25171],["2021-11-06",25335,23,25194],["2021-11-07",25335,27,25221],["2021-11-08",25335,158,25379],["2021-11-09",25335,94,25473],["2021-11-10",25335,92,25565],["2021-11-11",25335,48,25613],["2021-11-12",25335,74,25687],["2021-11-13",25335,40,25727],["2021-11-14",25335,24,25751],["2021-11-15",25335,106,25857],["2021-11-16",25335,94,25951],["2021-11-17",25335,106,26057],["2021-11-18",25335,71,26128],["2021-11-19",25335,83,26211],["2021-11-20",25335,35,26246],["2021-11-21",25335,30,26276],["2021-11-22",25335,97,26373],["2021-11-23",25335,95,26468],["2021-11-24",25335,44,26512],["2021-11-25",25335,1,26513],["2021-11-26",25335,47,26560],["2021-11-27",25335,23,26583],["2021-11-28",25335,21,26604],["2021-11-29",25335,151,26755],["2021-11-30",25335,126,26881],["2021-12-01",25335,109,26990],["2021-12-02",25335,89,27079],["2021-12-03",25335,131,27210],["2021-12-04",25335,25,27235],["2021-12-05",25335,22,27257],["2021-12-06",25335,73,27330],["2021-12-07",25335,84,27414],["2021-12-08",25335,71,27485],["2021-12-09",25335,63,27548],["2021-12-10",25335,65,27613],["2021-12-11",25335,19,27632],["2021-12-12",25335,12,27644],["2021-12-13",25335,68,27712],["2021-12-14",25335,62,27774],["2021-12-15",25335,49,27823],["2021-12-16",25335,61,27884],["2021-12-17",25335,48,27932],["2021-12-18",25335,35,27967],["2021-12-19",25335,18,27985],["2021-12-20",25335,87,28072],["2021-12-21",25335,76,28148],["2021-12-22",25335,41,28189],["2021-12-23",25335,31,28220],["2021-12-24",25335,9,28229],["2021-12-26",25335,11,28240],["2021-12-27",25335,57,28297],["2021-12-28",25335,74,28371],["2021-12-29",25335,94,28465],["2021-12-30",25335,50,28515],["2021-12-31",25335,34,28549],["2022-01-01",25335,8,28557],["2022-01-02",25335,18,28575],["2022-01-03",25335,4,28579]]} \ No newline at end of file diff --git a/public/data/overall/vaccinations/by-county/Unknown.json b/public/data/overall/vaccinations/by-county/Unknown.json new file mode 100644 index 000000000..e4a8f0d84 --- /dev/null +++ b/public/data/overall/vaccinations/by-county/Unknown.json @@ -0,0 +1 @@ +{"segment":{"county":"Unknown"},"headers":["report_date","population","vaccinations","total_vaccinations"],"rows":[["2020-12-12",0,3,3],["2020-12-13",0,2,5],["2020-12-14",0,3,8],["2020-12-15",0,8,16],["2020-12-16",0,46,62],["2020-12-17",0,217,279],["2020-12-18",0,469,748],["2020-12-19",0,196,944],["2020-12-20",0,174,1118],["2020-12-21",0,338,1456],["2020-12-22",0,768,2224],["2020-12-23",0,992,3216],["2020-12-24",0,288,3504],["2020-12-25",0,11,3515],["2020-12-26",0,110,3625],["2020-12-27",0,84,3709],["2020-12-28",0,700,4409],["2020-12-29",0,809,5218],["2020-12-30",0,1019,6237],["2020-12-31",0,443,6680],["2021-01-01",0,226,6906],["2021-01-02",0,106,7012],["2021-01-03",0,74,7086],["2021-01-04",0,734,7820],["2021-01-05",0,1068,8888],["2021-01-06",0,915,9803],["2021-01-07",0,1012,10815],["2021-01-08",0,1320,12135],["2021-01-09",0,640,12775],["2021-01-10",0,220,12995],["2021-01-11",0,1477,14472],["2021-01-12",0,1913,16385],["2021-01-13",0,2258,18643],["2021-01-14",0,2292,20935],["2021-01-15",0,2174,23109],["2021-01-16",0,1386,24495],["2021-01-17",0,563,25058],["2021-01-18",0,2236,27294],["2021-01-19",0,2605,29899],["2021-01-20",0,2662,32561],["2021-01-21",0,2862,35423],["2021-01-22",0,2398,37821],["2021-01-23",0,559,38380],["2021-01-24",0,265,38645],["2021-01-25",0,1654,40299],["2021-01-26",0,1878,42177],["2021-01-27",0,2010,44187],["2021-01-28",0,3621,47808],["2021-01-29",0,2516,50324],["2021-01-30",0,613,50937],["2021-01-31",0,149,51086],["2021-02-01",0,1848,52934],["2021-02-02",0,1791,54725],["2021-02-03",0,1943,56668],["2021-02-04",0,2447,59115],["2021-02-05",0,2516,61631],["2021-02-06",0,636,62267],["2021-02-07",0,317,62584],["2021-02-08",0,1640,64224],["2021-02-09",0,2119,66343],["2021-02-10",0,2099,68442],["2021-02-11",0,2398,70840],["2021-02-12",0,2573,73413],["2021-02-13",0,1423,74836],["2021-02-14",0,706,75542],["2021-02-15",0,2390,77932],["2021-02-16",0,2402,80334],["2021-02-17",0,2627,82961],["2021-02-18",0,2825,85786],["2021-02-19",0,3246,89032],["2021-02-20",0,930,89962],["2021-02-21",0,407,90369],["2021-02-22",0,1329,91698],["2021-02-23",0,2086,93784],["2021-02-24",0,2100,95884],["2021-02-25",0,4167,100051],["2021-02-26",0,3957,104008],["2021-02-27",0,1006,105014],["2021-02-28",0,451,105465],["2021-03-01",0,2152,107617],["2021-03-02",0,2324,109941],["2021-03-03",0,2718,112659],["2021-03-04",0,2805,115464],["2021-03-05",0,3191,118655],["2021-03-06",0,1033,119688],["2021-03-07",0,539,120227],["2021-03-08",0,2536,122763],["2021-03-09",0,3469,126232],["2021-03-10",0,3232,129464],["2021-03-11",0,3422,132886],["2021-03-12",0,3689,136575],["2021-03-13",0,1610,138185],["2021-03-14",0,703,138888],["2021-03-15",0,3125,142013],["2021-03-16",0,3899,145912],["2021-03-17",0,3645,149557],["2021-03-18",0,3604,153161],["2021-03-19",0,4379,157540],["2021-03-20",0,1879,159419],["2021-03-21",0,1059,160478],["2021-03-22",0,3404,163882],["2021-03-23",0,4323,168205],["2021-03-24",0,4264,172469],["2021-03-25",0,4678,177147],["2021-03-26",0,4950,182097],["2021-03-27",0,2591,184688],["2021-03-28",0,1246,185934],["2021-03-29",0,4200,190134],["2021-03-30",0,6402,196536],["2021-03-31",0,6388,202924],["2021-04-01",0,6621,209545],["2021-04-02",0,5693,215238],["2021-04-03",0,2051,217289],["2021-04-04",0,1087,218376],["2021-04-05",0,4888,223264],["2021-04-06",0,5582,228846],["2021-04-07",0,5562,234408],["2021-04-08",0,4960,239368],["2021-04-09",0,5696,245064],["2021-04-10",0,2681,247745],["2021-04-11",0,1270,249015],["2021-04-12",0,4758,253773],["2021-04-13",0,5309,259082],["2021-04-14",0,5042,264124],["2021-04-15",0,5076,269200],["2021-04-16",0,5643,274843],["2021-04-17",0,2794,277637],["2021-04-18",0,1730,279367],["2021-04-19",0,4479,283846],["2021-04-20",0,5449,289295],["2021-04-21",0,5402,294697],["2021-04-22",0,5558,300255],["2021-04-23",0,6023,306278],["2021-04-24",0,3102,309380],["2021-04-25",0,1820,311200],["2021-04-26",0,4374,315574],["2021-04-27",0,4798,320372],["2021-04-28",0,5365,325737],["2021-04-29",0,4613,330350],["2021-04-30",0,5687,336037],["2021-05-01",0,2937,338974],["2021-05-02",0,1642,340616],["2021-05-03",0,3154,343770],["2021-05-04",0,4059,347829],["2021-05-05",0,4153,351982],["2021-05-06",0,3905,355887],["2021-05-07",0,4822,360709],["2021-05-08",0,2599,363308],["2021-05-09",0,1389,364697],["2021-05-10",0,2852,367549],["2021-05-11",0,3864,371413],["2021-05-12",0,4148,375561],["2021-05-13",0,3749,379310],["2021-05-14",0,4236,383546],["2021-05-15",0,3420,386966],["2021-05-16",0,2510,389476],["2021-05-17",0,3773,393249],["2021-05-18",0,4424,397673],["2021-05-19",0,4042,401715],["2021-05-20",0,3893,405608],["2021-05-21",0,3870,409478],["2021-05-22",0,3258,412736],["2021-05-23",0,1880,414616],["2021-05-24",0,2886,417502],["2021-05-25",0,3204,420706],["2021-05-26",0,3372,424078],["2021-05-27",0,2877,426955],["2021-05-28",0,2979,429934],["2021-05-29",0,2093,432027],["2021-05-30",0,1622,433649],["2021-05-31",0,652,434301],["2021-06-01",0,3602,437903],["2021-06-02",0,3178,441081],["2021-06-03",0,2992,444073],["2021-06-04",0,3796,447869],["2021-06-05",0,3002,450871],["2021-06-06",0,2185,453056],["2021-06-07",0,3073,456129],["2021-06-08",0,3189,459318],["2021-06-09",0,2746,462064],["2021-06-10",0,2981,465045],["2021-06-11",0,3378,468423],["2021-06-12",0,3068,471491],["2021-06-13",0,1594,473085],["2021-06-14",0,2626,475711],["2021-06-15",0,2717,478428],["2021-06-16",0,2423,480851],["2021-06-17",0,2539,483390],["2021-06-18",0,2669,486059],["2021-06-19",0,2082,488141],["2021-06-20",0,1365,489506],["2021-06-21",0,1849,491355],["2021-06-22",0,2411,493766],["2021-06-23",0,2514,496280],["2021-06-24",0,2058,498338],["2021-06-25",0,2326,500664],["2021-06-26",0,2039,502703],["2021-06-27",0,1561,504264],["2021-06-28",0,2065,506329],["2021-06-29",0,2025,508354],["2021-06-30",0,1886,510240],["2021-07-01",0,1814,512054],["2021-07-02",0,2118,514172],["2021-07-03",0,2876,517048],["2021-07-04",0,231,517279],["2021-07-05",0,1998,519277],["2021-07-06",0,1872,521149],["2021-07-07",0,2069,523218],["2021-07-08",0,1819,525037],["2021-07-09",0,2213,527250],["2021-07-10",0,1891,529141],["2021-07-11",0,1434,530575],["2021-07-12",0,2063,532638],["2021-07-13",0,1894,534532],["2021-07-14",0,1827,536359],["2021-07-15",0,1915,538274],["2021-07-16",0,2058,540332],["2021-07-17",0,1919,542251],["2021-07-18",0,1406,543657],["2021-07-19",0,2289,545946],["2021-07-20",0,2239,548185],["2021-07-21",0,2511,550696],["2021-07-22",0,2318,553014],["2021-07-23",0,2750,555764],["2021-07-24",0,2648,558412],["2021-07-25",0,1484,559896],["2021-07-26",0,2748,562644],["2021-07-27",0,2835,565479],["2021-07-28",0,2961,568440],["2021-07-29",0,2797,571237],["2021-07-30",0,3551,574788],["2021-07-31",0,3090,577878],["2021-08-01",0,2696,580574],["2021-08-02",0,3138,583712],["2021-08-03",0,3104,586816],["2021-08-04",0,3229,590045],["2021-08-05",0,2977,593022],["2021-08-06",0,3829,596851],["2021-08-07",0,3382,600233],["2021-08-08",0,3144,603377],["2021-08-09",0,3307,606684],["2021-08-10",0,3517,610201],["2021-08-11",0,3193,613394],["2021-08-12",0,3206,616600],["2021-08-13",0,6207,622807],["2021-08-14",0,3909,626716],["2021-08-15",0,2608,629324],["2021-08-16",0,5697,635021],["2021-08-17",0,7190,642211],["2021-08-18",0,6759,648970],["2021-08-19",0,6587,655557],["2021-08-20",0,7937,663494],["2021-08-21",0,5809,669303],["2021-08-22",0,4180,673483],["2021-08-23",0,6355,679838],["2021-08-24",0,6486,686324],["2021-08-25",0,6697,693021],["2021-08-26",0,6751,699772],["2021-08-27",0,7715,707487],["2021-08-28",0,6282,713769],["2021-08-29",0,4247,718016],["2021-08-30",0,6645,724661],["2021-08-31",0,6404,731065],["2021-09-01",0,6466,737531],["2021-09-02",0,6183,743714],["2021-09-03",0,8304,752018],["2021-09-04",0,5598,757616],["2021-09-05",0,4243,761859],["2021-09-06",0,1648,763507],["2021-09-07",0,7560,771067],["2021-09-08",0,7469,778536],["2021-09-09",0,7430,785966],["2021-09-10",0,9220,795186],["2021-09-11",0,6616,801802],["2021-09-12",0,4748,806550],["2021-09-13",0,7432,813982],["2021-09-14",0,7360,821342],["2021-09-15",0,7049,828391],["2021-09-16",0,7139,835530],["2021-09-17",0,8662,844192],["2021-09-18",0,6623,850815],["2021-09-19",0,4393,855208],["2021-09-20",0,7017,862225],["2021-09-21",0,6333,868558],["2021-09-22",0,6363,874921],["2021-09-23",0,5901,880822],["2021-09-24",0,7639,888461],["2021-09-25",0,5337,893798],["2021-09-26",0,3796,897594],["2021-09-27",0,5268,902862],["2021-09-28",0,6184,909046],["2021-09-29",0,6024,915070],["2021-09-30",0,6166,921236],["2021-10-01",0,7579,928815],["2021-10-02",0,5121,933936],["2021-10-03",0,3341,937277],["2021-10-04",0,5414,942691],["2021-10-05",0,5262,947953],["2021-10-06",0,5289,953242],["2021-10-07",0,5019,958261],["2021-10-08",0,6286,964547],["2021-10-09",0,4037,968584],["2021-10-10",0,2915,971499],["2021-10-11",0,4565,976064],["2021-10-12",0,4404,980468],["2021-10-13",0,4506,984974],["2021-10-14",0,4174,989148],["2021-10-15",0,5184,994332],["2021-10-16",0,3368,997700],["2021-10-17",0,2269,999969],["2021-10-18",0,4652,1004621],["2021-10-19",0,3635,1008256],["2021-10-20",0,3458,1011714],["2021-10-21",0,3512,1015226],["2021-10-22",0,5219,1020445],["2021-10-23",0,3753,1024198],["2021-10-24",0,2552,1026750],["2021-10-25",0,4968,1031718],["2021-10-26",0,4676,1036394],["2021-10-27",0,4975,1041369],["2021-10-28",0,4671,1046040],["2021-10-29",0,5657,1051697],["2021-10-30",0,3368,1055065],["2021-10-31",0,2192,1057257],["2021-11-01",0,4729,1061986],["2021-11-02",0,4535,1066521],["2021-11-03",0,4783,1071304],["2021-11-04",0,4547,1075851],["2021-11-05",0,5999,1081850],["2021-11-06",0,4767,1086617],["2021-11-07",0,3056,1089673],["2021-11-08",0,5276,1094949],["2021-11-09",0,5709,1100658],["2021-11-10",0,5160,1105818],["2021-11-11",0,5016,1110834],["2021-11-12",0,6240,1117074],["2021-11-13",0,5008,1122082],["2021-11-14",0,2538,1124620],["2021-11-15",0,5981,1130601],["2021-11-16",0,5117,1135718],["2021-11-17",0,4738,1140456],["2021-11-18",0,5157,1145613],["2021-11-19",0,6117,1151730],["2021-11-20",0,4501,1156231],["2021-11-21",0,2709,1158940],["2021-11-22",0,5626,1164566],["2021-11-23",0,5317,1169883],["2021-11-24",0,4325,1174208],["2021-11-25",0,30,1174238],["2021-11-26",0,4789,1179027],["2021-11-27",0,3837,1182864],["2021-11-28",0,3009,1185873],["2021-11-29",0,6163,1192036],["2021-11-30",0,6610,1198646],["2021-12-01",0,7084,1205730],["2021-12-02",0,6646,1212376],["2021-12-03",0,8223,1220599],["2021-12-04",0,6063,1226662],["2021-12-05",0,3071,1229733],["2021-12-06",0,5844,1235577],["2021-12-07",0,6260,1241837],["2021-12-08",0,5617,1247454],["2021-12-09",0,5538,1252992],["2021-12-10",0,6500,1259492],["2021-12-11",0,4448,1263940],["2021-12-12",0,2749,1266689],["2021-12-13",0,4773,1271462],["2021-12-14",0,4980,1276442],["2021-12-15",0,4726,1281168],["2021-12-16",0,4249,1285417],["2021-12-17",0,5710,1291127],["2021-12-18",0,4168,1295295],["2021-12-19",0,2723,1298018],["2021-12-20",0,5734,1303752],["2021-12-21",0,5790,1309542],["2021-12-22",0,5689,1315231],["2021-12-23",0,4776,1320007],["2021-12-24",0,1913,1321920],["2021-12-25",0,8,1321928],["2021-12-26",0,2237,1324165],["2021-12-27",0,5314,1329479],["2021-12-28",0,5787,1335266],["2021-12-29",0,5896,1341162],["2021-12-30",0,4870,1346032],["2021-12-31",0,2838,1348870],["2022-01-01",0,548,1349418],["2022-01-02",0,2153,1351571],["2022-01-03",0,1897,1353468]]} \ No newline at end of file diff --git a/public/data/overall/vaccinations/by-county/Upson.json b/public/data/overall/vaccinations/by-county/Upson.json new file mode 100644 index 000000000..84ef2ca22 --- /dev/null +++ b/public/data/overall/vaccinations/by-county/Upson.json @@ -0,0 +1 @@ +{"segment":{"county":"Upson"},"headers":["report_date","population","vaccinations","total_vaccinations"],"rows":[["2020-12-16",26277,1,1],["2020-12-18",26277,1,2],["2020-12-19",26277,5,7],["2020-12-20",26277,1,8],["2020-12-21",26277,16,24],["2020-12-22",26277,37,61],["2020-12-23",26277,71,132],["2020-12-24",26277,1,133],["2020-12-26",26277,2,135],["2020-12-28",26277,17,152],["2020-12-29",26277,106,258],["2020-12-30",26277,25,283],["2020-12-31",26277,95,378],["2021-01-01",26277,5,383],["2021-01-03",26277,7,390],["2021-01-04",26277,102,492],["2021-01-05",26277,126,618],["2021-01-06",26277,31,649],["2021-01-07",26277,5,654],["2021-01-08",26277,33,687],["2021-01-09",26277,18,705],["2021-01-10",26277,13,718],["2021-01-11",26277,27,745],["2021-01-12",26277,162,907],["2021-01-13",26277,216,1123],["2021-01-14",26277,151,1274],["2021-01-15",26277,192,1466],["2021-01-16",26277,26,1492],["2021-01-17",26277,11,1503],["2021-01-18",26277,39,1542],["2021-01-19",26277,272,1814],["2021-01-20",26277,46,1860],["2021-01-21",26277,268,2128],["2021-01-22",26277,206,2334],["2021-01-23",26277,6,2340],["2021-01-24",26277,36,2376],["2021-01-25",26277,259,2635],["2021-01-26",26277,285,2920],["2021-01-27",26277,42,2962],["2021-01-28",26277,122,3084],["2021-01-29",26277,144,3228],["2021-01-30",26277,7,3235],["2021-01-31",26277,12,3247],["2021-02-01",26277,45,3292],["2021-02-02",26277,194,3486],["2021-02-03",26277,108,3594],["2021-02-04",26277,349,3943],["2021-02-05",26277,192,4135],["2021-02-06",26277,5,4140],["2021-02-07",26277,4,4144],["2021-02-08",26277,9,4153],["2021-02-09",26277,159,4312],["2021-02-10",26277,47,4359],["2021-02-11",26277,307,4666],["2021-02-12",26277,232,4898],["2021-02-13",26277,30,4928],["2021-02-14",26277,27,4955],["2021-02-15",26277,41,4996],["2021-02-16",26277,252,5248],["2021-02-17",26277,48,5296],["2021-02-18",26277,258,5554],["2021-02-19",26277,176,5730],["2021-02-20",26277,18,5748],["2021-02-21",26277,13,5761],["2021-02-22",26277,45,5806],["2021-02-23",26277,137,5943],["2021-02-24",26277,48,5991],["2021-02-25",26277,276,6267],["2021-02-26",26277,149,6416],["2021-02-27",26277,10,6426],["2021-02-28",26277,23,6449],["2021-03-01",26277,42,6491],["2021-03-02",26277,142,6633],["2021-03-03",26277,43,6676],["2021-03-04",26277,207,6883],["2021-03-05",26277,154,7037],["2021-03-06",26277,19,7056],["2021-03-07",26277,8,7064],["2021-03-08",26277,225,7289],["2021-03-09",26277,135,7424],["2021-03-10",26277,57,7481],["2021-03-11",26277,255,7736],["2021-03-12",26277,160,7896],["2021-03-13",26277,20,7916],["2021-03-14",26277,11,7927],["2021-03-15",26277,51,7978],["2021-03-16",26277,160,8138],["2021-03-17",26277,69,8207],["2021-03-18",26277,175,8382],["2021-03-19",26277,196,8578],["2021-03-20",26277,28,8606],["2021-03-21",26277,13,8619],["2021-03-22",26277,72,8691],["2021-03-23",26277,213,8904],["2021-03-24",26277,75,8979],["2021-03-25",26277,318,9297],["2021-03-26",26277,214,9511],["2021-03-27",26277,30,9541],["2021-03-28",26277,28,9569],["2021-03-29",26277,292,9861],["2021-03-30",26277,216,10077],["2021-03-31",26277,96,10173],["2021-04-01",26277,370,10543],["2021-04-02",26277,200,10743],["2021-04-03",26277,33,10776],["2021-04-04",26277,27,10803],["2021-04-05",26277,89,10892],["2021-04-06",26277,212,11104],["2021-04-07",26277,152,11256],["2021-04-08",26277,267,11523],["2021-04-09",26277,243,11766],["2021-04-10",26277,38,11804],["2021-04-11",26277,22,11826],["2021-04-12",26277,98,11924],["2021-04-13",26277,217,12141],["2021-04-14",26277,100,12241],["2021-04-15",26277,307,12548],["2021-04-16",26277,253,12801],["2021-04-17",26277,25,12826],["2021-04-18",26277,15,12841],["2021-04-19",26277,60,12901],["2021-04-20",26277,231,13132],["2021-04-21",26277,90,13222],["2021-04-22",26277,286,13508],["2021-04-23",26277,166,13674],["2021-04-24",26277,36,13710],["2021-04-25",26277,10,13720],["2021-04-26",26277,47,13767],["2021-04-27",26277,172,13939],["2021-04-28",26277,116,14055],["2021-04-29",26277,184,14239],["2021-04-30",26277,218,14457],["2021-05-01",26277,27,14484],["2021-05-02",26277,24,14508],["2021-05-03",26277,68,14576],["2021-05-04",26277,161,14737],["2021-05-05",26277,102,14839],["2021-05-06",26277,213,15052],["2021-05-07",26277,220,15272],["2021-05-08",26277,51,15323],["2021-05-09",26277,10,15333],["2021-05-10",26277,34,15367],["2021-05-11",26277,177,15544],["2021-05-12",26277,55,15599],["2021-05-13",26277,116,15715],["2021-05-14",26277,109,15824],["2021-05-15",26277,36,15860],["2021-05-16",26277,15,15875],["2021-05-17",26277,37,15912],["2021-05-18",26277,104,16016],["2021-05-19",26277,48,16064],["2021-05-20",26277,51,16115],["2021-05-21",26277,96,16211],["2021-05-22",26277,32,16243],["2021-05-23",26277,15,16258],["2021-05-24",26277,25,16283],["2021-05-25",26277,93,16376],["2021-05-26",26277,55,16431],["2021-05-27",26277,46,16477],["2021-05-28",26277,74,16551],["2021-05-29",26277,18,16569],["2021-05-30",26277,13,16582],["2021-05-31",26277,14,16596],["2021-06-01",26277,88,16684],["2021-06-02",26277,55,16739],["2021-06-03",26277,51,16790],["2021-06-04",26277,97,16887],["2021-06-05",26277,33,16920],["2021-06-06",26277,14,16934],["2021-06-07",26277,35,16969],["2021-06-08",26277,68,17037],["2021-06-09",26277,33,17070],["2021-06-10",26277,43,17113],["2021-06-11",26277,62,17175],["2021-06-12",26277,23,17198],["2021-06-13",26277,6,17204],["2021-06-14",26277,21,17225],["2021-06-15",26277,71,17296],["2021-06-16",26277,38,17334],["2021-06-17",26277,40,17374],["2021-06-18",26277,52,17426],["2021-06-19",26277,16,17442],["2021-06-20",26277,10,17452],["2021-06-21",26277,18,17470],["2021-06-22",26277,58,17528],["2021-06-23",26277,24,17552],["2021-06-24",26277,32,17584],["2021-06-25",26277,49,17633],["2021-06-26",26277,10,17643],["2021-06-27",26277,12,17655],["2021-06-28",26277,22,17677],["2021-06-29",26277,51,17728],["2021-06-30",26277,25,17753],["2021-07-01",26277,27,17780],["2021-07-02",26277,15,17795],["2021-07-03",26277,13,17808],["2021-07-04",26277,1,17809],["2021-07-05",26277,13,17822],["2021-07-06",26277,31,17853],["2021-07-07",26277,18,17871],["2021-07-08",26277,21,17892],["2021-07-09",26277,36,17928],["2021-07-10",26277,8,17936],["2021-07-11",26277,11,17947],["2021-07-12",26277,18,17965],["2021-07-13",26277,33,17998],["2021-07-14",26277,15,18013],["2021-07-15",26277,33,18046],["2021-07-16",26277,40,18086],["2021-07-17",26277,13,18099],["2021-07-18",26277,8,18107],["2021-07-19",26277,27,18134],["2021-07-20",26277,28,18162],["2021-07-21",26277,37,18199],["2021-07-22",26277,37,18236],["2021-07-23",26277,46,18282],["2021-07-24",26277,23,18305],["2021-07-25",26277,16,18321],["2021-07-26",26277,40,18361],["2021-07-27",26277,58,18419],["2021-07-28",26277,59,18478],["2021-07-29",26277,58,18536],["2021-07-30",26277,87,18623],["2021-07-31",26277,20,18643],["2021-08-01",26277,29,18672],["2021-08-02",26277,32,18704],["2021-08-03",26277,57,18761],["2021-08-04",26277,39,18800],["2021-08-05",26277,59,18859],["2021-08-06",26277,111,18970],["2021-08-07",26277,35,19005],["2021-08-08",26277,19,19024],["2021-08-09",26277,56,19080],["2021-08-10",26277,82,19162],["2021-08-11",26277,59,19221],["2021-08-12",26277,67,19288],["2021-08-13",26277,122,19410],["2021-08-14",26277,34,19444],["2021-08-15",26277,27,19471],["2021-08-16",26277,60,19531],["2021-08-17",26277,87,19618],["2021-08-18",26277,82,19700],["2021-08-19",26277,72,19772],["2021-08-20",26277,160,19932],["2021-08-21",26277,46,19978],["2021-08-22",26277,47,20025],["2021-08-23",26277,104,20129],["2021-08-24",26277,155,20284],["2021-08-25",26277,79,20363],["2021-08-26",26277,96,20459],["2021-08-27",26277,158,20617],["2021-08-28",26277,54,20671],["2021-08-29",26277,42,20713],["2021-08-30",26277,114,20827],["2021-08-31",26277,135,20962],["2021-09-01",26277,71,21033],["2021-09-02",26277,94,21127],["2021-09-03",26277,185,21312],["2021-09-04",26277,53,21365],["2021-09-05",26277,37,21402],["2021-09-06",26277,25,21427],["2021-09-07",26277,140,21567],["2021-09-08",26277,68,21635],["2021-09-09",26277,67,21702],["2021-09-10",26277,146,21848],["2021-09-11",26277,47,21895],["2021-09-12",26277,33,21928],["2021-09-13",26277,84,22012],["2021-09-14",26277,133,22145],["2021-09-15",26277,70,22215],["2021-09-16",26277,74,22289],["2021-09-17",26277,156,22445],["2021-09-18",26277,51,22496],["2021-09-19",26277,54,22550],["2021-09-20",26277,78,22628],["2021-09-21",26277,93,22721],["2021-09-22",26277,54,22775],["2021-09-23",26277,67,22842],["2021-09-24",26277,151,22993],["2021-09-25",26277,45,23038],["2021-09-26",26277,31,23069],["2021-09-27",26277,126,23195],["2021-09-28",26277,299,23494],["2021-09-29",26277,102,23596],["2021-09-30",26277,159,23755],["2021-10-01",26277,320,24075],["2021-10-02",26277,34,24109],["2021-10-03",26277,28,24137],["2021-10-04",26277,84,24221],["2021-10-05",26277,279,24500],["2021-10-06",26277,50,24550],["2021-10-07",26277,128,24678],["2021-10-08",26277,163,24841],["2021-10-09",26277,26,24867],["2021-10-10",26277,14,24881],["2021-10-11",26277,33,24914],["2021-10-12",26277,147,25061],["2021-10-13",26277,45,25106],["2021-10-14",26277,91,25197],["2021-10-15",26277,121,25318],["2021-10-16",26277,14,25332],["2021-10-17",26277,6,25338],["2021-10-18",26277,40,25378],["2021-10-19",26277,113,25491],["2021-10-20",26277,35,25526],["2021-10-21",26277,61,25587],["2021-10-22",26277,122,25709],["2021-10-23",26277,24,25733],["2021-10-24",26277,18,25751],["2021-10-25",26277,59,25810],["2021-10-26",26277,115,25925],["2021-10-27",26277,63,25988],["2021-10-28",26277,96,26084],["2021-10-29",26277,106,26190],["2021-10-30",26277,25,26215],["2021-10-31",26277,17,26232],["2021-11-01",26277,50,26282],["2021-11-02",26277,92,26374],["2021-11-03",26277,49,26423],["2021-11-04",26277,29,26452],["2021-11-05",26277,104,26556],["2021-11-06",26277,21,26577],["2021-11-07",26277,14,26591],["2021-11-08",26277,39,26630],["2021-11-09",26277,90,26720],["2021-11-10",26277,34,26754],["2021-11-11",26277,40,26794],["2021-11-12",26277,95,26889],["2021-11-13",26277,21,26910],["2021-11-14",26277,20,26930],["2021-11-15",26277,29,26959],["2021-11-16",26277,75,27034],["2021-11-17",26277,42,27076],["2021-11-18",26277,35,27111],["2021-11-19",26277,97,27208],["2021-11-20",26277,16,27224],["2021-11-21",26277,17,27241],["2021-11-22",26277,48,27289],["2021-11-23",26277,101,27390],["2021-11-24",26277,33,27423],["2021-11-26",26277,34,27457],["2021-11-27",26277,9,27466],["2021-11-28",26277,10,27476],["2021-11-29",26277,55,27531],["2021-11-30",26277,112,27643],["2021-12-01",26277,65,27708],["2021-12-02",26277,44,27752],["2021-12-03",26277,202,27954],["2021-12-04",26277,30,27984],["2021-12-05",26277,27,28011],["2021-12-06",26277,61,28072],["2021-12-07",26277,96,28168],["2021-12-08",26277,46,28214],["2021-12-09",26277,45,28259],["2021-12-10",26277,112,28371],["2021-12-11",26277,20,28391],["2021-12-12",26277,20,28411],["2021-12-13",26277,30,28441],["2021-12-14",26277,78,28519],["2021-12-15",26277,40,28559],["2021-12-16",26277,32,28591],["2021-12-17",26277,82,28673],["2021-12-18",26277,34,28707],["2021-12-19",26277,12,28719],["2021-12-20",26277,39,28758],["2021-12-21",26277,99,28857],["2021-12-22",26277,52,28909],["2021-12-23",26277,37,28946],["2021-12-24",26277,12,28958],["2021-12-26",26277,9,28967],["2021-12-27",26277,58,29025],["2021-12-28",26277,142,29167],["2021-12-29",26277,64,29231],["2021-12-30",26277,53,29284],["2021-12-31",26277,32,29316],["2022-01-01",26277,12,29328],["2022-01-02",26277,19,29347],["2022-01-03",26277,10,29357]]} \ No newline at end of file diff --git a/public/data/overall/vaccinations/by-county/Walker.json b/public/data/overall/vaccinations/by-county/Walker.json new file mode 100644 index 000000000..33b9970ab --- /dev/null +++ b/public/data/overall/vaccinations/by-county/Walker.json @@ -0,0 +1 @@ +{"segment":{"county":"Walker"},"headers":["report_date","population","vaccinations","total_vaccinations"],"rows":[["2020-12-14",69610,1,1],["2020-12-18",69610,13,14],["2020-12-19",69610,4,18],["2020-12-20",69610,5,23],["2020-12-21",69610,16,39],["2020-12-22",69610,31,70],["2020-12-23",69610,30,100],["2020-12-24",69610,1,101],["2020-12-26",69610,2,103],["2020-12-27",69610,2,105],["2020-12-28",69610,48,153],["2020-12-29",69610,25,178],["2020-12-30",69610,28,206],["2020-12-31",69610,15,221],["2021-01-01",69610,2,223],["2021-01-03",69610,112,335],["2021-01-04",69610,40,375],["2021-01-05",69610,90,465],["2021-01-06",69610,52,517],["2021-01-07",69610,46,563],["2021-01-08",69610,74,637],["2021-01-09",69610,9,646],["2021-01-10",69610,3,649],["2021-01-11",69610,153,802],["2021-01-12",69610,211,1013],["2021-01-13",69610,230,1243],["2021-01-14",69610,422,1665],["2021-01-15",69610,186,1851],["2021-01-16",69610,51,1902],["2021-01-17",69610,12,1914],["2021-01-18",69610,126,2040],["2021-01-19",69610,249,2289],["2021-01-20",69610,257,2546],["2021-01-21",69610,301,2847],["2021-01-22",69610,240,3087],["2021-01-23",69610,5,3092],["2021-01-24",69610,74,3166],["2021-01-25",69610,304,3470],["2021-01-26",69610,255,3725],["2021-01-27",69610,398,4123],["2021-01-28",69610,413,4536],["2021-01-29",69610,309,4845],["2021-01-30",69610,11,4856],["2021-01-31",69610,1,4857],["2021-02-01",69610,405,5262],["2021-02-02",69610,364,5626],["2021-02-03",69610,280,5906],["2021-02-04",69610,339,6245],["2021-02-05",69610,261,6506],["2021-02-06",69610,15,6521],["2021-02-07",69610,15,6536],["2021-02-08",69610,192,6728],["2021-02-09",69610,175,6903],["2021-02-10",69610,305,7208],["2021-02-11",69610,266,7474],["2021-02-12",69610,195,7669],["2021-02-13",69610,24,7693],["2021-02-14",69610,6,7699],["2021-02-15",69610,349,8048],["2021-02-16",69610,55,8103],["2021-02-17",69610,262,8365],["2021-02-18",69610,306,8671],["2021-02-19",69610,289,8960],["2021-02-20",69610,4,8964],["2021-02-21",69610,4,8968],["2021-02-22",69610,153,9121],["2021-02-23",69610,145,9266],["2021-02-24",69610,400,9666],["2021-02-25",69610,480,10146],["2021-02-26",69610,477,10623],["2021-02-27",69610,26,10649],["2021-02-28",69610,15,10664],["2021-03-01",69610,385,11049],["2021-03-02",69610,424,11473],["2021-03-03",69610,728,12201],["2021-03-04",69610,507,12708],["2021-03-05",69610,265,12973],["2021-03-06",69610,17,12990],["2021-03-07",69610,23,13013],["2021-03-08",69610,420,13433],["2021-03-09",69610,446,13879],["2021-03-10",69610,704,14583],["2021-03-11",69610,525,15108],["2021-03-12",69610,459,15567],["2021-03-13",69610,33,15600],["2021-03-14",69610,16,15616],["2021-03-15",69610,401,16017],["2021-03-16",69610,364,16381],["2021-03-17",69610,416,16797],["2021-03-18",69610,297,17094],["2021-03-19",69610,272,17366],["2021-03-20",69610,30,17396],["2021-03-21",69610,19,17415],["2021-03-22",69610,257,17672],["2021-03-23",69610,205,17877],["2021-03-24",69610,571,18448],["2021-03-25",69610,358,18806],["2021-03-26",69610,524,19330],["2021-03-27",69610,36,19366],["2021-03-28",69610,50,19416],["2021-03-29",69610,280,19696],["2021-03-30",69610,309,20005],["2021-03-31",69610,396,20401],["2021-04-01",69610,1489,21890],["2021-04-02",69610,314,22204],["2021-04-03",69610,35,22239],["2021-04-04",69610,26,22265],["2021-04-05",69610,319,22584],["2021-04-06",69610,207,22791],["2021-04-07",69610,293,23084],["2021-04-08",69610,421,23505],["2021-04-09",69610,239,23744],["2021-04-10",69610,218,23962],["2021-04-11",69610,36,23998],["2021-04-12",69610,273,24271],["2021-04-13",69610,412,24683],["2021-04-14",69610,418,25101],["2021-04-15",69610,238,25339],["2021-04-16",69610,322,25661],["2021-04-17",69610,34,25695],["2021-04-18",69610,23,25718],["2021-04-19",69610,302,26020],["2021-04-20",69610,268,26288],["2021-04-21",69610,542,26830],["2021-04-22",69610,522,27352],["2021-04-23",69610,327,27679],["2021-04-24",69610,39,27718],["2021-04-25",69610,14,27732],["2021-04-26",69610,185,27917],["2021-04-27",69610,175,28092],["2021-04-28",69610,285,28377],["2021-04-29",69610,277,28654],["2021-04-30",69610,221,28875],["2021-05-01",69610,58,28933],["2021-05-02",69610,38,28971],["2021-05-03",69610,113,29084],["2021-05-04",69610,409,29493],["2021-05-05",69610,131,29624],["2021-05-06",69610,293,29917],["2021-05-07",69610,243,30160],["2021-05-08",69610,51,30211],["2021-05-09",69610,15,30226],["2021-05-10",69610,130,30356],["2021-05-11",69610,83,30439],["2021-05-12",69610,121,30560],["2021-05-13",69610,298,30858],["2021-05-14",69610,174,31032],["2021-05-15",69610,81,31113],["2021-05-16",69610,57,31170],["2021-05-17",69610,141,31311],["2021-05-18",69610,122,31433],["2021-05-19",69610,143,31576],["2021-05-20",69610,146,31722],["2021-05-21",69610,190,31912],["2021-05-22",69610,154,32066],["2021-05-23",69610,27,32093],["2021-05-24",69610,110,32203],["2021-05-25",69610,147,32350],["2021-05-26",69610,79,32429],["2021-05-27",69610,98,32527],["2021-05-28",69610,105,32632],["2021-05-29",69610,46,32678],["2021-05-30",69610,30,32708],["2021-05-31",69610,12,32720],["2021-06-01",69610,298,33018],["2021-06-02",69610,66,33084],["2021-06-03",69610,168,33252],["2021-06-04",69610,134,33386],["2021-06-05",69610,38,33424],["2021-06-06",69610,27,33451],["2021-06-07",69610,60,33511],["2021-06-08",69610,56,33567],["2021-06-09",69610,60,33627],["2021-06-10",69610,134,33761],["2021-06-11",69610,107,33868],["2021-06-12",69610,64,33932],["2021-06-13",69610,32,33964],["2021-06-14",69610,140,34104],["2021-06-15",69610,87,34191],["2021-06-16",69610,72,34263],["2021-06-17",69610,68,34331],["2021-06-18",69610,138,34469],["2021-06-19",69610,37,34506],["2021-06-20",69610,25,34531],["2021-06-21",69610,60,34591],["2021-06-22",69610,35,34626],["2021-06-23",69610,44,34670],["2021-06-24",69610,88,34758],["2021-06-25",69610,94,34852],["2021-06-26",69610,39,34891],["2021-06-27",69610,24,34915],["2021-06-28",69610,40,34955],["2021-06-29",69610,47,35002],["2021-06-30",69610,57,35059],["2021-07-01",69610,64,35123],["2021-07-02",69610,73,35196],["2021-07-03",69610,29,35225],["2021-07-04",69610,5,35230],["2021-07-05",69610,31,35261],["2021-07-06",69610,34,35295],["2021-07-07",69610,45,35340],["2021-07-08",69610,49,35389],["2021-07-09",69610,86,35475],["2021-07-10",69610,32,35507],["2021-07-11",69610,13,35520],["2021-07-12",69610,42,35562],["2021-07-13",69610,37,35599],["2021-07-14",69610,47,35646],["2021-07-15",69610,60,35706],["2021-07-16",69610,53,35759],["2021-07-17",69610,33,35792],["2021-07-18",69610,24,35816],["2021-07-19",69610,35,35851],["2021-07-20",69610,51,35902],["2021-07-21",69610,58,35960],["2021-07-22",69610,89,36049],["2021-07-23",69610,132,36181],["2021-07-24",69610,78,36259],["2021-07-25",69610,30,36289],["2021-07-26",69610,79,36368],["2021-07-27",69610,102,36470],["2021-07-28",69610,90,36560],["2021-07-29",69610,103,36663],["2021-07-30",69610,133,36796],["2021-07-31",69610,69,36865],["2021-08-01",69610,59,36924],["2021-08-02",69610,77,37001],["2021-08-03",69610,115,37116],["2021-08-04",69610,106,37222],["2021-08-05",69610,143,37365],["2021-08-06",69610,162,37527],["2021-08-07",69610,101,37628],["2021-08-08",69610,49,37677],["2021-08-09",69610,89,37766],["2021-08-10",69610,96,37862],["2021-08-11",69610,82,37944],["2021-08-12",69610,127,38071],["2021-08-13",69610,172,38243],["2021-08-14",69610,103,38346],["2021-08-15",69610,72,38418],["2021-08-16",69610,96,38514],["2021-08-17",69610,110,38624],["2021-08-18",69610,129,38753],["2021-08-19",69610,158,38911],["2021-08-20",69610,190,39101],["2021-08-21",69610,96,39197],["2021-08-22",69610,62,39259],["2021-08-23",69610,113,39372],["2021-08-24",69610,142,39514],["2021-08-25",69610,156,39670],["2021-08-26",69610,173,39843],["2021-08-27",69610,204,40047],["2021-08-28",69610,113,40160],["2021-08-29",69610,68,40228],["2021-08-30",69610,146,40374],["2021-08-31",69610,115,40489],["2021-09-01",69610,151,40640],["2021-09-02",69610,170,40810],["2021-09-03",69610,223,41033],["2021-09-04",69610,87,41120],["2021-09-05",69610,68,41188],["2021-09-06",69610,34,41222],["2021-09-07",69610,116,41338],["2021-09-08",69610,86,41424],["2021-09-09",69610,174,41598],["2021-09-10",69610,152,41750],["2021-09-11",69610,88,41838],["2021-09-12",69610,70,41908],["2021-09-13",69610,97,42005],["2021-09-14",69610,104,42109],["2021-09-15",69610,110,42219],["2021-09-16",69610,127,42346],["2021-09-17",69610,131,42477],["2021-09-18",69610,72,42549],["2021-09-19",69610,39,42588],["2021-09-20",69610,90,42678],["2021-09-21",69610,93,42771],["2021-09-22",69610,87,42858],["2021-09-23",69610,87,42945],["2021-09-24",69610,116,43061],["2021-09-25",69610,51,43112],["2021-09-26",69610,35,43147],["2021-09-27",69610,89,43236],["2021-09-28",69610,93,43329],["2021-09-29",69610,95,43424],["2021-09-30",69610,122,43546],["2021-10-01",69610,133,43679],["2021-10-02",69610,64,43743],["2021-10-03",69610,32,43775],["2021-10-04",69610,88,43863],["2021-10-05",69610,67,43930],["2021-10-06",69610,77,44007],["2021-10-07",69610,87,44094],["2021-10-08",69610,75,44169],["2021-10-09",69610,42,44211],["2021-10-10",69610,25,44236],["2021-10-11",69610,52,44288],["2021-10-12",69610,46,44334],["2021-10-13",69610,60,44394],["2021-10-14",69610,64,44458],["2021-10-15",69610,88,44546],["2021-10-16",69610,23,44569],["2021-10-17",69610,18,44587],["2021-10-18",69610,67,44654],["2021-10-19",69610,47,44701],["2021-10-20",69610,49,44750],["2021-10-21",69610,61,44811],["2021-10-22",69610,92,44903],["2021-10-23",69610,56,44959],["2021-10-24",69610,29,44988],["2021-10-25",69610,161,45149],["2021-10-26",69610,282,45431],["2021-10-27",69610,252,45683],["2021-10-28",69610,264,45947],["2021-10-29",69610,198,46145],["2021-10-30",69610,34,46179],["2021-10-31",69610,22,46201],["2021-11-01",69610,244,46445],["2021-11-02",69610,190,46635],["2021-11-03",69610,166,46801],["2021-11-04",69610,127,46928],["2021-11-05",69610,191,47119],["2021-11-06",69610,36,47155],["2021-11-07",69610,22,47177],["2021-11-08",69610,129,47306],["2021-11-09",69610,147,47453],["2021-11-10",69610,143,47596],["2021-11-11",69610,84,47680],["2021-11-12",69610,154,47834],["2021-11-13",69610,42,47876],["2021-11-14",69610,20,47896],["2021-11-15",69610,133,48029],["2021-11-16",69610,146,48175],["2021-11-17",69610,111,48286],["2021-11-18",69610,161,48447],["2021-11-19",69610,189,48636],["2021-11-20",69610,50,48686],["2021-11-21",69610,35,48721],["2021-11-22",69610,147,48868],["2021-11-23",69610,94,48962],["2021-11-24",69610,91,49053],["2021-11-26",69610,89,49142],["2021-11-27",69610,39,49181],["2021-11-28",69610,37,49218],["2021-11-29",69610,138,49356],["2021-11-30",69610,195,49551],["2021-12-01",69610,179,49730],["2021-12-02",69610,275,50005],["2021-12-03",69610,237,50242],["2021-12-04",69610,55,50297],["2021-12-05",69610,40,50337],["2021-12-06",69610,168,50505],["2021-12-07",69610,127,50632],["2021-12-08",69610,118,50750],["2021-12-09",69610,154,50904],["2021-12-10",69610,141,51045],["2021-12-11",69610,41,51086],["2021-12-12",69610,28,51114],["2021-12-13",69610,88,51202],["2021-12-14",69610,119,51321],["2021-12-15",69610,123,51444],["2021-12-16",69610,104,51548],["2021-12-17",69610,134,51682],["2021-12-18",69610,48,51730],["2021-12-19",69610,37,51767],["2021-12-20",69610,129,51896],["2021-12-21",69610,120,52016],["2021-12-22",69610,112,52128],["2021-12-23",69610,54,52182],["2021-12-24",69610,23,52205],["2021-12-26",69610,13,52218],["2021-12-27",69610,121,52339],["2021-12-28",69610,109,52448],["2021-12-29",69610,127,52575],["2021-12-30",69610,133,52708],["2021-12-31",69610,58,52766],["2022-01-01",69610,8,52774],["2022-01-02",69610,40,52814],["2022-01-03",69610,25,52839]]} \ No newline at end of file diff --git a/public/data/overall/vaccinations/by-county/Walton.json b/public/data/overall/vaccinations/by-county/Walton.json new file mode 100644 index 000000000..4439624d5 --- /dev/null +++ b/public/data/overall/vaccinations/by-county/Walton.json @@ -0,0 +1 @@ +{"segment":{"county":"Walton"},"headers":["report_date","population","vaccinations","total_vaccinations"],"rows":[["2020-12-12",95814,1,1],["2020-12-16",95814,2,3],["2020-12-17",95814,27,30],["2020-12-18",95814,28,58],["2020-12-19",95814,21,79],["2020-12-20",95814,18,97],["2020-12-21",95814,36,133],["2020-12-22",95814,63,196],["2020-12-23",95814,87,283],["2020-12-24",95814,18,301],["2020-12-26",95814,7,308],["2020-12-27",95814,15,323],["2020-12-28",95814,98,421],["2020-12-29",95814,103,524],["2020-12-30",95814,93,617],["2020-12-31",95814,87,704],["2021-01-01",95814,17,721],["2021-01-02",95814,30,751],["2021-01-03",95814,33,784],["2021-01-04",95814,113,897],["2021-01-05",95814,98,995],["2021-01-06",95814,95,1090],["2021-01-07",95814,120,1210],["2021-01-08",95814,182,1392],["2021-01-09",95814,73,1465],["2021-01-10",95814,37,1502],["2021-01-11",95814,115,1617],["2021-01-12",95814,131,1748],["2021-01-13",95814,204,1952],["2021-01-14",95814,168,2120],["2021-01-15",95814,295,2415],["2021-01-16",95814,180,2595],["2021-01-17",95814,72,2667],["2021-01-18",95814,212,2879],["2021-01-19",95814,277,3156],["2021-01-20",95814,411,3567],["2021-01-21",95814,480,4047],["2021-01-22",95814,296,4343],["2021-01-23",95814,198,4541],["2021-01-24",95814,61,4602],["2021-01-25",95814,333,4935],["2021-01-26",95814,267,5202],["2021-01-27",95814,367,5569],["2021-01-28",95814,652,6221],["2021-01-29",95814,378,6599],["2021-01-30",95814,97,6696],["2021-01-31",95814,26,6722],["2021-02-01",95814,198,6920],["2021-02-02",95814,179,7099],["2021-02-03",95814,326,7425],["2021-02-04",95814,333,7758],["2021-02-05",95814,222,7980],["2021-02-06",95814,155,8135],["2021-02-07",95814,42,8177],["2021-02-08",95814,173,8350],["2021-02-09",95814,164,8514],["2021-02-10",95814,407,8921],["2021-02-11",95814,455,9376],["2021-02-12",95814,347,9723],["2021-02-13",95814,310,10033],["2021-02-14",95814,54,10087],["2021-02-15",95814,349,10436],["2021-02-16",95814,421,10857],["2021-02-17",95814,471,11328],["2021-02-18",95814,460,11788],["2021-02-19",95814,313,12101],["2021-02-20",95814,164,12265],["2021-02-21",95814,59,12324],["2021-02-22",95814,218,12542],["2021-02-23",95814,267,12809],["2021-02-24",95814,507,13316],["2021-02-25",95814,677,13993],["2021-02-26",95814,427,14420],["2021-02-27",95814,114,14534],["2021-02-28",95814,50,14584],["2021-03-01",95814,332,14916],["2021-03-02",95814,376,15292],["2021-03-03",95814,503,15795],["2021-03-04",95814,545,16340],["2021-03-05",95814,334,16674],["2021-03-06",95814,130,16804],["2021-03-07",95814,80,16884],["2021-03-08",95814,441,17325],["2021-03-09",95814,508,17833],["2021-03-10",95814,672,18505],["2021-03-11",95814,637,19142],["2021-03-12",95814,515,19657],["2021-03-13",95814,275,19932],["2021-03-14",95814,109,20041],["2021-03-15",95814,635,20676],["2021-03-16",95814,631,21307],["2021-03-17",95814,723,22030],["2021-03-18",95814,591,22621],["2021-03-19",95814,569,23190],["2021-03-20",95814,272,23462],["2021-03-21",95814,110,23572],["2021-03-22",95814,508,24080],["2021-03-23",95814,538,24618],["2021-03-24",95814,911,25529],["2021-03-25",95814,851,26380],["2021-03-26",95814,680,27060],["2021-03-27",95814,201,27261],["2021-03-28",95814,155,27416],["2021-03-29",95814,593,28009],["2021-03-30",95814,726,28735],["2021-03-31",95814,978,29713],["2021-04-01",95814,929,30642],["2021-04-02",95814,607,31249],["2021-04-03",95814,364,31613],["2021-04-04",95814,124,31737],["2021-04-05",95814,650,32387],["2021-04-06",95814,716,33103],["2021-04-07",95814,962,34065],["2021-04-08",95814,812,34877],["2021-04-09",95814,694,35571],["2021-04-10",95814,355,35926],["2021-04-11",95814,144,36070],["2021-04-12",95814,599,36669],["2021-04-13",95814,671,37340],["2021-04-14",95814,886,38226],["2021-04-15",95814,738,38964],["2021-04-16",95814,709,39673],["2021-04-17",95814,227,39900],["2021-04-18",95814,161,40061],["2021-04-19",95814,516,40577],["2021-04-20",95814,576,41153],["2021-04-21",95814,715,41868],["2021-04-22",95814,747,42615],["2021-04-23",95814,831,43446],["2021-04-24",95814,246,43692],["2021-04-25",95814,84,43776],["2021-04-26",95814,594,44370],["2021-04-27",95814,519,44889],["2021-04-28",95814,841,45730],["2021-04-29",95814,701,46431],["2021-04-30",95814,591,47022],["2021-05-01",95814,339,47361],["2021-05-02",95814,117,47478],["2021-05-03",95814,364,47842],["2021-05-04",95814,488,48330],["2021-05-05",95814,565,48895],["2021-05-06",95814,567,49462],["2021-05-07",95814,431,49893],["2021-05-08",95814,168,50061],["2021-05-09",95814,78,50139],["2021-05-10",95814,308,50447],["2021-05-11",95814,326,50773],["2021-05-12",95814,467,51240],["2021-05-13",95814,387,51627],["2021-05-14",95814,419,52046],["2021-05-15",95814,202,52248],["2021-05-16",95814,94,52342],["2021-05-17",95814,317,52659],["2021-05-18",95814,337,52996],["2021-05-19",95814,362,53358],["2021-05-20",95814,310,53668],["2021-05-21",95814,328,53996],["2021-05-22",95814,162,54158],["2021-05-23",95814,111,54269],["2021-05-24",95814,250,54519],["2021-05-25",95814,272,54791],["2021-05-26",95814,388,55179],["2021-05-27",95814,242,55421],["2021-05-28",95814,251,55672],["2021-05-29",95814,125,55797],["2021-05-30",95814,75,55872],["2021-05-31",95814,28,55900],["2021-06-01",95814,225,56125],["2021-06-02",95814,242,56367],["2021-06-03",95814,214,56581],["2021-06-04",95814,245,56826],["2021-06-05",95814,128,56954],["2021-06-06",95814,81,57035],["2021-06-07",95814,183,57218],["2021-06-08",95814,197,57415],["2021-06-09",95814,192,57607],["2021-06-10",95814,179,57786],["2021-06-11",95814,224,58010],["2021-06-12",95814,111,58121],["2021-06-13",95814,64,58185],["2021-06-14",95814,168,58353],["2021-06-15",95814,195,58548],["2021-06-16",95814,151,58699],["2021-06-17",95814,139,58838],["2021-06-18",95814,158,58996],["2021-06-19",95814,75,59071],["2021-06-20",95814,65,59136],["2021-06-21",95814,99,59235],["2021-06-22",95814,156,59391],["2021-06-23",95814,142,59533],["2021-06-24",95814,96,59629],["2021-06-25",95814,146,59775],["2021-06-26",95814,97,59872],["2021-06-27",95814,54,59926],["2021-06-28",95814,112,60038],["2021-06-29",95814,110,60148],["2021-06-30",95814,118,60266],["2021-07-01",95814,110,60376],["2021-07-02",95814,98,60474],["2021-07-03",95814,60,60534],["2021-07-04",95814,7,60541],["2021-07-05",95814,68,60609],["2021-07-06",95814,102,60711],["2021-07-07",95814,93,60804],["2021-07-08",95814,97,60901],["2021-07-09",95814,136,61037],["2021-07-10",95814,83,61120],["2021-07-11",95814,51,61171],["2021-07-12",95814,119,61290],["2021-07-13",95814,89,61379],["2021-07-14",95814,82,61461],["2021-07-15",95814,89,61550],["2021-07-16",95814,119,61669],["2021-07-17",95814,92,61761],["2021-07-18",95814,57,61818],["2021-07-19",95814,123,61941],["2021-07-20",95814,136,62077],["2021-07-21",95814,137,62214],["2021-07-22",95814,132,62346],["2021-07-23",95814,170,62516],["2021-07-24",95814,117,62633],["2021-07-25",95814,80,62713],["2021-07-26",95814,166,62879],["2021-07-27",95814,166,63045],["2021-07-28",95814,180,63225],["2021-07-29",95814,147,63372],["2021-07-30",95814,187,63559],["2021-07-31",95814,133,63692],["2021-08-01",95814,95,63787],["2021-08-02",95814,179,63966],["2021-08-03",95814,145,64111],["2021-08-04",95814,153,64264],["2021-08-05",95814,139,64403],["2021-08-06",95814,239,64642],["2021-08-07",95814,157,64799],["2021-08-08",95814,96,64895],["2021-08-09",95814,203,65098],["2021-08-10",95814,231,65329],["2021-08-11",95814,197,65526],["2021-08-12",95814,219,65745],["2021-08-13",95814,255,66000],["2021-08-14",95814,158,66158],["2021-08-15",95814,100,66258],["2021-08-16",95814,210,66468],["2021-08-17",95814,241,66709],["2021-08-18",95814,210,66919],["2021-08-19",95814,217,67136],["2021-08-20",95814,267,67403],["2021-08-21",95814,187,67590],["2021-08-22",95814,111,67701],["2021-08-23",95814,245,67946],["2021-08-24",95814,215,68161],["2021-08-25",95814,223,68384],["2021-08-26",95814,245,68629],["2021-08-27",95814,305,68934],["2021-08-28",95814,174,69108],["2021-08-29",95814,98,69206],["2021-08-30",95814,226,69432],["2021-08-31",95814,252,69684],["2021-09-01",95814,248,69932],["2021-09-02",95814,275,70207],["2021-09-03",95814,294,70501],["2021-09-04",95814,164,70665],["2021-09-05",95814,104,70769],["2021-09-06",95814,59,70828],["2021-09-07",95814,277,71105],["2021-09-08",95814,204,71309],["2021-09-09",95814,230,71539],["2021-09-10",95814,319,71858],["2021-09-11",95814,142,72000],["2021-09-12",95814,103,72103],["2021-09-13",95814,208,72311],["2021-09-14",95814,179,72490],["2021-09-15",95814,175,72665],["2021-09-16",95814,194,72859],["2021-09-17",95814,218,73077],["2021-09-18",95814,121,73198],["2021-09-19",95814,78,73276],["2021-09-20",95814,191,73467],["2021-09-21",95814,156,73623],["2021-09-22",95814,184,73807],["2021-09-23",95814,154,73961],["2021-09-24",95814,201,74162],["2021-09-25",95814,123,74285],["2021-09-26",95814,70,74355],["2021-09-27",95814,167,74522],["2021-09-28",95814,214,74736],["2021-09-29",95814,213,74949],["2021-09-30",95814,220,75169],["2021-10-01",95814,255,75424],["2021-10-02",95814,128,75552],["2021-10-03",95814,65,75617],["2021-10-04",95814,212,75829],["2021-10-05",95814,201,76030],["2021-10-06",95814,223,76253],["2021-10-07",95814,147,76400],["2021-10-08",95814,214,76614],["2021-10-09",95814,67,76681],["2021-10-10",95814,51,76732],["2021-10-11",95814,126,76858],["2021-10-12",95814,172,77030],["2021-10-13",95814,186,77216],["2021-10-14",95814,143,77359],["2021-10-15",95814,139,77498],["2021-10-16",95814,73,77571],["2021-10-17",95814,46,77617],["2021-10-18",95814,140,77757],["2021-10-19",95814,157,77914],["2021-10-20",95814,150,78064],["2021-10-21",95814,145,78209],["2021-10-22",95814,243,78452],["2021-10-23",95814,167,78619],["2021-10-24",95814,84,78703],["2021-10-25",95814,296,78999],["2021-10-26",95814,222,79221],["2021-10-27",95814,257,79478],["2021-10-28",95814,244,79722],["2021-10-29",95814,256,79978],["2021-10-30",95814,105,80083],["2021-10-31",95814,66,80149],["2021-11-01",95814,233,80382],["2021-11-02",95814,214,80596],["2021-11-03",95814,237,80833],["2021-11-04",95814,189,81022],["2021-11-05",95814,253,81275],["2021-11-06",95814,119,81394],["2021-11-07",95814,74,81468],["2021-11-08",95814,170,81638],["2021-11-09",95814,206,81844],["2021-11-10",95814,207,82051],["2021-11-11",95814,156,82207],["2021-11-12",95814,284,82491],["2021-11-13",95814,126,82617],["2021-11-14",95814,69,82686],["2021-11-15",95814,192,82878],["2021-11-16",95814,235,83113],["2021-11-17",95814,219,83332],["2021-11-18",95814,215,83547],["2021-11-19",95814,277,83824],["2021-11-20",95814,114,83938],["2021-11-21",95814,81,84019],["2021-11-22",95814,223,84242],["2021-11-23",95814,245,84487],["2021-11-24",95814,154,84641],["2021-11-25",95814,1,84642],["2021-11-26",95814,140,84782],["2021-11-27",95814,114,84896],["2021-11-28",95814,112,85008],["2021-11-29",95814,217,85225],["2021-11-30",95814,268,85493],["2021-12-01",95814,311,85804],["2021-12-02",95814,315,86119],["2021-12-03",95814,322,86441],["2021-12-04",95814,186,86627],["2021-12-05",95814,87,86714],["2021-12-06",95814,251,86965],["2021-12-07",95814,242,87207],["2021-12-08",95814,253,87460],["2021-12-09",95814,225,87685],["2021-12-10",95814,300,87985],["2021-12-11",95814,107,88092],["2021-12-12",95814,97,88189],["2021-12-13",95814,178,88367],["2021-12-14",95814,226,88593],["2021-12-15",95814,219,88812],["2021-12-16",95814,211,89023],["2021-12-17",95814,249,89272],["2021-12-18",95814,165,89437],["2021-12-19",95814,92,89529],["2021-12-20",95814,260,89789],["2021-12-21",95814,272,90061],["2021-12-22",95814,260,90321],["2021-12-23",95814,200,90521],["2021-12-24",95814,61,90582],["2021-12-26",95814,65,90647],["2021-12-27",95814,244,90891],["2021-12-28",95814,256,91147],["2021-12-29",95814,255,91402],["2021-12-30",95814,234,91636],["2021-12-31",95814,127,91763],["2022-01-01",95814,24,91787],["2022-01-02",95814,61,91848],["2022-01-03",95814,90,91938]]} \ No newline at end of file diff --git a/public/data/overall/vaccinations/by-county/Ware.json b/public/data/overall/vaccinations/by-county/Ware.json new file mode 100644 index 000000000..58e9e369f --- /dev/null +++ b/public/data/overall/vaccinations/by-county/Ware.json @@ -0,0 +1 @@ +{"segment":{"county":"Ware"},"headers":["report_date","population","vaccinations","total_vaccinations"],"rows":[["2020-12-15",35853,2,2],["2020-12-16",35853,1,3],["2020-12-17",35853,1,4],["2020-12-18",35853,6,10],["2020-12-19",35853,2,12],["2020-12-20",35853,1,13],["2020-12-21",35853,3,16],["2020-12-22",35853,6,22],["2020-12-23",35853,32,54],["2020-12-24",35853,14,68],["2020-12-26",35853,1,69],["2020-12-28",35853,36,105],["2020-12-29",35853,58,163],["2020-12-30",35853,81,244],["2020-12-31",35853,36,280],["2021-01-01",35853,1,281],["2021-01-03",35853,4,285],["2021-01-04",35853,23,308],["2021-01-05",35853,36,344],["2021-01-06",35853,57,401],["2021-01-07",35853,47,448],["2021-01-08",35853,76,524],["2021-01-09",35853,6,530],["2021-01-10",35853,6,536],["2021-01-11",35853,178,714],["2021-01-12",35853,73,787],["2021-01-13",35853,153,940],["2021-01-14",35853,24,964],["2021-01-15",35853,158,1122],["2021-01-16",35853,149,1271],["2021-01-17",35853,6,1277],["2021-01-18",35853,169,1446],["2021-01-19",35853,58,1504],["2021-01-20",35853,100,1604],["2021-01-21",35853,87,1691],["2021-01-22",35853,144,1835],["2021-01-23",35853,20,1855],["2021-01-24",35853,28,1883],["2021-01-25",35853,193,2076],["2021-01-26",35853,57,2133],["2021-01-27",35853,151,2284],["2021-01-28",35853,38,2322],["2021-01-29",35853,214,2536],["2021-01-30",35853,108,2644],["2021-01-31",35853,6,2650],["2021-02-01",35853,255,2905],["2021-02-02",35853,48,2953],["2021-02-03",35853,267,3220],["2021-02-04",35853,32,3252],["2021-02-05",35853,161,3413],["2021-02-06",35853,16,3429],["2021-02-07",35853,6,3435],["2021-02-08",35853,387,3822],["2021-02-09",35853,47,3869],["2021-02-10",35853,197,4066],["2021-02-11",35853,74,4140],["2021-02-12",35853,283,4423],["2021-02-13",35853,252,4675],["2021-02-14",35853,7,4682],["2021-02-15",35853,318,5000],["2021-02-16",35853,58,5058],["2021-02-17",35853,234,5292],["2021-02-18",35853,35,5327],["2021-02-19",35853,305,5632],["2021-02-20",35853,47,5679],["2021-02-22",35853,323,6002],["2021-02-23",35853,31,6033],["2021-02-24",35853,149,6182],["2021-02-25",35853,46,6228],["2021-02-26",35853,246,6474],["2021-02-27",35853,13,6487],["2021-02-28",35853,9,6496],["2021-03-01",35853,304,6800],["2021-03-02",35853,92,6892],["2021-03-03",35853,141,7033],["2021-03-04",35853,38,7071],["2021-03-05",35853,320,7391],["2021-03-06",35853,5,7396],["2021-03-07",35853,13,7409],["2021-03-08",35853,279,7688],["2021-03-09",35853,54,7742],["2021-03-10",35853,294,8036],["2021-03-11",35853,93,8129],["2021-03-12",35853,361,8490],["2021-03-13",35853,15,8505],["2021-03-14",35853,15,8520],["2021-03-15",35853,317,8837],["2021-03-16",35853,92,8929],["2021-03-17",35853,403,9332],["2021-03-18",35853,89,9421],["2021-03-19",35853,396,9817],["2021-03-20",35853,56,9873],["2021-03-21",35853,14,9887],["2021-03-22",35853,324,10211],["2021-03-23",35853,97,10308],["2021-03-24",35853,344,10652],["2021-03-25",35853,199,10851],["2021-03-26",35853,325,11176],["2021-03-27",35853,118,11294],["2021-03-28",35853,17,11311],["2021-03-29",35853,176,11487],["2021-03-30",35853,182,11669],["2021-03-31",35853,285,11954],["2021-04-01",35853,151,12105],["2021-04-02",35853,199,12304],["2021-04-03",35853,55,12359],["2021-04-04",35853,14,12373],["2021-04-05",35853,174,12547],["2021-04-06",35853,156,12703],["2021-04-07",35853,301,13004],["2021-04-08",35853,162,13166],["2021-04-09",35853,234,13400],["2021-04-10",35853,88,13488],["2021-04-11",35853,16,13504],["2021-04-12",35853,108,13612],["2021-04-13",35853,273,13885],["2021-04-14",35853,324,14209],["2021-04-15",35853,160,14369],["2021-04-16",35853,286,14655],["2021-04-17",35853,160,14815],["2021-04-18",35853,2,14817],["2021-04-19",35853,190,15007],["2021-04-20",35853,205,15212],["2021-04-21",35853,304,15516],["2021-04-22",35853,158,15674],["2021-04-23",35853,262,15936],["2021-04-24",35853,77,16013],["2021-04-25",35853,3,16016],["2021-04-26",35853,135,16151],["2021-04-27",35853,144,16295],["2021-04-28",35853,232,16527],["2021-04-29",35853,101,16628],["2021-04-30",35853,175,16803],["2021-05-01",35853,54,16857],["2021-05-02",35853,1,16858],["2021-05-03",35853,38,16896],["2021-05-04",35853,134,17030],["2021-05-05",35853,135,17165],["2021-05-06",35853,69,17234],["2021-05-07",35853,81,17315],["2021-05-08",35853,47,17362],["2021-05-09",35853,3,17365],["2021-05-10",35853,38,17403],["2021-05-11",35853,72,17475],["2021-05-12",35853,149,17624],["2021-05-13",35853,71,17695],["2021-05-14",35853,69,17764],["2021-05-15",35853,76,17840],["2021-05-16",35853,6,17846],["2021-05-17",35853,34,17880],["2021-05-18",35853,94,17974],["2021-05-19",35853,153,18127],["2021-05-20",35853,270,18397],["2021-05-21",35853,92,18489],["2021-05-22",35853,19,18508],["2021-05-23",35853,16,18524],["2021-05-24",35853,32,18556],["2021-05-25",35853,66,18622],["2021-05-26",35853,107,18729],["2021-05-27",35853,29,18758],["2021-05-28",35853,56,18814],["2021-05-29",35853,13,18827],["2021-05-30",35853,6,18833],["2021-05-31",35853,3,18836],["2021-06-01",35853,64,18900],["2021-06-02",35853,88,18988],["2021-06-03",35853,46,19034],["2021-06-04",35853,31,19065],["2021-06-05",35853,16,19081],["2021-06-06",35853,5,19086],["2021-06-07",35853,29,19115],["2021-06-08",35853,35,19150],["2021-06-09",35853,97,19247],["2021-06-10",35853,40,19287],["2021-06-11",35853,65,19352],["2021-06-12",35853,24,19376],["2021-06-13",35853,5,19381],["2021-06-14",35853,23,19404],["2021-06-15",35853,31,19435],["2021-06-16",35853,90,19525],["2021-06-17",35853,19,19544],["2021-06-18",35853,48,19592],["2021-06-19",35853,11,19603],["2021-06-20",35853,16,19619],["2021-06-21",35853,21,19640],["2021-06-22",35853,20,19660],["2021-06-23",35853,74,19734],["2021-06-24",35853,22,19756],["2021-06-25",35853,21,19777],["2021-06-26",35853,15,19792],["2021-06-27",35853,6,19798],["2021-06-28",35853,18,19816],["2021-06-29",35853,16,19832],["2021-06-30",35853,82,19914],["2021-07-01",35853,25,19939],["2021-07-02",35853,34,19973],["2021-07-03",35853,6,19979],["2021-07-04",35853,1,19980],["2021-07-05",35853,10,19990],["2021-07-06",35853,20,20010],["2021-07-07",35853,32,20042],["2021-07-08",35853,31,20073],["2021-07-09",35853,24,20097],["2021-07-10",35853,6,20103],["2021-07-11",35853,2,20105],["2021-07-12",35853,22,20127],["2021-07-13",35853,38,20165],["2021-07-14",35853,62,20227],["2021-07-15",35853,20,20247],["2021-07-16",35853,35,20282],["2021-07-17",35853,21,20303],["2021-07-18",35853,6,20309],["2021-07-19",35853,35,20344],["2021-07-20",35853,27,20371],["2021-07-21",35853,98,20469],["2021-07-22",35853,49,20518],["2021-07-23",35853,77,20595],["2021-07-24",35853,42,20637],["2021-07-25",35853,21,20658],["2021-07-26",35853,64,20722],["2021-07-27",35853,85,20807],["2021-07-28",35853,170,20977],["2021-07-29",35853,67,21044],["2021-07-30",35853,85,21129],["2021-07-31",35853,44,21173],["2021-08-01",35853,31,21204],["2021-08-02",35853,60,21264],["2021-08-03",35853,88,21352],["2021-08-04",35853,106,21458],["2021-08-05",35853,109,21567],["2021-08-06",35853,109,21676],["2021-08-07",35853,40,21716],["2021-08-08",35853,30,21746],["2021-08-09",35853,93,21839],["2021-08-10",35853,129,21968],["2021-08-11",35853,166,22134],["2021-08-12",35853,124,22258],["2021-08-13",35853,133,22391],["2021-08-14",35853,56,22447],["2021-08-15",35853,48,22495],["2021-08-16",35853,94,22589],["2021-08-17",35853,109,22698],["2021-08-18",35853,145,22843],["2021-08-19",35853,114,22957],["2021-08-20",35853,117,23074],["2021-08-21",35853,53,23127],["2021-08-22",35853,31,23158],["2021-08-23",35853,121,23279],["2021-08-24",35853,93,23372],["2021-08-25",35853,168,23540],["2021-08-26",35853,132,23672],["2021-08-27",35853,138,23810],["2021-08-28",35853,54,23864],["2021-08-29",35853,39,23903],["2021-08-30",35853,110,24013],["2021-08-31",35853,131,24144],["2021-09-01",35853,139,24283],["2021-09-02",35853,124,24407],["2021-09-03",35853,147,24554],["2021-09-04",35853,55,24609],["2021-09-05",35853,26,24635],["2021-09-06",35853,24,24659],["2021-09-07",35853,106,24765],["2021-09-08",35853,146,24911],["2021-09-09",35853,103,25014],["2021-09-10",35853,153,25167],["2021-09-11",35853,62,25229],["2021-09-12",35853,31,25260],["2021-09-13",35853,114,25374],["2021-09-14",35853,87,25461],["2021-09-15",35853,96,25557],["2021-09-16",35853,96,25653],["2021-09-17",35853,113,25766],["2021-09-18",35853,33,25799],["2021-09-19",35853,22,25821],["2021-09-20",35853,67,25888],["2021-09-21",35853,58,25946],["2021-09-22",35853,76,26022],["2021-09-23",35853,61,26083],["2021-09-24",35853,84,26167],["2021-09-25",35853,28,26195],["2021-09-26",35853,10,26205],["2021-09-27",35853,53,26258],["2021-09-28",35853,62,26320],["2021-09-29",35853,63,26383],["2021-09-30",35853,62,26445],["2021-10-01",35853,64,26509],["2021-10-02",35853,21,26530],["2021-10-03",35853,13,26543],["2021-10-04",35853,62,26605],["2021-10-05",35853,35,26640],["2021-10-06",35853,47,26687],["2021-10-07",35853,33,26720],["2021-10-08",35853,52,26772],["2021-10-09",35853,16,26788],["2021-10-10",35853,10,26798],["2021-10-11",35853,24,26822],["2021-10-12",35853,40,26862],["2021-10-13",35853,33,26895],["2021-10-14",35853,36,26931],["2021-10-15",35853,42,26973],["2021-10-16",35853,15,26988],["2021-10-17",35853,9,26997],["2021-10-18",35853,38,27035],["2021-10-19",35853,26,27061],["2021-10-20",35853,42,27103],["2021-10-21",35853,37,27140],["2021-10-22",35853,33,27173],["2021-10-23",35853,25,27198],["2021-10-24",35853,5,27203],["2021-10-25",35853,60,27263],["2021-10-26",35853,75,27338],["2021-10-27",35853,130,27468],["2021-10-28",35853,106,27574],["2021-10-29",35853,128,27702],["2021-10-30",35853,16,27718],["2021-10-31",35853,10,27728],["2021-11-01",35853,114,27842],["2021-11-02",35853,141,27983],["2021-11-03",35853,119,28102],["2021-11-04",35853,76,28178],["2021-11-05",35853,111,28289],["2021-11-06",35853,15,28304],["2021-11-07",35853,17,28321],["2021-11-08",35853,111,28432],["2021-11-09",35853,119,28551],["2021-11-10",35853,99,28650],["2021-11-11",35853,45,28695],["2021-11-12",35853,112,28807],["2021-11-13",35853,16,28823],["2021-11-14",35853,7,28830],["2021-11-15",35853,100,28930],["2021-11-16",35853,100,29030],["2021-11-17",35853,110,29140],["2021-11-18",35853,98,29238],["2021-11-19",35853,99,29337],["2021-11-20",35853,17,29354],["2021-11-21",35853,9,29363],["2021-11-22",35853,92,29455],["2021-11-23",35853,131,29586],["2021-11-24",35853,67,29653],["2021-11-26",35853,17,29670],["2021-11-27",35853,14,29684],["2021-11-28",35853,12,29696],["2021-11-29",35853,157,29853],["2021-11-30",35853,149,30002],["2021-12-01",35853,130,30132],["2021-12-02",35853,103,30235],["2021-12-03",35853,152,30387],["2021-12-04",35853,34,30421],["2021-12-05",35853,10,30431],["2021-12-06",35853,87,30518],["2021-12-07",35853,92,30610],["2021-12-08",35853,114,30724],["2021-12-09",35853,100,30824],["2021-12-10",35853,111,30935],["2021-12-11",35853,20,30955],["2021-12-12",35853,9,30964],["2021-12-13",35853,65,31029],["2021-12-14",35853,65,31094],["2021-12-15",35853,102,31196],["2021-12-16",35853,78,31274],["2021-12-17",35853,102,31376],["2021-12-18",35853,21,31397],["2021-12-19",35853,14,31411],["2021-12-20",35853,113,31524],["2021-12-21",35853,108,31632],["2021-12-22",35853,83,31715],["2021-12-23",35853,20,31735],["2021-12-24",35853,9,31744],["2021-12-26",35853,13,31757],["2021-12-27",35853,92,31849],["2021-12-28",35853,116,31965],["2021-12-29",35853,116,32081],["2021-12-30",35853,95,32176],["2021-12-31",35853,49,32225],["2022-01-01",35853,1,32226],["2022-01-02",35853,11,32237],["2022-01-03",35853,13,32250]]} \ No newline at end of file diff --git a/public/data/overall/vaccinations/by-county/Warren.json b/public/data/overall/vaccinations/by-county/Warren.json new file mode 100644 index 000000000..6af5ab356 --- /dev/null +++ b/public/data/overall/vaccinations/by-county/Warren.json @@ -0,0 +1 @@ +{"segment":{"county":"Warren"},"headers":["report_date","population","vaccinations","total_vaccinations"],"rows":[["2020-12-18",5210,1,1],["2020-12-21",5210,1,2],["2020-12-22",5210,2,4],["2020-12-23",5210,4,8],["2020-12-24",5210,1,9],["2020-12-27",5210,1,10],["2020-12-28",5210,2,12],["2020-12-29",5210,6,18],["2020-12-30",5210,3,21],["2021-01-02",5210,3,24],["2021-01-04",5210,7,31],["2021-01-05",5210,7,38],["2021-01-06",5210,19,57],["2021-01-07",5210,8,65],["2021-01-08",5210,11,76],["2021-01-09",5210,4,80],["2021-01-10",5210,30,110],["2021-01-11",5210,58,168],["2021-01-12",5210,6,174],["2021-01-13",5210,12,186],["2021-01-14",5210,56,242],["2021-01-15",5210,1,243],["2021-01-16",5210,9,252],["2021-01-18",5210,86,338],["2021-01-19",5210,18,356],["2021-01-20",5210,19,375],["2021-01-21",5210,7,382],["2021-01-22",5210,1,383],["2021-01-23",5210,4,387],["2021-01-25",5210,72,459],["2021-01-26",5210,13,472],["2021-01-27",5210,9,481],["2021-01-28",5210,32,513],["2021-01-29",5210,3,516],["2021-01-30",5210,3,519],["2021-01-31",5210,40,559],["2021-02-01",5210,54,613],["2021-02-02",5210,9,622],["2021-02-03",5210,27,649],["2021-02-04",5210,15,664],["2021-02-05",5210,13,677],["2021-02-06",5210,3,680],["2021-02-08",5210,48,728],["2021-02-09",5210,25,753],["2021-02-10",5210,15,768],["2021-02-11",5210,57,825],["2021-02-12",5210,13,838],["2021-02-13",5210,5,843],["2021-02-14",5210,1,844],["2021-02-15",5210,121,965],["2021-02-16",5210,18,983],["2021-02-17",5210,26,1009],["2021-02-18",5210,8,1017],["2021-02-19",5210,3,1020],["2021-02-21",5210,1,1021],["2021-02-22",5210,94,1115],["2021-02-23",5210,11,1126],["2021-02-24",5210,12,1138],["2021-02-25",5210,51,1189],["2021-02-26",5210,10,1199],["2021-02-27",5210,4,1203],["2021-03-01",5210,61,1264],["2021-03-02",5210,15,1279],["2021-03-03",5210,15,1294],["2021-03-04",5210,8,1302],["2021-03-05",5210,5,1307],["2021-03-06",5210,2,1309],["2021-03-08",5210,49,1358],["2021-03-09",5210,22,1380],["2021-03-10",5210,24,1404],["2021-03-11",5210,55,1459],["2021-03-12",5210,43,1502],["2021-03-13",5210,9,1511],["2021-03-14",5210,1,1512],["2021-03-15",5210,88,1600],["2021-03-16",5210,23,1623],["2021-03-17",5210,23,1646],["2021-03-18",5210,20,1666],["2021-03-19",5210,10,1676],["2021-03-20",5210,7,1683],["2021-03-21",5210,2,1685],["2021-03-22",5210,87,1772],["2021-03-23",5210,22,1794],["2021-03-24",5210,26,1820],["2021-03-25",5210,64,1884],["2021-03-26",5210,12,1896],["2021-03-27",5210,3,1899],["2021-03-28",5210,2,1901],["2021-03-29",5210,49,1950],["2021-03-30",5210,26,1976],["2021-03-31",5210,38,2014],["2021-04-01",5210,41,2055],["2021-04-02",5210,12,2067],["2021-04-03",5210,7,2074],["2021-04-04",5210,8,2082],["2021-04-05",5210,72,2154],["2021-04-06",5210,25,2179],["2021-04-07",5210,31,2210],["2021-04-08",5210,56,2266],["2021-04-09",5210,13,2279],["2021-04-10",5210,3,2282],["2021-04-12",5210,114,2396],["2021-04-13",5210,30,2426],["2021-04-14",5210,23,2449],["2021-04-15",5210,27,2476],["2021-04-16",5210,47,2523],["2021-04-17",5210,7,2530],["2021-04-18",5210,6,2536],["2021-04-19",5210,95,2631],["2021-04-20",5210,36,2667],["2021-04-21",5210,38,2705],["2021-04-22",5210,75,2780],["2021-04-23",5210,14,2794],["2021-04-24",5210,3,2797],["2021-04-26",5210,43,2840],["2021-04-27",5210,28,2868],["2021-04-28",5210,37,2905],["2021-04-29",5210,35,2940],["2021-04-30",5210,19,2959],["2021-05-01",5210,4,2963],["2021-05-02",5210,5,2968],["2021-05-03",5210,51,3019],["2021-05-04",5210,23,3042],["2021-05-05",5210,27,3069],["2021-05-06",5210,36,3105],["2021-05-07",5210,15,3120],["2021-05-08",5210,9,3129],["2021-05-09",5210,4,3133],["2021-05-10",5210,39,3172],["2021-05-11",5210,31,3203],["2021-05-12",5210,17,3220],["2021-05-13",5210,8,3228],["2021-05-14",5210,16,3244],["2021-05-15",5210,4,3248],["2021-05-16",5210,4,3252],["2021-05-17",5210,37,3289],["2021-05-18",5210,22,3311],["2021-05-19",5210,20,3331],["2021-05-20",5210,26,3357],["2021-05-21",5210,7,3364],["2021-05-22",5210,9,3373],["2021-05-23",5210,1,3374],["2021-05-24",5210,30,3404],["2021-05-25",5210,13,3417],["2021-05-26",5210,16,3433],["2021-05-27",5210,14,3447],["2021-05-28",5210,8,3455],["2021-05-29",5210,6,3461],["2021-05-30",5210,1,3462],["2021-05-31",5210,2,3464],["2021-06-01",5210,16,3480],["2021-06-02",5210,30,3510],["2021-06-03",5210,13,3523],["2021-06-04",5210,14,3537],["2021-06-05",5210,7,3544],["2021-06-06",5210,7,3551],["2021-06-07",5210,30,3581],["2021-06-08",5210,13,3594],["2021-06-09",5210,16,3610],["2021-06-10",5210,17,3627],["2021-06-11",5210,11,3638],["2021-06-12",5210,8,3646],["2021-06-13",5210,2,3648],["2021-06-14",5210,9,3657],["2021-06-15",5210,8,3665],["2021-06-16",5210,18,3683],["2021-06-17",5210,23,3706],["2021-06-18",5210,8,3714],["2021-06-19",5210,5,3719],["2021-06-20",5210,2,3721],["2021-06-21",5210,13,3734],["2021-06-22",5210,10,3744],["2021-06-23",5210,3,3747],["2021-06-24",5210,6,3753],["2021-06-25",5210,9,3762],["2021-06-26",5210,6,3768],["2021-06-27",5210,1,3769],["2021-06-28",5210,4,3773],["2021-06-29",5210,11,3784],["2021-06-30",5210,13,3797],["2021-07-01",5210,14,3811],["2021-07-02",5210,5,3816],["2021-07-03",5210,3,3819],["2021-07-04",5210,4,3823],["2021-07-05",5210,3,3826],["2021-07-06",5210,7,3833],["2021-07-07",5210,28,3861],["2021-07-08",5210,3,3864],["2021-07-09",5210,10,3874],["2021-07-10",5210,3,3877],["2021-07-11",5210,2,3879],["2021-07-12",5210,10,3889],["2021-07-13",5210,12,3901],["2021-07-14",5210,4,3905],["2021-07-15",5210,22,3927],["2021-07-16",5210,2,3929],["2021-07-17",5210,11,3940],["2021-07-18",5210,3,3943],["2021-07-19",5210,9,3952],["2021-07-20",5210,14,3966],["2021-07-21",5210,20,3986],["2021-07-22",5210,12,3998],["2021-07-23",5210,10,4008],["2021-07-24",5210,1,4009],["2021-07-25",5210,1,4010],["2021-07-26",5210,13,4023],["2021-07-27",5210,13,4036],["2021-07-28",5210,35,4071],["2021-07-29",5210,10,4081],["2021-07-30",5210,14,4095],["2021-07-31",5210,6,4101],["2021-08-01",5210,4,4105],["2021-08-02",5210,6,4111],["2021-08-03",5210,13,4124],["2021-08-04",5210,35,4159],["2021-08-05",5210,9,4168],["2021-08-06",5210,18,4186],["2021-08-07",5210,9,4195],["2021-08-08",5210,8,4203],["2021-08-09",5210,15,4218],["2021-08-10",5210,11,4229],["2021-08-11",5210,25,4254],["2021-08-12",5210,14,4268],["2021-08-13",5210,17,4285],["2021-08-14",5210,11,4296],["2021-08-15",5210,6,4302],["2021-08-16",5210,13,4315],["2021-08-17",5210,19,4334],["2021-08-18",5210,33,4367],["2021-08-19",5210,25,4392],["2021-08-20",5210,14,4406],["2021-08-21",5210,9,4415],["2021-08-22",5210,2,4417],["2021-08-23",5210,11,4428],["2021-08-24",5210,9,4437],["2021-08-25",5210,27,4464],["2021-08-26",5210,19,4483],["2021-08-27",5210,18,4501],["2021-08-28",5210,4,4505],["2021-08-29",5210,5,4510],["2021-08-30",5210,11,4521],["2021-08-31",5210,22,4543],["2021-09-01",5210,28,4571],["2021-09-02",5210,16,4587],["2021-09-03",5210,11,4598],["2021-09-04",5210,7,4605],["2021-09-05",5210,9,4614],["2021-09-06",5210,8,4622],["2021-09-07",5210,18,4640],["2021-09-08",5210,28,4668],["2021-09-09",5210,19,4687],["2021-09-10",5210,8,4695],["2021-09-11",5210,6,4701],["2021-09-12",5210,3,4704],["2021-09-13",5210,17,4721],["2021-09-14",5210,17,4738],["2021-09-15",5210,19,4757],["2021-09-16",5210,16,4773],["2021-09-17",5210,5,4778],["2021-09-18",5210,9,4787],["2021-09-19",5210,4,4791],["2021-09-20",5210,9,4800],["2021-09-21",5210,8,4808],["2021-09-22",5210,34,4842],["2021-09-23",5210,12,4854],["2021-09-24",5210,9,4863],["2021-09-25",5210,4,4867],["2021-09-26",5210,5,4872],["2021-09-27",5210,8,4880],["2021-09-28",5210,10,4890],["2021-09-29",5210,15,4905],["2021-09-30",5210,12,4917],["2021-10-01",5210,12,4929],["2021-10-02",5210,6,4935],["2021-10-03",5210,2,4937],["2021-10-04",5210,2,4939],["2021-10-05",5210,5,4944],["2021-10-06",5210,10,4954],["2021-10-07",5210,13,4967],["2021-10-08",5210,5,4972],["2021-10-09",5210,3,4975],["2021-10-10",5210,5,4980],["2021-10-11",5210,7,4987],["2021-10-12",5210,4,4991],["2021-10-13",5210,5,4996],["2021-10-14",5210,8,5004],["2021-10-15",5210,10,5014],["2021-10-16",5210,7,5021],["2021-10-17",5210,2,5023],["2021-10-18",5210,4,5027],["2021-10-19",5210,3,5030],["2021-10-20",5210,11,5041],["2021-10-21",5210,7,5048],["2021-10-22",5210,11,5059],["2021-10-23",5210,8,5067],["2021-10-25",5210,10,5077],["2021-10-26",5210,14,5091],["2021-10-27",5210,24,5115],["2021-10-28",5210,5,5120],["2021-10-29",5210,13,5133],["2021-10-30",5210,4,5137],["2021-10-31",5210,3,5140],["2021-11-01",5210,37,5177],["2021-11-02",5210,4,5181],["2021-11-03",5210,42,5223],["2021-11-04",5210,9,5232],["2021-11-05",5210,10,5242],["2021-11-06",5210,3,5245],["2021-11-07",5210,3,5248],["2021-11-08",5210,30,5278],["2021-11-09",5210,13,5291],["2021-11-10",5210,34,5325],["2021-11-11",5210,13,5338],["2021-11-12",5210,14,5352],["2021-11-13",5210,5,5357],["2021-11-15",5210,20,5377],["2021-11-16",5210,14,5391],["2021-11-17",5210,36,5427],["2021-11-18",5210,33,5460],["2021-11-19",5210,10,5470],["2021-11-20",5210,4,5474],["2021-11-21",5210,3,5477],["2021-11-22",5210,40,5517],["2021-11-23",5210,7,5524],["2021-11-24",5210,11,5535],["2021-11-26",5210,6,5541],["2021-11-27",5210,3,5544],["2021-11-28",5210,3,5547],["2021-11-29",5210,15,5562],["2021-11-30",5210,19,5581],["2021-12-01",5210,65,5646],["2021-12-02",5210,39,5685],["2021-12-03",5210,17,5702],["2021-12-04",5210,7,5709],["2021-12-05",5210,2,5711],["2021-12-06",5210,28,5739],["2021-12-07",5210,8,5747],["2021-12-08",5210,44,5791],["2021-12-09",5210,28,5819],["2021-12-10",5210,19,5838],["2021-12-11",5210,4,5842],["2021-12-12",5210,5,5847],["2021-12-13",5210,7,5854],["2021-12-14",5210,16,5870],["2021-12-15",5210,15,5885],["2021-12-16",5210,30,5915],["2021-12-17",5210,11,5926],["2021-12-18",5210,6,5932],["2021-12-19",5210,2,5934],["2021-12-20",5210,14,5948],["2021-12-21",5210,5,5953],["2021-12-22",5210,19,5972],["2021-12-23",5210,7,5979],["2021-12-24",5210,6,5985],["2021-12-26",5210,1,5986],["2021-12-27",5210,14,6000],["2021-12-28",5210,10,6010],["2021-12-29",5210,47,6057],["2021-12-30",5210,15,6072],["2021-12-31",5210,14,6086],["2022-01-01",5210,5,6091],["2022-01-02",5210,3,6094],["2022-01-03",5210,9,6103]]} \ No newline at end of file diff --git a/public/data/overall/vaccinations/by-county/Washington.json b/public/data/overall/vaccinations/by-county/Washington.json new file mode 100644 index 000000000..99f2b12ff --- /dev/null +++ b/public/data/overall/vaccinations/by-county/Washington.json @@ -0,0 +1 @@ +{"segment":{"county":"Washington"},"headers":["report_date","population","vaccinations","total_vaccinations"],"rows":[["2020-12-15",20302,1,1],["2020-12-18",20302,3,4],["2020-12-19",20302,1,5],["2020-12-20",20302,1,6],["2020-12-22",20302,5,11],["2020-12-23",20302,11,22],["2020-12-24",20302,1,23],["2020-12-27",20302,1,24],["2020-12-28",20302,10,34],["2020-12-29",20302,17,51],["2020-12-30",20302,31,82],["2020-12-31",20302,27,109],["2021-01-02",20302,1,110],["2021-01-03",20302,1,111],["2021-01-04",20302,22,133],["2021-01-05",20302,54,187],["2021-01-06",20302,30,217],["2021-01-07",20302,16,233],["2021-01-08",20302,42,275],["2021-01-09",20302,5,280],["2021-01-11",20302,18,298],["2021-01-12",20302,140,438],["2021-01-13",20302,127,565],["2021-01-14",20302,90,655],["2021-01-15",20302,110,765],["2021-01-16",20302,47,812],["2021-01-17",20302,11,823],["2021-01-18",20302,62,885],["2021-01-19",20302,170,1055],["2021-01-20",20302,167,1222],["2021-01-21",20302,59,1281],["2021-01-22",20302,49,1330],["2021-01-23",20302,7,1337],["2021-01-24",20302,1,1338],["2021-01-25",20302,13,1351],["2021-01-26",20302,155,1506],["2021-01-27",20302,16,1522],["2021-01-28",20302,62,1584],["2021-01-29",20302,106,1690],["2021-01-30",20302,11,1701],["2021-01-31",20302,1,1702],["2021-02-01",20302,20,1722],["2021-02-02",20302,182,1904],["2021-02-03",20302,148,2052],["2021-02-04",20302,63,2115],["2021-02-05",20302,107,2222],["2021-02-06",20302,3,2225],["2021-02-07",20302,6,2231],["2021-02-08",20302,50,2281],["2021-02-09",20302,236,2517],["2021-02-10",20302,175,2692],["2021-02-11",20302,97,2789],["2021-02-12",20302,131,2920],["2021-02-13",20302,6,2926],["2021-02-14",20302,3,2929],["2021-02-15",20302,50,2979],["2021-02-16",20302,226,3205],["2021-02-17",20302,185,3390],["2021-02-18",20302,99,3489],["2021-02-19",20302,90,3579],["2021-02-20",20302,11,3590],["2021-02-21",20302,2,3592],["2021-02-22",20302,45,3637],["2021-02-23",20302,169,3806],["2021-02-24",20302,98,3904],["2021-02-25",20302,108,4012],["2021-02-26",20302,90,4102],["2021-02-27",20302,2,4104],["2021-02-28",20302,2,4106],["2021-03-01",20302,56,4162],["2021-03-02",20302,167,4329],["2021-03-03",20302,153,4482],["2021-03-04",20302,29,4511],["2021-03-05",20302,114,4625],["2021-03-06",20302,4,4629],["2021-03-07",20302,5,4634],["2021-03-08",20302,53,4687],["2021-03-09",20302,200,4887],["2021-03-10",20302,236,5123],["2021-03-11",20302,83,5206],["2021-03-12",20302,222,5428],["2021-03-13",20302,5,5433],["2021-03-14",20302,4,5437],["2021-03-15",20302,53,5490],["2021-03-16",20302,227,5717],["2021-03-17",20302,216,5933],["2021-03-18",20302,74,6007],["2021-03-19",20302,288,6295],["2021-03-20",20302,37,6332],["2021-03-21",20302,7,6339],["2021-03-22",20302,53,6392],["2021-03-23",20302,373,6765],["2021-03-24",20302,65,6830],["2021-03-25",20302,116,6946],["2021-03-26",20302,246,7192],["2021-03-27",20302,67,7259],["2021-03-28",20302,5,7264],["2021-03-29",20302,22,7286],["2021-03-30",20302,216,7502],["2021-03-31",20302,210,7712],["2021-04-01",20302,131,7843],["2021-04-02",20302,172,8015],["2021-04-03",20302,41,8056],["2021-04-04",20302,5,8061],["2021-04-05",20302,35,8096],["2021-04-06",20302,207,8303],["2021-04-07",20302,266,8569],["2021-04-08",20302,135,8704],["2021-04-09",20302,185,8889],["2021-04-10",20302,43,8932],["2021-04-11",20302,6,8938],["2021-04-12",20302,14,8952],["2021-04-13",20302,238,9190],["2021-04-14",20302,125,9315],["2021-04-15",20302,111,9426],["2021-04-16",20302,273,9699],["2021-04-17",20302,82,9781],["2021-04-18",20302,11,9792],["2021-04-19",20302,22,9814],["2021-04-20",20302,329,10143],["2021-04-21",20302,81,10224],["2021-04-22",20302,87,10311],["2021-04-23",20302,196,10507],["2021-04-24",20302,59,10566],["2021-04-25",20302,5,10571],["2021-04-26",20302,22,10593],["2021-04-27",20302,183,10776],["2021-04-28",20302,159,10935],["2021-04-29",20302,70,11005],["2021-04-30",20302,130,11135],["2021-05-01",20302,39,11174],["2021-05-02",20302,5,11179],["2021-05-03",20302,28,11207],["2021-05-04",20302,119,11326],["2021-05-05",20302,85,11411],["2021-05-06",20302,41,11452],["2021-05-07",20302,104,11556],["2021-05-08",20302,38,11594],["2021-05-09",20302,3,11597],["2021-05-10",20302,31,11628],["2021-05-11",20302,80,11708],["2021-05-12",20302,41,11749],["2021-05-13",20302,41,11790],["2021-05-14",20302,64,11854],["2021-05-15",20302,36,11890],["2021-05-16",20302,8,11898],["2021-05-17",20302,32,11930],["2021-05-18",20302,91,12021],["2021-05-19",20302,49,12070],["2021-05-20",20302,44,12114],["2021-05-21",20302,90,12204],["2021-05-22",20302,8,12212],["2021-05-23",20302,5,12217],["2021-05-24",20302,19,12236],["2021-05-25",20302,37,12273],["2021-05-26",20302,39,12312],["2021-05-27",20302,20,12332],["2021-05-28",20302,39,12371],["2021-05-29",20302,6,12377],["2021-05-30",20302,6,12383],["2021-05-31",20302,6,12389],["2021-06-01",20302,42,12431],["2021-06-02",20302,38,12469],["2021-06-03",20302,31,12500],["2021-06-04",20302,51,12551],["2021-06-05",20302,23,12574],["2021-06-06",20302,14,12588],["2021-06-07",20302,33,12621],["2021-06-08",20302,22,12643],["2021-06-09",20302,31,12674],["2021-06-10",20302,22,12696],["2021-06-11",20302,49,12745],["2021-06-12",20302,21,12766],["2021-06-13",20302,4,12770],["2021-06-14",20302,27,12797],["2021-06-15",20302,37,12834],["2021-06-16",20302,29,12863],["2021-06-17",20302,12,12875],["2021-06-18",20302,47,12922],["2021-06-19",20302,10,12932],["2021-06-20",20302,6,12938],["2021-06-21",20302,9,12947],["2021-06-22",20302,19,12966],["2021-06-23",20302,19,12985],["2021-06-24",20302,19,13004],["2021-06-25",20302,31,13035],["2021-06-26",20302,8,13043],["2021-06-27",20302,8,13051],["2021-06-28",20302,10,13061],["2021-06-29",20302,23,13084],["2021-06-30",20302,17,13101],["2021-07-01",20302,20,13121],["2021-07-02",20302,24,13145],["2021-07-03",20302,5,13150],["2021-07-04",20302,1,13151],["2021-07-05",20302,12,13163],["2021-07-06",20302,21,13184],["2021-07-07",20302,15,13199],["2021-07-08",20302,14,13213],["2021-07-09",20302,32,13245],["2021-07-10",20302,13,13258],["2021-07-11",20302,4,13262],["2021-07-12",20302,19,13281],["2021-07-13",20302,16,13297],["2021-07-14",20302,18,13315],["2021-07-15",20302,20,13335],["2021-07-16",20302,29,13364],["2021-07-17",20302,9,13373],["2021-07-18",20302,6,13379],["2021-07-19",20302,14,13393],["2021-07-20",20302,38,13431],["2021-07-21",20302,23,13454],["2021-07-22",20302,17,13471],["2021-07-23",20302,35,13506],["2021-07-24",20302,22,13528],["2021-07-25",20302,3,13531],["2021-07-26",20302,20,13551],["2021-07-27",20302,47,13598],["2021-07-28",20302,52,13650],["2021-07-29",20302,41,13691],["2021-07-30",20302,64,13755],["2021-07-31",20302,13,13768],["2021-08-01",20302,3,13771],["2021-08-02",20302,37,13808],["2021-08-03",20302,70,13878],["2021-08-04",20302,59,13937],["2021-08-05",20302,47,13984],["2021-08-06",20302,91,14075],["2021-08-07",20302,37,14112],["2021-08-08",20302,11,14123],["2021-08-09",20302,68,14191],["2021-08-10",20302,125,14316],["2021-08-11",20302,79,14395],["2021-08-12",20302,51,14446],["2021-08-13",20302,128,14574],["2021-08-14",20302,57,14631],["2021-08-15",20302,24,14655],["2021-08-16",20302,56,14711],["2021-08-17",20302,108,14819],["2021-08-18",20302,50,14869],["2021-08-19",20302,54,14923],["2021-08-20",20302,113,15036],["2021-08-21",20302,31,15067],["2021-08-22",20302,14,15081],["2021-08-23",20302,45,15126],["2021-08-24",20302,124,15250],["2021-08-25",20302,90,15340],["2021-08-26",20302,51,15391],["2021-08-27",20302,127,15518],["2021-08-28",20302,39,15557],["2021-08-29",20302,21,15578],["2021-08-30",20302,91,15669],["2021-08-31",20302,104,15773],["2021-09-01",20302,65,15838],["2021-09-02",20302,41,15879],["2021-09-03",20302,147,16026],["2021-09-04",20302,32,16058],["2021-09-05",20302,18,16076],["2021-09-06",20302,18,16094],["2021-09-07",20302,140,16234],["2021-09-08",20302,78,16312],["2021-09-09",20302,52,16364],["2021-09-10",20302,153,16517],["2021-09-11",20302,40,16557],["2021-09-12",20302,16,16573],["2021-09-13",20302,58,16631],["2021-09-14",20302,80,16711],["2021-09-15",20302,66,16777],["2021-09-16",20302,40,16817],["2021-09-17",20302,80,16897],["2021-09-18",20302,25,16922],["2021-09-19",20302,4,16926],["2021-09-20",20302,62,16988],["2021-09-21",20302,72,17060],["2021-09-22",20302,37,17097],["2021-09-23",20302,25,17122],["2021-09-24",20302,83,17205],["2021-09-25",20302,9,17214],["2021-09-26",20302,3,17217],["2021-09-27",20302,24,17241],["2021-09-28",20302,57,17298],["2021-09-29",20302,32,17330],["2021-09-30",20302,23,17353],["2021-10-01",20302,62,17415],["2021-10-02",20302,6,17421],["2021-10-03",20302,13,17434],["2021-10-04",20302,49,17483],["2021-10-05",20302,33,17516],["2021-10-06",20302,39,17555],["2021-10-07",20302,26,17581],["2021-10-08",20302,54,17635],["2021-10-09",20302,10,17645],["2021-10-10",20302,6,17651],["2021-10-11",20302,9,17660],["2021-10-12",20302,27,17687],["2021-10-13",20302,16,17703],["2021-10-14",20302,20,17723],["2021-10-15",20302,26,17749],["2021-10-16",20302,5,17754],["2021-10-17",20302,5,17759],["2021-10-18",20302,19,17778],["2021-10-19",20302,30,17808],["2021-10-20",20302,22,17830],["2021-10-21",20302,18,17848],["2021-10-22",20302,37,17885],["2021-10-23",20302,10,17895],["2021-10-24",20302,6,17901],["2021-10-25",20302,47,17948],["2021-10-26",20302,155,18103],["2021-10-27",20302,91,18194],["2021-10-28",20302,34,18228],["2021-10-29",20302,165,18393],["2021-10-30",20302,26,18419],["2021-10-31",20302,7,18426],["2021-11-01",20302,35,18461],["2021-11-02",20302,149,18610],["2021-11-03",20302,64,18674],["2021-11-04",20302,36,18710],["2021-11-05",20302,175,18885],["2021-11-06",20302,6,18891],["2021-11-07",20302,5,18896],["2021-11-08",20302,27,18923],["2021-11-09",20302,124,19047],["2021-11-10",20302,72,19119],["2021-11-11",20302,26,19145],["2021-11-12",20302,71,19216],["2021-11-13",20302,8,19224],["2021-11-14",20302,3,19227],["2021-11-15",20302,52,19279],["2021-11-16",20302,131,19410],["2021-11-17",20302,66,19476],["2021-11-18",20302,85,19561],["2021-11-19",20302,144,19705],["2021-11-20",20302,8,19713],["2021-11-21",20302,4,19717],["2021-11-22",20302,55,19772],["2021-11-23",20302,100,19872],["2021-11-24",20302,20,19892],["2021-11-26",20302,6,19898],["2021-11-27",20302,13,19911],["2021-11-28",20302,11,19922],["2021-11-29",20302,64,19986],["2021-11-30",20302,132,20118],["2021-12-01",20302,76,20194],["2021-12-02",20302,116,20310],["2021-12-03",20302,154,20464],["2021-12-04",20302,22,20486],["2021-12-05",20302,9,20495],["2021-12-06",20302,43,20538],["2021-12-07",20302,92,20630],["2021-12-08",20302,50,20680],["2021-12-09",20302,40,20720],["2021-12-10",20302,132,20852],["2021-12-11",20302,8,20860],["2021-12-12",20302,6,20866],["2021-12-13",20302,30,20896],["2021-12-14",20302,62,20958],["2021-12-15",20302,39,20997],["2021-12-16",20302,21,21018],["2021-12-17",20302,88,21106],["2021-12-18",20302,7,21113],["2021-12-19",20302,9,21122],["2021-12-20",20302,45,21167],["2021-12-21",20302,73,21240],["2021-12-22",20302,38,21278],["2021-12-23",20302,17,21295],["2021-12-24",20302,6,21301],["2021-12-26",20302,7,21308],["2021-12-27",20302,36,21344],["2021-12-28",20302,93,21437],["2021-12-29",20302,56,21493],["2021-12-30",20302,37,21530],["2021-12-31",20302,97,21627],["2022-01-01",20302,3,21630],["2022-01-02",20302,7,21637],["2022-01-03",20302,13,21650]]} \ No newline at end of file diff --git a/public/data/overall/vaccinations/by-county/Wayne.json b/public/data/overall/vaccinations/by-county/Wayne.json new file mode 100644 index 000000000..2aad824eb --- /dev/null +++ b/public/data/overall/vaccinations/by-county/Wayne.json @@ -0,0 +1 @@ +{"segment":{"county":"Wayne"},"headers":["report_date","population","vaccinations","total_vaccinations"],"rows":[["2020-12-15",29974,1,1],["2020-12-16",29974,1,2],["2020-12-17",29974,4,6],["2020-12-18",29974,7,13],["2020-12-19",29974,1,14],["2020-12-21",29974,2,16],["2020-12-22",29974,8,24],["2020-12-23",29974,65,89],["2020-12-24",29974,24,113],["2020-12-28",29974,39,152],["2020-12-29",29974,21,173],["2020-12-30",29974,22,195],["2020-12-31",29974,10,205],["2021-01-01",29974,5,210],["2021-01-03",29974,60,270],["2021-01-04",29974,41,311],["2021-01-05",29974,21,332],["2021-01-06",29974,37,369],["2021-01-07",29974,29,398],["2021-01-08",29974,32,430],["2021-01-09",29974,5,435],["2021-01-10",29974,3,438],["2021-01-11",29974,85,523],["2021-01-12",29974,32,555],["2021-01-13",29974,80,635],["2021-01-14",29974,73,708],["2021-01-15",29974,33,741],["2021-01-16",29974,60,801],["2021-01-17",29974,76,877],["2021-01-18",29974,121,998],["2021-01-19",29974,131,1129],["2021-01-20",29974,147,1276],["2021-01-21",29974,84,1360],["2021-01-22",29974,85,1445],["2021-01-23",29974,39,1484],["2021-01-24",29974,43,1527],["2021-01-25",29974,215,1742],["2021-01-26",29974,141,1883],["2021-01-27",29974,147,2030],["2021-01-28",29974,106,2136],["2021-01-29",29974,59,2195],["2021-01-30",29974,50,2245],["2021-01-31",29974,26,2271],["2021-02-01",29974,144,2415],["2021-02-02",29974,212,2627],["2021-02-03",29974,184,2811],["2021-02-04",29974,186,2997],["2021-02-05",29974,56,3053],["2021-02-06",29974,77,3130],["2021-02-07",29974,75,3205],["2021-02-08",29974,200,3405],["2021-02-09",29974,120,3525],["2021-02-10",29974,173,3698],["2021-02-11",29974,120,3818],["2021-02-12",29974,92,3910],["2021-02-13",29974,33,3943],["2021-02-14",29974,13,3956],["2021-02-15",29974,135,4091],["2021-02-16",29974,135,4226],["2021-02-17",29974,161,4387],["2021-02-18",29974,112,4499],["2021-02-19",29974,93,4592],["2021-02-20",29974,78,4670],["2021-02-21",29974,6,4676],["2021-02-22",29974,147,4823],["2021-02-23",29974,94,4917],["2021-02-24",29974,144,5061],["2021-02-25",29974,206,5267],["2021-02-26",29974,115,5382],["2021-02-27",29974,27,5409],["2021-02-28",29974,16,5425],["2021-03-01",29974,247,5672],["2021-03-02",29974,185,5857],["2021-03-03",29974,189,6046],["2021-03-04",29974,204,6250],["2021-03-05",29974,87,6337],["2021-03-06",29974,14,6351],["2021-03-07",29974,19,6370],["2021-03-08",29974,182,6552],["2021-03-09",29974,214,6766],["2021-03-10",29974,244,7010],["2021-03-11",29974,253,7263],["2021-03-12",29974,120,7383],["2021-03-13",29974,50,7433],["2021-03-14",29974,37,7470],["2021-03-15",29974,173,7643],["2021-03-16",29974,150,7793],["2021-03-17",29974,199,7992],["2021-03-18",29974,150,8142],["2021-03-19",29974,122,8264],["2021-03-20",29974,29,8293],["2021-03-21",29974,26,8319],["2021-03-22",29974,148,8467],["2021-03-23",29974,170,8637],["2021-03-24",29974,142,8779],["2021-03-25",29974,226,9005],["2021-03-26",29974,90,9095],["2021-03-27",29974,35,9130],["2021-03-28",29974,31,9161],["2021-03-29",29974,108,9269],["2021-03-30",29974,109,9378],["2021-03-31",29974,228,9606],["2021-04-01",29974,220,9826],["2021-04-02",29974,82,9908],["2021-04-03",29974,23,9931],["2021-04-04",29974,24,9955],["2021-04-05",29974,101,10056],["2021-04-06",29974,157,10213],["2021-04-07",29974,194,10407],["2021-04-08",29974,129,10536],["2021-04-09",29974,116,10652],["2021-04-10",29974,46,10698],["2021-04-11",29974,48,10746],["2021-04-12",29974,120,10866],["2021-04-13",29974,135,11001],["2021-04-14",29974,213,11214],["2021-04-15",29974,151,11365],["2021-04-16",29974,95,11460],["2021-04-17",29974,26,11486],["2021-04-18",29974,12,11498],["2021-04-19",29974,98,11596],["2021-04-20",29974,114,11710],["2021-04-21",29974,157,11867],["2021-04-22",29974,193,12060],["2021-04-23",29974,133,12193],["2021-04-24",29974,35,12228],["2021-04-25",29974,14,12242],["2021-04-26",29974,71,12313],["2021-04-27",29974,105,12418],["2021-04-28",29974,146,12564],["2021-04-29",29974,121,12685],["2021-04-30",29974,111,12796],["2021-05-01",29974,31,12827],["2021-05-02",29974,9,12836],["2021-05-03",29974,58,12894],["2021-05-04",29974,95,12989],["2021-05-05",29974,112,13101],["2021-05-06",29974,74,13175],["2021-05-07",29974,79,13254],["2021-05-08",29974,23,13277],["2021-05-09",29974,17,13294],["2021-05-10",29974,63,13357],["2021-05-11",29974,72,13429],["2021-05-12",29974,72,13501],["2021-05-13",29974,82,13583],["2021-05-14",29974,64,13647],["2021-05-15",29974,43,13690],["2021-05-16",29974,19,13709],["2021-05-17",29974,67,13776],["2021-05-18",29974,85,13861],["2021-05-19",29974,77,13938],["2021-05-20",29974,54,13992],["2021-05-21",29974,67,14059],["2021-05-22",29974,71,14130],["2021-05-23",29974,14,14144],["2021-05-24",29974,36,14180],["2021-05-25",29974,67,14247],["2021-05-26",29974,46,14293],["2021-05-27",29974,54,14347],["2021-05-28",29974,42,14389],["2021-05-29",29974,8,14397],["2021-05-30",29974,6,14403],["2021-05-31",29974,3,14406],["2021-06-01",29974,56,14462],["2021-06-02",29974,45,14507],["2021-06-03",29974,37,14544],["2021-06-04",29974,29,14573],["2021-06-05",29974,30,14603],["2021-06-06",29974,6,14609],["2021-06-07",29974,44,14653],["2021-06-08",29974,44,14697],["2021-06-09",29974,29,14726],["2021-06-10",29974,53,14779],["2021-06-11",29974,41,14820],["2021-06-12",29974,24,14844],["2021-06-13",29974,18,14862],["2021-06-14",29974,30,14892],["2021-06-15",29974,63,14955],["2021-06-16",29974,25,14980],["2021-06-17",29974,32,15012],["2021-06-18",29974,32,15044],["2021-06-19",29974,31,15075],["2021-06-20",29974,6,15081],["2021-06-21",29974,25,15106],["2021-06-22",29974,40,15146],["2021-06-23",29974,26,15172],["2021-06-24",29974,32,15204],["2021-06-25",29974,27,15231],["2021-06-26",29974,13,15244],["2021-06-27",29974,10,15254],["2021-06-28",29974,15,15269],["2021-06-29",29974,26,15295],["2021-06-30",29974,17,15312],["2021-07-01",29974,23,15335],["2021-07-02",29974,24,15359],["2021-07-03",29974,12,15371],["2021-07-04",29974,4,15375],["2021-07-05",29974,16,15391],["2021-07-06",29974,27,15418],["2021-07-07",29974,12,15430],["2021-07-08",29974,37,15467],["2021-07-09",29974,27,15494],["2021-07-10",29974,13,15507],["2021-07-11",29974,7,15514],["2021-07-12",29974,23,15537],["2021-07-13",29974,12,15549],["2021-07-14",29974,16,15565],["2021-07-15",29974,37,15602],["2021-07-16",29974,27,15629],["2021-07-17",29974,19,15648],["2021-07-18",29974,7,15655],["2021-07-19",29974,21,15676],["2021-07-20",29974,53,15729],["2021-07-21",29974,29,15758],["2021-07-22",29974,52,15810],["2021-07-23",29974,71,15881],["2021-07-24",29974,31,15912],["2021-07-25",29974,23,15935],["2021-07-26",29974,41,15976],["2021-07-27",29974,72,16048],["2021-07-28",29974,44,16092],["2021-07-29",29974,42,16134],["2021-07-30",29974,71,16205],["2021-07-31",29974,37,16242],["2021-08-01",29974,37,16279],["2021-08-02",29974,65,16344],["2021-08-03",29974,73,16417],["2021-08-04",29974,56,16473],["2021-08-05",29974,68,16541],["2021-08-06",29974,120,16661],["2021-08-07",29974,43,16704],["2021-08-08",29974,21,16725],["2021-08-09",29974,64,16789],["2021-08-10",29974,102,16891],["2021-08-11",29974,80,16971],["2021-08-12",29974,96,17067],["2021-08-13",29974,89,17156],["2021-08-14",29974,63,17219],["2021-08-15",29974,37,17256],["2021-08-16",29974,73,17329],["2021-08-17",29974,102,17431],["2021-08-18",29974,57,17488],["2021-08-19",29974,102,17590],["2021-08-20",29974,184,17774],["2021-08-21",29974,38,17812],["2021-08-22",29974,24,17836],["2021-08-23",29974,61,17897],["2021-08-24",29974,85,17982],["2021-08-25",29974,82,18064],["2021-08-26",29974,103,18167],["2021-08-27",29974,121,18288],["2021-08-28",29974,52,18340],["2021-08-29",29974,30,18370],["2021-08-30",29974,93,18463],["2021-08-31",29974,111,18574],["2021-09-01",29974,95,18669],["2021-09-02",29974,132,18801],["2021-09-03",29974,245,19046],["2021-09-04",29974,53,19099],["2021-09-05",29974,40,19139],["2021-09-06",29974,31,19170],["2021-09-07",29974,104,19274],["2021-09-08",29974,98,19372],["2021-09-09",29974,129,19501],["2021-09-10",29974,141,19642],["2021-09-11",29974,53,19695],["2021-09-12",29974,33,19728],["2021-09-13",29974,79,19807],["2021-09-14",29974,103,19910],["2021-09-15",29974,57,19967],["2021-09-16",29974,92,20059],["2021-09-17",29974,174,20233],["2021-09-18",29974,47,20280],["2021-09-19",29974,26,20306],["2021-09-20",29974,92,20398],["2021-09-21",29974,76,20474],["2021-09-22",29974,40,20514],["2021-09-23",29974,77,20591],["2021-09-24",29974,82,20673],["2021-09-25",29974,29,20702],["2021-09-26",29974,16,20718],["2021-09-27",29974,40,20758],["2021-09-28",29974,83,20841],["2021-09-29",29974,56,20897],["2021-09-30",29974,105,21002],["2021-10-01",29974,124,21126],["2021-10-02",29974,29,21155],["2021-10-03",29974,29,21184],["2021-10-04",29974,37,21221],["2021-10-05",29974,61,21282],["2021-10-06",29974,42,21324],["2021-10-07",29974,58,21382],["2021-10-08",29974,66,21448],["2021-10-09",29974,21,21469],["2021-10-10",29974,18,21487],["2021-10-11",29974,33,21520],["2021-10-12",29974,52,21572],["2021-10-13",29974,29,21601],["2021-10-14",29974,41,21642],["2021-10-15",29974,67,21709],["2021-10-16",29974,6,21715],["2021-10-17",29974,9,21724],["2021-10-18",29974,29,21753],["2021-10-19",29974,40,21793],["2021-10-20",29974,31,21824],["2021-10-21",29974,33,21857],["2021-10-22",29974,54,21911],["2021-10-23",29974,56,21967],["2021-10-24",29974,27,21994],["2021-10-25",29974,76,22070],["2021-10-26",29974,109,22179],["2021-10-27",29974,83,22262],["2021-10-28",29974,139,22401],["2021-10-29",29974,87,22488],["2021-10-30",29974,22,22510],["2021-10-31",29974,21,22531],["2021-11-01",29974,63,22594],["2021-11-02",29974,123,22717],["2021-11-03",29974,52,22769],["2021-11-04",29974,122,22891],["2021-11-05",29974,77,22968],["2021-11-06",29974,20,22988],["2021-11-07",29974,13,23001],["2021-11-08",29974,51,23052],["2021-11-09",29974,86,23138],["2021-11-10",29974,45,23183],["2021-11-11",29974,97,23280],["2021-11-12",29974,114,23394],["2021-11-13",29974,26,23420],["2021-11-14",29974,18,23438],["2021-11-15",29974,43,23481],["2021-11-16",29974,69,23550],["2021-11-17",29974,53,23603],["2021-11-18",29974,103,23706],["2021-11-19",29974,107,23813],["2021-11-20",29974,41,23854],["2021-11-21",29974,25,23879],["2021-11-22",29974,62,23941],["2021-11-23",29974,66,24007],["2021-11-24",29974,21,24028],["2021-11-26",29974,28,24056],["2021-11-27",29974,14,24070],["2021-11-28",29974,12,24082],["2021-11-29",29974,74,24156],["2021-11-30",29974,133,24289],["2021-12-01",29974,67,24356],["2021-12-02",29974,104,24460],["2021-12-03",29974,96,24556],["2021-12-04",29974,26,24582],["2021-12-05",29974,8,24590],["2021-12-06",29974,38,24628],["2021-12-07",29974,79,24707],["2021-12-08",29974,56,24763],["2021-12-09",29974,100,24863],["2021-12-10",29974,62,24925],["2021-12-11",29974,25,24950],["2021-12-12",29974,10,24960],["2021-12-13",29974,36,24996],["2021-12-14",29974,54,25050],["2021-12-15",29974,46,25096],["2021-12-16",29974,76,25172],["2021-12-17",29974,59,25231],["2021-12-18",29974,19,25250],["2021-12-19",29974,12,25262],["2021-12-20",29974,46,25308],["2021-12-21",29974,85,25393],["2021-12-22",29974,61,25454],["2021-12-23",29974,48,25502],["2021-12-24",29974,9,25511],["2021-12-26",29974,21,25532],["2021-12-27",29974,26,25558],["2021-12-28",29974,78,25636],["2021-12-29",29974,60,25696],["2021-12-30",29974,65,25761],["2021-12-31",29974,41,25802],["2022-01-01",29974,3,25805],["2022-01-02",29974,10,25815],["2022-01-03",29974,19,25834]]} \ No newline at end of file diff --git a/public/data/overall/vaccinations/by-county/Webster.json b/public/data/overall/vaccinations/by-county/Webster.json new file mode 100644 index 000000000..24e3077ce --- /dev/null +++ b/public/data/overall/vaccinations/by-county/Webster.json @@ -0,0 +1 @@ +{"segment":{"county":"Webster"},"headers":["report_date","population","vaccinations","total_vaccinations"],"rows":[["2020-12-23",2550,1,1],["2020-12-24",2550,2,3],["2020-12-26",2550,2,5],["2020-12-28",2550,4,9],["2020-12-29",2550,2,11],["2020-12-31",2550,2,13],["2021-01-01",2550,1,14],["2021-01-03",2550,2,16],["2021-01-04",2550,2,18],["2021-01-05",2550,6,24],["2021-01-06",2550,9,33],["2021-01-07",2550,1,34],["2021-01-08",2550,4,38],["2021-01-09",2550,1,39],["2021-01-11",2550,38,77],["2021-01-12",2550,5,82],["2021-01-13",2550,5,87],["2021-01-14",2550,73,160],["2021-01-15",2550,48,208],["2021-01-16",2550,1,209],["2021-01-17",2550,3,212],["2021-01-18",2550,9,221],["2021-01-19",2550,5,226],["2021-01-20",2550,4,230],["2021-01-21",2550,58,288],["2021-01-22",2550,14,302],["2021-01-24",2550,2,304],["2021-01-25",2550,14,318],["2021-01-26",2550,8,326],["2021-01-27",2550,13,339],["2021-01-28",2550,33,372],["2021-01-29",2550,7,379],["2021-01-31",2550,1,380],["2021-02-01",2550,9,389],["2021-02-02",2550,2,391],["2021-02-03",2550,9,400],["2021-02-04",2550,2,402],["2021-02-05",2550,9,411],["2021-02-07",2550,4,415],["2021-02-08",2550,39,454],["2021-02-09",2550,1,455],["2021-02-10",2550,6,461],["2021-02-11",2550,79,540],["2021-02-12",2550,42,582],["2021-02-13",2550,2,584],["2021-02-15",2550,29,613],["2021-02-16",2550,8,621],["2021-02-17",2550,2,623],["2021-02-18",2550,55,678],["2021-02-19",2550,8,686],["2021-02-22",2550,21,707],["2021-02-23",2550,3,710],["2021-02-24",2550,8,718],["2021-02-25",2550,34,752],["2021-02-26",2550,9,761],["2021-02-27",2550,1,762],["2021-02-28",2550,2,764],["2021-03-01",2550,12,776],["2021-03-02",2550,5,781],["2021-03-03",2550,4,785],["2021-03-04",2550,37,822],["2021-03-05",2550,4,826],["2021-03-07",2550,1,827],["2021-03-08",2550,22,849],["2021-03-09",2550,10,859],["2021-03-10",2550,4,863],["2021-03-11",2550,42,905],["2021-03-12",2550,15,920],["2021-03-14",2550,2,922],["2021-03-15",2550,43,965],["2021-03-16",2550,12,977],["2021-03-17",2550,7,984],["2021-03-18",2550,5,989],["2021-03-19",2550,20,1009],["2021-03-22",2550,11,1020],["2021-03-23",2550,9,1029],["2021-03-24",2550,4,1033],["2021-03-25",2550,41,1074],["2021-03-26",2550,20,1094],["2021-03-27",2550,1,1095],["2021-03-28",2550,1,1096],["2021-03-29",2550,16,1112],["2021-03-30",2550,9,1121],["2021-03-31",2550,5,1126],["2021-04-01",2550,50,1176],["2021-04-02",2550,7,1183],["2021-04-03",2550,1,1184],["2021-04-05",2550,28,1212],["2021-04-06",2550,12,1224],["2021-04-07",2550,5,1229],["2021-04-08",2550,55,1284],["2021-04-09",2550,19,1303],["2021-04-10",2550,1,1304],["2021-04-11",2550,3,1307],["2021-04-12",2550,36,1343],["2021-04-13",2550,15,1358],["2021-04-14",2550,7,1365],["2021-04-15",2550,8,1373],["2021-04-16",2550,25,1398],["2021-04-17",2550,1,1399],["2021-04-18",2550,1,1400],["2021-04-19",2550,10,1410],["2021-04-20",2550,17,1427],["2021-04-21",2550,2,1429],["2021-04-22",2550,42,1471],["2021-04-23",2550,26,1497],["2021-04-24",2550,1,1498],["2021-04-26",2550,13,1511],["2021-04-27",2550,8,1519],["2021-04-28",2550,13,1532],["2021-04-29",2550,18,1550],["2021-04-30",2550,11,1561],["2021-05-01",2550,2,1563],["2021-05-02",2550,1,1564],["2021-05-03",2550,5,1569],["2021-05-04",2550,6,1575],["2021-05-05",2550,6,1581],["2021-05-06",2550,21,1602],["2021-05-07",2550,11,1613],["2021-05-09",2550,1,1614],["2021-05-10",2550,21,1635],["2021-05-11",2550,5,1640],["2021-05-12",2550,4,1644],["2021-05-13",2550,13,1657],["2021-05-14",2550,16,1673],["2021-05-17",2550,9,1682],["2021-05-18",2550,3,1685],["2021-05-19",2550,2,1687],["2021-05-20",2550,9,1696],["2021-05-21",2550,12,1708],["2021-05-24",2550,1,1709],["2021-05-25",2550,8,1717],["2021-05-26",2550,4,1721],["2021-05-27",2550,15,1736],["2021-05-28",2550,4,1740],["2021-05-30",2550,3,1743],["2021-05-31",2550,1,1744],["2021-06-01",2550,1,1745],["2021-06-02",2550,1,1746],["2021-06-03",2550,6,1752],["2021-06-04",2550,7,1759],["2021-06-05",2550,2,1761],["2021-06-07",2550,5,1766],["2021-06-08",2550,1,1767],["2021-06-09",2550,2,1769],["2021-06-10",2550,9,1778],["2021-06-11",2550,10,1788],["2021-06-14",2550,5,1793],["2021-06-15",2550,6,1799],["2021-06-16",2550,2,1801],["2021-06-17",2550,7,1808],["2021-06-18",2550,8,1816],["2021-06-20",2550,1,1817],["2021-06-21",2550,2,1819],["2021-06-22",2550,2,1821],["2021-06-23",2550,1,1822],["2021-06-24",2550,5,1827],["2021-06-25",2550,2,1829],["2021-06-27",2550,1,1830],["2021-06-28",2550,3,1833],["2021-06-29",2550,3,1836],["2021-06-30",2550,3,1839],["2021-07-01",2550,4,1843],["2021-07-02",2550,3,1846],["2021-07-06",2550,3,1849],["2021-07-07",2550,5,1854],["2021-07-08",2550,7,1861],["2021-07-09",2550,4,1865],["2021-07-12",2550,1,1866],["2021-07-13",2550,2,1868],["2021-07-14",2550,2,1870],["2021-07-15",2550,6,1876],["2021-07-16",2550,2,1878],["2021-07-19",2550,3,1881],["2021-07-21",2550,3,1884],["2021-07-22",2550,8,1892],["2021-07-23",2550,7,1899],["2021-07-24",2550,1,1900],["2021-07-27",2550,4,1904],["2021-07-28",2550,7,1911],["2021-07-29",2550,3,1914],["2021-07-30",2550,9,1923],["2021-07-31",2550,2,1925],["2021-08-01",2550,1,1926],["2021-08-02",2550,3,1929],["2021-08-03",2550,4,1933],["2021-08-04",2550,18,1951],["2021-08-05",2550,20,1971],["2021-08-06",2550,3,1974],["2021-08-07",2550,4,1978],["2021-08-08",2550,1,1979],["2021-08-09",2550,8,1987],["2021-08-10",2550,4,1991],["2021-08-11",2550,14,2005],["2021-08-12",2550,7,2012],["2021-08-13",2550,16,2028],["2021-08-14",2550,2,2030],["2021-08-15",2550,2,2032],["2021-08-16",2550,2,2034],["2021-08-17",2550,5,2039],["2021-08-18",2550,7,2046],["2021-08-19",2550,13,2059],["2021-08-20",2550,14,2073],["2021-08-21",2550,6,2079],["2021-08-23",2550,3,2082],["2021-08-24",2550,6,2088],["2021-08-25",2550,7,2095],["2021-08-26",2550,15,2110],["2021-08-27",2550,6,2116],["2021-08-28",2550,2,2118],["2021-08-29",2550,5,2123],["2021-08-30",2550,4,2127],["2021-08-31",2550,10,2137],["2021-09-01",2550,16,2153],["2021-09-02",2550,7,2160],["2021-09-03",2550,8,2168],["2021-09-04",2550,1,2169],["2021-09-05",2550,2,2171],["2021-09-06",2550,1,2172],["2021-09-07",2550,10,2182],["2021-09-08",2550,7,2189],["2021-09-09",2550,10,2199],["2021-09-10",2550,9,2208],["2021-09-11",2550,4,2212],["2021-09-12",2550,3,2215],["2021-09-13",2550,4,2219],["2021-09-14",2550,4,2223],["2021-09-15",2550,11,2234],["2021-09-16",2550,7,2241],["2021-09-17",2550,6,2247],["2021-09-18",2550,2,2249],["2021-09-19",2550,1,2250],["2021-09-20",2550,2,2252],["2021-09-21",2550,11,2263],["2021-09-22",2550,8,2271],["2021-09-23",2550,7,2278],["2021-09-24",2550,6,2284],["2021-09-26",2550,2,2286],["2021-09-27",2550,4,2290],["2021-09-28",2550,3,2293],["2021-09-29",2550,12,2305],["2021-09-30",2550,5,2310],["2021-10-01",2550,9,2319],["2021-10-02",2550,2,2321],["2021-10-04",2550,6,2327],["2021-10-05",2550,6,2333],["2021-10-06",2550,3,2336],["2021-10-07",2550,4,2340],["2021-10-08",2550,4,2344],["2021-10-09",2550,2,2346],["2021-10-10",2550,1,2347],["2021-10-11",2550,2,2349],["2021-10-12",2550,4,2353],["2021-10-13",2550,6,2359],["2021-10-14",2550,2,2361],["2021-10-15",2550,2,2363],["2021-10-16",2550,1,2364],["2021-10-19",2550,3,2367],["2021-10-20",2550,2,2369],["2021-10-21",2550,2,2371],["2021-10-22",2550,2,2373],["2021-10-25",2550,7,2380],["2021-10-26",2550,7,2387],["2021-10-27",2550,9,2396],["2021-10-28",2550,54,2450],["2021-10-29",2550,14,2464],["2021-10-30",2550,2,2466],["2021-11-01",2550,14,2480],["2021-11-02",2550,3,2483],["2021-11-03",2550,30,2513],["2021-11-04",2550,29,2542],["2021-11-05",2550,7,2549],["2021-11-07",2550,3,2552],["2021-11-08",2550,5,2557],["2021-11-09",2550,4,2561],["2021-11-10",2550,15,2576],["2021-11-11",2550,2,2578],["2021-11-12",2550,9,2587],["2021-11-15",2550,4,2591],["2021-11-16",2550,2,2593],["2021-11-17",2550,25,2618],["2021-11-18",2550,4,2622],["2021-11-19",2550,15,2637],["2021-11-20",2550,1,2638],["2021-11-22",2550,7,2645],["2021-11-23",2550,4,2649],["2021-11-24",2550,7,2656],["2021-11-26",2550,4,2660],["2021-11-27",2550,2,2662],["2021-11-29",2550,3,2665],["2021-11-30",2550,6,2671],["2021-12-01",2550,12,2683],["2021-12-02",2550,17,2700],["2021-12-03",2550,16,2716],["2021-12-05",2550,2,2718],["2021-12-06",2550,8,2726],["2021-12-07",2550,1,2727],["2021-12-08",2550,11,2738],["2021-12-09",2550,7,2745],["2021-12-10",2550,9,2754],["2021-12-11",2550,1,2755],["2021-12-12",2550,2,2757],["2021-12-13",2550,5,2762],["2021-12-14",2550,3,2765],["2021-12-15",2550,14,2779],["2021-12-16",2550,12,2791],["2021-12-17",2550,7,2798],["2021-12-19",2550,1,2799],["2021-12-20",2550,7,2806],["2021-12-21",2550,6,2812],["2021-12-22",2550,17,2829],["2021-12-23",2550,1,2830],["2021-12-24",2550,1,2831],["2021-12-26",2550,2,2833],["2021-12-27",2550,10,2843],["2021-12-28",2550,4,2847],["2021-12-29",2550,3,2850],["2021-12-30",2550,23,2873],["2021-12-31",2550,5,2878],["2022-01-02",2550,1,2879],["2022-01-03",2550,8,2887]]} \ No newline at end of file diff --git a/public/data/overall/vaccinations/by-county/Wheeler.json b/public/data/overall/vaccinations/by-county/Wheeler.json new file mode 100644 index 000000000..c1f71ee3e --- /dev/null +++ b/public/data/overall/vaccinations/by-county/Wheeler.json @@ -0,0 +1 @@ +{"segment":{"county":"Wheeler"},"headers":["report_date","population","vaccinations","total_vaccinations"],"rows":[["2020-12-17",7909,1,1],["2020-12-18",7909,3,4],["2020-12-19",7909,2,6],["2020-12-21",7909,2,8],["2020-12-22",7909,1,9],["2020-12-23",7909,2,11],["2020-12-24",7909,1,12],["2020-12-28",7909,6,18],["2020-12-29",7909,4,22],["2020-12-30",7909,18,40],["2020-12-31",7909,3,43],["2021-01-01",7909,1,44],["2021-01-03",7909,1,45],["2021-01-04",7909,6,51],["2021-01-05",7909,13,64],["2021-01-06",7909,8,72],["2021-01-07",7909,22,94],["2021-01-08",7909,2,96],["2021-01-09",7909,3,99],["2021-01-11",7909,94,193],["2021-01-12",7909,29,222],["2021-01-13",7909,51,273],["2021-01-14",7909,9,282],["2021-01-15",7909,41,323],["2021-01-16",7909,3,326],["2021-01-17",7909,1,327],["2021-01-18",7909,136,463],["2021-01-19",7909,19,482],["2021-01-20",7909,14,496],["2021-01-21",7909,6,502],["2021-01-22",7909,6,508],["2021-01-23",7909,2,510],["2021-01-24",7909,1,511],["2021-01-25",7909,72,583],["2021-01-26",7909,29,612],["2021-01-27",7909,9,621],["2021-01-28",7909,10,631],["2021-01-29",7909,2,633],["2021-01-30",7909,1,634],["2021-02-01",7909,42,676],["2021-02-02",7909,19,695],["2021-02-03",7909,9,704],["2021-02-04",7909,17,721],["2021-02-05",7909,38,759],["2021-02-06",7909,5,764],["2021-02-08",7909,126,890],["2021-02-09",7909,32,922],["2021-02-10",7909,16,938],["2021-02-11",7909,6,944],["2021-02-12",7909,8,952],["2021-02-15",7909,192,1144],["2021-02-16",7909,26,1170],["2021-02-17",7909,18,1188],["2021-02-18",7909,5,1193],["2021-02-19",7909,3,1196],["2021-02-20",7909,1,1197],["2021-02-22",7909,97,1294],["2021-02-23",7909,29,1323],["2021-02-24",7909,11,1334],["2021-02-25",7909,9,1343],["2021-02-27",7909,5,1348],["2021-02-28",7909,1,1349],["2021-03-01",7909,63,1412],["2021-03-02",7909,11,1423],["2021-03-03",7909,14,1437],["2021-03-04",7909,8,1445],["2021-03-05",7909,7,1452],["2021-03-08",7909,39,1491],["2021-03-09",7909,23,1514],["2021-03-10",7909,22,1536],["2021-03-11",7909,13,1549],["2021-03-12",7909,34,1583],["2021-03-13",7909,2,1585],["2021-03-15",7909,37,1622],["2021-03-16",7909,19,1641],["2021-03-17",7909,15,1656],["2021-03-18",7909,5,1661],["2021-03-19",7909,2,1663],["2021-03-20",7909,2,1665],["2021-03-21",7909,1,1666],["2021-03-22",7909,72,1738],["2021-03-23",7909,20,1758],["2021-03-24",7909,6,1764],["2021-03-25",7909,14,1778],["2021-03-26",7909,5,1783],["2021-03-27",7909,5,1788],["2021-03-28",7909,1,1789],["2021-03-29",7909,69,1858],["2021-03-30",7909,26,1884],["2021-03-31",7909,48,1932],["2021-04-01",7909,8,1940],["2021-04-02",7909,8,1948],["2021-04-03",7909,5,1953],["2021-04-05",7909,36,1989],["2021-04-06",7909,20,2009],["2021-04-07",7909,19,2028],["2021-04-08",7909,19,2047],["2021-04-09",7909,15,2062],["2021-04-10",7909,2,2064],["2021-04-12",7909,36,2100],["2021-04-13",7909,21,2121],["2021-04-14",7909,11,2132],["2021-04-15",7909,16,2148],["2021-04-16",7909,5,2153],["2021-04-17",7909,3,2156],["2021-04-18",7909,1,2157],["2021-04-19",7909,51,2208],["2021-04-20",7909,23,2231],["2021-04-21",7909,17,2248],["2021-04-22",7909,22,2270],["2021-04-23",7909,6,2276],["2021-04-24",7909,6,2282],["2021-04-25",7909,1,2283],["2021-04-26",7909,37,2320],["2021-04-27",7909,23,2343],["2021-04-28",7909,13,2356],["2021-04-29",7909,7,2363],["2021-04-30",7909,11,2374],["2021-05-01",7909,3,2377],["2021-05-02",7909,1,2378],["2021-05-03",7909,23,2401],["2021-05-04",7909,6,2407],["2021-05-05",7909,16,2423],["2021-05-06",7909,7,2430],["2021-05-07",7909,25,2455],["2021-05-08",7909,1,2456],["2021-05-10",7909,14,2470],["2021-05-11",7909,13,2483],["2021-05-12",7909,8,2491],["2021-05-13",7909,7,2498],["2021-05-14",7909,3,2501],["2021-05-15",7909,2,2503],["2021-05-16",7909,3,2506],["2021-05-17",7909,27,2533],["2021-05-18",7909,10,2543],["2021-05-19",7909,17,2560],["2021-05-20",7909,15,2575],["2021-05-21",7909,5,2580],["2021-05-22",7909,4,2584],["2021-05-23",7909,1,2585],["2021-05-24",7909,16,2601],["2021-05-25",7909,9,2610],["2021-05-26",7909,7,2617],["2021-05-27",7909,5,2622],["2021-05-28",7909,6,2628],["2021-05-31",7909,1,2629],["2021-06-01",7909,11,2640],["2021-06-02",7909,9,2649],["2021-06-03",7909,4,2653],["2021-06-04",7909,4,2657],["2021-06-05",7909,2,2659],["2021-06-06",7909,2,2661],["2021-06-07",7909,4,2665],["2021-06-08",7909,5,2670],["2021-06-09",7909,2,2672],["2021-06-10",7909,5,2677],["2021-06-11",7909,6,2683],["2021-06-12",7909,4,2687],["2021-06-13",7909,1,2688],["2021-06-14",7909,10,2698],["2021-06-15",7909,9,2707],["2021-06-16",7909,5,2712],["2021-06-17",7909,7,2719],["2021-06-18",7909,1,2720],["2021-06-19",7909,7,2727],["2021-06-21",7909,8,2735],["2021-06-22",7909,5,2740],["2021-06-23",7909,7,2747],["2021-06-24",7909,2,2749],["2021-06-25",7909,2,2751],["2021-06-26",7909,1,2752],["2021-06-27",7909,5,2757],["2021-06-28",7909,1,2758],["2021-06-29",7909,3,2761],["2021-06-30",7909,2,2763],["2021-07-01",7909,7,2770],["2021-07-02",7909,2,2772],["2021-07-03",7909,4,2776],["2021-07-05",7909,1,2777],["2021-07-06",7909,5,2782],["2021-07-07",7909,3,2785],["2021-07-08",7909,6,2791],["2021-07-09",7909,6,2797],["2021-07-10",7909,4,2801],["2021-07-11",7909,2,2803],["2021-07-12",7909,5,2808],["2021-07-13",7909,13,2821],["2021-07-14",7909,1,2822],["2021-07-15",7909,3,2825],["2021-07-16",7909,2,2827],["2021-07-17",7909,1,2828],["2021-07-18",7909,1,2829],["2021-07-19",7909,7,2836],["2021-07-20",7909,11,2847],["2021-07-21",7909,8,2855],["2021-07-22",7909,12,2867],["2021-07-23",7909,6,2873],["2021-07-24",7909,3,2876],["2021-07-26",7909,9,2885],["2021-07-27",7909,7,2892],["2021-07-28",7909,15,2907],["2021-07-29",7909,21,2928],["2021-07-30",7909,10,2938],["2021-07-31",7909,9,2947],["2021-08-01",7909,2,2949],["2021-08-02",7909,18,2967],["2021-08-03",7909,15,2982],["2021-08-04",7909,15,2997],["2021-08-05",7909,17,3014],["2021-08-06",7909,10,3024],["2021-08-07",7909,3,3027],["2021-08-08",7909,9,3036],["2021-08-09",7909,20,3056],["2021-08-10",7909,14,3070],["2021-08-11",7909,10,3080],["2021-08-12",7909,13,3093],["2021-08-13",7909,12,3105],["2021-08-14",7909,6,3111],["2021-08-15",7909,6,3117],["2021-08-16",7909,16,3133],["2021-08-17",7909,24,3157],["2021-08-18",7909,28,3185],["2021-08-19",7909,29,3214],["2021-08-20",7909,17,3231],["2021-08-21",7909,7,3238],["2021-08-22",7909,2,3240],["2021-08-23",7909,15,3255],["2021-08-24",7909,29,3284],["2021-08-25",7909,41,3325],["2021-08-26",7909,25,3350],["2021-08-27",7909,16,3366],["2021-08-28",7909,9,3375],["2021-08-29",7909,6,3381],["2021-08-30",7909,26,3407],["2021-08-31",7909,23,3430],["2021-09-01",7909,47,3477],["2021-09-02",7909,29,3506],["2021-09-03",7909,12,3518],["2021-09-04",7909,5,3523],["2021-09-05",7909,4,3527],["2021-09-06",7909,1,3528],["2021-09-07",7909,22,3550],["2021-09-08",7909,32,3582],["2021-09-09",7909,9,3591],["2021-09-10",7909,19,3610],["2021-09-11",7909,11,3621],["2021-09-12",7909,2,3623],["2021-09-13",7909,17,3640],["2021-09-14",7909,20,3660],["2021-09-15",7909,30,3690],["2021-09-16",7909,8,3698],["2021-09-17",7909,13,3711],["2021-09-18",7909,4,3715],["2021-09-20",7909,16,3731],["2021-09-21",7909,10,3741],["2021-09-22",7909,48,3789],["2021-09-23",7909,9,3798],["2021-09-24",7909,10,3808],["2021-09-25",7909,3,3811],["2021-09-27",7909,14,3825],["2021-09-28",7909,7,3832],["2021-09-29",7909,25,3857],["2021-09-30",7909,8,3865],["2021-10-01",7909,6,3871],["2021-10-02",7909,3,3874],["2021-10-03",7909,1,3875],["2021-10-04",7909,10,3885],["2021-10-05",7909,4,3889],["2021-10-06",7909,13,3902],["2021-10-07",7909,8,3910],["2021-10-08",7909,5,3915],["2021-10-09",7909,4,3919],["2021-10-10",7909,1,3920],["2021-10-11",7909,3,3923],["2021-10-12",7909,12,3935],["2021-10-13",7909,7,3942],["2021-10-14",7909,1,3943],["2021-10-15",7909,5,3948],["2021-10-16",7909,2,3950],["2021-10-18",7909,16,3966],["2021-10-19",7909,1,3967],["2021-10-20",7909,10,3977],["2021-10-22",7909,5,3982],["2021-10-23",7909,3,3985],["2021-10-24",7909,1,3986],["2021-10-25",7909,6,3992],["2021-10-26",7909,7,3999],["2021-10-27",7909,54,4053],["2021-10-28",7909,21,4074],["2021-10-29",7909,10,4084],["2021-10-31",7909,1,4085],["2021-11-01",7909,41,4126],["2021-11-02",7909,19,4145],["2021-11-03",7909,53,4198],["2021-11-04",7909,14,4212],["2021-11-05",7909,9,4221],["2021-11-06",7909,1,4222],["2021-11-08",7909,36,4258],["2021-11-09",7909,26,4284],["2021-11-10",7909,32,4316],["2021-11-11",7909,8,4324],["2021-11-12",7909,6,4330],["2021-11-13",7909,1,4331],["2021-11-15",7909,25,4356],["2021-11-16",7909,28,4384],["2021-11-17",7909,34,4418],["2021-11-18",7909,4,4422],["2021-11-19",7909,8,4430],["2021-11-20",7909,2,4432],["2021-11-22",7909,14,4446],["2021-11-23",7909,7,4453],["2021-11-24",7909,13,4466],["2021-11-26",7909,3,4469],["2021-11-27",7909,4,4473],["2021-11-28",7909,3,4476],["2021-11-29",7909,18,4494],["2021-11-30",7909,25,4519],["2021-12-01",7909,33,4552],["2021-12-02",7909,18,4570],["2021-12-03",7909,11,4581],["2021-12-04",7909,4,4585],["2021-12-06",7909,18,4603],["2021-12-07",7909,2,4605],["2021-12-08",7909,22,4627],["2021-12-09",7909,6,4633],["2021-12-10",7909,10,4643],["2021-12-11",7909,2,4645],["2021-12-13",7909,10,4655],["2021-12-14",7909,1,4656],["2021-12-15",7909,18,4674],["2021-12-16",7909,10,4684],["2021-12-17",7909,7,4691],["2021-12-18",7909,1,4692],["2021-12-19",7909,3,4695],["2021-12-20",7909,19,4714],["2021-12-21",7909,10,4724],["2021-12-22",7909,18,4742],["2021-12-23",7909,2,4744],["2021-12-24",7909,2,4746],["2021-12-26",7909,2,4748],["2021-12-27",7909,14,4762],["2021-12-28",7909,2,4764],["2021-12-29",7909,16,4780],["2021-12-30",7909,11,4791],["2021-12-31",7909,4,4795],["2022-01-01",7909,1,4796],["2022-01-03",7909,1,4797]]} \ No newline at end of file diff --git a/public/data/overall/vaccinations/by-county/White.json b/public/data/overall/vaccinations/by-county/White.json new file mode 100644 index 000000000..9a0f980c0 --- /dev/null +++ b/public/data/overall/vaccinations/by-county/White.json @@ -0,0 +1 @@ +{"segment":{"county":"White"},"headers":["report_date","population","vaccinations","total_vaccinations"],"rows":[["2020-12-16",31758,1,1],["2020-12-17",31758,1,2],["2020-12-18",31758,9,11],["2020-12-19",31758,10,21],["2020-12-20",31758,3,24],["2020-12-21",31758,16,40],["2020-12-22",31758,15,55],["2020-12-23",31758,26,81],["2020-12-24",31758,7,88],["2020-12-26",31758,1,89],["2020-12-27",31758,3,92],["2020-12-28",31758,25,117],["2020-12-29",31758,42,159],["2020-12-30",31758,36,195],["2020-12-31",31758,10,205],["2021-01-01",31758,8,213],["2021-01-02",31758,4,217],["2021-01-03",31758,3,220],["2021-01-04",31758,48,268],["2021-01-05",31758,30,298],["2021-01-06",31758,25,323],["2021-01-07",31758,25,348],["2021-01-08",31758,61,409],["2021-01-09",31758,9,418],["2021-01-10",31758,7,425],["2021-01-11",31758,97,522],["2021-01-12",31758,87,609],["2021-01-13",31758,255,864],["2021-01-14",31758,158,1022],["2021-01-15",31758,94,1116],["2021-01-16",31758,35,1151],["2021-01-17",31758,26,1177],["2021-01-18",31758,172,1349],["2021-01-19",31758,161,1510],["2021-01-20",31758,215,1725],["2021-01-21",31758,187,1912],["2021-01-22",31758,111,2023],["2021-01-23",31758,17,2040],["2021-01-24",31758,22,2062],["2021-01-25",31758,133,2195],["2021-01-26",31758,127,2322],["2021-01-27",31758,216,2538],["2021-01-28",31758,91,2629],["2021-01-29",31758,77,2706],["2021-01-30",31758,26,2732],["2021-01-31",31758,10,2742],["2021-02-01",31758,115,2857],["2021-02-02",31758,89,2946],["2021-02-03",31758,131,3077],["2021-02-04",31758,111,3188],["2021-02-05",31758,88,3276],["2021-02-06",31758,13,3289],["2021-02-07",31758,3,3292],["2021-02-08",31758,132,3424],["2021-02-09",31758,152,3576],["2021-02-10",31758,185,3761],["2021-02-11",31758,164,3925],["2021-02-12",31758,132,4057],["2021-02-13",31758,46,4103],["2021-02-14",31758,24,4127],["2021-02-15",31758,188,4315],["2021-02-16",31758,175,4490],["2021-02-17",31758,179,4669],["2021-02-18",31758,142,4811],["2021-02-19",31758,86,4897],["2021-02-20",31758,22,4919],["2021-02-21",31758,20,4939],["2021-02-22",31758,100,5039],["2021-02-23",31758,601,5640],["2021-02-24",31758,297,5937],["2021-02-25",31758,207,6144],["2021-02-26",31758,222,6366],["2021-02-27",31758,65,6431],["2021-02-28",31758,22,6453],["2021-03-01",31758,251,6704],["2021-03-02",31758,215,6919],["2021-03-03",31758,247,7166],["2021-03-04",31758,223,7389],["2021-03-05",31758,103,7492],["2021-03-06",31758,27,7519],["2021-03-07",31758,20,7539],["2021-03-08",31758,151,7690],["2021-03-09",31758,159,7849],["2021-03-10",31758,182,8031],["2021-03-11",31758,335,8366],["2021-03-12",31758,127,8493],["2021-03-13",31758,30,8523],["2021-03-14",31758,15,8538],["2021-03-15",31758,208,8746],["2021-03-16",31758,583,9329],["2021-03-17",31758,201,9530],["2021-03-18",31758,167,9697],["2021-03-19",31758,175,9872],["2021-03-20",31758,26,9898],["2021-03-21",31758,29,9927],["2021-03-22",31758,125,10052],["2021-03-23",31758,148,10200],["2021-03-24",31758,288,10488],["2021-03-25",31758,190,10678],["2021-03-26",31758,171,10849],["2021-03-27",31758,120,10969],["2021-03-28",31758,34,11003],["2021-03-29",31758,192,11195],["2021-03-30",31758,217,11412],["2021-03-31",31758,226,11638],["2021-04-01",31758,184,11822],["2021-04-02",31758,147,11969],["2021-04-03",31758,24,11993],["2021-04-04",31758,24,12017],["2021-04-05",31758,168,12185],["2021-04-06",31758,182,12367],["2021-04-07",31758,189,12556],["2021-04-08",31758,189,12745],["2021-04-09",31758,159,12904],["2021-04-10",31758,31,12935],["2021-04-11",31758,29,12964],["2021-04-12",31758,193,13157],["2021-04-13",31758,117,13274],["2021-04-14",31758,154,13428],["2021-04-15",31758,179,13607],["2021-04-16",31758,168,13775],["2021-04-17",31758,114,13889],["2021-04-18",31758,11,13900],["2021-04-19",31758,159,14059],["2021-04-20",31758,133,14192],["2021-04-21",31758,222,14414],["2021-04-22",31758,159,14573],["2021-04-23",31758,153,14726],["2021-04-24",31758,47,14773],["2021-04-25",31758,11,14784],["2021-04-26",31758,79,14863],["2021-04-27",31758,153,15016],["2021-04-28",31758,110,15126],["2021-04-29",31758,124,15250],["2021-04-30",31758,115,15365],["2021-05-01",31758,38,15403],["2021-05-02",31758,17,15420],["2021-05-03",31758,77,15497],["2021-05-04",31758,95,15592],["2021-05-05",31758,90,15682],["2021-05-06",31758,79,15761],["2021-05-07",31758,113,15874],["2021-05-08",31758,24,15898],["2021-05-09",31758,11,15909],["2021-05-10",31758,61,15970],["2021-05-11",31758,71,16041],["2021-05-12",31758,68,16109],["2021-05-13",31758,56,16165],["2021-05-14",31758,86,16251],["2021-05-15",31758,41,16292],["2021-05-16",31758,20,16312],["2021-05-17",31758,66,16378],["2021-05-18",31758,85,16463],["2021-05-19",31758,54,16517],["2021-05-20",31758,58,16575],["2021-05-21",31758,50,16625],["2021-05-22",31758,45,16670],["2021-05-23",31758,17,16687],["2021-05-24",31758,32,16719],["2021-05-25",31758,60,16779],["2021-05-26",31758,38,16817],["2021-05-27",31758,44,16861],["2021-05-28",31758,59,16920],["2021-05-29",31758,31,16951],["2021-05-30",31758,10,16961],["2021-05-31",31758,5,16966],["2021-06-01",31758,36,17002],["2021-06-02",31758,35,17037],["2021-06-03",31758,41,17078],["2021-06-04",31758,45,17123],["2021-06-05",31758,24,17147],["2021-06-06",31758,13,17160],["2021-06-07",31758,29,17189],["2021-06-08",31758,57,17246],["2021-06-09",31758,42,17288],["2021-06-10",31758,42,17330],["2021-06-11",31758,52,17382],["2021-06-12",31758,28,17410],["2021-06-13",31758,7,17417],["2021-06-14",31758,29,17446],["2021-06-15",31758,47,17493],["2021-06-16",31758,40,17533],["2021-06-17",31758,31,17564],["2021-06-18",31758,29,17593],["2021-06-19",31758,30,17623],["2021-06-20",31758,9,17632],["2021-06-21",31758,24,17656],["2021-06-22",31758,39,17695],["2021-06-23",31758,30,17725],["2021-06-24",31758,29,17754],["2021-06-25",31758,40,17794],["2021-06-26",31758,8,17802],["2021-06-27",31758,9,17811],["2021-06-28",31758,14,17825],["2021-06-29",31758,28,17853],["2021-06-30",31758,25,17878],["2021-07-01",31758,19,17897],["2021-07-02",31758,22,17919],["2021-07-03",31758,6,17925],["2021-07-05",31758,15,17940],["2021-07-06",31758,18,17958],["2021-07-07",31758,20,17978],["2021-07-08",31758,15,17993],["2021-07-09",31758,28,18021],["2021-07-10",31758,21,18042],["2021-07-11",31758,7,18049],["2021-07-12",31758,16,18065],["2021-07-13",31758,23,18088],["2021-07-14",31758,16,18104],["2021-07-15",31758,14,18118],["2021-07-16",31758,30,18148],["2021-07-17",31758,9,18157],["2021-07-18",31758,12,18169],["2021-07-19",31758,26,18195],["2021-07-20",31758,21,18216],["2021-07-21",31758,27,18243],["2021-07-22",31758,25,18268],["2021-07-23",31758,42,18310],["2021-07-24",31758,15,18325],["2021-07-25",31758,17,18342],["2021-07-26",31758,22,18364],["2021-07-27",31758,35,18399],["2021-07-28",31758,31,18430],["2021-07-29",31758,37,18467],["2021-07-30",31758,42,18509],["2021-07-31",31758,23,18532],["2021-08-01",31758,15,18547],["2021-08-02",31758,42,18589],["2021-08-03",31758,42,18631],["2021-08-04",31758,63,18694],["2021-08-05",31758,68,18762],["2021-08-06",31758,71,18833],["2021-08-07",31758,28,18861],["2021-08-08",31758,23,18884],["2021-08-09",31758,46,18930],["2021-08-10",31758,50,18980],["2021-08-11",31758,49,19029],["2021-08-12",31758,48,19077],["2021-08-13",31758,72,19149],["2021-08-14",31758,43,19192],["2021-08-15",31758,28,19220],["2021-08-16",31758,47,19267],["2021-08-17",31758,60,19327],["2021-08-18",31758,59,19386],["2021-08-19",31758,66,19452],["2021-08-20",31758,84,19536],["2021-08-21",31758,27,19563],["2021-08-22",31758,27,19590],["2021-08-23",31758,73,19663],["2021-08-24",31758,41,19704],["2021-08-25",31758,93,19797],["2021-08-26",31758,101,19898],["2021-08-27",31758,111,20009],["2021-08-28",31758,62,20071],["2021-08-29",31758,28,20099],["2021-08-30",31758,99,20198],["2021-08-31",31758,83,20281],["2021-09-01",31758,97,20378],["2021-09-02",31758,80,20458],["2021-09-03",31758,106,20564],["2021-09-04",31758,31,20595],["2021-09-05",31758,32,20627],["2021-09-06",31758,15,20642],["2021-09-07",31758,68,20710],["2021-09-08",31758,83,20793],["2021-09-09",31758,86,20879],["2021-09-10",31758,102,20981],["2021-09-11",31758,42,21023],["2021-09-12",31758,27,21050],["2021-09-13",31758,58,21108],["2021-09-14",31758,58,21166],["2021-09-15",31758,52,21218],["2021-09-16",31758,47,21265],["2021-09-17",31758,69,21334],["2021-09-18",31758,38,21372],["2021-09-19",31758,19,21391],["2021-09-20",31758,71,21462],["2021-09-21",31758,52,21514],["2021-09-22",31758,55,21569],["2021-09-23",31758,51,21620],["2021-09-24",31758,67,21687],["2021-09-25",31758,37,21724],["2021-09-26",31758,22,21746],["2021-09-27",31758,67,21813],["2021-09-28",31758,68,21881],["2021-09-29",31758,58,21939],["2021-09-30",31758,80,22019],["2021-10-01",31758,79,22098],["2021-10-02",31758,27,22125],["2021-10-03",31758,17,22142],["2021-10-04",31758,53,22195],["2021-10-05",31758,63,22258],["2021-10-06",31758,57,22315],["2021-10-07",31758,50,22365],["2021-10-08",31758,46,22411],["2021-10-09",31758,20,22431],["2021-10-10",31758,12,22443],["2021-10-11",31758,34,22477],["2021-10-12",31758,36,22513],["2021-10-13",31758,37,22550],["2021-10-14",31758,24,22574],["2021-10-15",31758,42,22616],["2021-10-16",31758,7,22623],["2021-10-17",31758,8,22631],["2021-10-18",31758,28,22659],["2021-10-19",31758,31,22690],["2021-10-20",31758,42,22732],["2021-10-21",31758,47,22779],["2021-10-22",31758,90,22869],["2021-10-23",31758,64,22933],["2021-10-24",31758,48,22981],["2021-10-25",31758,122,23103],["2021-10-26",31758,158,23261],["2021-10-27",31758,151,23412],["2021-10-28",31758,126,23538],["2021-10-29",31758,126,23664],["2021-10-30",31758,30,23694],["2021-10-31",31758,24,23718],["2021-11-01",31758,120,23838],["2021-11-02",31758,104,23942],["2021-11-03",31758,95,24037],["2021-11-04",31758,100,24137],["2021-11-05",31758,107,24244],["2021-11-06",31758,28,24272],["2021-11-07",31758,21,24293],["2021-11-08",31758,82,24375],["2021-11-09",31758,75,24450],["2021-11-10",31758,98,24548],["2021-11-11",31758,66,24614],["2021-11-12",31758,57,24671],["2021-11-13",31758,24,24695],["2021-11-14",31758,14,24709],["2021-11-15",31758,98,24807],["2021-11-16",31758,72,24879],["2021-11-17",31758,78,24957],["2021-11-18",31758,105,25062],["2021-11-19",31758,84,25146],["2021-11-20",31758,39,25185],["2021-11-21",31758,24,25209],["2021-11-22",31758,71,25280],["2021-11-23",31758,74,25354],["2021-11-24",31758,54,25408],["2021-11-25",31758,1,25409],["2021-11-26",31758,36,25445],["2021-11-27",31758,28,25473],["2021-11-28",31758,20,25493],["2021-11-29",31758,113,25606],["2021-11-30",31758,107,25713],["2021-12-01",31758,105,25818],["2021-12-02",31758,99,25917],["2021-12-03",31758,120,26037],["2021-12-04",31758,27,26064],["2021-12-05",31758,18,26082],["2021-12-06",31758,67,26149],["2021-12-07",31758,50,26199],["2021-12-08",31758,90,26289],["2021-12-09",31758,55,26344],["2021-12-10",31758,85,26429],["2021-12-11",31758,24,26453],["2021-12-12",31758,20,26473],["2021-12-13",31758,50,26523],["2021-12-14",31758,66,26589],["2021-12-15",31758,74,26663],["2021-12-16",31758,57,26720],["2021-12-17",31758,73,26793],["2021-12-18",31758,30,26823],["2021-12-19",31758,10,26833],["2021-12-20",31758,62,26895],["2021-12-21",31758,84,26979],["2021-12-22",31758,69,27048],["2021-12-23",31758,41,27089],["2021-12-24",31758,6,27095],["2021-12-26",31758,20,27115],["2021-12-27",31758,77,27192],["2021-12-28",31758,75,27267],["2021-12-29",31758,83,27350],["2021-12-30",31758,79,27429],["2021-12-31",31758,27,27456],["2022-01-01",31758,18,27474],["2022-01-02",31758,21,27495],["2022-01-03",31758,21,27516]]} \ No newline at end of file diff --git a/public/data/overall/vaccinations/by-county/Whitfield.json b/public/data/overall/vaccinations/by-county/Whitfield.json new file mode 100644 index 000000000..a61ada9f0 --- /dev/null +++ b/public/data/overall/vaccinations/by-county/Whitfield.json @@ -0,0 +1 @@ +{"segment":{"county":"Whitfield"},"headers":["report_date","population","vaccinations","total_vaccinations"],"rows":[["2020-12-12",104672,1,1],["2020-12-14",104672,1,2],["2020-12-16",104672,1,3],["2020-12-17",104672,19,22],["2020-12-18",104672,111,133],["2020-12-20",104672,26,159],["2020-12-21",104672,162,321],["2020-12-22",104672,234,555],["2020-12-23",104672,87,642],["2020-12-24",104672,21,663],["2020-12-25",104672,1,664],["2020-12-26",104672,1,665],["2020-12-27",104672,3,668],["2020-12-28",104672,146,814],["2020-12-29",104672,84,898],["2020-12-30",104672,83,981],["2020-12-31",104672,60,1041],["2021-01-01",104672,26,1067],["2021-01-02",104672,1,1068],["2021-01-03",104672,19,1087],["2021-01-04",104672,138,1225],["2021-01-05",104672,440,1665],["2021-01-06",104672,506,2171],["2021-01-07",104672,609,2780],["2021-01-08",104672,325,3105],["2021-01-09",104672,10,3115],["2021-01-10",104672,7,3122],["2021-01-11",104672,652,3774],["2021-01-12",104672,889,4663],["2021-01-13",104672,674,5337],["2021-01-14",104672,631,5968],["2021-01-15",104672,420,6388],["2021-01-16",104672,36,6424],["2021-01-17",104672,19,6443],["2021-01-18",104672,1044,7487],["2021-01-19",104672,508,7995],["2021-01-20",104672,832,8827],["2021-01-21",104672,324,9151],["2021-01-22",104672,157,9308],["2021-01-23",104672,27,9335],["2021-01-24",104672,27,9362],["2021-01-25",104672,284,9646],["2021-01-26",104672,646,10292],["2021-01-27",104672,533,10825],["2021-01-28",104672,552,11377],["2021-01-29",104672,291,11668],["2021-01-30",104672,17,11685],["2021-01-31",104672,14,11699],["2021-02-01",104672,450,12149],["2021-02-02",104672,607,12756],["2021-02-03",104672,1505,14261],["2021-02-04",104672,1355,15616],["2021-02-05",104672,393,16009],["2021-02-06",104672,7,16016],["2021-02-07",104672,8,16024],["2021-02-08",104672,650,16674],["2021-02-09",104672,836,17510],["2021-02-10",104672,1312,18822],["2021-02-11",104672,551,19373],["2021-02-12",104672,376,19749],["2021-02-13",104672,35,19784],["2021-02-14",104672,23,19807],["2021-02-15",104672,780,20587],["2021-02-16",104672,467,21054],["2021-02-17",104672,210,21264],["2021-02-18",104672,186,21450],["2021-02-19",104672,195,21645],["2021-02-20",104672,28,21673],["2021-02-21",104672,22,21695],["2021-02-22",104672,208,21903],["2021-02-23",104672,317,22220],["2021-02-24",104672,1115,23335],["2021-02-25",104672,1010,24345],["2021-02-26",104672,305,24650],["2021-02-27",104672,122,24772],["2021-02-28",104672,41,24813],["2021-03-01",104672,272,25085],["2021-03-02",104672,357,25442],["2021-03-03",104672,479,25921],["2021-03-04",104672,293,26214],["2021-03-05",104672,247,26461],["2021-03-06",104672,14,26475],["2021-03-07",104672,49,26524],["2021-03-08",104672,381,26905],["2021-03-09",104672,503,27408],["2021-03-10",104672,545,27953],["2021-03-11",104672,556,28509],["2021-03-12",104672,516,29025],["2021-03-13",104672,77,29102],["2021-03-14",104672,51,29153],["2021-03-15",104672,636,29789],["2021-03-16",104672,669,30458],["2021-03-17",104672,539,30997],["2021-03-18",104672,539,31536],["2021-03-19",104672,463,31999],["2021-03-20",104672,82,32081],["2021-03-21",104672,84,32165],["2021-03-22",104672,901,33066],["2021-03-23",104672,503,33569],["2021-03-24",104672,990,34559],["2021-03-25",104672,873,35432],["2021-03-26",104672,824,36256],["2021-03-27",104672,122,36378],["2021-03-28",104672,148,36526],["2021-03-29",104672,779,37305],["2021-03-30",104672,984,38289],["2021-03-31",104672,900,39189],["2021-04-01",104672,964,40153],["2021-04-02",104672,790,40943],["2021-04-03",104672,171,41114],["2021-04-04",104672,126,41240],["2021-04-05",104672,897,42137],["2021-04-06",104672,910,43047],["2021-04-07",104672,788,43835],["2021-04-08",104672,731,44566],["2021-04-09",104672,683,45249],["2021-04-10",104672,172,45421],["2021-04-11",104672,121,45542],["2021-04-12",104672,638,46180],["2021-04-13",104672,679,46859],["2021-04-14",104672,1173,48032],["2021-04-15",104672,998,49030],["2021-04-16",104672,750,49780],["2021-04-17",104672,536,50316],["2021-04-18",104672,97,50413],["2021-04-19",104672,679,51092],["2021-04-20",104672,714,51806],["2021-04-21",104672,945,52751],["2021-04-22",104672,687,53438],["2021-04-23",104672,652,54090],["2021-04-24",104672,188,54278],["2021-04-25",104672,107,54385],["2021-04-26",104672,566,54951],["2021-04-27",104672,499,55450],["2021-04-28",104672,619,56069],["2021-04-29",104672,482,56551],["2021-04-30",104672,572,57123],["2021-05-01",104672,265,57388],["2021-05-02",104672,113,57501],["2021-05-03",104672,358,57859],["2021-05-04",104672,632,58491],["2021-05-05",104672,748,59239],["2021-05-06",104672,482,59721],["2021-05-07",104672,433,60154],["2021-05-08",104672,168,60322],["2021-05-09",104672,67,60389],["2021-05-10",104672,288,60677],["2021-05-11",104672,602,61279],["2021-05-12",104672,415,61694],["2021-05-13",104672,313,62007],["2021-05-14",104672,347,62354],["2021-05-15",104672,135,62489],["2021-05-16",104672,97,62586],["2021-05-17",104672,314,62900],["2021-05-18",104672,293,63193],["2021-05-19",104672,328,63521],["2021-05-20",104672,271,63792],["2021-05-21",104672,267,64059],["2021-05-22",104672,193,64252],["2021-05-23",104672,60,64312],["2021-05-24",104672,209,64521],["2021-05-25",104672,548,65069],["2021-05-26",104672,204,65273],["2021-05-27",104672,205,65478],["2021-05-28",104672,173,65651],["2021-05-29",104672,124,65775],["2021-05-30",104672,58,65833],["2021-05-31",104672,20,65853],["2021-06-01",104672,396,66249],["2021-06-02",104672,184,66433],["2021-06-03",104672,207,66640],["2021-06-04",104672,248,66888],["2021-06-05",104672,106,66994],["2021-06-06",104672,79,67073],["2021-06-07",104672,179,67252],["2021-06-08",104672,217,67469],["2021-06-09",104672,227,67696],["2021-06-10",104672,181,67877],["2021-06-11",104672,205,68082],["2021-06-12",104672,131,68213],["2021-06-13",104672,49,68262],["2021-06-14",104672,219,68481],["2021-06-15",104672,181,68662],["2021-06-16",104672,158,68820],["2021-06-17",104672,163,68983],["2021-06-18",104672,158,69141],["2021-06-19",104672,77,69218],["2021-06-20",104672,42,69260],["2021-06-21",104672,93,69353],["2021-06-22",104672,173,69526],["2021-06-23",104672,143,69669],["2021-06-24",104672,120,69789],["2021-06-25",104672,151,69940],["2021-06-26",104672,139,70079],["2021-06-27",104672,35,70114],["2021-06-28",104672,102,70216],["2021-06-29",104672,106,70322],["2021-06-30",104672,126,70448],["2021-07-01",104672,110,70558],["2021-07-02",104672,142,70700],["2021-07-03",104672,78,70778],["2021-07-04",104672,8,70786],["2021-07-05",104672,96,70882],["2021-07-06",104672,125,71007],["2021-07-07",104672,151,71158],["2021-07-08",104672,104,71262],["2021-07-09",104672,120,71382],["2021-07-10",104672,56,71438],["2021-07-11",104672,43,71481],["2021-07-12",104672,115,71596],["2021-07-13",104672,111,71707],["2021-07-14",104672,102,71809],["2021-07-15",104672,104,71913],["2021-07-16",104672,116,72029],["2021-07-17",104672,80,72109],["2021-07-18",104672,52,72161],["2021-07-19",104672,105,72266],["2021-07-20",104672,113,72379],["2021-07-21",104672,129,72508],["2021-07-22",104672,167,72675],["2021-07-23",104672,193,72868],["2021-07-24",104672,124,72992],["2021-07-25",104672,40,73032],["2021-07-26",104672,163,73195],["2021-07-27",104672,160,73355],["2021-07-28",104672,235,73590],["2021-07-29",104672,241,73831],["2021-07-30",104672,230,74061],["2021-07-31",104672,167,74228],["2021-08-01",104672,93,74321],["2021-08-02",104672,196,74517],["2021-08-03",104672,211,74728],["2021-08-04",104672,298,75026],["2021-08-05",104672,215,75241],["2021-08-06",104672,184,75425],["2021-08-07",104672,183,75608],["2021-08-08",104672,100,75708],["2021-08-09",104672,214,75922],["2021-08-10",104672,222,76144],["2021-08-11",104672,211,76355],["2021-08-12",104672,264,76619],["2021-08-13",104672,305,76924],["2021-08-14",104672,232,77156],["2021-08-15",104672,137,77293],["2021-08-16",104672,280,77573],["2021-08-17",104672,331,77904],["2021-08-18",104672,403,78307],["2021-08-19",104672,526,78833],["2021-08-20",104672,460,79293],["2021-08-21",104672,240,79533],["2021-08-22",104672,142,79675],["2021-08-23",104672,337,80012],["2021-08-24",104672,442,80454],["2021-08-25",104672,393,80847],["2021-08-26",104672,359,81206],["2021-08-27",104672,392,81598],["2021-08-28",104672,243,81841],["2021-08-29",104672,134,81975],["2021-08-30",104672,305,82280],["2021-08-31",104672,302,82582],["2021-09-01",104672,396,82978],["2021-09-02",104672,365,83343],["2021-09-03",104672,395,83738],["2021-09-04",104672,231,83969],["2021-09-05",104672,124,84093],["2021-09-06",104672,27,84120],["2021-09-07",104672,487,84607],["2021-09-08",104672,426,85033],["2021-09-09",104672,494,85527],["2021-09-10",104672,444,85971],["2021-09-11",104672,237,86208],["2021-09-12",104672,124,86332],["2021-09-13",104672,304,86636],["2021-09-14",104672,312,86948],["2021-09-15",104672,249,87197],["2021-09-16",104672,329,87526],["2021-09-17",104672,319,87845],["2021-09-18",104672,162,88007],["2021-09-19",104672,78,88085],["2021-09-20",104672,188,88273],["2021-09-21",104672,220,88493],["2021-09-22",104672,185,88678],["2021-09-23",104672,203,88881],["2021-09-24",104672,223,89104],["2021-09-25",104672,134,89238],["2021-09-26",104672,81,89319],["2021-09-27",104672,322,89641],["2021-09-28",104672,377,90018],["2021-09-29",104672,292,90310],["2021-09-30",104672,293,90603],["2021-10-01",104672,326,90929],["2021-10-02",104672,180,91109],["2021-10-03",104672,58,91167],["2021-10-04",104672,273,91440],["2021-10-05",104672,251,91691],["2021-10-06",104672,256,91947],["2021-10-07",104672,229,92176],["2021-10-08",104672,239,92415],["2021-10-09",104672,79,92494],["2021-10-10",104672,56,92550],["2021-10-11",104672,98,92648],["2021-10-12",104672,219,92867],["2021-10-13",104672,105,92972],["2021-10-14",104672,260,93232],["2021-10-15",104672,199,93431],["2021-10-16",104672,60,93491],["2021-10-17",104672,38,93529],["2021-10-18",104672,168,93697],["2021-10-19",104672,137,93834],["2021-10-20",104672,172,94006],["2021-10-21",104672,156,94162],["2021-10-22",104672,277,94439],["2021-10-23",104672,96,94535],["2021-10-24",104672,61,94596],["2021-10-25",104672,182,94778],["2021-10-26",104672,236,95014],["2021-10-27",104672,246,95260],["2021-10-28",104672,172,95432],["2021-10-29",104672,198,95630],["2021-10-30",104672,77,95707],["2021-10-31",104672,37,95744],["2021-11-01",104672,153,95897],["2021-11-02",104672,160,96057],["2021-11-03",104672,188,96245],["2021-11-04",104672,178,96423],["2021-11-05",104672,211,96634],["2021-11-06",104672,86,96720],["2021-11-07",104672,46,96766],["2021-11-08",104672,153,96919],["2021-11-09",104672,246,97165],["2021-11-10",104672,191,97356],["2021-11-11",104672,105,97461],["2021-11-12",104672,248,97709],["2021-11-13",104672,150,97859],["2021-11-14",104672,55,97914],["2021-11-15",104672,200,98114],["2021-11-16",104672,251,98365],["2021-11-17",104672,202,98567],["2021-11-18",104672,184,98751],["2021-11-19",104672,254,99005],["2021-11-20",104672,116,99121],["2021-11-21",104672,50,99171],["2021-11-22",104672,247,99418],["2021-11-23",104672,237,99655],["2021-11-24",104672,162,99817],["2021-11-25",104672,2,99819],["2021-11-26",104672,123,99942],["2021-11-27",104672,85,100027],["2021-11-28",104672,53,100080],["2021-11-29",104672,262,100342],["2021-11-30",104672,347,100689],["2021-12-01",104672,325,101014],["2021-12-02",104672,283,101297],["2021-12-03",104672,369,101666],["2021-12-04",104672,140,101806],["2021-12-05",104672,56,101862],["2021-12-06",104672,212,102074],["2021-12-07",104672,163,102237],["2021-12-08",104672,161,102398],["2021-12-09",104672,214,102612],["2021-12-10",104672,277,102889],["2021-12-11",104672,91,102980],["2021-12-12",104672,59,103039],["2021-12-13",104672,198,103237],["2021-12-14",104672,213,103450],["2021-12-15",104672,231,103681],["2021-12-16",104672,195,103876],["2021-12-17",104672,237,104113],["2021-12-18",104672,132,104245],["2021-12-19",104672,64,104309],["2021-12-20",104672,283,104592],["2021-12-21",104672,337,104929],["2021-12-22",104672,302,105231],["2021-12-23",104672,129,105360],["2021-12-24",104672,40,105400],["2021-12-26",104672,67,105467],["2021-12-27",104672,263,105730],["2021-12-28",104672,140,105870],["2021-12-29",104672,160,106030],["2021-12-30",104672,173,106203],["2021-12-31",104672,105,106308],["2022-01-01",104672,8,106316],["2022-01-02",104672,62,106378],["2022-01-03",104672,59,106437]]} \ No newline at end of file diff --git a/public/data/overall/vaccinations/by-county/Wilcox.json b/public/data/overall/vaccinations/by-county/Wilcox.json new file mode 100644 index 000000000..a3fb82ca3 --- /dev/null +++ b/public/data/overall/vaccinations/by-county/Wilcox.json @@ -0,0 +1 @@ +{"segment":{"county":"Wilcox"},"headers":["report_date","population","vaccinations","total_vaccinations"],"rows":[["2020-12-16",8790,1,1],["2020-12-21",8790,1,2],["2020-12-22",8790,1,3],["2020-12-23",8790,5,8],["2020-12-24",8790,4,12],["2020-12-26",8790,1,13],["2020-12-28",8790,6,19],["2020-12-29",8790,6,25],["2020-12-30",8790,8,33],["2020-12-31",8790,5,38],["2021-01-03",8790,1,39],["2021-01-04",8790,13,52],["2021-01-05",8790,44,96],["2021-01-06",8790,23,119],["2021-01-07",8790,32,151],["2021-01-08",8790,11,162],["2021-01-09",8790,2,164],["2021-01-11",8790,28,192],["2021-01-12",8790,48,240],["2021-01-13",8790,37,277],["2021-01-14",8790,103,380],["2021-01-15",8790,30,410],["2021-01-16",8790,3,413],["2021-01-17",8790,1,414],["2021-01-18",8790,15,429],["2021-01-19",8790,37,466],["2021-01-20",8790,57,523],["2021-01-21",8790,129,652],["2021-01-22",8790,4,656],["2021-01-24",8790,1,657],["2021-01-25",8790,14,671],["2021-01-26",8790,13,684],["2021-01-27",8790,27,711],["2021-01-28",8790,129,840],["2021-01-29",8790,8,848],["2021-01-30",8790,4,852],["2021-01-31",8790,1,853],["2021-02-01",8790,10,863],["2021-02-02",8790,17,880],["2021-02-03",8790,25,905],["2021-02-04",8790,117,1022],["2021-02-05",8790,20,1042],["2021-02-07",8790,1,1043],["2021-02-08",8790,19,1062],["2021-02-09",8790,48,1110],["2021-02-10",8790,17,1127],["2021-02-11",8790,162,1289],["2021-02-12",8790,34,1323],["2021-02-13",8790,5,1328],["2021-02-14",8790,2,1330],["2021-02-15",8790,12,1342],["2021-02-16",8790,28,1370],["2021-02-17",8790,41,1411],["2021-02-18",8790,186,1597],["2021-02-19",8790,12,1609],["2021-02-20",8790,3,1612],["2021-02-22",8790,12,1624],["2021-02-23",8790,8,1632],["2021-02-24",8790,19,1651],["2021-02-25",8790,153,1804],["2021-02-26",8790,6,1810],["2021-02-27",8790,3,1813],["2021-03-01",8790,13,1826],["2021-03-02",8790,9,1835],["2021-03-03",8790,12,1847],["2021-03-04",8790,109,1956],["2021-03-05",8790,12,1968],["2021-03-07",8790,1,1969],["2021-03-08",8790,64,2033],["2021-03-09",8790,22,2055],["2021-03-10",8790,28,2083],["2021-03-11",8790,96,2179],["2021-03-12",8790,23,2202],["2021-03-13",8790,3,2205],["2021-03-14",8790,8,2213],["2021-03-15",8790,31,2244],["2021-03-16",8790,31,2275],["2021-03-17",8790,83,2358],["2021-03-18",8790,97,2455],["2021-03-19",8790,21,2476],["2021-03-20",8790,6,2482],["2021-03-21",8790,2,2484],["2021-03-22",8790,17,2501],["2021-03-23",8790,39,2540],["2021-03-24",8790,80,2620],["2021-03-25",8790,59,2679],["2021-03-26",8790,27,2706],["2021-03-27",8790,1,2707],["2021-03-29",8790,22,2729],["2021-03-30",8790,25,2754],["2021-03-31",8790,74,2828],["2021-04-01",8790,36,2864],["2021-04-02",8790,21,2885],["2021-04-03",8790,3,2888],["2021-04-04",8790,3,2891],["2021-04-05",8790,83,2974],["2021-04-06",8790,36,3010],["2021-04-07",8790,116,3126],["2021-04-08",8790,100,3226],["2021-04-09",8790,19,3245],["2021-04-10",8790,7,3252],["2021-04-11",8790,4,3256],["2021-04-12",8790,16,3272],["2021-04-13",8790,23,3295],["2021-04-14",8790,127,3422],["2021-04-15",8790,38,3460],["2021-04-16",8790,23,3483],["2021-04-17",8790,6,3489],["2021-04-18",8790,1,3490],["2021-04-19",8790,22,3512],["2021-04-20",8790,45,3557],["2021-04-21",8790,108,3665],["2021-04-22",8790,41,3706],["2021-04-23",8790,27,3733],["2021-04-24",8790,2,3735],["2021-04-25",8790,2,3737],["2021-04-26",8790,23,3760],["2021-04-27",8790,14,3774],["2021-04-28",8790,78,3852],["2021-04-29",8790,59,3911],["2021-04-30",8790,22,3933],["2021-05-01",8790,3,3936],["2021-05-02",8790,5,3941],["2021-05-03",8790,14,3955],["2021-05-04",8790,19,3974],["2021-05-05",8790,70,4044],["2021-05-06",8790,23,4067],["2021-05-07",8790,28,4095],["2021-05-08",8790,8,4103],["2021-05-10",8790,13,4116],["2021-05-11",8790,12,4128],["2021-05-12",8790,54,4182],["2021-05-13",8790,15,4197],["2021-05-14",8790,16,4213],["2021-05-15",8790,4,4217],["2021-05-16",8790,2,4219],["2021-05-17",8790,17,4236],["2021-05-18",8790,13,4249],["2021-05-19",8790,41,4290],["2021-05-20",8790,16,4306],["2021-05-21",8790,18,4324],["2021-05-22",8790,9,4333],["2021-05-23",8790,3,4336],["2021-05-24",8790,5,4341],["2021-05-25",8790,8,4349],["2021-05-26",8790,30,4379],["2021-05-27",8790,15,4394],["2021-05-28",8790,9,4403],["2021-05-29",8790,2,4405],["2021-05-30",8790,4,4409],["2021-05-31",8790,4,4413],["2021-06-01",8790,20,4433],["2021-06-02",8790,26,4459],["2021-06-03",8790,17,4476],["2021-06-04",8790,16,4492],["2021-06-05",8790,4,4496],["2021-06-06",8790,5,4501],["2021-06-07",8790,8,4509],["2021-06-08",8790,6,4515],["2021-06-09",8790,25,4540],["2021-06-10",8790,6,4546],["2021-06-11",8790,7,4553],["2021-06-12",8790,7,4560],["2021-06-14",8790,6,4566],["2021-06-15",8790,17,4583],["2021-06-16",8790,22,4605],["2021-06-17",8790,3,4608],["2021-06-18",8790,9,4617],["2021-06-19",8790,3,4620],["2021-06-20",8790,4,4624],["2021-06-21",8790,4,4628],["2021-06-22",8790,7,4635],["2021-06-23",8790,24,4659],["2021-06-24",8790,5,4664],["2021-06-25",8790,7,4671],["2021-06-27",8790,3,4674],["2021-06-28",8790,5,4679],["2021-06-29",8790,2,4681],["2021-06-30",8790,17,4698],["2021-07-01",8790,10,4708],["2021-07-02",8790,5,4713],["2021-07-03",8790,2,4715],["2021-07-04",8790,1,4716],["2021-07-05",8790,2,4718],["2021-07-06",8790,5,4723],["2021-07-07",8790,18,4741],["2021-07-08",8790,4,4745],["2021-07-09",8790,8,4753],["2021-07-10",8790,6,4759],["2021-07-11",8790,1,4760],["2021-07-12",8790,3,4763],["2021-07-13",8790,6,4769],["2021-07-14",8790,12,4781],["2021-07-15",8790,8,4789],["2021-07-16",8790,3,4792],["2021-07-17",8790,2,4794],["2021-07-18",8790,1,4795],["2021-07-19",8790,15,4810],["2021-07-20",8790,12,4822],["2021-07-21",8790,26,4848],["2021-07-22",8790,13,4861],["2021-07-23",8790,14,4875],["2021-07-24",8790,4,4879],["2021-07-25",8790,2,4881],["2021-07-26",8790,9,4890],["2021-07-27",8790,12,4902],["2021-07-28",8790,63,4965],["2021-07-29",8790,7,4972],["2021-07-30",8790,19,4991],["2021-07-31",8790,7,4998],["2021-08-02",8790,12,5010],["2021-08-03",8790,12,5022],["2021-08-04",8790,40,5062],["2021-08-05",8790,8,5070],["2021-08-06",8790,31,5101],["2021-08-07",8790,8,5109],["2021-08-08",8790,6,5115],["2021-08-09",8790,27,5142],["2021-08-10",8790,21,5163],["2021-08-11",8790,47,5210],["2021-08-12",8790,20,5230],["2021-08-13",8790,21,5251],["2021-08-14",8790,12,5263],["2021-08-15",8790,2,5265],["2021-08-16",8790,21,5286],["2021-08-17",8790,17,5303],["2021-08-18",8790,65,5368],["2021-08-19",8790,24,5392],["2021-08-20",8790,30,5422],["2021-08-21",8790,7,5429],["2021-08-22",8790,5,5434],["2021-08-23",8790,16,5450],["2021-08-24",8790,25,5475],["2021-08-25",8790,56,5531],["2021-08-26",8790,21,5552],["2021-08-27",8790,28,5580],["2021-08-28",8790,6,5586],["2021-08-29",8790,7,5593],["2021-08-30",8790,32,5625],["2021-08-31",8790,16,5641],["2021-09-01",8790,43,5684],["2021-09-02",8790,29,5713],["2021-09-03",8790,24,5737],["2021-09-04",8790,16,5753],["2021-09-05",8790,5,5758],["2021-09-06",8790,4,5762],["2021-09-07",8790,26,5788],["2021-09-08",8790,63,5851],["2021-09-09",8790,25,5876],["2021-09-10",8790,23,5899],["2021-09-11",8790,4,5903],["2021-09-12",8790,2,5905],["2021-09-13",8790,26,5931],["2021-09-14",8790,20,5951],["2021-09-15",8790,37,5988],["2021-09-16",8790,14,6002],["2021-09-17",8790,19,6021],["2021-09-18",8790,3,6024],["2021-09-19",8790,4,6028],["2021-09-20",8790,29,6057],["2021-09-21",8790,12,6069],["2021-09-22",8790,34,6103],["2021-09-23",8790,24,6127],["2021-09-24",8790,13,6140],["2021-09-25",8790,3,6143],["2021-09-26",8790,3,6146],["2021-09-27",8790,7,6153],["2021-09-28",8790,6,6159],["2021-09-29",8790,24,6183],["2021-09-30",8790,7,6190],["2021-10-01",8790,12,6202],["2021-10-02",8790,7,6209],["2021-10-03",8790,2,6211],["2021-10-04",8790,18,6229],["2021-10-05",8790,13,6242],["2021-10-06",8790,16,6258],["2021-10-07",8790,9,6267],["2021-10-08",8790,13,6280],["2021-10-09",8790,3,6283],["2021-10-11",8790,8,6291],["2021-10-12",8790,5,6296],["2021-10-13",8790,27,6323],["2021-10-14",8790,13,6336],["2021-10-15",8790,6,6342],["2021-10-17",8790,3,6345],["2021-10-18",8790,14,6359],["2021-10-19",8790,3,6362],["2021-10-20",8790,12,6374],["2021-10-21",8790,3,6377],["2021-10-22",8790,4,6381],["2021-10-23",8790,7,6388],["2021-10-24",8790,2,6390],["2021-10-25",8790,15,6405],["2021-10-26",8790,16,6421],["2021-10-27",8790,59,6480],["2021-10-28",8790,10,6490],["2021-10-29",8790,17,6507],["2021-10-30",8790,2,6509],["2021-11-01",8790,50,6559],["2021-11-02",8790,11,6570],["2021-11-03",8790,40,6610],["2021-11-04",8790,14,6624],["2021-11-05",8790,9,6633],["2021-11-06",8790,2,6635],["2021-11-08",8790,27,6662],["2021-11-09",8790,11,6673],["2021-11-10",8790,32,6705],["2021-11-11",8790,18,6723],["2021-11-12",8790,11,6734],["2021-11-13",8790,6,6740],["2021-11-14",8790,2,6742],["2021-11-15",8790,28,6770],["2021-11-16",8790,7,6777],["2021-11-17",8790,45,6822],["2021-11-18",8790,21,6843],["2021-11-19",8790,15,6858],["2021-11-20",8790,7,6865],["2021-11-21",8790,4,6869],["2021-11-22",8790,36,6905],["2021-11-23",8790,14,6919],["2021-11-24",8790,16,6935],["2021-11-26",8790,3,6938],["2021-11-27",8790,2,6940],["2021-11-28",8790,1,6941],["2021-11-29",8790,44,6985],["2021-11-30",8790,11,6996],["2021-12-01",8790,68,7064],["2021-12-02",8790,13,7077],["2021-12-03",8790,18,7095],["2021-12-04",8790,7,7102],["2021-12-05",8790,4,7106],["2021-12-06",8790,38,7144],["2021-12-07",8790,6,7150],["2021-12-08",8790,36,7186],["2021-12-09",8790,14,7200],["2021-12-10",8790,6,7206],["2021-12-11",8790,5,7211],["2021-12-12",8790,1,7212],["2021-12-13",8790,41,7253],["2021-12-14",8790,4,7257],["2021-12-15",8790,28,7285],["2021-12-16",8790,5,7290],["2021-12-17",8790,13,7303],["2021-12-19",8790,1,7304],["2021-12-20",8790,27,7331],["2021-12-21",8790,14,7345],["2021-12-22",8790,28,7373],["2021-12-23",8790,5,7378],["2021-12-24",8790,1,7379],["2021-12-26",8790,1,7380],["2021-12-27",8790,18,7398],["2021-12-28",8790,10,7408],["2021-12-29",8790,55,7463],["2021-12-30",8790,17,7480],["2021-12-31",8790,7,7487],["2022-01-02",8790,2,7489],["2022-01-03",8790,3,7492]]} \ No newline at end of file diff --git a/public/data/overall/vaccinations/by-county/Wilkes.json b/public/data/overall/vaccinations/by-county/Wilkes.json new file mode 100644 index 000000000..a2db16eb4 --- /dev/null +++ b/public/data/overall/vaccinations/by-county/Wilkes.json @@ -0,0 +1 @@ +{"segment":{"county":"Wilkes"},"headers":["report_date","population","vaccinations","total_vaccinations"],"rows":[["2020-12-15",10014,1,1],["2020-12-17",10014,1,2],["2020-12-18",10014,2,4],["2020-12-19",10014,1,5],["2020-12-20",10014,1,6],["2020-12-22",10014,35,41],["2020-12-23",10014,8,49],["2020-12-24",10014,1,50],["2020-12-26",10014,1,51],["2020-12-28",10014,12,63],["2020-12-29",10014,9,72],["2020-12-30",10014,4,76],["2020-12-31",10014,4,80],["2021-01-04",10014,16,96],["2021-01-05",10014,11,107],["2021-01-06",10014,18,125],["2021-01-07",10014,13,138],["2021-01-08",10014,12,150],["2021-01-09",10014,3,153],["2021-01-10",10014,5,158],["2021-01-11",10014,19,177],["2021-01-12",10014,60,237],["2021-01-13",10014,56,293],["2021-01-14",10014,53,346],["2021-01-15",10014,40,386],["2021-01-16",10014,6,392],["2021-01-18",10014,14,406],["2021-01-19",10014,134,540],["2021-01-20",10014,27,567],["2021-01-21",10014,60,627],["2021-01-22",10014,33,660],["2021-01-23",10014,3,663],["2021-01-24",10014,23,686],["2021-01-25",10014,21,707],["2021-01-26",10014,15,722],["2021-01-27",10014,18,740],["2021-01-28",10014,116,856],["2021-01-29",10014,11,867],["2021-01-30",10014,2,869],["2021-01-31",10014,5,874],["2021-02-01",10014,26,900],["2021-02-02",10014,21,921],["2021-02-03",10014,29,950],["2021-02-04",10014,127,1077],["2021-02-05",10014,43,1120],["2021-02-06",10014,10,1130],["2021-02-07",10014,1,1131],["2021-02-08",10014,21,1152],["2021-02-09",10014,136,1288],["2021-02-10",10014,48,1336],["2021-02-11",10014,105,1441],["2021-02-12",10014,29,1470],["2021-02-13",10014,33,1503],["2021-02-14",10014,1,1504],["2021-02-15",10014,24,1528],["2021-02-16",10014,46,1574],["2021-02-17",10014,86,1660],["2021-02-18",10014,127,1787],["2021-02-19",10014,34,1821],["2021-02-20",10014,4,1825],["2021-02-21",10014,1,1826],["2021-02-22",10014,10,1836],["2021-02-23",10014,92,1928],["2021-02-24",10014,13,1941],["2021-02-25",10014,173,2114],["2021-02-26",10014,23,2137],["2021-02-27",10014,7,2144],["2021-02-28",10014,2,2146],["2021-03-01",10014,23,2169],["2021-03-02",10014,19,2188],["2021-03-03",10014,33,2221],["2021-03-04",10014,135,2356],["2021-03-05",10014,20,2376],["2021-03-06",10014,17,2393],["2021-03-07",10014,2,2395],["2021-03-08",10014,22,2417],["2021-03-09",10014,150,2567],["2021-03-10",10014,43,2610],["2021-03-11",10014,110,2720],["2021-03-12",10014,39,2759],["2021-03-13",10014,18,2777],["2021-03-14",10014,5,2782],["2021-03-15",10014,9,2791],["2021-03-16",10014,37,2828],["2021-03-17",10014,85,2913],["2021-03-18",10014,187,3100],["2021-03-19",10014,131,3231],["2021-03-20",10014,7,3238],["2021-03-21",10014,4,3242],["2021-03-22",10014,41,3283],["2021-03-23",10014,116,3399],["2021-03-24",10014,32,3431],["2021-03-25",10014,166,3597],["2021-03-26",10014,109,3706],["2021-03-27",10014,10,3716],["2021-03-28",10014,4,3720],["2021-03-29",10014,19,3739],["2021-03-30",10014,101,3840],["2021-03-31",10014,77,3917],["2021-04-01",10014,113,4030],["2021-04-02",10014,36,4066],["2021-04-03",10014,11,4077],["2021-04-04",10014,8,4085],["2021-04-05",10014,37,4122],["2021-04-06",10014,123,4245],["2021-04-07",10014,33,4278],["2021-04-08",10014,161,4439],["2021-04-09",10014,37,4476],["2021-04-10",10014,20,4496],["2021-04-11",10014,4,4500],["2021-04-12",10014,19,4519],["2021-04-13",10014,54,4573],["2021-04-14",10014,116,4689],["2021-04-15",10014,136,4825],["2021-04-16",10014,72,4897],["2021-04-17",10014,25,4922],["2021-04-18",10014,5,4927],["2021-04-19",10014,34,4961],["2021-04-20",10014,38,4999],["2021-04-21",10014,101,5100],["2021-04-22",10014,188,5288],["2021-04-23",10014,46,5334],["2021-04-24",10014,11,5345],["2021-04-25",10014,2,5347],["2021-04-26",10014,35,5382],["2021-04-27",10014,88,5470],["2021-04-28",10014,62,5532],["2021-04-29",10014,112,5644],["2021-04-30",10014,25,5669],["2021-05-01",10014,8,5677],["2021-05-02",10014,5,5682],["2021-05-03",10014,15,5697],["2021-05-04",10014,78,5775],["2021-05-05",10014,32,5807],["2021-05-06",10014,95,5902],["2021-05-07",10014,30,5932],["2021-05-08",10014,12,5944],["2021-05-09",10014,3,5947],["2021-05-10",10014,19,5966],["2021-05-11",10014,24,5990],["2021-05-12",10014,11,6001],["2021-05-13",10014,108,6109],["2021-05-14",10014,44,6153],["2021-05-15",10014,10,6163],["2021-05-16",10014,8,6171],["2021-05-17",10014,22,6193],["2021-05-18",10014,25,6218],["2021-05-19",10014,26,6244],["2021-05-20",10014,102,6346],["2021-05-21",10014,29,6375],["2021-05-22",10014,7,6382],["2021-05-23",10014,3,6385],["2021-05-24",10014,28,6413],["2021-05-25",10014,11,6424],["2021-05-26",10014,42,6466],["2021-05-27",10014,23,6489],["2021-05-28",10014,14,6503],["2021-05-29",10014,4,6507],["2021-05-30",10014,2,6509],["2021-05-31",10014,1,6510],["2021-06-01",10014,17,6527],["2021-06-02",10014,19,6546],["2021-06-03",10014,45,6591],["2021-06-04",10014,30,6621],["2021-06-05",10014,13,6634],["2021-06-06",10014,5,6639],["2021-06-07",10014,9,6648],["2021-06-08",10014,13,6661],["2021-06-09",10014,15,6676],["2021-06-10",10014,45,6721],["2021-06-11",10014,35,6756],["2021-06-12",10014,12,6768],["2021-06-13",10014,1,6769],["2021-06-14",10014,24,6793],["2021-06-15",10014,9,6802],["2021-06-16",10014,37,6839],["2021-06-17",10014,36,6875],["2021-06-18",10014,12,6887],["2021-06-19",10014,4,6891],["2021-06-20",10014,2,6893],["2021-06-21",10014,9,6902],["2021-06-22",10014,10,6912],["2021-06-23",10014,8,6920],["2021-06-24",10014,26,6946],["2021-06-25",10014,10,6956],["2021-06-26",10014,7,6963],["2021-06-27",10014,3,6966],["2021-06-28",10014,6,6972],["2021-06-29",10014,6,6978],["2021-06-30",10014,5,6983],["2021-07-01",10014,15,6998],["2021-07-02",10014,10,7008],["2021-07-03",10014,9,7017],["2021-07-05",10014,14,7031],["2021-07-06",10014,14,7045],["2021-07-07",10014,12,7057],["2021-07-08",10014,37,7094],["2021-07-09",10014,10,7104],["2021-07-10",10014,9,7113],["2021-07-11",10014,1,7114],["2021-07-12",10014,10,7124],["2021-07-13",10014,4,7128],["2021-07-14",10014,16,7144],["2021-07-15",10014,25,7169],["2021-07-16",10014,12,7181],["2021-07-17",10014,5,7186],["2021-07-18",10014,4,7190],["2021-07-19",10014,11,7201],["2021-07-20",10014,7,7208],["2021-07-21",10014,17,7225],["2021-07-22",10014,26,7251],["2021-07-23",10014,19,7270],["2021-07-24",10014,39,7309],["2021-07-25",10014,1,7310],["2021-07-26",10014,14,7324],["2021-07-27",10014,20,7344],["2021-07-28",10014,16,7360],["2021-07-29",10014,37,7397],["2021-07-30",10014,25,7422],["2021-07-31",10014,13,7435],["2021-08-01",10014,2,7437],["2021-08-02",10014,19,7456],["2021-08-03",10014,19,7475],["2021-08-04",10014,5,7480],["2021-08-05",10014,41,7521],["2021-08-06",10014,21,7542],["2021-08-07",10014,13,7555],["2021-08-08",10014,7,7562],["2021-08-09",10014,10,7572],["2021-08-10",10014,14,7586],["2021-08-11",10014,12,7598],["2021-08-12",10014,59,7657],["2021-08-13",10014,27,7684],["2021-08-14",10014,31,7715],["2021-08-15",10014,6,7721],["2021-08-16",10014,17,7738],["2021-08-17",10014,16,7754],["2021-08-18",10014,27,7781],["2021-08-19",10014,53,7834],["2021-08-20",10014,34,7868],["2021-08-21",10014,21,7889],["2021-08-22",10014,6,7895],["2021-08-23",10014,18,7913],["2021-08-24",10014,15,7928],["2021-08-25",10014,20,7948],["2021-08-26",10014,52,8000],["2021-08-27",10014,22,8022],["2021-08-28",10014,20,8042],["2021-08-29",10014,8,8050],["2021-08-30",10014,38,8088],["2021-08-31",10014,24,8112],["2021-09-01",10014,17,8129],["2021-09-02",10014,53,8182],["2021-09-03",10014,30,8212],["2021-09-04",10014,20,8232],["2021-09-05",10014,6,8238],["2021-09-06",10014,4,8242],["2021-09-07",10014,20,8262],["2021-09-08",10014,16,8278],["2021-09-09",10014,52,8330],["2021-09-10",10014,25,8355],["2021-09-11",10014,17,8372],["2021-09-12",10014,6,8378],["2021-09-13",10014,14,8392],["2021-09-14",10014,13,8405],["2021-09-15",10014,9,8414],["2021-09-16",10014,47,8461],["2021-09-17",10014,21,8482],["2021-09-18",10014,12,8494],["2021-09-19",10014,6,8500],["2021-09-20",10014,15,8515],["2021-09-21",10014,17,8532],["2021-09-22",10014,13,8545],["2021-09-23",10014,49,8594],["2021-09-24",10014,18,8612],["2021-09-25",10014,12,8624],["2021-09-26",10014,3,8627],["2021-09-27",10014,17,8644],["2021-09-28",10014,10,8654],["2021-09-29",10014,12,8666],["2021-09-30",10014,20,8686],["2021-10-01",10014,22,8708],["2021-10-02",10014,8,8716],["2021-10-03",10014,1,8717],["2021-10-04",10014,7,8724],["2021-10-05",10014,12,8736],["2021-10-06",10014,8,8744],["2021-10-07",10014,36,8780],["2021-10-08",10014,11,8791],["2021-10-09",10014,7,8798],["2021-10-10",10014,3,8801],["2021-10-11",10014,10,8811],["2021-10-12",10014,10,8821],["2021-10-13",10014,12,8833],["2021-10-14",10014,29,8862],["2021-10-15",10014,11,8873],["2021-10-16",10014,7,8880],["2021-10-17",10014,8,8888],["2021-10-18",10014,2,8890],["2021-10-19",10014,9,8899],["2021-10-20",10014,7,8906],["2021-10-21",10014,15,8921],["2021-10-22",10014,14,8935],["2021-10-23",10014,8,8943],["2021-10-24",10014,5,8948],["2021-10-25",10014,22,8970],["2021-10-26",10014,47,9017],["2021-10-27",10014,26,9043],["2021-10-28",10014,92,9135],["2021-10-29",10014,37,9172],["2021-10-30",10014,7,9179],["2021-10-31",10014,1,9180],["2021-11-01",10014,44,9224],["2021-11-02",10014,63,9287],["2021-11-03",10014,36,9323],["2021-11-04",10014,79,9402],["2021-11-05",10014,27,9429],["2021-11-06",10014,4,9433],["2021-11-07",10014,1,9434],["2021-11-08",10014,16,9450],["2021-11-09",10014,78,9528],["2021-11-10",10014,69,9597],["2021-11-11",10014,25,9622],["2021-11-12",10014,27,9649],["2021-11-13",10014,6,9655],["2021-11-14",10014,6,9661],["2021-11-15",10014,9,9670],["2021-11-16",10014,56,9726],["2021-11-17",10014,23,9749],["2021-11-18",10014,68,9817],["2021-11-19",10014,20,9837],["2021-11-20",10014,9,9846],["2021-11-21",10014,5,9851],["2021-11-22",10014,20,9871],["2021-11-23",10014,22,9893],["2021-11-24",10014,29,9922],["2021-11-26",10014,24,9946],["2021-11-27",10014,4,9950],["2021-11-28",10014,2,9952],["2021-11-29",10014,24,9976],["2021-11-30",10014,37,10013],["2021-12-01",10014,28,10041],["2021-12-02",10014,52,10093],["2021-12-03",10014,34,10127],["2021-12-04",10014,12,10139],["2021-12-05",10014,4,10143],["2021-12-06",10014,20,10163],["2021-12-07",10014,39,10202],["2021-12-08",10014,28,10230],["2021-12-09",10014,105,10335],["2021-12-10",10014,24,10359],["2021-12-11",10014,8,10367],["2021-12-12",10014,7,10374],["2021-12-13",10014,20,10394],["2021-12-14",10014,32,10426],["2021-12-15",10014,37,10463],["2021-12-16",10014,67,10530],["2021-12-17",10014,30,10560],["2021-12-18",10014,12,10572],["2021-12-19",10014,8,10580],["2021-12-20",10014,12,10592],["2021-12-21",10014,33,10625],["2021-12-22",10014,54,10679],["2021-12-23",10014,38,10717],["2021-12-24",10014,5,10722],["2021-12-26",10014,3,10725],["2021-12-27",10014,11,10736],["2021-12-28",10014,37,10773],["2021-12-29",10014,39,10812],["2021-12-30",10014,19,10831],["2021-12-31",10014,15,10846],["2022-01-01",10014,1,10847],["2022-01-02",10014,6,10853],["2022-01-03",10014,6,10859]]} \ No newline at end of file diff --git a/public/data/overall/vaccinations/by-county/Wilkinson.json b/public/data/overall/vaccinations/by-county/Wilkinson.json new file mode 100644 index 000000000..b1d622f41 --- /dev/null +++ b/public/data/overall/vaccinations/by-county/Wilkinson.json @@ -0,0 +1 @@ +{"segment":{"county":"Wilkinson"},"headers":["report_date","population","vaccinations","total_vaccinations"],"rows":[["2020-12-17",8919,1,1],["2020-12-18",8919,1,2],["2020-12-22",8919,4,6],["2020-12-23",8919,1,7],["2020-12-24",8919,2,9],["2020-12-26",8919,7,16],["2020-12-27",8919,4,20],["2020-12-28",8919,45,65],["2020-12-29",8919,7,72],["2020-12-30",8919,17,89],["2020-12-31",8919,11,100],["2021-01-04",8919,26,126],["2021-01-05",8919,7,133],["2021-01-06",8919,20,153],["2021-01-07",8919,19,172],["2021-01-08",8919,14,186],["2021-01-09",8919,1,187],["2021-01-10",8919,2,189],["2021-01-11",8919,37,226],["2021-01-12",8919,17,243],["2021-01-13",8919,64,307],["2021-01-14",8919,102,409],["2021-01-15",8919,62,471],["2021-01-16",8919,42,513],["2021-01-17",8919,5,518],["2021-01-18",8919,55,573],["2021-01-19",8919,20,593],["2021-01-20",8919,100,693],["2021-01-21",8919,113,806],["2021-01-22",8919,46,852],["2021-01-23",8919,7,859],["2021-01-24",8919,3,862],["2021-01-25",8919,71,933],["2021-01-26",8919,17,950],["2021-01-27",8919,58,1008],["2021-01-28",8919,50,1058],["2021-01-29",8919,35,1093],["2021-01-31",8919,4,1097],["2021-02-01",8919,45,1142],["2021-02-02",8919,44,1186],["2021-02-03",8919,54,1240],["2021-02-04",8919,57,1297],["2021-02-05",8919,45,1342],["2021-02-06",8919,9,1351],["2021-02-07",8919,1,1352],["2021-02-08",8919,76,1428],["2021-02-09",8919,29,1457],["2021-02-10",8919,44,1501],["2021-02-11",8919,99,1600],["2021-02-12",8919,24,1624],["2021-02-13",8919,10,1634],["2021-02-14",8919,3,1637],["2021-02-15",8919,69,1706],["2021-02-16",8919,34,1740],["2021-02-17",8919,74,1814],["2021-02-18",8919,73,1887],["2021-02-19",8919,41,1928],["2021-02-20",8919,9,1937],["2021-02-21",8919,2,1939],["2021-02-22",8919,39,1978],["2021-02-23",8919,33,2011],["2021-02-24",8919,49,2060],["2021-02-25",8919,144,2204],["2021-02-26",8919,99,2303],["2021-02-27",8919,16,2319],["2021-02-28",8919,4,2323],["2021-03-01",8919,113,2436],["2021-03-02",8919,72,2508],["2021-03-03",8919,62,2570],["2021-03-04",8919,141,2711],["2021-03-05",8919,65,2776],["2021-03-07",8919,1,2777],["2021-03-08",8919,123,2900],["2021-03-09",8919,29,2929],["2021-03-10",8919,69,2998],["2021-03-11",8919,84,3082],["2021-03-12",8919,47,3129],["2021-03-13",8919,15,3144],["2021-03-14",8919,1,3145],["2021-03-15",8919,97,3242],["2021-03-16",8919,41,3283],["2021-03-17",8919,136,3419],["2021-03-18",8919,35,3454],["2021-03-19",8919,149,3603],["2021-03-20",8919,4,3607],["2021-03-21",8919,2,3609],["2021-03-22",8919,102,3711],["2021-03-23",8919,26,3737],["2021-03-24",8919,84,3821],["2021-03-25",8919,94,3915],["2021-03-26",8919,96,4011],["2021-03-27",8919,23,4034],["2021-03-28",8919,4,4038],["2021-03-29",8919,130,4168],["2021-03-30",8919,73,4241],["2021-03-31",8919,49,4290],["2021-04-01",8919,150,4440],["2021-04-02",8919,46,4486],["2021-04-03",8919,16,4502],["2021-04-04",8919,5,4507],["2021-04-05",8919,54,4561],["2021-04-06",8919,73,4634],["2021-04-07",8919,46,4680],["2021-04-08",8919,99,4779],["2021-04-09",8919,60,4839],["2021-04-10",8919,11,4850],["2021-04-11",8919,3,4853],["2021-04-12",8919,91,4944],["2021-04-13",8919,36,4980],["2021-04-14",8919,115,5095],["2021-04-15",8919,34,5129],["2021-04-16",8919,53,5182],["2021-04-17",8919,9,5191],["2021-04-18",8919,4,5195],["2021-04-19",8919,191,5386],["2021-04-20",8919,30,5416],["2021-04-21",8919,47,5463],["2021-04-22",8919,123,5586],["2021-04-23",8919,31,5617],["2021-04-24",8919,5,5622],["2021-04-25",8919,4,5626],["2021-04-26",8919,82,5708],["2021-04-27",8919,65,5773],["2021-04-28",8919,27,5800],["2021-04-29",8919,65,5865],["2021-04-30",8919,69,5934],["2021-05-01",8919,9,5943],["2021-05-02",8919,4,5947],["2021-05-03",8919,19,5966],["2021-05-04",8919,12,5978],["2021-05-05",8919,66,6044],["2021-05-06",8919,46,6090],["2021-05-07",8919,18,6108],["2021-05-08",8919,4,6112],["2021-05-09",8919,3,6115],["2021-05-10",8919,14,6129],["2021-05-11",8919,22,6151],["2021-05-12",8919,48,6199],["2021-05-13",8919,31,6230],["2021-05-14",8919,12,6242],["2021-05-15",8919,8,6250],["2021-05-16",8919,9,6259],["2021-05-17",8919,21,6280],["2021-05-18",8919,18,6298],["2021-05-19",8919,25,6323],["2021-05-20",8919,75,6398],["2021-05-21",8919,20,6418],["2021-05-22",8919,7,6425],["2021-05-23",8919,5,6430],["2021-05-24",8919,10,6440],["2021-05-25",8919,32,6472],["2021-05-26",8919,13,6485],["2021-05-27",8919,21,6506],["2021-05-28",8919,16,6522],["2021-05-29",8919,7,6529],["2021-05-30",8919,1,6530],["2021-05-31",8919,4,6534],["2021-06-01",8919,17,6551],["2021-06-02",8919,63,6614],["2021-06-03",8919,28,6642],["2021-06-04",8919,11,6653],["2021-06-05",8919,6,6659],["2021-06-06",8919,10,6669],["2021-06-07",8919,10,6679],["2021-06-08",8919,14,6693],["2021-06-09",8919,21,6714],["2021-06-10",8919,22,6736],["2021-06-11",8919,9,6745],["2021-06-12",8919,6,6751],["2021-06-13",8919,3,6754],["2021-06-14",8919,8,6762],["2021-06-15",8919,6,6768],["2021-06-16",8919,19,6787],["2021-06-17",8919,23,6810],["2021-06-18",8919,14,6824],["2021-06-19",8919,4,6828],["2021-06-20",8919,3,6831],["2021-06-21",8919,5,6836],["2021-06-22",8919,7,6843],["2021-06-23",8919,29,6872],["2021-06-24",8919,12,6884],["2021-06-25",8919,9,6893],["2021-06-26",8919,3,6896],["2021-06-27",8919,3,6899],["2021-06-28",8919,9,6908],["2021-06-29",8919,13,6921],["2021-06-30",8919,19,6940],["2021-07-01",8919,26,6966],["2021-07-02",8919,9,6975],["2021-07-03",8919,5,6980],["2021-07-05",8919,10,6990],["2021-07-06",8919,4,6994],["2021-07-07",8919,4,6998],["2021-07-08",8919,13,7011],["2021-07-09",8919,7,7018],["2021-07-10",8919,7,7025],["2021-07-11",8919,3,7028],["2021-07-12",8919,4,7032],["2021-07-13",8919,13,7045],["2021-07-14",8919,8,7053],["2021-07-15",8919,11,7064],["2021-07-16",8919,9,7073],["2021-07-17",8919,3,7076],["2021-07-18",8919,1,7077],["2021-07-19",8919,10,7087],["2021-07-20",8919,7,7094],["2021-07-21",8919,30,7124],["2021-07-22",8919,32,7156],["2021-07-23",8919,16,7172],["2021-07-24",8919,19,7191],["2021-07-25",8919,6,7197],["2021-07-26",8919,19,7216],["2021-07-27",8919,17,7233],["2021-07-28",8919,18,7251],["2021-07-29",8919,59,7310],["2021-07-30",8919,23,7333],["2021-07-31",8919,22,7355],["2021-08-01",8919,12,7367],["2021-08-02",8919,22,7389],["2021-08-03",8919,25,7414],["2021-08-04",8919,19,7433],["2021-08-05",8919,35,7468],["2021-08-06",8919,19,7487],["2021-08-07",8919,5,7492],["2021-08-08",8919,7,7499],["2021-08-09",8919,20,7519],["2021-08-10",8919,26,7545],["2021-08-11",8919,22,7567],["2021-08-12",8919,30,7597],["2021-08-13",8919,27,7624],["2021-08-14",8919,13,7637],["2021-08-15",8919,9,7646],["2021-08-16",8919,27,7673],["2021-08-17",8919,19,7692],["2021-08-18",8919,49,7741],["2021-08-19",8919,72,7813],["2021-08-20",8919,26,7839],["2021-08-21",8919,15,7854],["2021-08-22",8919,9,7863],["2021-08-23",8919,22,7885],["2021-08-24",8919,37,7922],["2021-08-25",8919,25,7947],["2021-08-26",8919,65,8012],["2021-08-27",8919,25,8037],["2021-08-28",8919,15,8052],["2021-08-29",8919,15,8067],["2021-08-30",8919,24,8091],["2021-08-31",8919,31,8122],["2021-09-01",8919,34,8156],["2021-09-02",8919,66,8222],["2021-09-03",8919,24,8246],["2021-09-04",8919,12,8258],["2021-09-05",8919,9,8267],["2021-09-06",8919,9,8276],["2021-09-07",8919,21,8297],["2021-09-08",8919,35,8332],["2021-09-09",8919,45,8377],["2021-09-10",8919,22,8399],["2021-09-11",8919,7,8406],["2021-09-12",8919,8,8414],["2021-09-13",8919,17,8431],["2021-09-14",8919,22,8453],["2021-09-15",8919,46,8499],["2021-09-16",8919,59,8558],["2021-09-17",8919,23,8581],["2021-09-18",8919,8,8589],["2021-09-19",8919,5,8594],["2021-09-20",8919,11,8605],["2021-09-21",8919,19,8624],["2021-09-22",8919,8,8632],["2021-09-23",8919,38,8670],["2021-09-24",8919,16,8686],["2021-09-25",8919,3,8689],["2021-09-26",8919,3,8692],["2021-09-27",8919,9,8701],["2021-09-28",8919,18,8719],["2021-09-29",8919,42,8761],["2021-09-30",8919,34,8795],["2021-10-01",8919,26,8821],["2021-10-02",8919,8,8829],["2021-10-03",8919,3,8832],["2021-10-04",8919,16,8848],["2021-10-05",8919,10,8858],["2021-10-06",8919,14,8872],["2021-10-07",8919,34,8906],["2021-10-08",8919,9,8915],["2021-10-09",8919,3,8918],["2021-10-10",8919,3,8921],["2021-10-11",8919,7,8928],["2021-10-12",8919,13,8941],["2021-10-13",8919,22,8963],["2021-10-14",8919,14,8977],["2021-10-15",8919,15,8992],["2021-10-16",8919,2,8994],["2021-10-17",8919,3,8997],["2021-10-18",8919,5,9002],["2021-10-19",8919,8,9010],["2021-10-20",8919,14,9024],["2021-10-21",8919,14,9038],["2021-10-22",8919,14,9052],["2021-10-23",8919,7,9059],["2021-10-24",8919,3,9062],["2021-10-25",8919,6,9068],["2021-10-26",8919,17,9085],["2021-10-27",8919,150,9235],["2021-10-28",8919,105,9340],["2021-10-29",8919,15,9355],["2021-10-30",8919,3,9358],["2021-10-31",8919,5,9363],["2021-11-01",8919,14,9377],["2021-11-02",8919,8,9385],["2021-11-03",8919,118,9503],["2021-11-04",8919,109,9612],["2021-11-05",8919,14,9626],["2021-11-06",8919,5,9631],["2021-11-07",8919,8,9639],["2021-11-08",8919,21,9660],["2021-11-09",8919,14,9674],["2021-11-10",8919,89,9763],["2021-11-11",8919,8,9771],["2021-11-12",8919,23,9794],["2021-11-13",8919,8,9802],["2021-11-14",8919,4,9806],["2021-11-15",8919,24,9830],["2021-11-16",8919,14,9844],["2021-11-17",8919,78,9922],["2021-11-18",8919,89,10011],["2021-11-19",8919,14,10025],["2021-11-20",8919,7,10032],["2021-11-21",8919,5,10037],["2021-11-22",8919,14,10051],["2021-11-23",8919,20,10071],["2021-11-24",8919,12,10083],["2021-11-26",8919,5,10088],["2021-11-27",8919,2,10090],["2021-11-28",8919,5,10095],["2021-11-29",8919,13,10108],["2021-11-30",8919,21,10129],["2021-12-01",8919,68,10197],["2021-12-02",8919,74,10271],["2021-12-03",8919,24,10295],["2021-12-04",8919,4,10299],["2021-12-05",8919,1,10300],["2021-12-06",8919,11,10311],["2021-12-07",8919,13,10324],["2021-12-08",8919,105,10429],["2021-12-09",8919,54,10483],["2021-12-10",8919,24,10507],["2021-12-11",8919,7,10514],["2021-12-12",8919,9,10523],["2021-12-13",8919,7,10530],["2021-12-14",8919,10,10540],["2021-12-15",8919,60,10600],["2021-12-16",8919,57,10657],["2021-12-17",8919,13,10670],["2021-12-18",8919,4,10674],["2021-12-19",8919,5,10679],["2021-12-20",8919,14,10693],["2021-12-21",8919,18,10711],["2021-12-22",8919,20,10731],["2021-12-23",8919,45,10776],["2021-12-26",8919,2,10778],["2021-12-27",8919,15,10793],["2021-12-28",8919,24,10817],["2021-12-29",8919,80,10897],["2021-12-30",8919,76,10973],["2021-12-31",8919,8,10981],["2022-01-01",8919,1,10982],["2022-01-02",8919,2,10984],["2022-01-03",8919,5,10989]]} \ No newline at end of file diff --git a/public/data/overall/vaccinations/by-county/Worth.json b/public/data/overall/vaccinations/by-county/Worth.json new file mode 100644 index 000000000..fa1d08a46 --- /dev/null +++ b/public/data/overall/vaccinations/by-county/Worth.json @@ -0,0 +1 @@ +{"segment":{"county":"Worth"},"headers":["report_date","population","vaccinations","total_vaccinations"],"rows":[["2020-12-12",20142,1,1],["2020-12-17",20142,10,11],["2020-12-18",20142,26,37],["2020-12-19",20142,7,44],["2020-12-20",20142,2,46],["2020-12-21",20142,10,56],["2020-12-22",20142,13,69],["2020-12-23",20142,46,115],["2020-12-24",20142,7,122],["2020-12-26",20142,1,123],["2020-12-27",20142,2,125],["2020-12-28",20142,21,146],["2020-12-29",20142,30,176],["2020-12-30",20142,34,210],["2020-12-31",20142,19,229],["2021-01-01",20142,1,230],["2021-01-02",20142,3,233],["2021-01-03",20142,2,235],["2021-01-04",20142,17,252],["2021-01-05",20142,35,287],["2021-01-06",20142,36,323],["2021-01-07",20142,29,352],["2021-01-08",20142,50,402],["2021-01-09",20142,46,448],["2021-01-11",20142,153,601],["2021-01-12",20142,120,721],["2021-01-13",20142,161,882],["2021-01-14",20142,182,1064],["2021-01-15",20142,121,1185],["2021-01-16",20142,32,1217],["2021-01-17",20142,5,1222],["2021-01-18",20142,195,1417],["2021-01-19",20142,228,1645],["2021-01-20",20142,193,1838],["2021-01-21",20142,218,2056],["2021-01-22",20142,90,2146],["2021-01-23",20142,47,2193],["2021-01-24",20142,1,2194],["2021-01-25",20142,153,2347],["2021-01-26",20142,167,2514],["2021-01-27",20142,99,2613],["2021-01-28",20142,147,2760],["2021-01-29",20142,46,2806],["2021-01-30",20142,57,2863],["2021-01-31",20142,4,2867],["2021-02-01",20142,144,3011],["2021-02-02",20142,145,3156],["2021-02-03",20142,145,3301],["2021-02-04",20142,192,3493],["2021-02-05",20142,72,3565],["2021-02-06",20142,73,3638],["2021-02-07",20142,11,3649],["2021-02-08",20142,204,3853],["2021-02-09",20142,242,4095],["2021-02-10",20142,224,4319],["2021-02-11",20142,221,4540],["2021-02-12",20142,107,4647],["2021-02-13",20142,15,4662],["2021-02-14",20142,7,4669],["2021-02-15",20142,176,4845],["2021-02-16",20142,200,5045],["2021-02-17",20142,146,5191],["2021-02-18",20142,201,5392],["2021-02-19",20142,90,5482],["2021-02-20",20142,49,5531],["2021-02-21",20142,13,5544],["2021-02-22",20142,111,5655],["2021-02-23",20142,126,5781],["2021-02-24",20142,100,5881],["2021-02-25",20142,142,6023],["2021-02-26",20142,57,6080],["2021-02-27",20142,6,6086],["2021-02-28",20142,4,6090],["2021-03-01",20142,125,6215],["2021-03-02",20142,121,6336],["2021-03-03",20142,86,6422],["2021-03-04",20142,124,6546],["2021-03-05",20142,43,6589],["2021-03-06",20142,38,6627],["2021-03-07",20142,3,6630],["2021-03-08",20142,57,6687],["2021-03-09",20142,125,6812],["2021-03-10",20142,91,6903],["2021-03-11",20142,61,6964],["2021-03-12",20142,169,7133],["2021-03-13",20142,27,7160],["2021-03-14",20142,18,7178],["2021-03-15",20142,57,7235],["2021-03-16",20142,191,7426],["2021-03-17",20142,116,7542],["2021-03-18",20142,64,7606],["2021-03-19",20142,64,7670],["2021-03-20",20142,33,7703],["2021-03-21",20142,11,7714],["2021-03-22",20142,56,7770],["2021-03-23",20142,144,7914],["2021-03-24",20142,92,8006],["2021-03-25",20142,83,8089],["2021-03-26",20142,85,8174],["2021-03-27",20142,15,8189],["2021-03-28",20142,9,8198],["2021-03-29",20142,52,8250],["2021-03-30",20142,195,8445],["2021-03-31",20142,134,8579],["2021-04-01",20142,87,8666],["2021-04-02",20142,105,8771],["2021-04-03",20142,26,8797],["2021-04-04",20142,3,8800],["2021-04-05",20142,62,8862],["2021-04-06",20142,167,9029],["2021-04-07",20142,135,9164],["2021-04-08",20142,89,9253],["2021-04-09",20142,73,9326],["2021-04-10",20142,24,9350],["2021-04-11",20142,16,9366],["2021-04-12",20142,66,9432],["2021-04-13",20142,184,9616],["2021-04-14",20142,59,9675],["2021-04-15",20142,49,9724],["2021-04-16",20142,137,9861],["2021-04-17",20142,29,9890],["2021-04-18",20142,4,9894],["2021-04-19",20142,53,9947],["2021-04-20",20142,167,10114],["2021-04-21",20142,87,10201],["2021-04-22",20142,67,10268],["2021-04-23",20142,74,10342],["2021-04-24",20142,7,10349],["2021-04-25",20142,7,10356],["2021-04-26",20142,31,10387],["2021-04-27",20142,184,10571],["2021-04-28",20142,48,10619],["2021-04-29",20142,63,10682],["2021-04-30",20142,37,10719],["2021-05-01",20142,30,10749],["2021-05-02",20142,22,10771],["2021-05-03",20142,22,10793],["2021-05-04",20142,69,10862],["2021-05-05",20142,99,10961],["2021-05-06",20142,57,11018],["2021-05-07",20142,28,11046],["2021-05-08",20142,17,11063],["2021-05-09",20142,8,11071],["2021-05-10",20142,24,11095],["2021-05-11",20142,59,11154],["2021-05-12",20142,69,11223],["2021-05-13",20142,38,11261],["2021-05-14",20142,36,11297],["2021-05-15",20142,20,11317],["2021-05-16",20142,8,11325],["2021-05-17",20142,23,11348],["2021-05-18",20142,57,11405],["2021-05-19",20142,78,11483],["2021-05-20",20142,57,11540],["2021-05-21",20142,30,11570],["2021-05-22",20142,22,11592],["2021-05-23",20142,8,11600],["2021-05-24",20142,30,11630],["2021-05-25",20142,63,11693],["2021-05-26",20142,29,11722],["2021-05-27",20142,29,11751],["2021-05-28",20142,24,11775],["2021-05-29",20142,4,11779],["2021-05-30",20142,9,11788],["2021-05-31",20142,8,11796],["2021-06-01",20142,48,11844],["2021-06-02",20142,26,11870],["2021-06-03",20142,43,11913],["2021-06-04",20142,22,11935],["2021-06-05",20142,19,11954],["2021-06-06",20142,17,11971],["2021-06-07",20142,18,11989],["2021-06-08",20142,28,12017],["2021-06-09",20142,25,12042],["2021-06-10",20142,36,12078],["2021-06-11",20142,20,12098],["2021-06-12",20142,14,12112],["2021-06-13",20142,3,12115],["2021-06-14",20142,26,12141],["2021-06-15",20142,53,12194],["2021-06-16",20142,26,12220],["2021-06-17",20142,31,12251],["2021-06-18",20142,23,12274],["2021-06-19",20142,6,12280],["2021-06-20",20142,9,12289],["2021-06-21",20142,16,12305],["2021-06-22",20142,34,12339],["2021-06-23",20142,19,12358],["2021-06-24",20142,33,12391],["2021-06-25",20142,17,12408],["2021-06-26",20142,13,12421],["2021-06-28",20142,16,12437],["2021-06-29",20142,40,12477],["2021-06-30",20142,15,12492],["2021-07-01",20142,41,12533],["2021-07-02",20142,21,12554],["2021-07-03",20142,4,12558],["2021-07-04",20142,2,12560],["2021-07-05",20142,10,12570],["2021-07-06",20142,31,12601],["2021-07-07",20142,15,12616],["2021-07-08",20142,15,12631],["2021-07-09",20142,26,12657],["2021-07-10",20142,5,12662],["2021-07-11",20142,2,12664],["2021-07-12",20142,24,12688],["2021-07-13",20142,33,12721],["2021-07-14",20142,25,12746],["2021-07-15",20142,30,12776],["2021-07-16",20142,19,12795],["2021-07-17",20142,19,12814],["2021-07-18",20142,5,12819],["2021-07-19",20142,12,12831],["2021-07-20",20142,38,12869],["2021-07-21",20142,24,12893],["2021-07-22",20142,35,12928],["2021-07-23",20142,30,12958],["2021-07-24",20142,19,12977],["2021-07-25",20142,7,12984],["2021-07-26",20142,21,13005],["2021-07-27",20142,65,13070],["2021-07-28",20142,45,13115],["2021-07-29",20142,85,13200],["2021-07-30",20142,49,13249],["2021-07-31",20142,21,13270],["2021-08-01",20142,8,13278],["2021-08-02",20142,29,13307],["2021-08-03",20142,77,13384],["2021-08-04",20142,37,13421],["2021-08-05",20142,82,13503],["2021-08-06",20142,57,13560],["2021-08-07",20142,36,13596],["2021-08-08",20142,20,13616],["2021-08-09",20142,39,13655],["2021-08-10",20142,89,13744],["2021-08-11",20142,64,13808],["2021-08-12",20142,80,13888],["2021-08-13",20142,46,13934],["2021-08-14",20142,35,13969],["2021-08-15",20142,31,14000],["2021-08-16",20142,49,14049],["2021-08-17",20142,109,14158],["2021-08-18",20142,78,14236],["2021-08-19",20142,99,14335],["2021-08-20",20142,70,14405],["2021-08-21",20142,31,14436],["2021-08-22",20142,13,14449],["2021-08-23",20142,45,14494],["2021-08-24",20142,117,14611],["2021-08-25",20142,50,14661],["2021-08-26",20142,124,14785],["2021-08-27",20142,74,14859],["2021-08-28",20142,46,14905],["2021-08-29",20142,23,14928],["2021-08-30",20142,54,14982],["2021-08-31",20142,114,15096],["2021-09-01",20142,74,15170],["2021-09-02",20142,74,15244],["2021-09-03",20142,82,15326],["2021-09-04",20142,40,15366],["2021-09-05",20142,20,15386],["2021-09-06",20142,17,15403],["2021-09-07",20142,88,15491],["2021-09-08",20142,59,15550],["2021-09-09",20142,102,15652],["2021-09-10",20142,65,15717],["2021-09-11",20142,28,15745],["2021-09-12",20142,29,15774],["2021-09-13",20142,40,15814],["2021-09-14",20142,66,15880],["2021-09-15",20142,41,15921],["2021-09-16",20142,56,15977],["2021-09-17",20142,47,16024],["2021-09-18",20142,32,16056],["2021-09-19",20142,8,16064],["2021-09-20",20142,24,16088],["2021-09-21",20142,72,16160],["2021-09-22",20142,31,16191],["2021-09-23",20142,66,16257],["2021-09-24",20142,55,16312],["2021-09-25",20142,27,16339],["2021-09-26",20142,11,16350],["2021-09-27",20142,27,16377],["2021-09-28",20142,65,16442],["2021-09-29",20142,118,16560],["2021-09-30",20142,101,16661],["2021-10-01",20142,49,16710],["2021-10-02",20142,27,16737],["2021-10-03",20142,6,16743],["2021-10-04",20142,114,16857],["2021-10-05",20142,77,16934],["2021-10-06",20142,62,16996],["2021-10-07",20142,86,17082],["2021-10-08",20142,63,17145],["2021-10-09",20142,14,17159],["2021-10-10",20142,10,17169],["2021-10-11",20142,51,17220],["2021-10-12",20142,67,17287],["2021-10-13",20142,55,17342],["2021-10-14",20142,73,17415],["2021-10-15",20142,36,17451],["2021-10-16",20142,16,17467],["2021-10-17",20142,8,17475],["2021-10-18",20142,15,17490],["2021-10-19",20142,35,17525],["2021-10-20",20142,18,17543],["2021-10-21",20142,31,17574],["2021-10-22",20142,25,17599],["2021-10-23",20142,13,17612],["2021-10-24",20142,10,17622],["2021-10-25",20142,26,17648],["2021-10-26",20142,44,17692],["2021-10-27",20142,50,17742],["2021-10-28",20142,78,17820],["2021-10-29",20142,45,17865],["2021-10-30",20142,10,17875],["2021-10-31",20142,6,17881],["2021-11-01",20142,23,17904],["2021-11-02",20142,75,17979],["2021-11-03",20142,68,18047],["2021-11-04",20142,58,18105],["2021-11-05",20142,43,18148],["2021-11-06",20142,26,18174],["2021-11-07",20142,3,18177],["2021-11-08",20142,18,18195],["2021-11-09",20142,63,18258],["2021-11-10",20142,56,18314],["2021-11-11",20142,39,18353],["2021-11-12",20142,32,18385],["2021-11-13",20142,18,18403],["2021-11-14",20142,4,18407],["2021-11-15",20142,28,18435],["2021-11-16",20142,88,18523],["2021-11-17",20142,72,18595],["2021-11-18",20142,78,18673],["2021-11-19",20142,37,18710],["2021-11-20",20142,24,18734],["2021-11-21",20142,11,18745],["2021-11-22",20142,29,18774],["2021-11-23",20142,68,18842],["2021-11-24",20142,42,18884],["2021-11-26",20142,19,18903],["2021-11-27",20142,20,18923],["2021-11-28",20142,7,18930],["2021-11-29",20142,29,18959],["2021-11-30",20142,55,19014],["2021-12-01",20142,60,19074],["2021-12-02",20142,70,19144],["2021-12-03",20142,60,19204],["2021-12-04",20142,24,19228],["2021-12-05",20142,11,19239],["2021-12-06",20142,23,19262],["2021-12-07",20142,74,19336],["2021-12-08",20142,55,19391],["2021-12-09",20142,78,19469],["2021-12-10",20142,59,19528],["2021-12-11",20142,19,19547],["2021-12-12",20142,8,19555],["2021-12-13",20142,29,19584],["2021-12-14",20142,34,19618],["2021-12-15",20142,38,19656],["2021-12-16",20142,44,19700],["2021-12-17",20142,52,19752],["2021-12-18",20142,9,19761],["2021-12-19",20142,5,19766],["2021-12-20",20142,33,19799],["2021-12-21",20142,62,19861],["2021-12-22",20142,31,19892],["2021-12-23",20142,30,19922],["2021-12-24",20142,9,19931],["2021-12-26",20142,10,19941],["2021-12-27",20142,20,19961],["2021-12-28",20142,68,20029],["2021-12-29",20142,34,20063],["2021-12-30",20142,88,20151],["2021-12-31",20142,28,20179],["2022-01-01",20142,6,20185],["2022-01-02",20142,16,20201],["2022-01-03",20142,16,20217]]} \ No newline at end of file diff --git a/public/data/overall/vaccinations/combined.json b/public/data/overall/vaccinations/combined.json new file mode 100644 index 000000000..1c467edca --- /dev/null +++ b/public/data/overall/vaccinations/combined.json @@ -0,0 +1 @@ +{"segment":{"report_date":[null]},"headers":["county","report_date","population","vaccinations","total_vaccinations"],"rows":[["-- All --","2020-12-12",10833472,21,21],["-- All --","2020-12-13",10833472,7,28],["-- All --","2020-12-14",10833472,26,54],["-- All --","2020-12-15",10833472,181,235],["-- All --","2020-12-16",10833472,726,961],["-- All --","2020-12-17",10833472,2385,3346],["-- All --","2020-12-18",10833472,6425,9771],["-- All --","2020-12-19",10833472,4203,13974],["-- All --","2020-12-20",10833472,3252,17226],["-- All --","2020-12-21",10833472,6317,23543],["-- All --","2020-12-22",10833472,11250,34793],["-- All --","2020-12-23",10833472,14620,49413],["-- All --","2020-12-24",10833472,3811,53224],["-- All --","2020-12-25",10833472,111,53335],["-- All --","2020-12-26",10833472,1873,55208],["-- All --","2020-12-27",10833472,1748,56956],["-- All --","2020-12-28",10833472,15440,72396],["-- All --","2020-12-29",10833472,16899,89295],["-- All --","2020-12-30",10833472,16685,105980],["-- All --","2020-12-31",10833472,8384,114364],["-- All --","2021-01-01",10833472,4041,118405],["-- All --","2021-01-02",10833472,2185,120590],["-- All --","2021-01-03",10833472,2972,123562],["-- All --","2021-01-04",10833472,15781,139343],["-- All --","2021-01-05",10833472,17759,157102],["-- All --","2021-01-06",10833472,19663,176765],["-- All --","2021-01-07",10833472,20499,197264],["-- All --","2021-01-08",10833472,22546,219810],["-- All --","2021-01-09",10833472,10166,229976],["-- All --","2021-01-10",10833472,6235,236211],["-- All --","2021-01-11",10833472,34821,271032],["-- All --","2021-01-12",10833472,40912,311944],["-- All --","2021-01-13",10833472,48794,360738],["-- All --","2021-01-14",10833472,49063,409801],["-- All --","2021-01-15",10833472,43083,452884],["-- All --","2021-01-16",10833472,22870,475754],["-- All --","2021-01-17",10833472,9452,485206],["-- All --","2021-01-18",10833472,44523,529729],["-- All --","2021-01-19",10833472,51070,580799],["-- All --","2021-01-20",10833472,56085,636884],["-- All --","2021-01-21",10833472,50789,687673],["-- All --","2021-01-22",10833472,42321,729994],["-- All --","2021-01-23",10833472,14456,744450],["-- All --","2021-01-24",10833472,7361,751811],["-- All --","2021-01-25",10833472,43278,795089],["-- All --","2021-01-26",10833472,43665,838754],["-- All --","2021-01-27",10833472,49533,888287],["-- All --","2021-01-28",10833472,53444,941731],["-- All --","2021-01-29",10833472,47029,988760],["-- All --","2021-01-30",10833472,14990,1003750],["-- All --","2021-01-31",10833472,5732,1009482],["-- All --","2021-02-01",10833472,43742,1053224],["-- All --","2021-02-02",10833472,42167,1095391],["-- All --","2021-02-03",10833472,46857,1142248],["-- All --","2021-02-04",10833472,52259,1194507],["-- All --","2021-02-05",10833472,44294,1238801],["-- All --","2021-02-06",10833472,15927,1254728],["-- All --","2021-02-07",10833472,5433,1260161],["-- All --","2021-02-08",10833472,45388,1305549],["-- All --","2021-02-09",10833472,52768,1358317],["-- All --","2021-02-10",10833472,56577,1414894],["-- All --","2021-02-11",10833472,57550,1472444],["-- All --","2021-02-12",10833472,53633,1526077],["-- All --","2021-02-13",10833472,28430,1554507],["-- All --","2021-02-14",10833472,9549,1564056],["-- All --","2021-02-15",10833472,53653,1617709],["-- All --","2021-02-16",10833472,52891,1670600],["-- All --","2021-02-17",10833472,62889,1733489],["-- All --","2021-02-18",10833472,56895,1790384],["-- All --","2021-02-19",10833472,49892,1840276],["-- All --","2021-02-20",10833472,18582,1858858],["-- All --","2021-02-21",10833472,5986,1864844],["-- All --","2021-02-22",10833472,34369,1899213],["-- All --","2021-02-23",10833472,47914,1947127],["-- All --","2021-02-24",10833472,56498,2003625],["-- All --","2021-02-25",10833472,70897,2074522],["-- All --","2021-02-26",10833472,67309,2141831],["-- All --","2021-02-27",10833472,20113,2161944],["-- All --","2021-02-28",10833472,9031,2170975],["-- All --","2021-03-01",10833472,54149,2225124],["-- All --","2021-03-02",10833472,56586,2281710],["-- All --","2021-03-03",10833472,61363,2343073],["-- All --","2021-03-04",10833472,60349,2403422],["-- All --","2021-03-05",10833472,58120,2461542],["-- All --","2021-03-06",10833472,20511,2482053],["-- All --","2021-03-07",10833472,10694,2492747],["-- All --","2021-03-08",10833472,59432,2552179],["-- All --","2021-03-09",10833472,65523,2617702],["-- All --","2021-03-10",10833472,75019,2692721],["-- All --","2021-03-11",10833472,75882,2768603],["-- All --","2021-03-12",10833472,75252,2843855],["-- All --","2021-03-13",10833472,33870,2877725],["-- All --","2021-03-14",10833472,15192,2892917],["-- All --","2021-03-15",10833472,72480,2965397],["-- All --","2021-03-16",10833472,85714,3051111],["-- All --","2021-03-17",10833472,91328,3142439],["-- All --","2021-03-18",10833472,79715,3222154],["-- All --","2021-03-19",10833472,88856,3311010],["-- All --","2021-03-20",10833472,34554,3345564],["-- All --","2021-03-21",10833472,17578,3363142],["-- All --","2021-03-22",10833472,70838,3433980],["-- All --","2021-03-23",10833472,83707,3517687],["-- All --","2021-03-24",10833472,92263,3609950],["-- All --","2021-03-25",10833472,105071,3715021],["-- All --","2021-03-26",10833472,94705,3809726],["-- All --","2021-03-27",10833472,43677,3853403],["-- All --","2021-03-28",10833472,23319,3876722],["-- All --","2021-03-29",10833472,86161,3962883],["-- All --","2021-03-30",10833472,114736,4077619],["-- All --","2021-03-31",10833472,119896,4197515],["-- All --","2021-04-01",10833472,123281,4320796],["-- All --","2021-04-02",10833472,90102,4410898],["-- All --","2021-04-03",10833472,40028,4450926],["-- All --","2021-04-04",10833472,19289,4470215],["-- All --","2021-04-05",10833472,90754,4560969],["-- All --","2021-04-06",10833472,113640,4674609],["-- All --","2021-04-07",10833472,114491,4789100],["-- All --","2021-04-08",10833472,106885,4895985],["-- All --","2021-04-09",10833472,108442,5004427],["-- All --","2021-04-10",10833472,54366,5058793],["-- All --","2021-04-11",10833472,23336,5082129],["-- All --","2021-04-12",10833472,96085,5178214],["-- All --","2021-04-13",10833472,102447,5280661],["-- All --","2021-04-14",10833472,108385,5389046],["-- All --","2021-04-15",10833472,104136,5493182],["-- All --","2021-04-16",10833472,98358,5591540],["-- All --","2021-04-17",10833472,40809,5632349],["-- All --","2021-04-18",10833472,28636,5660985],["-- All --","2021-04-19",10833472,84050,5745035],["-- All --","2021-04-20",10833472,98490,5843525],["-- All --","2021-04-21",10833472,100202,5943727],["-- All --","2021-04-22",10833472,98022,6041749],["-- All --","2021-04-23",10833472,95436,6137185],["-- All --","2021-04-24",10833472,41001,6178186],["-- All --","2021-04-25",10833472,18198,6196384],["-- All --","2021-04-26",10833472,71251,6267635],["-- All --","2021-04-27",10833472,79324,6346959],["-- All --","2021-04-28",10833472,92082,6439041],["-- All --","2021-04-29",10833472,82628,6521669],["-- All --","2021-04-30",10833472,86784,6608453],["-- All --","2021-05-01",10833472,48332,6656785],["-- All --","2021-05-02",10833472,16112,6672897],["-- All --","2021-05-03",10833472,51325,6724222],["-- All --","2021-05-04",10833472,64803,6789025],["-- All --","2021-05-05",10833472,65848,6854873],["-- All --","2021-05-06",10833472,59013,6913886],["-- All --","2021-05-07",10833472,62610,6976496],["-- All --","2021-05-08",10833472,28213,7004709],["-- All --","2021-05-09",10833472,10897,7015606],["-- All --","2021-05-10",10833472,37694,7053300],["-- All --","2021-05-11",10833472,49465,7102765],["-- All --","2021-05-12",10833472,47481,7150246],["-- All --","2021-05-13",10833472,48696,7198942],["-- All --","2021-05-14",10833472,52508,7251450],["-- All --","2021-05-15",10833472,35795,7287245],["-- All --","2021-05-16",10833472,19565,7306810],["-- All --","2021-05-17",10833472,42761,7349571],["-- All --","2021-05-18",10833472,48891,7398462],["-- All --","2021-05-19",10833472,49795,7448257],["-- All --","2021-05-20",10833472,44426,7492683],["-- All --","2021-05-21",10833472,45506,7538189],["-- All --","2021-05-22",10833472,29421,7567610],["-- All --","2021-05-23",10833472,14380,7581990],["-- All --","2021-05-24",10833472,27869,7609859],["-- All --","2021-05-25",10833472,33775,7643634],["-- All --","2021-05-26",10833472,35184,7678818],["-- All --","2021-05-27",10833472,31555,7710373],["-- All --","2021-05-28",10833472,30984,7741357],["-- All --","2021-05-29",10833472,16350,7757707],["-- All --","2021-05-30",10833472,10220,7767927],["-- All --","2021-05-31",10833472,4657,7772584],["-- All --","2021-06-01",10833472,36105,7808689],["-- All --","2021-06-02",10833472,32524,7841213],["-- All --","2021-06-03",10833472,32503,7873716],["-- All --","2021-06-04",10833472,35570,7909286],["-- All --","2021-06-05",10833472,25161,7934447],["-- All --","2021-06-06",10833472,15424,7949871],["-- All --","2021-06-07",10833472,28586,7978457],["-- All --","2021-06-08",10833472,29657,8008114],["-- All --","2021-06-09",10833472,27896,8036010],["-- All --","2021-06-10",10833472,28901,8064911],["-- All --","2021-06-11",10833472,30672,8095583],["-- All --","2021-06-12",10833472,22107,8117690],["-- All --","2021-06-13",10833472,10007,8127697],["-- All --","2021-06-14",10833472,22745,8150442],["-- All --","2021-06-15",10833472,24443,8174885],["-- All --","2021-06-16",10833472,23135,8198020],["-- All --","2021-06-17",10833472,22708,8220728],["-- All --","2021-06-18",10833472,24350,8245078],["-- All --","2021-06-19",10833472,14563,8259641],["-- All --","2021-06-20",10833472,8297,8267938],["-- All --","2021-06-21",10833472,14815,8282753],["-- All --","2021-06-22",10833472,20818,8303571],["-- All --","2021-06-23",10833472,20986,8324557],["-- All --","2021-06-24",10833472,18647,8343204],["-- All --","2021-06-25",10833472,21103,8364307],["-- All --","2021-06-26",10833472,14507,8378814],["-- All --","2021-06-27",10833472,8871,8387685],["-- All --","2021-06-28",10833472,15865,8403550],["-- All --","2021-06-29",10833472,17463,8421013],["-- All --","2021-06-30",10833472,17342,8438355],["-- All --","2021-07-01",10833472,16732,8455087],["-- All --","2021-07-02",10833472,17423,8472510],["-- All --","2021-07-03",10833472,11824,8484334],["-- All --","2021-07-04",10833472,1199,8485533],["-- All --","2021-07-05",10833472,12214,8497747],["-- All --","2021-07-06",10833472,15491,8513238],["-- All --","2021-07-07",10833472,15949,8529187],["-- All --","2021-07-08",10833472,15472,8544659],["-- All --","2021-07-09",10833472,17726,8562385],["-- All --","2021-07-10",10833472,11942,8574327],["-- All --","2021-07-11",10833472,7409,8581736],["-- All --","2021-07-12",10833472,14573,8596309],["-- All --","2021-07-13",10833472,15134,8611443],["-- All --","2021-07-14",10833472,15533,8626976],["-- All --","2021-07-15",10833472,15836,8642812],["-- All --","2021-07-16",10833472,17915,8660727],["-- All --","2021-07-17",10833472,12554,8673281],["-- All --","2021-07-18",10833472,8226,8681507],["-- All --","2021-07-19",10833472,17509,8699016],["-- All --","2021-07-20",10833472,18361,8717377],["-- All --","2021-07-21",10833472,20220,8737597],["-- All --","2021-07-22",10833472,20571,8758168],["-- All --","2021-07-23",10833472,24330,8782498],["-- All --","2021-07-24",10833472,17900,8800398],["-- All --","2021-07-25",10833472,9586,8809984],["-- All --","2021-07-26",10833472,21605,8831589],["-- All --","2021-07-27",10833472,23901,8855490],["-- All --","2021-07-28",10833472,25570,8881060],["-- All --","2021-07-29",10833472,25310,8906370],["-- All --","2021-07-30",10833472,29492,8935862],["-- All --","2021-07-31",10833472,19664,8955526],["-- All --","2021-08-01",10833472,14118,8969644],["-- All --","2021-08-02",10833472,24995,8994639],["-- All --","2021-08-03",10833472,26120,9020759],["-- All --","2021-08-04",10833472,27235,9047994],["-- All --","2021-08-05",10833472,26808,9074802],["-- All --","2021-08-06",10833472,32576,9107378],["-- All --","2021-08-07",10833472,22654,9130032],["-- All --","2021-08-08",10833472,15885,9145917],["-- All --","2021-08-09",10833472,27373,9173290],["-- All --","2021-08-10",10833472,30315,9203605],["-- All --","2021-08-11",10833472,28860,9232465],["-- All --","2021-08-12",10833472,30385,9262850],["-- All --","2021-08-13",10833472,36771,9299621],["-- All --","2021-08-14",10833472,26016,9325637],["-- All --","2021-08-15",10833472,16391,9342028],["-- All --","2021-08-16",10833472,31806,9373834],["-- All --","2021-08-17",10833472,34315,9408149],["-- All --","2021-08-18",10833472,36012,9444161],["-- All --","2021-08-19",10833472,35772,9479933],["-- All --","2021-08-20",10833472,42829,9522762],["-- All --","2021-08-21",10833472,28229,9550991],["-- All --","2021-08-22",10833472,17050,9568041],["-- All --","2021-08-23",10833472,33991,9602032],["-- All --","2021-08-24",10833472,35336,9637368],["-- All --","2021-08-25",10833472,36695,9674063],["-- All --","2021-08-26",10833472,38538,9712601],["-- All --","2021-08-27",10833472,43605,9756206],["-- All --","2021-08-28",10833472,30834,9787040],["-- All --","2021-08-29",10833472,18561,9805601],["-- All --","2021-08-30",10833472,35641,9841242],["-- All --","2021-08-31",10833472,35442,9876684],["-- All --","2021-09-01",10833472,36947,9913631],["-- All --","2021-09-02",10833472,35976,9949607],["-- All --","2021-09-03",10833472,42820,9992427],["-- All --","2021-09-04",10833472,23576,10016003],["-- All --","2021-09-05",10833472,16406,10032409],["-- All --","2021-09-06",10833472,6102,10038511],["-- All --","2021-09-07",10833472,35922,10074433],["-- All --","2021-09-08",10833472,34001,10108434],["-- All --","2021-09-09",10833472,35041,10143475],["-- All --","2021-09-10",10833472,41452,10184927],["-- All --","2021-09-11",10833472,24634,10209561],["-- All --","2021-09-12",10833472,15932,10225493],["-- All --","2021-09-13",10833472,30926,10256419],["-- All --","2021-09-14",10833472,30363,10286782],["-- All --","2021-09-15",10833472,29059,10315841],["-- All --","2021-09-16",10833472,29237,10345078],["-- All --","2021-09-17",10833472,35067,10380145],["-- All --","2021-09-18",10833472,21768,10401913],["-- All --","2021-09-19",10833472,13286,10415199],["-- All --","2021-09-20",10833472,26350,10441549],["-- All --","2021-09-21",10833472,25303,10466852],["-- All --","2021-09-22",10833472,24767,10491619],["-- All --","2021-09-23",10833472,24046,10515665],["-- All --","2021-09-24",10833472,31702,10547367],["-- All --","2021-09-25",10833472,19621,10566988],["-- All --","2021-09-26",10833472,13243,10580231],["-- All --","2021-09-27",10833472,28045,10608276],["-- All --","2021-09-28",10833472,32208,10640484],["-- All --","2021-09-29",10833472,30643,10671127],["-- All --","2021-09-30",10833472,32315,10703442],["-- All --","2021-10-01",10833472,37412,10740854],["-- All --","2021-10-02",10833472,19524,10760378],["-- All --","2021-10-03",10833472,11295,10771673],["-- All --","2021-10-04",10833472,25764,10797437],["-- All --","2021-10-05",10833472,27945,10825382],["-- All --","2021-10-06",10833472,26537,10851919],["-- All --","2021-10-07",10833472,26145,10878064],["-- All --","2021-10-08",10833472,30427,10908491],["-- All --","2021-10-09",10833472,15570,10924061],["-- All --","2021-10-10",10833472,10343,10934404],["-- All --","2021-10-11",10833472,20450,10954854],["-- All --","2021-10-12",10833472,22783,10977637],["-- All --","2021-10-13",10833472,21717,10999354],["-- All --","2021-10-14",10833472,22258,11021612],["-- All --","2021-10-15",10833472,25762,11047374],["-- All --","2021-10-16",10833472,13745,11061119],["-- All --","2021-10-17",10833472,8008,11069127],["-- All --","2021-10-18",10833472,20825,11089952],["-- All --","2021-10-19",10833472,19574,11109526],["-- All --","2021-10-20",10833472,19241,11128767],["-- All --","2021-10-21",10833472,20469,11149236],["-- All --","2021-10-22",10833472,33086,11182322],["-- All --","2021-10-23",10833472,23267,11205589],["-- All --","2021-10-24",10833472,13503,11219092],["-- All --","2021-10-25",10833472,38296,11257388],["-- All --","2021-10-26",10833472,38480,11295868],["-- All --","2021-10-27",10833472,42094,11337962],["-- All --","2021-10-28",10833472,38433,11376395],["-- All --","2021-10-29",10833472,43175,11419570],["-- All --","2021-10-30",10833472,19849,11439419],["-- All --","2021-10-31",10833472,11196,11450615],["-- All --","2021-11-01",10833472,35779,11486394],["-- All --","2021-11-02",10833472,36489,11522883],["-- All --","2021-11-03",10833472,37744,11560627],["-- All --","2021-11-04",10833472,36345,11596972],["-- All --","2021-11-05",10833472,42328,11639300],["-- All --","2021-11-06",10833472,24260,11663560],["-- All --","2021-11-07",10833472,14307,11677867],["-- All --","2021-11-08",10833472,33126,11710993],["-- All --","2021-11-09",10833472,36772,11747765],["-- All --","2021-11-10",10833472,36283,11784048],["-- All --","2021-11-11",10833472,32486,11816534],["-- All --","2021-11-12",10833472,42482,11859016],["-- All --","2021-11-13",10833472,25778,11884794],["-- All --","2021-11-14",10833472,12835,11897629],["-- All --","2021-11-15",10833472,34721,11932350],["-- All --","2021-11-16",10833472,36680,11969030],["-- All --","2021-11-17",10833472,35786,12004816],["-- All --","2021-11-18",10833472,37220,12042036],["-- All --","2021-11-19",10833472,44351,12086387],["-- All --","2021-11-20",10833472,27396,12113783],["-- All --","2021-11-21",10833472,16221,12130004],["-- All --","2021-11-22",10833472,41227,12171231],["-- All --","2021-11-23",10833472,39381,12210612],["-- All --","2021-11-24",10833472,28237,12238849],["-- All --","2021-11-25",10833472,156,12239005],["-- All --","2021-11-26",10833472,29981,12268986],["-- All --","2021-11-27",10833472,21830,12290816],["-- All --","2021-11-28",10833472,15724,12306540],["-- All --","2021-11-29",10833472,40512,12347052],["-- All --","2021-11-30",10833472,46612,12393664],["-- All --","2021-12-01",10833472,50629,12444293],["-- All --","2021-12-02",10833472,51056,12495349],["-- All --","2021-12-03",10833472,57880,12553229],["-- All --","2021-12-04",10833472,35664,12588893],["-- All --","2021-12-05",10833472,16817,12605710],["-- All --","2021-12-06",10833472,40619,12646329],["-- All --","2021-12-07",10833472,42451,12688780],["-- All --","2021-12-08",10833472,40626,12729406],["-- All --","2021-12-09",10833472,41192,12770598],["-- All --","2021-12-10",10833472,47060,12817658],["-- All --","2021-12-11",10833472,26966,12844624],["-- All --","2021-12-12",10833472,15805,12860429],["-- All --","2021-12-13",10833472,33299,12893728],["-- All --","2021-12-14",10833472,35213,12928941],["-- All --","2021-12-15",10833472,33999,12962940],["-- All --","2021-12-16",10833472,33896,12996836],["-- All --","2021-12-17",10833472,40526,13037362],["-- All --","2021-12-18",10833472,25988,13063350],["-- All --","2021-12-19",10833472,16008,13079358],["-- All --","2021-12-20",10833472,41442,13120800],["-- All --","2021-12-21",10833472,44186,13164986],["-- All --","2021-12-22",10833472,42135,13207121],["-- All --","2021-12-23",10833472,33090,13240211],["-- All --","2021-12-24",10833472,11040,13251251],["-- All --","2021-12-25",10833472,61,13251312],["-- All --","2021-12-26",10833472,11875,13263187],["-- All --","2021-12-27",10833472,36052,13299239],["-- All --","2021-12-28",10833472,39631,13338870],["-- All --","2021-12-29",10833472,39595,13378465],["-- All --","2021-12-30",10833472,33306,13411771],["-- All --","2021-12-31",10833472,17230,13429001],["-- All --","2022-01-01",10833472,2841,13431842],["-- All --","2022-01-02",10833472,10294,13442136],["-- All --","2022-01-03",10833472,11410,13453546],["-- All --","2022-01-04",10833472,6454,13460000],["Appling","2020-12-16",18561,1,1],["Appling","2020-12-18",18561,2,3],["Appling","2020-12-21",18561,3,6],["Appling","2020-12-22",18561,3,9],["Appling","2020-12-23",18561,9,18],["Appling","2020-12-24",18561,11,29],["Appling","2020-12-26",18561,2,31],["Appling","2020-12-28",18561,11,42],["Appling","2020-12-29",18561,13,55],["Appling","2020-12-30",18561,15,70],["Appling","2020-12-31",18561,3,73],["Appling","2021-01-01",18561,2,75],["Appling","2021-01-02",18561,1,76],["Appling","2021-01-03",18561,1,77],["Appling","2021-01-04",18561,8,85],["Appling","2021-01-05",18561,15,100],["Appling","2021-01-06",18561,24,124],["Appling","2021-01-07",18561,9,133],["Appling","2021-01-08",18561,20,153],["Appling","2021-01-09",18561,2,155],["Appling","2021-01-10",18561,44,199],["Appling","2021-01-11",18561,80,279],["Appling","2021-01-12",18561,42,321],["Appling","2021-01-13",18561,143,464],["Appling","2021-01-14",18561,69,533],["Appling","2021-01-15",18561,55,588],["Appling","2021-01-16",18561,5,593],["Appling","2021-01-17",18561,2,595],["Appling","2021-01-18",18561,99,694],["Appling","2021-01-19",18561,59,753],["Appling","2021-01-20",18561,107,860],["Appling","2021-01-21",18561,57,917],["Appling","2021-01-22",18561,50,967],["Appling","2021-01-23",18561,28,995],["Appling","2021-01-24",18561,3,998],["Appling","2021-01-25",18561,82,1080],["Appling","2021-01-26",18561,25,1105],["Appling","2021-01-27",18561,89,1194],["Appling","2021-01-28",18561,17,1211],["Appling","2021-01-29",18561,8,1219],["Appling","2021-01-30",18561,4,1223],["Appling","2021-01-31",18561,43,1266],["Appling","2021-02-01",18561,87,1353],["Appling","2021-02-02",18561,85,1438],["Appling","2021-02-03",18561,92,1530],["Appling","2021-02-04",18561,29,1559],["Appling","2021-02-05",18561,29,1588],["Appling","2021-02-06",18561,23,1611],["Appling","2021-02-07",18561,1,1612],["Appling","2021-02-08",18561,127,1739],["Appling","2021-02-09",18561,83,1822],["Appling","2021-02-10",18561,188,2010],["Appling","2021-02-11",18561,87,2097],["Appling","2021-02-12",18561,64,2161],["Appling","2021-02-13",18561,8,2169],["Appling","2021-02-14",18561,6,2175],["Appling","2021-02-15",18561,189,2364],["Appling","2021-02-16",18561,81,2445],["Appling","2021-02-17",18561,118,2563],["Appling","2021-02-18",18561,27,2590],["Appling","2021-02-19",18561,16,2606],["Appling","2021-02-20",18561,50,2656],["Appling","2021-02-22",18561,105,2761],["Appling","2021-02-23",18561,57,2818],["Appling","2021-02-24",18561,84,2902],["Appling","2021-02-25",18561,55,2957],["Appling","2021-02-26",18561,50,3007],["Appling","2021-02-27",18561,4,3011],["Appling","2021-02-28",18561,2,3013],["Appling","2021-03-01",18561,109,3122],["Appling","2021-03-02",18561,115,3237],["Appling","2021-03-03",18561,138,3375],["Appling","2021-03-04",18561,36,3411],["Appling","2021-03-05",18561,39,3450],["Appling","2021-03-06",18561,4,3454],["Appling","2021-03-07",18561,2,3456],["Appling","2021-03-08",18561,205,3661],["Appling","2021-03-09",18561,92,3753],["Appling","2021-03-10",18561,112,3865],["Appling","2021-03-11",18561,30,3895],["Appling","2021-03-12",18561,48,3943],["Appling","2021-03-13",18561,13,3956],["Appling","2021-03-14",18561,6,3962],["Appling","2021-03-15",18561,154,4116],["Appling","2021-03-16",18561,126,4242],["Appling","2021-03-17",18561,152,4394],["Appling","2021-03-18",18561,32,4426],["Appling","2021-03-19",18561,46,4472],["Appling","2021-03-20",18561,3,4475],["Appling","2021-03-21",18561,7,4482],["Appling","2021-03-22",18561,104,4586],["Appling","2021-03-23",18561,104,4690],["Appling","2021-03-24",18561,96,4786],["Appling","2021-03-25",18561,61,4847],["Appling","2021-03-26",18561,46,4893],["Appling","2021-03-27",18561,13,4906],["Appling","2021-03-28",18561,4,4910],["Appling","2021-03-29",18561,89,4999],["Appling","2021-03-30",18561,144,5143],["Appling","2021-03-31",18561,146,5289],["Appling","2021-04-01",18561,153,5442],["Appling","2021-04-02",18561,51,5493],["Appling","2021-04-03",18561,10,5503],["Appling","2021-04-04",18561,8,5511],["Appling","2021-04-05",18561,205,5716],["Appling","2021-04-06",18561,92,5808],["Appling","2021-04-07",18561,104,5912],["Appling","2021-04-08",18561,102,6014],["Appling","2021-04-09",18561,120,6134],["Appling","2021-04-10",18561,17,6151],["Appling","2021-04-11",18561,9,6160],["Appling","2021-04-12",18561,126,6286],["Appling","2021-04-13",18561,78,6364],["Appling","2021-04-14",18561,116,6480],["Appling","2021-04-15",18561,95,6575],["Appling","2021-04-16",18561,50,6625],["Appling","2021-04-17",18561,15,6640],["Appling","2021-04-18",18561,9,6649],["Appling","2021-04-19",18561,73,6722],["Appling","2021-04-20",18561,74,6796],["Appling","2021-04-21",18561,73,6869],["Appling","2021-04-22",18561,83,6952],["Appling","2021-04-23",18561,53,7005],["Appling","2021-04-24",18561,8,7013],["Appling","2021-04-25",18561,2,7015],["Appling","2021-04-26",18561,57,7072],["Appling","2021-04-27",18561,47,7119],["Appling","2021-04-28",18561,115,7234],["Appling","2021-04-29",18561,84,7318],["Appling","2021-04-30",18561,63,7381],["Appling","2021-05-01",18561,16,7397],["Appling","2021-05-02",18561,21,7418],["Appling","2021-05-03",18561,34,7452],["Appling","2021-05-04",18561,41,7493],["Appling","2021-05-05",18561,115,7608],["Appling","2021-05-06",18561,41,7649],["Appling","2021-05-07",18561,24,7673],["Appling","2021-05-08",18561,13,7686],["Appling","2021-05-09",18561,7,7693],["Appling","2021-05-10",18561,11,7704],["Appling","2021-05-11",18561,45,7749],["Appling","2021-05-12",18561,137,7886],["Appling","2021-05-13",18561,39,7925],["Appling","2021-05-14",18561,25,7950],["Appling","2021-05-15",18561,10,7960],["Appling","2021-05-16",18561,12,7972],["Appling","2021-05-17",18561,19,7991],["Appling","2021-05-18",18561,55,8046],["Appling","2021-05-19",18561,102,8148],["Appling","2021-05-20",18561,29,8177],["Appling","2021-05-21",18561,27,8204],["Appling","2021-05-22",18561,5,8209],["Appling","2021-05-23",18561,8,8217],["Appling","2021-05-24",18561,12,8229],["Appling","2021-05-25",18561,33,8262],["Appling","2021-05-26",18561,59,8321],["Appling","2021-05-27",18561,18,8339],["Appling","2021-05-28",18561,21,8360],["Appling","2021-05-29",18561,7,8367],["Appling","2021-05-31",18561,7,8374],["Appling","2021-06-01",18561,36,8410],["Appling","2021-06-02",18561,63,8473],["Appling","2021-06-03",18561,19,8492],["Appling","2021-06-04",18561,23,8515],["Appling","2021-06-05",18561,11,8526],["Appling","2021-06-06",18561,9,8535],["Appling","2021-06-07",18561,12,8547],["Appling","2021-06-08",18561,18,8565],["Appling","2021-06-09",18561,26,8591],["Appling","2021-06-10",18561,15,8606],["Appling","2021-06-11",18561,34,8640],["Appling","2021-06-12",18561,17,8657],["Appling","2021-06-13",18561,9,8666],["Appling","2021-06-14",18561,12,8678],["Appling","2021-06-15",18561,37,8715],["Appling","2021-06-16",18561,30,8745],["Appling","2021-06-17",18561,37,8782],["Appling","2021-06-18",18561,12,8794],["Appling","2021-06-19",18561,8,8802],["Appling","2021-06-20",18561,7,8809],["Appling","2021-06-21",18561,14,8823],["Appling","2021-06-22",18561,17,8840],["Appling","2021-06-23",18561,35,8875],["Appling","2021-06-24",18561,7,8882],["Appling","2021-06-25",18561,7,8889],["Appling","2021-06-26",18561,14,8903],["Appling","2021-06-27",18561,2,8905],["Appling","2021-06-28",18561,10,8915],["Appling","2021-06-29",18561,18,8933],["Appling","2021-06-30",18561,33,8966],["Appling","2021-07-01",18561,9,8975],["Appling","2021-07-02",18561,16,8991],["Appling","2021-07-03",18561,5,8996],["Appling","2021-07-04",18561,7,9003],["Appling","2021-07-05",18561,7,9010],["Appling","2021-07-06",18561,10,9020],["Appling","2021-07-07",18561,19,9039],["Appling","2021-07-08",18561,14,9053],["Appling","2021-07-09",18561,17,9070],["Appling","2021-07-10",18561,1,9071],["Appling","2021-07-11",18561,5,9076],["Appling","2021-07-12",18561,24,9100],["Appling","2021-07-13",18561,16,9116],["Appling","2021-07-14",18561,39,9155],["Appling","2021-07-15",18561,20,9175],["Appling","2021-07-16",18561,10,9185],["Appling","2021-07-17",18561,9,9194],["Appling","2021-07-18",18561,8,9202],["Appling","2021-07-19",18561,19,9221],["Appling","2021-07-20",18561,22,9243],["Appling","2021-07-21",18561,52,9295],["Appling","2021-07-22",18561,14,9309],["Appling","2021-07-23",18561,15,9324],["Appling","2021-07-24",18561,27,9351],["Appling","2021-07-25",18561,6,9357],["Appling","2021-07-26",18561,27,9384],["Appling","2021-07-27",18561,49,9433],["Appling","2021-07-28",18561,39,9472],["Appling","2021-07-29",18561,30,9502],["Appling","2021-07-30",18561,54,9556],["Appling","2021-07-31",18561,17,9573],["Appling","2021-08-01",18561,11,9584],["Appling","2021-08-02",18561,33,9617],["Appling","2021-08-03",18561,28,9645],["Appling","2021-08-04",18561,39,9684],["Appling","2021-08-05",18561,57,9741],["Appling","2021-08-06",18561,69,9810],["Appling","2021-08-07",18561,19,9829],["Appling","2021-08-08",18561,8,9837],["Appling","2021-08-09",18561,63,9900],["Appling","2021-08-10",18561,74,9974],["Appling","2021-08-11",18561,54,10028],["Appling","2021-08-12",18561,70,10098],["Appling","2021-08-13",18561,56,10154],["Appling","2021-08-14",18561,43,10197],["Appling","2021-08-15",18561,11,10208],["Appling","2021-08-16",18561,33,10241],["Appling","2021-08-17",18561,62,10303],["Appling","2021-08-18",18561,50,10353],["Appling","2021-08-19",18561,36,10389],["Appling","2021-08-20",18561,63,10452],["Appling","2021-08-21",18561,31,10483],["Appling","2021-08-22",18561,12,10495],["Appling","2021-08-23",18561,63,10558],["Appling","2021-08-24",18561,72,10630],["Appling","2021-08-25",18561,39,10669],["Appling","2021-08-26",18561,96,10765],["Appling","2021-08-27",18561,87,10852],["Appling","2021-08-28",18561,33,10885],["Appling","2021-08-29",18561,8,10893],["Appling","2021-08-30",18561,46,10939],["Appling","2021-08-31",18561,65,11004],["Appling","2021-09-01",18561,60,11064],["Appling","2021-09-02",18561,60,11124],["Appling","2021-09-03",18561,95,11219],["Appling","2021-09-04",18561,20,11239],["Appling","2021-09-05",18561,16,11255],["Appling","2021-09-06",18561,11,11266],["Appling","2021-09-07",18561,62,11328],["Appling","2021-09-08",18561,52,11380],["Appling","2021-09-09",18561,62,11442],["Appling","2021-09-10",18561,102,11544],["Appling","2021-09-11",18561,34,11578],["Appling","2021-09-12",18561,7,11585],["Appling","2021-09-13",18561,36,11621],["Appling","2021-09-14",18561,61,11682],["Appling","2021-09-15",18561,32,11714],["Appling","2021-09-16",18561,49,11763],["Appling","2021-09-17",18561,81,11844],["Appling","2021-09-18",18561,25,11869],["Appling","2021-09-19",18561,11,11880],["Appling","2021-09-20",18561,51,11931],["Appling","2021-09-21",18561,40,11971],["Appling","2021-09-22",18561,34,12005],["Appling","2021-09-23",18561,34,12039],["Appling","2021-09-24",18561,52,12091],["Appling","2021-09-25",18561,6,12097],["Appling","2021-09-26",18561,10,12107],["Appling","2021-09-27",18561,13,12120],["Appling","2021-09-28",18561,30,12150],["Appling","2021-09-29",18561,18,12168],["Appling","2021-09-30",18561,25,12193],["Appling","2021-10-01",18561,63,12256],["Appling","2021-10-02",18561,13,12269],["Appling","2021-10-03",18561,9,12278],["Appling","2021-10-04",18561,17,12295],["Appling","2021-10-05",18561,21,12316],["Appling","2021-10-06",18561,16,12332],["Appling","2021-10-07",18561,40,12372],["Appling","2021-10-08",18561,42,12414],["Appling","2021-10-09",18561,16,12430],["Appling","2021-10-10",18561,9,12439],["Appling","2021-10-11",18561,9,12448],["Appling","2021-10-12",18561,24,12472],["Appling","2021-10-13",18561,13,12485],["Appling","2021-10-14",18561,18,12503],["Appling","2021-10-15",18561,19,12522],["Appling","2021-10-16",18561,5,12527],["Appling","2021-10-17",18561,1,12528],["Appling","2021-10-18",18561,18,12546],["Appling","2021-10-19",18561,13,12559],["Appling","2021-10-20",18561,21,12580],["Appling","2021-10-21",18561,17,12597],["Appling","2021-10-22",18561,18,12615],["Appling","2021-10-23",18561,15,12630],["Appling","2021-10-24",18561,5,12635],["Appling","2021-10-25",18561,61,12696],["Appling","2021-10-26",18561,49,12745],["Appling","2021-10-27",18561,61,12806],["Appling","2021-10-28",18561,59,12865],["Appling","2021-10-29",18561,72,12937],["Appling","2021-10-30",18561,22,12959],["Appling","2021-10-31",18561,7,12966],["Appling","2021-11-01",18561,83,13049],["Appling","2021-11-02",18561,65,13114],["Appling","2021-11-03",18561,58,13172],["Appling","2021-11-04",18561,64,13236],["Appling","2021-11-05",18561,67,13303],["Appling","2021-11-06",18561,9,13312],["Appling","2021-11-07",18561,8,13320],["Appling","2021-11-08",18561,36,13356],["Appling","2021-11-09",18561,40,13396],["Appling","2021-11-10",18561,41,13437],["Appling","2021-11-11",18561,12,13449],["Appling","2021-11-12",18561,72,13521],["Appling","2021-11-13",18561,9,13530],["Appling","2021-11-14",18561,6,13536],["Appling","2021-11-15",18561,62,13598],["Appling","2021-11-16",18561,41,13639],["Appling","2021-11-17",18561,51,13690],["Appling","2021-11-18",18561,62,13752],["Appling","2021-11-19",18561,49,13801],["Appling","2021-11-20",18561,6,13807],["Appling","2021-11-21",18561,5,13812],["Appling","2021-11-22",18561,52,13864],["Appling","2021-11-23",18561,46,13910],["Appling","2021-11-24",18561,21,13931],["Appling","2021-11-26",18561,10,13941],["Appling","2021-11-27",18561,8,13949],["Appling","2021-11-28",18561,5,13954],["Appling","2021-11-29",18561,41,13995],["Appling","2021-11-30",18561,42,14037],["Appling","2021-12-01",18561,54,14091],["Appling","2021-12-02",18561,45,14136],["Appling","2021-12-03",18561,67,14203],["Appling","2021-12-04",18561,21,14224],["Appling","2021-12-05",18561,4,14228],["Appling","2021-12-06",18561,43,14271],["Appling","2021-12-07",18561,48,14319],["Appling","2021-12-08",18561,37,14356],["Appling","2021-12-09",18561,45,14401],["Appling","2021-12-10",18561,31,14432],["Appling","2021-12-11",18561,9,14441],["Appling","2021-12-12",18561,5,14446],["Appling","2021-12-13",18561,23,14469],["Appling","2021-12-14",18561,33,14502],["Appling","2021-12-15",18561,34,14536],["Appling","2021-12-16",18561,43,14579],["Appling","2021-12-17",18561,43,14622],["Appling","2021-12-18",18561,9,14631],["Appling","2021-12-19",18561,4,14635],["Appling","2021-12-20",18561,46,14681],["Appling","2021-12-21",18561,37,14718],["Appling","2021-12-22",18561,31,14749],["Appling","2021-12-23",18561,32,14781],["Appling","2021-12-24",18561,5,14786],["Appling","2021-12-26",18561,7,14793],["Appling","2021-12-27",18561,32,14825],["Appling","2021-12-28",18561,42,14867],["Appling","2021-12-29",18561,35,14902],["Appling","2021-12-30",18561,30,14932],["Appling","2021-12-31",18561,20,14952],["Appling","2022-01-01",18561,2,14954],["Appling","2022-01-02",18561,10,14964],["Appling","2022-01-03",18561,14,14978],["Atkinson","2020-12-17",8330,1,1],["Atkinson","2020-12-21",8330,1,2],["Atkinson","2020-12-22",8330,2,4],["Atkinson","2020-12-23",8330,8,12],["Atkinson","2020-12-24",8330,7,19],["Atkinson","2020-12-28",8330,8,27],["Atkinson","2020-12-29",8330,3,30],["Atkinson","2020-12-30",8330,10,40],["Atkinson","2020-12-31",8330,3,43],["Atkinson","2021-01-01",8330,1,44],["Atkinson","2021-01-04",8330,9,53],["Atkinson","2021-01-05",8330,3,56],["Atkinson","2021-01-06",8330,8,64],["Atkinson","2021-01-07",8330,12,76],["Atkinson","2021-01-08",8330,24,100],["Atkinson","2021-01-10",8330,6,106],["Atkinson","2021-01-11",8330,43,149],["Atkinson","2021-01-12",8330,46,195],["Atkinson","2021-01-13",8330,16,211],["Atkinson","2021-01-14",8330,60,271],["Atkinson","2021-01-15",8330,27,298],["Atkinson","2021-01-16",8330,3,301],["Atkinson","2021-01-17",8330,1,302],["Atkinson","2021-01-18",8330,22,324],["Atkinson","2021-01-19",8330,48,372],["Atkinson","2021-01-20",8330,21,393],["Atkinson","2021-01-21",8330,54,447],["Atkinson","2021-01-22",8330,25,472],["Atkinson","2021-01-23",8330,6,478],["Atkinson","2021-01-24",8330,1,479],["Atkinson","2021-01-25",8330,24,503],["Atkinson","2021-01-26",8330,32,535],["Atkinson","2021-01-27",8330,26,561],["Atkinson","2021-01-28",8330,50,611],["Atkinson","2021-01-29",8330,18,629],["Atkinson","2021-01-31",8330,4,633],["Atkinson","2021-02-01",8330,22,655],["Atkinson","2021-02-02",8330,7,662],["Atkinson","2021-02-03",8330,14,676],["Atkinson","2021-02-04",8330,24,700],["Atkinson","2021-02-05",8330,30,730],["Atkinson","2021-02-06",8330,1,731],["Atkinson","2021-02-07",8330,2,733],["Atkinson","2021-02-08",8330,48,781],["Atkinson","2021-02-09",8330,56,837],["Atkinson","2021-02-10",8330,27,864],["Atkinson","2021-02-11",8330,69,933],["Atkinson","2021-02-12",8330,32,965],["Atkinson","2021-02-13",8330,1,966],["Atkinson","2021-02-14",8330,1,967],["Atkinson","2021-02-15",8330,17,984],["Atkinson","2021-02-16",8330,72,1056],["Atkinson","2021-02-17",8330,27,1083],["Atkinson","2021-02-18",8330,38,1121],["Atkinson","2021-02-19",8330,29,1150],["Atkinson","2021-02-20",8330,8,1158],["Atkinson","2021-02-22",8330,20,1178],["Atkinson","2021-02-23",8330,44,1222],["Atkinson","2021-02-24",8330,28,1250],["Atkinson","2021-02-25",8330,60,1310],["Atkinson","2021-02-26",8330,25,1335],["Atkinson","2021-02-28",8330,2,1337],["Atkinson","2021-03-01",8330,23,1360],["Atkinson","2021-03-02",8330,28,1388],["Atkinson","2021-03-03",8330,37,1425],["Atkinson","2021-03-04",8330,13,1438],["Atkinson","2021-03-05",8330,24,1462],["Atkinson","2021-03-06",8330,1,1463],["Atkinson","2021-03-08",8330,40,1503],["Atkinson","2021-03-09",8330,33,1536],["Atkinson","2021-03-10",8330,23,1559],["Atkinson","2021-03-11",8330,14,1573],["Atkinson","2021-03-12",8330,23,1596],["Atkinson","2021-03-15",8330,15,1611],["Atkinson","2021-03-16",8330,47,1658],["Atkinson","2021-03-17",8330,25,1683],["Atkinson","2021-03-18",8330,27,1710],["Atkinson","2021-03-19",8330,27,1737],["Atkinson","2021-03-20",8330,38,1775],["Atkinson","2021-03-21",8330,1,1776],["Atkinson","2021-03-22",8330,17,1793],["Atkinson","2021-03-23",8330,63,1856],["Atkinson","2021-03-24",8330,14,1870],["Atkinson","2021-03-25",8330,74,1944],["Atkinson","2021-03-26",8330,52,1996],["Atkinson","2021-03-27",8330,6,2002],["Atkinson","2021-03-28",8330,3,2005],["Atkinson","2021-03-29",8330,9,2014],["Atkinson","2021-03-30",8330,69,2083],["Atkinson","2021-03-31",8330,61,2144],["Atkinson","2021-04-01",8330,53,2197],["Atkinson","2021-04-02",8330,46,2243],["Atkinson","2021-04-03",8330,29,2272],["Atkinson","2021-04-04",8330,1,2273],["Atkinson","2021-04-05",8330,8,2281],["Atkinson","2021-04-06",8330,64,2345],["Atkinson","2021-04-07",8330,23,2368],["Atkinson","2021-04-08",8330,50,2418],["Atkinson","2021-04-09",8330,27,2445],["Atkinson","2021-04-10",8330,3,2448],["Atkinson","2021-04-11",8330,2,2450],["Atkinson","2021-04-12",8330,14,2464],["Atkinson","2021-04-13",8330,82,2546],["Atkinson","2021-04-14",8330,25,2571],["Atkinson","2021-04-15",8330,36,2607],["Atkinson","2021-04-16",8330,60,2667],["Atkinson","2021-04-17",8330,66,2733],["Atkinson","2021-04-18",8330,1,2734],["Atkinson","2021-04-19",8330,9,2743],["Atkinson","2021-04-20",8330,57,2800],["Atkinson","2021-04-21",8330,21,2821],["Atkinson","2021-04-22",8330,27,2848],["Atkinson","2021-04-23",8330,29,2877],["Atkinson","2021-04-24",8330,4,2881],["Atkinson","2021-04-25",8330,6,2887],["Atkinson","2021-04-26",8330,10,2897],["Atkinson","2021-04-27",8330,70,2967],["Atkinson","2021-04-28",8330,19,2986],["Atkinson","2021-04-29",8330,49,3035],["Atkinson","2021-04-30",8330,26,3061],["Atkinson","2021-05-01",8330,25,3086],["Atkinson","2021-05-02",8330,1,3087],["Atkinson","2021-05-03",8330,65,3152],["Atkinson","2021-05-04",8330,44,3196],["Atkinson","2021-05-05",8330,22,3218],["Atkinson","2021-05-06",8330,38,3256],["Atkinson","2021-05-07",8330,24,3280],["Atkinson","2021-05-08",8330,7,3287],["Atkinson","2021-05-09",8330,2,3289],["Atkinson","2021-05-10",8330,8,3297],["Atkinson","2021-05-11",8330,41,3338],["Atkinson","2021-05-12",8330,17,3355],["Atkinson","2021-05-13",8330,5,3360],["Atkinson","2021-05-14",8330,29,3389],["Atkinson","2021-05-15",8330,21,3410],["Atkinson","2021-05-16",8330,2,3412],["Atkinson","2021-05-17",8330,8,3420],["Atkinson","2021-05-18",8330,43,3463],["Atkinson","2021-05-19",8330,26,3489],["Atkinson","2021-05-20",8330,13,3502],["Atkinson","2021-05-21",8330,15,3517],["Atkinson","2021-05-22",8330,6,3523],["Atkinson","2021-05-23",8330,3,3526],["Atkinson","2021-05-24",8330,5,3531],["Atkinson","2021-05-25",8330,43,3574],["Atkinson","2021-05-26",8330,14,3588],["Atkinson","2021-05-27",8330,28,3616],["Atkinson","2021-05-28",8330,18,3634],["Atkinson","2021-05-29",8330,6,3640],["Atkinson","2021-05-31",8330,1,3641],["Atkinson","2021-06-01",8330,73,3714],["Atkinson","2021-06-02",8330,21,3735],["Atkinson","2021-06-03",8330,8,3743],["Atkinson","2021-06-04",8330,12,3755],["Atkinson","2021-06-05",8330,3,3758],["Atkinson","2021-06-06",8330,3,3761],["Atkinson","2021-06-07",8330,4,3765],["Atkinson","2021-06-08",8330,20,3785],["Atkinson","2021-06-09",8330,4,3789],["Atkinson","2021-06-10",8330,14,3803],["Atkinson","2021-06-11",8330,12,3815],["Atkinson","2021-06-12",8330,5,3820],["Atkinson","2021-06-13",8330,2,3822],["Atkinson","2021-06-14",8330,4,3826],["Atkinson","2021-06-15",8330,22,3848],["Atkinson","2021-06-16",8330,7,3855],["Atkinson","2021-06-17",8330,8,3863],["Atkinson","2021-06-18",8330,14,3877],["Atkinson","2021-06-19",8330,2,3879],["Atkinson","2021-06-20",8330,1,3880],["Atkinson","2021-06-21",8330,3,3883],["Atkinson","2021-06-22",8330,17,3900],["Atkinson","2021-06-23",8330,8,3908],["Atkinson","2021-06-24",8330,16,3924],["Atkinson","2021-06-25",8330,13,3937],["Atkinson","2021-06-26",8330,12,3949],["Atkinson","2021-06-27",8330,1,3950],["Atkinson","2021-06-28",8330,11,3961],["Atkinson","2021-06-29",8330,11,3972],["Atkinson","2021-06-30",8330,10,3982],["Atkinson","2021-07-01",8330,12,3994],["Atkinson","2021-07-02",8330,6,4000],["Atkinson","2021-07-03",8330,1,4001],["Atkinson","2021-07-05",8330,1,4002],["Atkinson","2021-07-06",8330,14,4016],["Atkinson","2021-07-07",8330,10,4026],["Atkinson","2021-07-08",8330,3,4029],["Atkinson","2021-07-09",8330,11,4040],["Atkinson","2021-07-10",8330,1,4041],["Atkinson","2021-07-12",8330,5,4046],["Atkinson","2021-07-13",8330,15,4061],["Atkinson","2021-07-14",8330,9,4070],["Atkinson","2021-07-15",8330,4,4074],["Atkinson","2021-07-16",8330,15,4089],["Atkinson","2021-07-17",8330,2,4091],["Atkinson","2021-07-19",8330,21,4112],["Atkinson","2021-07-20",8330,25,4137],["Atkinson","2021-07-21",8330,11,4148],["Atkinson","2021-07-22",8330,12,4160],["Atkinson","2021-07-23",8330,37,4197],["Atkinson","2021-07-24",8330,22,4219],["Atkinson","2021-07-25",8330,5,4224],["Atkinson","2021-07-26",8330,10,4234],["Atkinson","2021-07-27",8330,27,4261],["Atkinson","2021-07-28",8330,23,4284],["Atkinson","2021-07-29",8330,27,4311],["Atkinson","2021-07-30",8330,41,4352],["Atkinson","2021-07-31",8330,10,4362],["Atkinson","2021-08-01",8330,15,4377],["Atkinson","2021-08-02",8330,20,4397],["Atkinson","2021-08-03",8330,39,4436],["Atkinson","2021-08-04",8330,35,4471],["Atkinson","2021-08-05",8330,38,4509],["Atkinson","2021-08-06",8330,40,4549],["Atkinson","2021-08-07",8330,9,4558],["Atkinson","2021-08-08",8330,3,4561],["Atkinson","2021-08-09",8330,21,4582],["Atkinson","2021-08-10",8330,72,4654],["Atkinson","2021-08-11",8330,48,4702],["Atkinson","2021-08-12",8330,39,4741],["Atkinson","2021-08-13",8330,70,4811],["Atkinson","2021-08-14",8330,21,4832],["Atkinson","2021-08-15",8330,9,4841],["Atkinson","2021-08-16",8330,37,4878],["Atkinson","2021-08-17",8330,43,4921],["Atkinson","2021-08-18",8330,49,4970],["Atkinson","2021-08-19",8330,32,5002],["Atkinson","2021-08-20",8330,48,5050],["Atkinson","2021-08-21",8330,19,5069],["Atkinson","2021-08-22",8330,3,5072],["Atkinson","2021-08-23",8330,27,5099],["Atkinson","2021-08-24",8330,39,5138],["Atkinson","2021-08-25",8330,38,5176],["Atkinson","2021-08-26",8330,41,5217],["Atkinson","2021-08-27",8330,61,5278],["Atkinson","2021-08-28",8330,12,5290],["Atkinson","2021-08-29",8330,22,5312],["Atkinson","2021-08-30",8330,30,5342],["Atkinson","2021-08-31",8330,38,5380],["Atkinson","2021-09-01",8330,39,5419],["Atkinson","2021-09-02",8330,54,5473],["Atkinson","2021-09-03",8330,49,5522],["Atkinson","2021-09-04",8330,19,5541],["Atkinson","2021-09-05",8330,6,5547],["Atkinson","2021-09-06",8330,2,5549],["Atkinson","2021-09-07",8330,48,5597],["Atkinson","2021-09-08",8330,42,5639],["Atkinson","2021-09-09",8330,36,5675],["Atkinson","2021-09-10",8330,47,5722],["Atkinson","2021-09-11",8330,17,5739],["Atkinson","2021-09-12",8330,2,5741],["Atkinson","2021-09-13",8330,18,5759],["Atkinson","2021-09-14",8330,31,5790],["Atkinson","2021-09-15",8330,33,5823],["Atkinson","2021-09-16",8330,26,5849],["Atkinson","2021-09-17",8330,34,5883],["Atkinson","2021-09-18",8330,13,5896],["Atkinson","2021-09-20",8330,18,5914],["Atkinson","2021-09-21",8330,26,5940],["Atkinson","2021-09-22",8330,20,5960],["Atkinson","2021-09-23",8330,16,5976],["Atkinson","2021-09-24",8330,43,6019],["Atkinson","2021-09-25",8330,6,6025],["Atkinson","2021-09-26",8330,13,6038],["Atkinson","2021-09-27",8330,16,6054],["Atkinson","2021-09-28",8330,16,6070],["Atkinson","2021-09-29",8330,6,6076],["Atkinson","2021-09-30",8330,8,6084],["Atkinson","2021-10-01",8330,18,6102],["Atkinson","2021-10-02",8330,1,6103],["Atkinson","2021-10-03",8330,2,6105],["Atkinson","2021-10-04",8330,9,6114],["Atkinson","2021-10-05",8330,14,6128],["Atkinson","2021-10-06",8330,11,6139],["Atkinson","2021-10-07",8330,13,6152],["Atkinson","2021-10-08",8330,15,6167],["Atkinson","2021-10-09",8330,5,6172],["Atkinson","2021-10-10",8330,1,6173],["Atkinson","2021-10-11",8330,7,6180],["Atkinson","2021-10-12",8330,9,6189],["Atkinson","2021-10-13",8330,6,6195],["Atkinson","2021-10-14",8330,9,6204],["Atkinson","2021-10-15",8330,13,6217],["Atkinson","2021-10-16",8330,3,6220],["Atkinson","2021-10-18",8330,6,6226],["Atkinson","2021-10-19",8330,12,6238],["Atkinson","2021-10-20",8330,4,6242],["Atkinson","2021-10-21",8330,5,6247],["Atkinson","2021-10-22",8330,19,6266],["Atkinson","2021-10-23",8330,3,6269],["Atkinson","2021-10-24",8330,3,6272],["Atkinson","2021-10-25",8330,6,6278],["Atkinson","2021-10-26",8330,53,6331],["Atkinson","2021-10-27",8330,24,6355],["Atkinson","2021-10-28",8330,20,6375],["Atkinson","2021-10-29",8330,26,6401],["Atkinson","2021-10-30",8330,6,6407],["Atkinson","2021-11-01",8330,20,6427],["Atkinson","2021-11-02",8330,35,6462],["Atkinson","2021-11-03",8330,23,6485],["Atkinson","2021-11-04",8330,26,6511],["Atkinson","2021-11-05",8330,23,6534],["Atkinson","2021-11-06",8330,3,6537],["Atkinson","2021-11-08",8330,20,6557],["Atkinson","2021-11-09",8330,30,6587],["Atkinson","2021-11-10",8330,17,6604],["Atkinson","2021-11-11",8330,5,6609],["Atkinson","2021-11-12",8330,17,6626],["Atkinson","2021-11-13",8330,3,6629],["Atkinson","2021-11-14",8330,2,6631],["Atkinson","2021-11-15",8330,12,6643],["Atkinson","2021-11-16",8330,37,6680],["Atkinson","2021-11-17",8330,14,6694],["Atkinson","2021-11-18",8330,18,6712],["Atkinson","2021-11-19",8330,19,6731],["Atkinson","2021-11-20",8330,2,6733],["Atkinson","2021-11-21",8330,1,6734],["Atkinson","2021-11-22",8330,17,6751],["Atkinson","2021-11-23",8330,11,6762],["Atkinson","2021-11-24",8330,6,6768],["Atkinson","2021-11-26",8330,4,6772],["Atkinson","2021-11-27",8330,6,6778],["Atkinson","2021-11-28",8330,1,6779],["Atkinson","2021-11-29",8330,22,6801],["Atkinson","2021-11-30",8330,32,6833],["Atkinson","2021-12-01",8330,19,6852],["Atkinson","2021-12-02",8330,19,6871],["Atkinson","2021-12-03",8330,20,6891],["Atkinson","2021-12-04",8330,2,6893],["Atkinson","2021-12-05",8330,1,6894],["Atkinson","2021-12-06",8330,18,6912],["Atkinson","2021-12-07",8330,28,6940],["Atkinson","2021-12-08",8330,26,6966],["Atkinson","2021-12-09",8330,14,6980],["Atkinson","2021-12-10",8330,27,7007],["Atkinson","2021-12-11",8330,2,7009],["Atkinson","2021-12-13",8330,12,7021],["Atkinson","2021-12-14",8330,16,7037],["Atkinson","2021-12-15",8330,13,7050],["Atkinson","2021-12-16",8330,19,7069],["Atkinson","2021-12-17",8330,16,7085],["Atkinson","2021-12-18",8330,1,7086],["Atkinson","2021-12-20",8330,23,7109],["Atkinson","2021-12-21",8330,19,7128],["Atkinson","2021-12-22",8330,20,7148],["Atkinson","2021-12-23",8330,5,7153],["Atkinson","2021-12-24",8330,4,7157],["Atkinson","2021-12-26",8330,1,7158],["Atkinson","2021-12-27",8330,19,7177],["Atkinson","2021-12-28",8330,20,7197],["Atkinson","2021-12-29",8330,44,7241],["Atkinson","2021-12-30",8330,18,7259],["Atkinson","2021-12-31",8330,13,7272],["Atkinson","2022-01-02",8330,5,7277],["Atkinson","2022-01-03",8330,8,7285],["Bacon","2020-12-16",11404,1,1],["Bacon","2020-12-18",11404,2,3],["Bacon","2020-12-19",11404,1,4],["Bacon","2020-12-23",11404,5,9],["Bacon","2020-12-24",11404,26,35],["Bacon","2020-12-28",11404,4,39],["Bacon","2020-12-29",11404,39,78],["Bacon","2020-12-30",11404,31,109],["Bacon","2020-12-31",11404,5,114],["Bacon","2021-01-03",11404,1,115],["Bacon","2021-01-04",11404,5,120],["Bacon","2021-01-05",11404,6,126],["Bacon","2021-01-06",11404,108,234],["Bacon","2021-01-07",11404,4,238],["Bacon","2021-01-08",11404,6,244],["Bacon","2021-01-10",11404,5,249],["Bacon","2021-01-11",11404,17,266],["Bacon","2021-01-12",11404,70,336],["Bacon","2021-01-13",11404,39,375],["Bacon","2021-01-14",11404,22,397],["Bacon","2021-01-15",11404,10,407],["Bacon","2021-01-16",11404,7,414],["Bacon","2021-01-17",11404,1,415],["Bacon","2021-01-18",11404,29,444],["Bacon","2021-01-19",11404,43,487],["Bacon","2021-01-20",11404,45,532],["Bacon","2021-01-21",11404,25,557],["Bacon","2021-01-22",11404,29,586],["Bacon","2021-01-23",11404,9,595],["Bacon","2021-01-24",11404,1,596],["Bacon","2021-01-25",11404,18,614],["Bacon","2021-01-26",11404,41,655],["Bacon","2021-01-27",11404,51,706],["Bacon","2021-01-28",11404,32,738],["Bacon","2021-01-29",11404,20,758],["Bacon","2021-01-30",11404,4,762],["Bacon","2021-01-31",11404,4,766],["Bacon","2021-02-01",11404,26,792],["Bacon","2021-02-02",11404,40,832],["Bacon","2021-02-03",11404,116,948],["Bacon","2021-02-04",11404,4,952],["Bacon","2021-02-05",11404,21,973],["Bacon","2021-02-06",11404,7,980],["Bacon","2021-02-08",11404,31,1011],["Bacon","2021-02-09",11404,100,1111],["Bacon","2021-02-10",11404,43,1154],["Bacon","2021-02-11",11404,36,1190],["Bacon","2021-02-12",11404,20,1210],["Bacon","2021-02-13",11404,11,1221],["Bacon","2021-02-14",11404,1,1222],["Bacon","2021-02-15",11404,59,1281],["Bacon","2021-02-16",11404,59,1340],["Bacon","2021-02-17",11404,43,1383],["Bacon","2021-02-18",11404,12,1395],["Bacon","2021-02-19",11404,27,1422],["Bacon","2021-02-20",11404,16,1438],["Bacon","2021-02-22",11404,46,1484],["Bacon","2021-02-23",11404,46,1530],["Bacon","2021-02-24",11404,32,1562],["Bacon","2021-02-25",11404,29,1591],["Bacon","2021-02-26",11404,17,1608],["Bacon","2021-02-27",11404,1,1609],["Bacon","2021-02-28",11404,1,1610],["Bacon","2021-03-01",11404,40,1650],["Bacon","2021-03-02",11404,66,1716],["Bacon","2021-03-03",11404,57,1773],["Bacon","2021-03-04",11404,13,1786],["Bacon","2021-03-05",11404,19,1805],["Bacon","2021-03-06",11404,1,1806],["Bacon","2021-03-07",11404,2,1808],["Bacon","2021-03-08",11404,43,1851],["Bacon","2021-03-09",11404,58,1909],["Bacon","2021-03-10",11404,40,1949],["Bacon","2021-03-11",11404,15,1964],["Bacon","2021-03-12",11404,50,2014],["Bacon","2021-03-13",11404,8,2022],["Bacon","2021-03-14",11404,9,2031],["Bacon","2021-03-15",11404,47,2078],["Bacon","2021-03-16",11404,99,2177],["Bacon","2021-03-17",11404,46,2223],["Bacon","2021-03-18",11404,16,2239],["Bacon","2021-03-19",11404,110,2349],["Bacon","2021-03-20",11404,4,2353],["Bacon","2021-03-21",11404,12,2365],["Bacon","2021-03-22",11404,63,2428],["Bacon","2021-03-23",11404,72,2500],["Bacon","2021-03-24",11404,67,2567],["Bacon","2021-03-25",11404,34,2601],["Bacon","2021-03-26",11404,50,2651],["Bacon","2021-03-27",11404,7,2658],["Bacon","2021-03-28",11404,1,2659],["Bacon","2021-03-29",11404,34,2693],["Bacon","2021-03-30",11404,60,2753],["Bacon","2021-03-31",11404,76,2829],["Bacon","2021-04-01",11404,41,2870],["Bacon","2021-04-02",11404,60,2930],["Bacon","2021-04-03",11404,6,2936],["Bacon","2021-04-04",11404,3,2939],["Bacon","2021-04-05",11404,31,2970],["Bacon","2021-04-06",11404,44,3014],["Bacon","2021-04-07",11404,50,3064],["Bacon","2021-04-08",11404,104,3168],["Bacon","2021-04-09",11404,37,3205],["Bacon","2021-04-10",11404,6,3211],["Bacon","2021-04-11",11404,15,3226],["Bacon","2021-04-12",11404,37,3263],["Bacon","2021-04-13",11404,77,3340],["Bacon","2021-04-14",11404,27,3367],["Bacon","2021-04-15",11404,13,3380],["Bacon","2021-04-16",11404,99,3479],["Bacon","2021-04-17",11404,12,3491],["Bacon","2021-04-18",11404,5,3496],["Bacon","2021-04-19",11404,40,3536],["Bacon","2021-04-20",11404,75,3611],["Bacon","2021-04-21",11404,47,3658],["Bacon","2021-04-22",11404,25,3683],["Bacon","2021-04-23",11404,81,3764],["Bacon","2021-04-24",11404,7,3771],["Bacon","2021-04-25",11404,1,3772],["Bacon","2021-04-26",11404,41,3813],["Bacon","2021-04-27",11404,44,3857],["Bacon","2021-04-28",11404,61,3918],["Bacon","2021-04-29",11404,24,3942],["Bacon","2021-04-30",11404,55,3997],["Bacon","2021-05-01",11404,9,4006],["Bacon","2021-05-02",11404,4,4010],["Bacon","2021-05-03",11404,9,4019],["Bacon","2021-05-04",11404,33,4052],["Bacon","2021-05-05",11404,35,4087],["Bacon","2021-05-06",11404,19,4106],["Bacon","2021-05-07",11404,47,4153],["Bacon","2021-05-08",11404,13,4166],["Bacon","2021-05-09",11404,2,4168],["Bacon","2021-05-10",11404,17,4185],["Bacon","2021-05-11",11404,29,4214],["Bacon","2021-05-12",11404,8,4222],["Bacon","2021-05-13",11404,15,4237],["Bacon","2021-05-14",11404,26,4263],["Bacon","2021-05-15",11404,4,4267],["Bacon","2021-05-16",11404,3,4270],["Bacon","2021-05-17",11404,15,4285],["Bacon","2021-05-18",11404,34,4319],["Bacon","2021-05-19",11404,26,4345],["Bacon","2021-05-20",11404,17,4362],["Bacon","2021-05-21",11404,27,4389],["Bacon","2021-05-22",11404,4,4393],["Bacon","2021-05-23",11404,1,4394],["Bacon","2021-05-24",11404,14,4408],["Bacon","2021-05-25",11404,16,4424],["Bacon","2021-05-26",11404,17,4441],["Bacon","2021-05-27",11404,11,4452],["Bacon","2021-05-28",11404,26,4478],["Bacon","2021-05-29",11404,6,4484],["Bacon","2021-05-30",11404,4,4488],["Bacon","2021-05-31",11404,2,4490],["Bacon","2021-06-01",11404,15,4505],["Bacon","2021-06-02",11404,18,4523],["Bacon","2021-06-03",11404,9,4532],["Bacon","2021-06-04",11404,19,4551],["Bacon","2021-06-05",11404,2,4553],["Bacon","2021-06-07",11404,12,4565],["Bacon","2021-06-08",11404,16,4581],["Bacon","2021-06-09",11404,7,4588],["Bacon","2021-06-10",11404,78,4666],["Bacon","2021-06-11",11404,10,4676],["Bacon","2021-06-12",11404,6,4682],["Bacon","2021-06-13",11404,2,4684],["Bacon","2021-06-14",11404,7,4691],["Bacon","2021-06-15",11404,9,4700],["Bacon","2021-06-16",11404,24,4724],["Bacon","2021-06-17",11404,5,4729],["Bacon","2021-06-18",11404,20,4749],["Bacon","2021-06-19",11404,3,4752],["Bacon","2021-06-20",11404,1,4753],["Bacon","2021-06-21",11404,6,4759],["Bacon","2021-06-22",11404,6,4765],["Bacon","2021-06-23",11404,13,4778],["Bacon","2021-06-24",11404,4,4782],["Bacon","2021-06-25",11404,14,4796],["Bacon","2021-06-26",11404,5,4801],["Bacon","2021-06-27",11404,1,4802],["Bacon","2021-06-28",11404,5,4807],["Bacon","2021-06-29",11404,9,4816],["Bacon","2021-06-30",11404,11,4827],["Bacon","2021-07-01",11404,10,4837],["Bacon","2021-07-02",11404,2,4839],["Bacon","2021-07-03",11404,3,4842],["Bacon","2021-07-05",11404,4,4846],["Bacon","2021-07-06",11404,12,4858],["Bacon","2021-07-07",11404,10,4868],["Bacon","2021-07-08",11404,3,4871],["Bacon","2021-07-09",11404,6,4877],["Bacon","2021-07-10",11404,5,4882],["Bacon","2021-07-11",11404,3,4885],["Bacon","2021-07-12",11404,2,4887],["Bacon","2021-07-13",11404,8,4895],["Bacon","2021-07-14",11404,16,4911],["Bacon","2021-07-15",11404,7,4918],["Bacon","2021-07-16",11404,10,4928],["Bacon","2021-07-17",11404,4,4932],["Bacon","2021-07-19",11404,16,4948],["Bacon","2021-07-20",11404,12,4960],["Bacon","2021-07-21",11404,28,4988],["Bacon","2021-07-22",11404,7,4995],["Bacon","2021-07-23",11404,16,5011],["Bacon","2021-07-24",11404,10,5021],["Bacon","2021-07-26",11404,12,5033],["Bacon","2021-07-27",11404,24,5057],["Bacon","2021-07-28",11404,36,5093],["Bacon","2021-07-29",11404,12,5105],["Bacon","2021-07-30",11404,30,5135],["Bacon","2021-07-31",11404,5,5140],["Bacon","2021-08-01",11404,7,5147],["Bacon","2021-08-02",11404,16,5163],["Bacon","2021-08-03",11404,19,5182],["Bacon","2021-08-04",11404,28,5210],["Bacon","2021-08-05",11404,23,5233],["Bacon","2021-08-06",11404,55,5288],["Bacon","2021-08-07",11404,11,5299],["Bacon","2021-08-08",11404,8,5307],["Bacon","2021-08-09",11404,29,5336],["Bacon","2021-08-10",11404,24,5360],["Bacon","2021-08-11",11404,28,5388],["Bacon","2021-08-12",11404,23,5411],["Bacon","2021-08-13",11404,53,5464],["Bacon","2021-08-14",11404,9,5473],["Bacon","2021-08-15",11404,3,5476],["Bacon","2021-08-16",11404,29,5505],["Bacon","2021-08-17",11404,33,5538],["Bacon","2021-08-18",11404,59,5597],["Bacon","2021-08-19",11404,15,5612],["Bacon","2021-08-20",11404,43,5655],["Bacon","2021-08-21",11404,10,5665],["Bacon","2021-08-22",11404,7,5672],["Bacon","2021-08-23",11404,17,5689],["Bacon","2021-08-24",11404,28,5717],["Bacon","2021-08-25",11404,32,5749],["Bacon","2021-08-26",11404,20,5769],["Bacon","2021-08-27",11404,28,5797],["Bacon","2021-08-28",11404,7,5804],["Bacon","2021-08-29",11404,3,5807],["Bacon","2021-08-30",11404,25,5832],["Bacon","2021-08-31",11404,30,5862],["Bacon","2021-09-01",11404,55,5917],["Bacon","2021-09-02",11404,31,5948],["Bacon","2021-09-03",11404,44,5992],["Bacon","2021-09-04",11404,7,5999],["Bacon","2021-09-05",11404,6,6005],["Bacon","2021-09-06",11404,3,6008],["Bacon","2021-09-07",11404,28,6036],["Bacon","2021-09-08",11404,33,6069],["Bacon","2021-09-09",11404,24,6093],["Bacon","2021-09-10",11404,60,6153],["Bacon","2021-09-11",11404,7,6160],["Bacon","2021-09-12",11404,5,6165],["Bacon","2021-09-13",11404,15,6180],["Bacon","2021-09-14",11404,31,6211],["Bacon","2021-09-15",11404,23,6234],["Bacon","2021-09-16",11404,11,6245],["Bacon","2021-09-17",11404,55,6300],["Bacon","2021-09-18",11404,2,6302],["Bacon","2021-09-20",11404,21,6323],["Bacon","2021-09-21",11404,15,6338],["Bacon","2021-09-22",11404,21,6359],["Bacon","2021-09-23",11404,15,6374],["Bacon","2021-09-24",11404,29,6403],["Bacon","2021-09-25",11404,5,6408],["Bacon","2021-09-26",11404,2,6410],["Bacon","2021-09-27",11404,7,6417],["Bacon","2021-09-28",11404,9,6426],["Bacon","2021-09-29",11404,24,6450],["Bacon","2021-09-30",11404,14,6464],["Bacon","2021-10-01",11404,28,6492],["Bacon","2021-10-02",11404,5,6497],["Bacon","2021-10-03",11404,3,6500],["Bacon","2021-10-04",11404,15,6515],["Bacon","2021-10-05",11404,12,6527],["Bacon","2021-10-06",11404,6,6533],["Bacon","2021-10-07",11404,7,6540],["Bacon","2021-10-08",11404,13,6553],["Bacon","2021-10-09",11404,6,6559],["Bacon","2021-10-10",11404,2,6561],["Bacon","2021-10-11",11404,8,6569],["Bacon","2021-10-12",11404,6,6575],["Bacon","2021-10-13",11404,18,6593],["Bacon","2021-10-14",11404,6,6599],["Bacon","2021-10-15",11404,20,6619],["Bacon","2021-10-16",11404,2,6621],["Bacon","2021-10-18",11404,8,6629],["Bacon","2021-10-19",11404,8,6637],["Bacon","2021-10-20",11404,11,6648],["Bacon","2021-10-21",11404,3,6651],["Bacon","2021-10-22",11404,8,6659],["Bacon","2021-10-23",11404,4,6663],["Bacon","2021-10-25",11404,8,6671],["Bacon","2021-10-26",11404,31,6702],["Bacon","2021-10-27",11404,62,6764],["Bacon","2021-10-28",11404,34,6798],["Bacon","2021-10-29",11404,44,6842],["Bacon","2021-10-30",11404,6,6848],["Bacon","2021-10-31",11404,4,6852],["Bacon","2021-11-01",11404,11,6863],["Bacon","2021-11-02",11404,43,6906],["Bacon","2021-11-03",11404,32,6938],["Bacon","2021-11-04",11404,8,6946],["Bacon","2021-11-05",11404,43,6989],["Bacon","2021-11-06",11404,3,6992],["Bacon","2021-11-07",11404,1,6993],["Bacon","2021-11-08",11404,14,7007],["Bacon","2021-11-09",11404,15,7022],["Bacon","2021-11-10",11404,30,7052],["Bacon","2021-11-11",11404,5,7057],["Bacon","2021-11-12",11404,48,7105],["Bacon","2021-11-13",11404,3,7108],["Bacon","2021-11-14",11404,1,7109],["Bacon","2021-11-15",11404,23,7132],["Bacon","2021-11-16",11404,19,7151],["Bacon","2021-11-17",11404,33,7184],["Bacon","2021-11-18",11404,22,7206],["Bacon","2021-11-19",11404,39,7245],["Bacon","2021-11-20",11404,6,7251],["Bacon","2021-11-21",11404,2,7253],["Bacon","2021-11-22",11404,12,7265],["Bacon","2021-11-23",11404,16,7281],["Bacon","2021-11-24",11404,16,7297],["Bacon","2021-11-26",11404,3,7300],["Bacon","2021-11-27",11404,6,7306],["Bacon","2021-11-28",11404,2,7308],["Bacon","2021-11-29",11404,41,7349],["Bacon","2021-11-30",11404,32,7381],["Bacon","2021-12-01",11404,49,7430],["Bacon","2021-12-02",11404,15,7445],["Bacon","2021-12-03",11404,29,7474],["Bacon","2021-12-04",11404,3,7477],["Bacon","2021-12-06",11404,19,7496],["Bacon","2021-12-07",11404,6,7502],["Bacon","2021-12-08",11404,35,7537],["Bacon","2021-12-09",11404,8,7545],["Bacon","2021-12-10",11404,33,7578],["Bacon","2021-12-11",11404,4,7582],["Bacon","2021-12-12",11404,4,7586],["Bacon","2021-12-13",11404,11,7597],["Bacon","2021-12-14",11404,10,7607],["Bacon","2021-12-15",11404,18,7625],["Bacon","2021-12-16",11404,17,7642],["Bacon","2021-12-17",11404,27,7669],["Bacon","2021-12-18",11404,6,7675],["Bacon","2021-12-19",11404,3,7678],["Bacon","2021-12-20",11404,28,7706],["Bacon","2021-12-21",11404,18,7724],["Bacon","2021-12-22",11404,23,7747],["Bacon","2021-12-23",11404,3,7750],["Bacon","2021-12-24",11404,6,7756],["Bacon","2021-12-26",11404,2,7758],["Bacon","2021-12-27",11404,2,7760],["Bacon","2021-12-28",11404,27,7787],["Bacon","2021-12-29",11404,31,7818],["Bacon","2021-12-30",11404,15,7833],["Bacon","2021-12-31",11404,16,7849],["Bacon","2022-01-02",11404,4,7853],["Bacon","2022-01-03",11404,7,7860],["Baker","2020-12-17",3116,2,2],["Baker","2020-12-18",3116,1,3],["Baker","2020-12-20",3116,1,4],["Baker","2020-12-21",3116,1,5],["Baker","2020-12-22",3116,4,9],["Baker","2020-12-23",3116,10,19],["Baker","2020-12-26",3116,1,20],["Baker","2020-12-28",3116,9,29],["Baker","2020-12-29",3116,5,34],["Baker","2020-12-30",3116,3,37],["Baker","2021-01-01",3116,1,38],["Baker","2021-01-04",3116,1,39],["Baker","2021-01-05",3116,11,50],["Baker","2021-01-06",3116,3,53],["Baker","2021-01-07",3116,6,59],["Baker","2021-01-08",3116,9,68],["Baker","2021-01-09",3116,1,69],["Baker","2021-01-11",3116,17,86],["Baker","2021-01-12",3116,22,108],["Baker","2021-01-13",3116,28,136],["Baker","2021-01-14",3116,33,169],["Baker","2021-01-15",3116,13,182],["Baker","2021-01-18",3116,34,216],["Baker","2021-01-19",3116,32,248],["Baker","2021-01-20",3116,30,278],["Baker","2021-01-21",3116,41,319],["Baker","2021-01-22",3116,14,333],["Baker","2021-01-23",3116,4,337],["Baker","2021-01-24",3116,1,338],["Baker","2021-01-25",3116,23,361],["Baker","2021-01-26",3116,33,394],["Baker","2021-01-27",3116,29,423],["Baker","2021-01-28",3116,33,456],["Baker","2021-01-29",3116,6,462],["Baker","2021-02-01",3116,18,480],["Baker","2021-02-02",3116,20,500],["Baker","2021-02-03",3116,13,513],["Baker","2021-02-04",3116,25,538],["Baker","2021-02-05",3116,11,549],["Baker","2021-02-06",3116,7,556],["Baker","2021-02-08",3116,25,581],["Baker","2021-02-09",3116,36,617],["Baker","2021-02-10",3116,29,646],["Baker","2021-02-11",3116,39,685],["Baker","2021-02-12",3116,9,694],["Baker","2021-02-13",3116,1,695],["Baker","2021-02-15",3116,27,722],["Baker","2021-02-16",3116,32,754],["Baker","2021-02-17",3116,27,781],["Baker","2021-02-18",3116,38,819],["Baker","2021-02-19",3116,15,834],["Baker","2021-02-20",3116,2,836],["Baker","2021-02-22",3116,24,860],["Baker","2021-02-23",3116,44,904],["Baker","2021-02-24",3116,24,928],["Baker","2021-02-25",3116,37,965],["Baker","2021-02-26",3116,7,972],["Baker","2021-02-27",3116,3,975],["Baker","2021-02-28",3116,3,978],["Baker","2021-03-01",3116,22,1000],["Baker","2021-03-02",3116,26,1026],["Baker","2021-03-03",3116,17,1043],["Baker","2021-03-04",3116,22,1065],["Baker","2021-03-05",3116,7,1072],["Baker","2021-03-08",3116,14,1086],["Baker","2021-03-09",3116,15,1101],["Baker","2021-03-10",3116,16,1117],["Baker","2021-03-11",3116,14,1131],["Baker","2021-03-12",3116,8,1139],["Baker","2021-03-13",3116,5,1144],["Baker","2021-03-15",3116,29,1173],["Baker","2021-03-16",3116,19,1192],["Baker","2021-03-17",3116,22,1214],["Baker","2021-03-18",3116,21,1235],["Baker","2021-03-19",3116,5,1240],["Baker","2021-03-20",3116,6,1246],["Baker","2021-03-21",3116,3,1249],["Baker","2021-03-22",3116,16,1265],["Baker","2021-03-23",3116,13,1278],["Baker","2021-03-24",3116,11,1289],["Baker","2021-03-25",3116,26,1315],["Baker","2021-03-27",3116,2,1317],["Baker","2021-03-28",3116,2,1319],["Baker","2021-03-29",3116,23,1342],["Baker","2021-03-30",3116,41,1383],["Baker","2021-03-31",3116,17,1400],["Baker","2021-04-01",3116,29,1429],["Baker","2021-04-02",3116,7,1436],["Baker","2021-04-03",3116,2,1438],["Baker","2021-04-04",3116,1,1439],["Baker","2021-04-05",3116,16,1455],["Baker","2021-04-06",3116,21,1476],["Baker","2021-04-07",3116,25,1501],["Baker","2021-04-08",3116,17,1518],["Baker","2021-04-09",3116,6,1524],["Baker","2021-04-10",3116,7,1531],["Baker","2021-04-11",3116,2,1533],["Baker","2021-04-12",3116,38,1571],["Baker","2021-04-13",3116,19,1590],["Baker","2021-04-14",3116,25,1615],["Baker","2021-04-15",3116,21,1636],["Baker","2021-04-16",3116,7,1643],["Baker","2021-04-17",3116,3,1646],["Baker","2021-04-18",3116,2,1648],["Baker","2021-04-19",3116,6,1654],["Baker","2021-04-20",3116,19,1673],["Baker","2021-04-21",3116,10,1683],["Baker","2021-04-22",3116,4,1687],["Baker","2021-04-23",3116,5,1692],["Baker","2021-04-24",3116,3,1695],["Baker","2021-04-26",3116,18,1713],["Baker","2021-04-27",3116,39,1752],["Baker","2021-04-28",3116,15,1767],["Baker","2021-04-29",3116,18,1785],["Baker","2021-04-30",3116,5,1790],["Baker","2021-05-02",3116,1,1791],["Baker","2021-05-03",3116,7,1798],["Baker","2021-05-04",3116,14,1812],["Baker","2021-05-05",3116,11,1823],["Baker","2021-05-06",3116,5,1828],["Baker","2021-05-07",3116,7,1835],["Baker","2021-05-08",3116,5,1840],["Baker","2021-05-10",3116,5,1845],["Baker","2021-05-11",3116,14,1859],["Baker","2021-05-12",3116,49,1908],["Baker","2021-05-13",3116,8,1916],["Baker","2021-05-15",3116,4,1920],["Baker","2021-05-17",3116,3,1923],["Baker","2021-05-18",3116,12,1935],["Baker","2021-05-19",3116,17,1952],["Baker","2021-05-20",3116,5,1957],["Baker","2021-05-21",3116,1,1958],["Baker","2021-05-22",3116,3,1961],["Baker","2021-05-24",3116,1,1962],["Baker","2021-05-25",3116,12,1974],["Baker","2021-05-26",3116,5,1979],["Baker","2021-05-27",3116,7,1986],["Baker","2021-05-28",3116,1,1987],["Baker","2021-05-29",3116,2,1989],["Baker","2021-06-01",3116,11,2000],["Baker","2021-06-03",3116,3,2003],["Baker","2021-06-04",3116,2,2005],["Baker","2021-06-05",3116,2,2007],["Baker","2021-06-06",3116,1,2008],["Baker","2021-06-07",3116,2,2010],["Baker","2021-06-08",3116,5,2015],["Baker","2021-06-09",3116,7,2022],["Baker","2021-06-10",3116,22,2044],["Baker","2021-06-11",3116,1,2045],["Baker","2021-06-12",3116,5,2050],["Baker","2021-06-15",3116,8,2058],["Baker","2021-06-16",3116,3,2061],["Baker","2021-06-17",3116,1,2062],["Baker","2021-06-18",3116,2,2064],["Baker","2021-06-19",3116,4,2068],["Baker","2021-06-21",3116,2,2070],["Baker","2021-06-22",3116,9,2079],["Baker","2021-06-23",3116,3,2082],["Baker","2021-06-24",3116,3,2085],["Baker","2021-06-25",3116,1,2086],["Baker","2021-06-27",3116,1,2087],["Baker","2021-06-29",3116,8,2095],["Baker","2021-06-30",3116,2,2097],["Baker","2021-07-01",3116,11,2108],["Baker","2021-07-02",3116,2,2110],["Baker","2021-07-05",3116,2,2112],["Baker","2021-07-06",3116,3,2115],["Baker","2021-07-07",3116,5,2120],["Baker","2021-07-08",3116,2,2122],["Baker","2021-07-09",3116,1,2123],["Baker","2021-07-10",3116,4,2127],["Baker","2021-07-12",3116,1,2128],["Baker","2021-07-13",3116,2,2130],["Baker","2021-07-14",3116,3,2133],["Baker","2021-07-15",3116,1,2134],["Baker","2021-07-16",3116,7,2141],["Baker","2021-07-19",3116,1,2142],["Baker","2021-07-20",3116,12,2154],["Baker","2021-07-21",3116,2,2156],["Baker","2021-07-22",3116,6,2162],["Baker","2021-07-23",3116,4,2166],["Baker","2021-07-24",3116,3,2169],["Baker","2021-07-25",3116,1,2170],["Baker","2021-07-26",3116,8,2178],["Baker","2021-07-27",3116,19,2197],["Baker","2021-07-28",3116,10,2207],["Baker","2021-07-29",3116,9,2216],["Baker","2021-07-30",3116,5,2221],["Baker","2021-07-31",3116,5,2226],["Baker","2021-08-01",3116,2,2228],["Baker","2021-08-02",3116,15,2243],["Baker","2021-08-03",3116,9,2252],["Baker","2021-08-04",3116,11,2263],["Baker","2021-08-05",3116,8,2271],["Baker","2021-08-06",3116,7,2278],["Baker","2021-08-07",3116,7,2285],["Baker","2021-08-08",3116,1,2286],["Baker","2021-08-09",3116,7,2293],["Baker","2021-08-10",3116,14,2307],["Baker","2021-08-11",3116,12,2319],["Baker","2021-08-12",3116,13,2332],["Baker","2021-08-13",3116,14,2346],["Baker","2021-08-14",3116,3,2349],["Baker","2021-08-15",3116,3,2352],["Baker","2021-08-16",3116,5,2357],["Baker","2021-08-17",3116,24,2381],["Baker","2021-08-18",3116,9,2390],["Baker","2021-08-19",3116,11,2401],["Baker","2021-08-20",3116,10,2411],["Baker","2021-08-21",3116,4,2415],["Baker","2021-08-23",3116,15,2430],["Baker","2021-08-24",3116,16,2446],["Baker","2021-08-25",3116,23,2469],["Baker","2021-08-26",3116,12,2481],["Baker","2021-08-27",3116,7,2488],["Baker","2021-08-28",3116,6,2494],["Baker","2021-08-29",3116,4,2498],["Baker","2021-08-30",3116,15,2513],["Baker","2021-08-31",3116,21,2534],["Baker","2021-09-01",3116,19,2553],["Baker","2021-09-02",3116,12,2565],["Baker","2021-09-03",3116,16,2581],["Baker","2021-09-04",3116,9,2590],["Baker","2021-09-05",3116,4,2594],["Baker","2021-09-06",3116,1,2595],["Baker","2021-09-07",3116,14,2609],["Baker","2021-09-08",3116,14,2623],["Baker","2021-09-09",3116,10,2633],["Baker","2021-09-10",3116,8,2641],["Baker","2021-09-11",3116,2,2643],["Baker","2021-09-13",3116,4,2647],["Baker","2021-09-14",3116,20,2667],["Baker","2021-09-15",3116,8,2675],["Baker","2021-09-16",3116,14,2689],["Baker","2021-09-17",3116,11,2700],["Baker","2021-09-18",3116,6,2706],["Baker","2021-09-19",3116,1,2707],["Baker","2021-09-20",3116,6,2713],["Baker","2021-09-21",3116,19,2732],["Baker","2021-09-22",3116,8,2740],["Baker","2021-09-23",3116,11,2751],["Baker","2021-09-24",3116,5,2756],["Baker","2021-09-27",3116,4,2760],["Baker","2021-09-28",3116,10,2770],["Baker","2021-09-29",3116,12,2782],["Baker","2021-09-30",3116,18,2800],["Baker","2021-10-01",3116,9,2809],["Baker","2021-10-02",3116,2,2811],["Baker","2021-10-03",3116,2,2813],["Baker","2021-10-04",3116,3,2816],["Baker","2021-10-05",3116,2,2818],["Baker","2021-10-06",3116,4,2822],["Baker","2021-10-07",3116,10,2832],["Baker","2021-10-08",3116,5,2837],["Baker","2021-10-09",3116,2,2839],["Baker","2021-10-11",3116,7,2846],["Baker","2021-10-12",3116,11,2857],["Baker","2021-10-13",3116,6,2863],["Baker","2021-10-14",3116,8,2871],["Baker","2021-10-15",3116,1,2872],["Baker","2021-10-16",3116,3,2875],["Baker","2021-10-18",3116,2,2877],["Baker","2021-10-19",3116,1,2878],["Baker","2021-10-20",3116,3,2881],["Baker","2021-10-21",3116,1,2882],["Baker","2021-10-22",3116,2,2884],["Baker","2021-10-24",3116,1,2885],["Baker","2021-10-25",3116,10,2895],["Baker","2021-10-26",3116,10,2905],["Baker","2021-10-27",3116,3,2908],["Baker","2021-10-28",3116,24,2932],["Baker","2021-10-29",3116,8,2940],["Baker","2021-10-30",3116,4,2944],["Baker","2021-11-01",3116,29,2973],["Baker","2021-11-02",3116,21,2994],["Baker","2021-11-03",3116,14,3008],["Baker","2021-11-04",3116,25,3033],["Baker","2021-11-05",3116,3,3036],["Baker","2021-11-06",3116,10,3046],["Baker","2021-11-08",3116,2,3048],["Baker","2021-11-09",3116,25,3073],["Baker","2021-11-10",3116,7,3080],["Baker","2021-11-11",3116,4,3084],["Baker","2021-11-12",3116,4,3088],["Baker","2021-11-14",3116,1,3089],["Baker","2021-11-15",3116,16,3105],["Baker","2021-11-16",3116,16,3121],["Baker","2021-11-17",3116,14,3135],["Baker","2021-11-18",3116,22,3157],["Baker","2021-11-19",3116,7,3164],["Baker","2021-11-21",3116,1,3165],["Baker","2021-11-22",3116,9,3174],["Baker","2021-11-23",3116,16,3190],["Baker","2021-11-24",3116,9,3199],["Baker","2021-11-26",3116,3,3202],["Baker","2021-11-28",3116,2,3204],["Baker","2021-11-29",3116,12,3216],["Baker","2021-11-30",3116,24,3240],["Baker","2021-12-01",3116,14,3254],["Baker","2021-12-02",3116,12,3266],["Baker","2021-12-03",3116,3,3269],["Baker","2021-12-04",3116,2,3271],["Baker","2021-12-06",3116,21,3292],["Baker","2021-12-07",3116,13,3305],["Baker","2021-12-08",3116,12,3317],["Baker","2021-12-09",3116,8,3325],["Baker","2021-12-10",3116,4,3329],["Baker","2021-12-11",3116,1,3330],["Baker","2021-12-12",3116,2,3332],["Baker","2021-12-13",3116,11,3343],["Baker","2021-12-14",3116,13,3356],["Baker","2021-12-15",3116,3,3359],["Baker","2021-12-16",3116,12,3371],["Baker","2021-12-17",3116,5,3376],["Baker","2021-12-19",3116,1,3377],["Baker","2021-12-20",3116,5,3382],["Baker","2021-12-21",3116,10,3392],["Baker","2021-12-22",3116,6,3398],["Baker","2021-12-23",3116,7,3405],["Baker","2021-12-24",3116,2,3407],["Baker","2021-12-27",3116,11,3418],["Baker","2021-12-28",3116,6,3424],["Baker","2021-12-29",3116,18,3442],["Baker","2021-12-30",3116,7,3449],["Baker","2021-12-31",3116,9,3458],["Baker","2022-01-02",3116,1,3459],["Baker","2022-01-03",3116,1,3460],["Baldwin","2020-12-14",44428,1,1],["Baldwin","2020-12-16",44428,1,2],["Baldwin","2020-12-17",44428,4,6],["Baldwin","2020-12-18",44428,5,11],["Baldwin","2020-12-19",44428,3,14],["Baldwin","2020-12-20",44428,2,16],["Baldwin","2020-12-21",44428,4,20],["Baldwin","2020-12-22",44428,22,42],["Baldwin","2020-12-23",44428,48,90],["Baldwin","2020-12-24",44428,15,105],["Baldwin","2020-12-26",44428,9,114],["Baldwin","2020-12-27",44428,4,118],["Baldwin","2020-12-28",44428,42,160],["Baldwin","2020-12-29",44428,34,194],["Baldwin","2020-12-30",44428,112,306],["Baldwin","2020-12-31",44428,42,348],["Baldwin","2021-01-01",44428,3,351],["Baldwin","2021-01-02",44428,5,356],["Baldwin","2021-01-03",44428,3,359],["Baldwin","2021-01-04",44428,233,592],["Baldwin","2021-01-05",44428,32,624],["Baldwin","2021-01-06",44428,134,758],["Baldwin","2021-01-07",44428,31,789],["Baldwin","2021-01-08",44428,66,855],["Baldwin","2021-01-09",44428,12,867],["Baldwin","2021-01-10",44428,9,876],["Baldwin","2021-01-11",44428,90,966],["Baldwin","2021-01-12",44428,200,1166],["Baldwin","2021-01-13",44428,122,1288],["Baldwin","2021-01-14",44428,161,1449],["Baldwin","2021-01-15",44428,205,1654],["Baldwin","2021-01-16",44428,69,1723],["Baldwin","2021-01-17",44428,35,1758],["Baldwin","2021-01-18",44428,177,1935],["Baldwin","2021-01-19",44428,183,2118],["Baldwin","2021-01-20",44428,280,2398],["Baldwin","2021-01-21",44428,292,2690],["Baldwin","2021-01-22",44428,243,2933],["Baldwin","2021-01-23",44428,115,3048],["Baldwin","2021-01-24",44428,73,3121],["Baldwin","2021-01-25",44428,202,3323],["Baldwin","2021-01-26",44428,89,3412],["Baldwin","2021-01-27",44428,327,3739],["Baldwin","2021-01-28",44428,206,3945],["Baldwin","2021-01-29",44428,198,4143],["Baldwin","2021-01-30",44428,25,4168],["Baldwin","2021-01-31",44428,8,4176],["Baldwin","2021-02-01",44428,320,4496],["Baldwin","2021-02-02",44428,222,4718],["Baldwin","2021-02-03",44428,305,5023],["Baldwin","2021-02-04",44428,225,5248],["Baldwin","2021-02-05",44428,178,5426],["Baldwin","2021-02-06",44428,43,5469],["Baldwin","2021-02-07",44428,31,5500],["Baldwin","2021-02-08",44428,181,5681],["Baldwin","2021-02-09",44428,213,5894],["Baldwin","2021-02-10",44428,183,6077],["Baldwin","2021-02-11",44428,264,6341],["Baldwin","2021-02-12",44428,232,6573],["Baldwin","2021-02-13",44428,50,6623],["Baldwin","2021-02-14",44428,84,6707],["Baldwin","2021-02-15",44428,215,6922],["Baldwin","2021-02-16",44428,251,7173],["Baldwin","2021-02-17",44428,340,7513],["Baldwin","2021-02-18",44428,401,7914],["Baldwin","2021-02-19",44428,272,8186],["Baldwin","2021-02-20",44428,60,8246],["Baldwin","2021-02-21",44428,12,8258],["Baldwin","2021-02-22",44428,124,8382],["Baldwin","2021-02-23",44428,177,8559],["Baldwin","2021-02-24",44428,292,8851],["Baldwin","2021-02-25",44428,354,9205],["Baldwin","2021-02-26",44428,336,9541],["Baldwin","2021-02-27",44428,43,9584],["Baldwin","2021-02-28",44428,44,9628],["Baldwin","2021-03-01",44428,228,9856],["Baldwin","2021-03-02",44428,332,10188],["Baldwin","2021-03-03",44428,314,10502],["Baldwin","2021-03-04",44428,338,10840],["Baldwin","2021-03-05",44428,267,11107],["Baldwin","2021-03-06",44428,18,11125],["Baldwin","2021-03-07",44428,42,11167],["Baldwin","2021-03-08",44428,242,11409],["Baldwin","2021-03-09",44428,335,11744],["Baldwin","2021-03-10",44428,329,12073],["Baldwin","2021-03-11",44428,351,12424],["Baldwin","2021-03-12",44428,533,12957],["Baldwin","2021-03-13",44428,87,13044],["Baldwin","2021-03-14",44428,41,13085],["Baldwin","2021-03-15",44428,223,13308],["Baldwin","2021-03-16",44428,414,13722],["Baldwin","2021-03-17",44428,428,14150],["Baldwin","2021-03-18",44428,218,14368],["Baldwin","2021-03-19",44428,578,14946],["Baldwin","2021-03-20",44428,57,15003],["Baldwin","2021-03-21",44428,28,15031],["Baldwin","2021-03-22",44428,144,15175],["Baldwin","2021-03-23",44428,373,15548],["Baldwin","2021-03-24",44428,272,15820],["Baldwin","2021-03-25",44428,425,16245],["Baldwin","2021-03-26",44428,322,16567],["Baldwin","2021-03-27",44428,94,16661],["Baldwin","2021-03-28",44428,66,16727],["Baldwin","2021-03-29",44428,218,16945],["Baldwin","2021-03-30",44428,421,17366],["Baldwin","2021-03-31",44428,326,17692],["Baldwin","2021-04-01",44428,467,18159],["Baldwin","2021-04-02",44428,281,18440],["Baldwin","2021-04-03",44428,72,18512],["Baldwin","2021-04-04",44428,48,18560],["Baldwin","2021-04-05",44428,169,18729],["Baldwin","2021-04-06",44428,427,19156],["Baldwin","2021-04-07",44428,365,19521],["Baldwin","2021-04-08",44428,414,19935],["Baldwin","2021-04-09",44428,433,20368],["Baldwin","2021-04-10",44428,56,20424],["Baldwin","2021-04-11",44428,46,20470],["Baldwin","2021-04-12",44428,172,20642],["Baldwin","2021-04-13",44428,399,21041],["Baldwin","2021-04-14",44428,390,21431],["Baldwin","2021-04-15",44428,273,21704],["Baldwin","2021-04-16",44428,466,22170],["Baldwin","2021-04-17",44428,50,22220],["Baldwin","2021-04-18",44428,35,22255],["Baldwin","2021-04-19",44428,155,22410],["Baldwin","2021-04-20",44428,425,22835],["Baldwin","2021-04-21",44428,258,23093],["Baldwin","2021-04-22",44428,416,23509],["Baldwin","2021-04-23",44428,254,23763],["Baldwin","2021-04-24",44428,59,23822],["Baldwin","2021-04-25",44428,13,23835],["Baldwin","2021-04-26",44428,153,23988],["Baldwin","2021-04-27",44428,294,24282],["Baldwin","2021-04-28",44428,252,24534],["Baldwin","2021-04-29",44428,316,24850],["Baldwin","2021-04-30",44428,255,25105],["Baldwin","2021-05-01",44428,101,25206],["Baldwin","2021-05-02",44428,17,25223],["Baldwin","2021-05-03",44428,72,25295],["Baldwin","2021-05-04",44428,207,25502],["Baldwin","2021-05-05",44428,203,25705],["Baldwin","2021-05-06",44428,209,25914],["Baldwin","2021-05-07",44428,141,26055],["Baldwin","2021-05-08",44428,51,26106],["Baldwin","2021-05-09",44428,22,26128],["Baldwin","2021-05-10",44428,45,26173],["Baldwin","2021-05-11",44428,166,26339],["Baldwin","2021-05-12",44428,163,26502],["Baldwin","2021-05-13",44428,139,26641],["Baldwin","2021-05-14",44428,99,26740],["Baldwin","2021-05-15",44428,49,26789],["Baldwin","2021-05-16",44428,38,26827],["Baldwin","2021-05-17",44428,88,26915],["Baldwin","2021-05-18",44428,143,27058],["Baldwin","2021-05-19",44428,108,27166],["Baldwin","2021-05-20",44428,198,27364],["Baldwin","2021-05-21",44428,173,27537],["Baldwin","2021-05-22",44428,38,27575],["Baldwin","2021-05-23",44428,22,27597],["Baldwin","2021-05-24",44428,70,27667],["Baldwin","2021-05-25",44428,117,27784],["Baldwin","2021-05-26",44428,108,27892],["Baldwin","2021-05-27",44428,104,27996],["Baldwin","2021-05-28",44428,101,28097],["Baldwin","2021-05-29",44428,37,28134],["Baldwin","2021-05-30",44428,16,28150],["Baldwin","2021-05-31",44428,12,28162],["Baldwin","2021-06-01",44428,95,28257],["Baldwin","2021-06-02",44428,95,28352],["Baldwin","2021-06-03",44428,100,28452],["Baldwin","2021-06-04",44428,92,28544],["Baldwin","2021-06-05",44428,47,28591],["Baldwin","2021-06-06",44428,31,28622],["Baldwin","2021-06-07",44428,51,28673],["Baldwin","2021-06-08",44428,77,28750],["Baldwin","2021-06-09",44428,62,28812],["Baldwin","2021-06-10",44428,90,28902],["Baldwin","2021-06-11",44428,155,29057],["Baldwin","2021-06-12",44428,43,29100],["Baldwin","2021-06-13",44428,26,29126],["Baldwin","2021-06-14",44428,43,29169],["Baldwin","2021-06-15",44428,79,29248],["Baldwin","2021-06-16",44428,72,29320],["Baldwin","2021-06-17",44428,71,29391],["Baldwin","2021-06-18",44428,75,29466],["Baldwin","2021-06-19",44428,38,29504],["Baldwin","2021-06-20",44428,15,29519],["Baldwin","2021-06-21",44428,23,29542],["Baldwin","2021-06-22",44428,89,29631],["Baldwin","2021-06-23",44428,60,29691],["Baldwin","2021-06-24",44428,57,29748],["Baldwin","2021-06-25",44428,89,29837],["Baldwin","2021-06-26",44428,31,29868],["Baldwin","2021-06-27",44428,17,29885],["Baldwin","2021-06-28",44428,46,29931],["Baldwin","2021-06-29",44428,61,29992],["Baldwin","2021-06-30",44428,45,30037],["Baldwin","2021-07-01",44428,72,30109],["Baldwin","2021-07-02",44428,50,30159],["Baldwin","2021-07-03",44428,19,30178],["Baldwin","2021-07-04",44428,3,30181],["Baldwin","2021-07-05",44428,38,30219],["Baldwin","2021-07-06",44428,56,30275],["Baldwin","2021-07-07",44428,47,30322],["Baldwin","2021-07-08",44428,43,30365],["Baldwin","2021-07-09",44428,58,30423],["Baldwin","2021-07-10",44428,19,30442],["Baldwin","2021-07-11",44428,9,30451],["Baldwin","2021-07-12",44428,35,30486],["Baldwin","2021-07-13",44428,80,30566],["Baldwin","2021-07-14",44428,62,30628],["Baldwin","2021-07-15",44428,54,30682],["Baldwin","2021-07-16",44428,59,30741],["Baldwin","2021-07-17",44428,27,30768],["Baldwin","2021-07-18",44428,17,30785],["Baldwin","2021-07-19",44428,45,30830],["Baldwin","2021-07-20",44428,81,30911],["Baldwin","2021-07-21",44428,90,31001],["Baldwin","2021-07-22",44428,76,31077],["Baldwin","2021-07-23",44428,165,31242],["Baldwin","2021-07-24",44428,53,31295],["Baldwin","2021-07-25",44428,23,31318],["Baldwin","2021-07-26",44428,67,31385],["Baldwin","2021-07-27",44428,129,31514],["Baldwin","2021-07-28",44428,117,31631],["Baldwin","2021-07-29",44428,102,31733],["Baldwin","2021-07-30",44428,142,31875],["Baldwin","2021-07-31",44428,54,31929],["Baldwin","2021-08-01",44428,43,31972],["Baldwin","2021-08-02",44428,86,32058],["Baldwin","2021-08-03",44428,115,32173],["Baldwin","2021-08-04",44428,83,32256],["Baldwin","2021-08-05",44428,84,32340],["Baldwin","2021-08-06",44428,113,32453],["Baldwin","2021-08-07",44428,80,32533],["Baldwin","2021-08-08",44428,35,32568],["Baldwin","2021-08-09",44428,83,32651],["Baldwin","2021-08-10",44428,169,32820],["Baldwin","2021-08-11",44428,159,32979],["Baldwin","2021-08-12",44428,114,33093],["Baldwin","2021-08-13",44428,189,33282],["Baldwin","2021-08-14",44428,86,33368],["Baldwin","2021-08-15",44428,48,33416],["Baldwin","2021-08-16",44428,99,33515],["Baldwin","2021-08-17",44428,164,33679],["Baldwin","2021-08-18",44428,145,33824],["Baldwin","2021-08-19",44428,123,33947],["Baldwin","2021-08-20",44428,143,34090],["Baldwin","2021-08-21",44428,65,34155],["Baldwin","2021-08-22",44428,40,34195],["Baldwin","2021-08-23",44428,96,34291],["Baldwin","2021-08-24",44428,178,34469],["Baldwin","2021-08-25",44428,164,34633],["Baldwin","2021-08-26",44428,147,34780],["Baldwin","2021-08-27",44428,116,34896],["Baldwin","2021-08-28",44428,87,34983],["Baldwin","2021-08-29",44428,50,35033],["Baldwin","2021-08-30",44428,90,35123],["Baldwin","2021-08-31",44428,206,35329],["Baldwin","2021-09-01",44428,145,35474],["Baldwin","2021-09-02",44428,139,35613],["Baldwin","2021-09-03",44428,138,35751],["Baldwin","2021-09-04",44428,63,35814],["Baldwin","2021-09-05",44428,48,35862],["Baldwin","2021-09-06",44428,64,35926],["Baldwin","2021-09-07",44428,183,36109],["Baldwin","2021-09-08",44428,139,36248],["Baldwin","2021-09-09",44428,97,36345],["Baldwin","2021-09-10",44428,153,36498],["Baldwin","2021-09-11",44428,51,36549],["Baldwin","2021-09-12",44428,51,36600],["Baldwin","2021-09-13",44428,80,36680],["Baldwin","2021-09-14",44428,153,36833],["Baldwin","2021-09-15",44428,172,37005],["Baldwin","2021-09-16",44428,109,37114],["Baldwin","2021-09-17",44428,91,37205],["Baldwin","2021-09-18",44428,46,37251],["Baldwin","2021-09-19",44428,26,37277],["Baldwin","2021-09-20",44428,58,37335],["Baldwin","2021-09-21",44428,120,37455],["Baldwin","2021-09-22",44428,109,37564],["Baldwin","2021-09-23",44428,72,37636],["Baldwin","2021-09-24",44428,85,37721],["Baldwin","2021-09-25",44428,39,37760],["Baldwin","2021-09-26",44428,17,37777],["Baldwin","2021-09-27",44428,58,37835],["Baldwin","2021-09-28",44428,128,37963],["Baldwin","2021-09-29",44428,98,38061],["Baldwin","2021-09-30",44428,100,38161],["Baldwin","2021-10-01",44428,109,38270],["Baldwin","2021-10-02",44428,38,38308],["Baldwin","2021-10-03",44428,36,38344],["Baldwin","2021-10-04",44428,55,38399],["Baldwin","2021-10-05",44428,101,38500],["Baldwin","2021-10-06",44428,77,38577],["Baldwin","2021-10-07",44428,46,38623],["Baldwin","2021-10-08",44428,54,38677],["Baldwin","2021-10-09",44428,36,38713],["Baldwin","2021-10-10",44428,29,38742],["Baldwin","2021-10-11",44428,34,38776],["Baldwin","2021-10-12",44428,77,38853],["Baldwin","2021-10-13",44428,57,38910],["Baldwin","2021-10-14",44428,52,38962],["Baldwin","2021-10-15",44428,62,39024],["Baldwin","2021-10-16",44428,16,39040],["Baldwin","2021-10-17",44428,14,39054],["Baldwin","2021-10-18",44428,65,39119],["Baldwin","2021-10-19",44428,77,39196],["Baldwin","2021-10-20",44428,94,39290],["Baldwin","2021-10-21",44428,53,39343],["Baldwin","2021-10-22",44428,60,39403],["Baldwin","2021-10-23",44428,50,39453],["Baldwin","2021-10-24",44428,39,39492],["Baldwin","2021-10-25",44428,70,39562],["Baldwin","2021-10-26",44428,296,39858],["Baldwin","2021-10-27",44428,326,40184],["Baldwin","2021-10-28",44428,128,40312],["Baldwin","2021-10-29",44428,150,40462],["Baldwin","2021-10-30",44428,47,40509],["Baldwin","2021-10-31",44428,42,40551],["Baldwin","2021-11-01",44428,61,40612],["Baldwin","2021-11-02",44428,340,40952],["Baldwin","2021-11-03",44428,315,41267],["Baldwin","2021-11-04",44428,123,41390],["Baldwin","2021-11-05",44428,120,41510],["Baldwin","2021-11-06",44428,42,41552],["Baldwin","2021-11-07",44428,22,41574],["Baldwin","2021-11-08",44428,77,41651],["Baldwin","2021-11-09",44428,280,41931],["Baldwin","2021-11-10",44428,242,42173],["Baldwin","2021-11-11",44428,97,42270],["Baldwin","2021-11-12",44428,140,42410],["Baldwin","2021-11-13",44428,31,42441],["Baldwin","2021-11-14",44428,25,42466],["Baldwin","2021-11-15",44428,64,42530],["Baldwin","2021-11-16",44428,251,42781],["Baldwin","2021-11-17",44428,202,42983],["Baldwin","2021-11-18",44428,82,43065],["Baldwin","2021-11-19",44428,119,43184],["Baldwin","2021-11-20",44428,61,43245],["Baldwin","2021-11-21",44428,26,43271],["Baldwin","2021-11-22",44428,62,43333],["Baldwin","2021-11-23",44428,339,43672],["Baldwin","2021-11-24",44428,127,43799],["Baldwin","2021-11-25",44428,2,43801],["Baldwin","2021-11-26",44428,57,43858],["Baldwin","2021-11-27",44428,23,43881],["Baldwin","2021-11-28",44428,33,43914],["Baldwin","2021-11-29",44428,64,43978],["Baldwin","2021-11-30",44428,329,44307],["Baldwin","2021-12-01",44428,278,44585],["Baldwin","2021-12-02",44428,113,44698],["Baldwin","2021-12-03",44428,103,44801],["Baldwin","2021-12-04",44428,90,44891],["Baldwin","2021-12-05",44428,42,44933],["Baldwin","2021-12-06",44428,98,45031],["Baldwin","2021-12-07",44428,277,45308],["Baldwin","2021-12-08",44428,230,45538],["Baldwin","2021-12-09",44428,215,45753],["Baldwin","2021-12-10",44428,120,45873],["Baldwin","2021-12-11",44428,28,45901],["Baldwin","2021-12-12",44428,36,45937],["Baldwin","2021-12-13",44428,47,45984],["Baldwin","2021-12-14",44428,212,46196],["Baldwin","2021-12-15",44428,191,46387],["Baldwin","2021-12-16",44428,74,46461],["Baldwin","2021-12-17",44428,66,46527],["Baldwin","2021-12-18",44428,35,46562],["Baldwin","2021-12-19",44428,26,46588],["Baldwin","2021-12-20",44428,72,46660],["Baldwin","2021-12-21",44428,240,46900],["Baldwin","2021-12-22",44428,171,47071],["Baldwin","2021-12-23",44428,83,47154],["Baldwin","2021-12-24",44428,23,47177],["Baldwin","2021-12-26",44428,28,47205],["Baldwin","2021-12-27",44428,68,47273],["Baldwin","2021-12-28",44428,308,47581],["Baldwin","2021-12-29",44428,237,47818],["Baldwin","2021-12-30",44428,77,47895],["Baldwin","2021-12-31",44428,56,47951],["Baldwin","2022-01-01",44428,9,47960],["Baldwin","2022-01-02",44428,14,47974],["Baldwin","2022-01-03",44428,18,47992],["Banks","2020-12-14",19982,1,1],["Banks","2020-12-18",19982,2,3],["Banks","2020-12-19",19982,2,5],["Banks","2020-12-20",19982,1,6],["Banks","2020-12-21",19982,9,15],["Banks","2020-12-22",19982,16,31],["Banks","2020-12-23",19982,11,42],["Banks","2020-12-26",19982,2,44],["Banks","2020-12-27",19982,2,46],["Banks","2020-12-28",19982,16,62],["Banks","2020-12-29",19982,24,86],["Banks","2020-12-30",19982,13,99],["Banks","2020-12-31",19982,7,106],["Banks","2021-01-01",19982,3,109],["Banks","2021-01-02",19982,2,111],["Banks","2021-01-03",19982,1,112],["Banks","2021-01-04",19982,13,125],["Banks","2021-01-05",19982,24,149],["Banks","2021-01-06",19982,11,160],["Banks","2021-01-07",19982,9,169],["Banks","2021-01-08",19982,14,183],["Banks","2021-01-09",19982,5,188],["Banks","2021-01-10",19982,4,192],["Banks","2021-01-11",19982,43,235],["Banks","2021-01-12",19982,54,289],["Banks","2021-01-13",19982,101,390],["Banks","2021-01-14",19982,133,523],["Banks","2021-01-15",19982,78,601],["Banks","2021-01-16",19982,10,611],["Banks","2021-01-17",19982,11,622],["Banks","2021-01-18",19982,88,710],["Banks","2021-01-19",19982,102,812],["Banks","2021-01-20",19982,94,906],["Banks","2021-01-21",19982,41,947],["Banks","2021-01-22",19982,53,1000],["Banks","2021-01-23",19982,17,1017],["Banks","2021-01-24",19982,11,1028],["Banks","2021-01-25",19982,32,1060],["Banks","2021-01-26",19982,61,1121],["Banks","2021-01-27",19982,84,1205],["Banks","2021-01-28",19982,29,1234],["Banks","2021-01-29",19982,47,1281],["Banks","2021-01-30",19982,8,1289],["Banks","2021-01-31",19982,6,1295],["Banks","2021-02-01",19982,49,1344],["Banks","2021-02-02",19982,61,1405],["Banks","2021-02-03",19982,107,1512],["Banks","2021-02-04",19982,42,1554],["Banks","2021-02-05",19982,32,1586],["Banks","2021-02-06",19982,13,1599],["Banks","2021-02-07",19982,5,1604],["Banks","2021-02-08",19982,88,1692],["Banks","2021-02-09",19982,77,1769],["Banks","2021-02-10",19982,103,1872],["Banks","2021-02-11",19982,112,1984],["Banks","2021-02-12",19982,67,2051],["Banks","2021-02-13",19982,11,2062],["Banks","2021-02-14",19982,6,2068],["Banks","2021-02-15",19982,111,2179],["Banks","2021-02-16",19982,80,2259],["Banks","2021-02-17",19982,65,2324],["Banks","2021-02-18",19982,55,2379],["Banks","2021-02-19",19982,57,2436],["Banks","2021-02-20",19982,10,2446],["Banks","2021-02-21",19982,11,2457],["Banks","2021-02-22",19982,51,2508],["Banks","2021-02-23",19982,42,2550],["Banks","2021-02-24",19982,67,2617],["Banks","2021-02-25",19982,61,2678],["Banks","2021-02-26",19982,52,2730],["Banks","2021-02-27",19982,14,2744],["Banks","2021-02-28",19982,12,2756],["Banks","2021-03-01",19982,51,2807],["Banks","2021-03-02",19982,99,2906],["Banks","2021-03-03",19982,104,3010],["Banks","2021-03-04",19982,69,3079],["Banks","2021-03-05",19982,57,3136],["Banks","2021-03-06",19982,21,3157],["Banks","2021-03-07",19982,20,3177],["Banks","2021-03-08",19982,58,3235],["Banks","2021-03-09",19982,95,3330],["Banks","2021-03-10",19982,83,3413],["Banks","2021-03-11",19982,77,3490],["Banks","2021-03-12",19982,103,3593],["Banks","2021-03-13",19982,30,3623],["Banks","2021-03-14",19982,6,3629],["Banks","2021-03-15",19982,96,3725],["Banks","2021-03-16",19982,165,3890],["Banks","2021-03-17",19982,91,3981],["Banks","2021-03-18",19982,124,4105],["Banks","2021-03-19",19982,83,4188],["Banks","2021-03-20",19982,22,4210],["Banks","2021-03-21",19982,48,4258],["Banks","2021-03-22",19982,52,4310],["Banks","2021-03-23",19982,70,4380],["Banks","2021-03-24",19982,89,4469],["Banks","2021-03-25",19982,88,4557],["Banks","2021-03-26",19982,59,4616],["Banks","2021-03-27",19982,18,4634],["Banks","2021-03-28",19982,19,4653],["Banks","2021-03-29",19982,73,4726],["Banks","2021-03-30",19982,86,4812],["Banks","2021-03-31",19982,82,4894],["Banks","2021-04-01",19982,101,4995],["Banks","2021-04-02",19982,52,5047],["Banks","2021-04-03",19982,26,5073],["Banks","2021-04-04",19982,17,5090],["Banks","2021-04-05",19982,86,5176],["Banks","2021-04-06",19982,176,5352],["Banks","2021-04-07",19982,92,5444],["Banks","2021-04-08",19982,130,5574],["Banks","2021-04-09",19982,83,5657],["Banks","2021-04-10",19982,27,5684],["Banks","2021-04-11",19982,53,5737],["Banks","2021-04-12",19982,113,5850],["Banks","2021-04-13",19982,56,5906],["Banks","2021-04-14",19982,82,5988],["Banks","2021-04-15",19982,113,6101],["Banks","2021-04-16",19982,60,6161],["Banks","2021-04-17",19982,24,6185],["Banks","2021-04-18",19982,7,6192],["Banks","2021-04-19",19982,64,6256],["Banks","2021-04-20",19982,86,6342],["Banks","2021-04-21",19982,106,6448],["Banks","2021-04-22",19982,97,6545],["Banks","2021-04-23",19982,97,6642],["Banks","2021-04-24",19982,25,6667],["Banks","2021-04-25",19982,8,6675],["Banks","2021-04-26",19982,63,6738],["Banks","2021-04-27",19982,58,6796],["Banks","2021-04-28",19982,92,6888],["Banks","2021-04-29",19982,88,6976],["Banks","2021-04-30",19982,77,7053],["Banks","2021-05-01",19982,19,7072],["Banks","2021-05-02",19982,12,7084],["Banks","2021-05-03",19982,43,7127],["Banks","2021-05-04",19982,45,7172],["Banks","2021-05-05",19982,77,7249],["Banks","2021-05-06",19982,50,7299],["Banks","2021-05-07",19982,67,7366],["Banks","2021-05-08",19982,16,7382],["Banks","2021-05-09",19982,14,7396],["Banks","2021-05-10",19982,35,7431],["Banks","2021-05-11",19982,36,7467],["Banks","2021-05-12",19982,44,7511],["Banks","2021-05-13",19982,47,7558],["Banks","2021-05-14",19982,51,7609],["Banks","2021-05-15",19982,22,7631],["Banks","2021-05-16",19982,7,7638],["Banks","2021-05-17",19982,33,7671],["Banks","2021-05-18",19982,39,7710],["Banks","2021-05-19",19982,47,7757],["Banks","2021-05-20",19982,49,7806],["Banks","2021-05-21",19982,49,7855],["Banks","2021-05-22",19982,16,7871],["Banks","2021-05-23",19982,10,7881],["Banks","2021-05-24",19982,21,7902],["Banks","2021-05-25",19982,35,7937],["Banks","2021-05-26",19982,33,7970],["Banks","2021-05-27",19982,38,8008],["Banks","2021-05-28",19982,43,8051],["Banks","2021-05-29",19982,10,8061],["Banks","2021-05-30",19982,4,8065],["Banks","2021-05-31",19982,9,8074],["Banks","2021-06-01",19982,27,8101],["Banks","2021-06-02",19982,34,8135],["Banks","2021-06-03",19982,21,8156],["Banks","2021-06-04",19982,18,8174],["Banks","2021-06-05",19982,16,8190],["Banks","2021-06-06",19982,9,8199],["Banks","2021-06-07",19982,22,8221],["Banks","2021-06-08",19982,24,8245],["Banks","2021-06-09",19982,18,8263],["Banks","2021-06-10",19982,25,8288],["Banks","2021-06-11",19982,29,8317],["Banks","2021-06-12",19982,15,8332],["Banks","2021-06-13",19982,8,8340],["Banks","2021-06-14",19982,25,8365],["Banks","2021-06-15",19982,34,8399],["Banks","2021-06-16",19982,22,8421],["Banks","2021-06-17",19982,16,8437],["Banks","2021-06-18",19982,29,8466],["Banks","2021-06-19",19982,13,8479],["Banks","2021-06-20",19982,2,8481],["Banks","2021-06-21",19982,11,8492],["Banks","2021-06-22",19982,21,8513],["Banks","2021-06-23",19982,28,8541],["Banks","2021-06-24",19982,10,8551],["Banks","2021-06-25",19982,22,8573],["Banks","2021-06-26",19982,5,8578],["Banks","2021-06-27",19982,4,8582],["Banks","2021-06-28",19982,10,8592],["Banks","2021-06-29",19982,9,8601],["Banks","2021-06-30",19982,11,8612],["Banks","2021-07-01",19982,16,8628],["Banks","2021-07-02",19982,14,8642],["Banks","2021-07-03",19982,10,8652],["Banks","2021-07-04",19982,2,8654],["Banks","2021-07-05",19982,2,8656],["Banks","2021-07-06",19982,8,8664],["Banks","2021-07-07",19982,16,8680],["Banks","2021-07-08",19982,11,8691],["Banks","2021-07-09",19982,17,8708],["Banks","2021-07-10",19982,10,8718],["Banks","2021-07-11",19982,2,8720],["Banks","2021-07-12",19982,12,8732],["Banks","2021-07-13",19982,10,8742],["Banks","2021-07-14",19982,11,8753],["Banks","2021-07-15",19982,12,8765],["Banks","2021-07-16",19982,25,8790],["Banks","2021-07-17",19982,9,8799],["Banks","2021-07-18",19982,5,8804],["Banks","2021-07-19",19982,15,8819],["Banks","2021-07-20",19982,16,8835],["Banks","2021-07-21",19982,16,8851],["Banks","2021-07-22",19982,16,8867],["Banks","2021-07-23",19982,23,8890],["Banks","2021-07-24",19982,13,8903],["Banks","2021-07-25",19982,10,8913],["Banks","2021-07-26",19982,7,8920],["Banks","2021-07-27",19982,16,8936],["Banks","2021-07-28",19982,23,8959],["Banks","2021-07-29",19982,24,8983],["Banks","2021-07-30",19982,30,9013],["Banks","2021-07-31",19982,16,9029],["Banks","2021-08-01",19982,11,9040],["Banks","2021-08-02",19982,22,9062],["Banks","2021-08-03",19982,41,9103],["Banks","2021-08-04",19982,32,9135],["Banks","2021-08-05",19982,36,9171],["Banks","2021-08-06",19982,45,9216],["Banks","2021-08-07",19982,22,9238],["Banks","2021-08-08",19982,16,9254],["Banks","2021-08-09",19982,33,9287],["Banks","2021-08-10",19982,37,9324],["Banks","2021-08-11",19982,32,9356],["Banks","2021-08-12",19982,39,9395],["Banks","2021-08-13",19982,49,9444],["Banks","2021-08-14",19982,30,9474],["Banks","2021-08-15",19982,22,9496],["Banks","2021-08-16",19982,32,9528],["Banks","2021-08-17",19982,29,9557],["Banks","2021-08-18",19982,45,9602],["Banks","2021-08-19",19982,32,9634],["Banks","2021-08-20",19982,63,9697],["Banks","2021-08-21",19982,35,9732],["Banks","2021-08-22",19982,11,9743],["Banks","2021-08-23",19982,43,9786],["Banks","2021-08-24",19982,51,9837],["Banks","2021-08-25",19982,28,9865],["Banks","2021-08-26",19982,50,9915],["Banks","2021-08-27",19982,59,9974],["Banks","2021-08-28",19982,34,10008],["Banks","2021-08-29",19982,19,10027],["Banks","2021-08-30",19982,50,10077],["Banks","2021-08-31",19982,63,10140],["Banks","2021-09-01",19982,59,10199],["Banks","2021-09-02",19982,47,10246],["Banks","2021-09-03",19982,76,10322],["Banks","2021-09-04",19982,32,10354],["Banks","2021-09-05",19982,23,10377],["Banks","2021-09-06",19982,5,10382],["Banks","2021-09-07",19982,38,10420],["Banks","2021-09-08",19982,46,10466],["Banks","2021-09-09",19982,43,10509],["Banks","2021-09-10",19982,70,10579],["Banks","2021-09-11",19982,31,10610],["Banks","2021-09-12",19982,13,10623],["Banks","2021-09-13",19982,39,10662],["Banks","2021-09-14",19982,39,10701],["Banks","2021-09-15",19982,37,10738],["Banks","2021-09-16",19982,50,10788],["Banks","2021-09-17",19982,45,10833],["Banks","2021-09-18",19982,28,10861],["Banks","2021-09-19",19982,11,10872],["Banks","2021-09-20",19982,43,10915],["Banks","2021-09-21",19982,39,10954],["Banks","2021-09-22",19982,36,10990],["Banks","2021-09-23",19982,23,11013],["Banks","2021-09-24",19982,49,11062],["Banks","2021-09-25",19982,14,11076],["Banks","2021-09-26",19982,10,11086],["Banks","2021-09-27",19982,27,11113],["Banks","2021-09-28",19982,35,11148],["Banks","2021-09-29",19982,21,11169],["Banks","2021-09-30",19982,31,11200],["Banks","2021-10-01",19982,52,11252],["Banks","2021-10-02",19982,13,11265],["Banks","2021-10-03",19982,14,11279],["Banks","2021-10-04",19982,15,11294],["Banks","2021-10-05",19982,20,11314],["Banks","2021-10-06",19982,28,11342],["Banks","2021-10-07",19982,26,11368],["Banks","2021-10-08",19982,36,11404],["Banks","2021-10-09",19982,7,11411],["Banks","2021-10-10",19982,8,11419],["Banks","2021-10-11",19982,20,11439],["Banks","2021-10-12",19982,29,11468],["Banks","2021-10-13",19982,18,11486],["Banks","2021-10-14",19982,19,11505],["Banks","2021-10-15",19982,25,11530],["Banks","2021-10-16",19982,11,11541],["Banks","2021-10-17",19982,9,11550],["Banks","2021-10-18",19982,9,11559],["Banks","2021-10-19",19982,13,11572],["Banks","2021-10-20",19982,21,11593],["Banks","2021-10-21",19982,14,11607],["Banks","2021-10-22",19982,24,11631],["Banks","2021-10-23",19982,25,11656],["Banks","2021-10-24",19982,7,11663],["Banks","2021-10-25",19982,42,11705],["Banks","2021-10-26",19982,90,11795],["Banks","2021-10-27",19982,72,11867],["Banks","2021-10-28",19982,73,11940],["Banks","2021-10-29",19982,59,11999],["Banks","2021-10-30",19982,11,12010],["Banks","2021-10-31",19982,8,12018],["Banks","2021-11-01",19982,52,12070],["Banks","2021-11-02",19982,45,12115],["Banks","2021-11-03",19982,55,12170],["Banks","2021-11-04",19982,37,12207],["Banks","2021-11-05",19982,61,12268],["Banks","2021-11-06",19982,14,12282],["Banks","2021-11-07",19982,8,12290],["Banks","2021-11-08",19982,33,12323],["Banks","2021-11-09",19982,35,12358],["Banks","2021-11-10",19982,46,12404],["Banks","2021-11-11",19982,46,12450],["Banks","2021-11-12",19982,47,12497],["Banks","2021-11-13",19982,8,12505],["Banks","2021-11-14",19982,9,12514],["Banks","2021-11-15",19982,26,12540],["Banks","2021-11-16",19982,38,12578],["Banks","2021-11-17",19982,34,12612],["Banks","2021-11-18",19982,41,12653],["Banks","2021-11-19",19982,33,12686],["Banks","2021-11-20",19982,19,12705],["Banks","2021-11-21",19982,8,12713],["Banks","2021-11-22",19982,21,12734],["Banks","2021-11-23",19982,35,12769],["Banks","2021-11-24",19982,27,12796],["Banks","2021-11-25",19982,2,12798],["Banks","2021-11-26",19982,18,12816],["Banks","2021-11-27",19982,11,12827],["Banks","2021-11-28",19982,8,12835],["Banks","2021-11-29",19982,36,12871],["Banks","2021-11-30",19982,62,12933],["Banks","2021-12-01",19982,58,12991],["Banks","2021-12-02",19982,33,13024],["Banks","2021-12-03",19982,44,13068],["Banks","2021-12-04",19982,18,13086],["Banks","2021-12-05",19982,5,13091],["Banks","2021-12-06",19982,33,13124],["Banks","2021-12-07",19982,26,13150],["Banks","2021-12-08",19982,27,13177],["Banks","2021-12-09",19982,36,13213],["Banks","2021-12-10",19982,41,13254],["Banks","2021-12-11",19982,12,13266],["Banks","2021-12-12",19982,16,13282],["Banks","2021-12-13",19982,23,13305],["Banks","2021-12-14",19982,29,13334],["Banks","2021-12-15",19982,26,13360],["Banks","2021-12-16",19982,24,13384],["Banks","2021-12-17",19982,37,13421],["Banks","2021-12-18",19982,17,13438],["Banks","2021-12-19",19982,13,13451],["Banks","2021-12-20",19982,28,13479],["Banks","2021-12-21",19982,39,13518],["Banks","2021-12-22",19982,41,13559],["Banks","2021-12-23",19982,30,13589],["Banks","2021-12-24",19982,4,13593],["Banks","2021-12-26",19982,12,13605],["Banks","2021-12-27",19982,30,13635],["Banks","2021-12-28",19982,41,13676],["Banks","2021-12-29",19982,42,13718],["Banks","2021-12-30",19982,30,13748],["Banks","2021-12-31",19982,27,13775],["Banks","2022-01-01",19982,8,13783],["Banks","2022-01-02",19982,12,13795],["Banks","2022-01-03",19982,14,13809],["Barrow","2020-12-16",86383,2,2],["Barrow","2020-12-17",86383,8,10],["Barrow","2020-12-18",86383,23,33],["Barrow","2020-12-19",86383,10,43],["Barrow","2020-12-20",86383,11,54],["Barrow","2020-12-21",86383,30,84],["Barrow","2020-12-22",86383,37,121],["Barrow","2020-12-23",86383,64,185],["Barrow","2020-12-24",86383,17,202],["Barrow","2020-12-25",86383,2,204],["Barrow","2020-12-26",86383,10,214],["Barrow","2020-12-27",86383,10,224],["Barrow","2020-12-28",86383,73,297],["Barrow","2020-12-29",86383,170,467],["Barrow","2020-12-30",86383,74,541],["Barrow","2020-12-31",86383,46,587],["Barrow","2021-01-01",86383,21,608],["Barrow","2021-01-02",86383,13,621],["Barrow","2021-01-03",86383,19,640],["Barrow","2021-01-04",86383,63,703],["Barrow","2021-01-05",86383,59,762],["Barrow","2021-01-06",86383,102,864],["Barrow","2021-01-07",86383,61,925],["Barrow","2021-01-08",86383,88,1013],["Barrow","2021-01-09",86383,52,1065],["Barrow","2021-01-10",86383,16,1081],["Barrow","2021-01-11",86383,95,1176],["Barrow","2021-01-12",86383,124,1300],["Barrow","2021-01-13",86383,122,1422],["Barrow","2021-01-14",86383,178,1600],["Barrow","2021-01-15",86383,235,1835],["Barrow","2021-01-16",86383,162,1997],["Barrow","2021-01-17",86383,55,2052],["Barrow","2021-01-18",86383,197,2249],["Barrow","2021-01-19",86383,245,2494],["Barrow","2021-01-20",86383,384,2878],["Barrow","2021-01-21",86383,184,3062],["Barrow","2021-01-22",86383,193,3255],["Barrow","2021-01-23",86383,159,3414],["Barrow","2021-01-24",86383,53,3467],["Barrow","2021-01-25",86383,153,3620],["Barrow","2021-01-26",86383,277,3897],["Barrow","2021-01-27",86383,311,4208],["Barrow","2021-01-28",86383,259,4467],["Barrow","2021-01-29",86383,308,4775],["Barrow","2021-01-30",86383,52,4827],["Barrow","2021-01-31",86383,11,4838],["Barrow","2021-02-01",86383,130,4968],["Barrow","2021-02-02",86383,194,5162],["Barrow","2021-02-03",86383,237,5399],["Barrow","2021-02-04",86383,178,5577],["Barrow","2021-02-05",86383,162,5739],["Barrow","2021-02-06",86383,86,5825],["Barrow","2021-02-07",86383,22,5847],["Barrow","2021-02-08",86383,163,6010],["Barrow","2021-02-09",86383,242,6252],["Barrow","2021-02-10",86383,239,6491],["Barrow","2021-02-11",86383,210,6701],["Barrow","2021-02-12",86383,247,6948],["Barrow","2021-02-13",86383,163,7111],["Barrow","2021-02-14",86383,59,7170],["Barrow","2021-02-15",86383,259,7429],["Barrow","2021-02-16",86383,290,7719],["Barrow","2021-02-17",86383,316,8035],["Barrow","2021-02-18",86383,205,8240],["Barrow","2021-02-19",86383,220,8460],["Barrow","2021-02-20",86383,154,8614],["Barrow","2021-02-21",86383,26,8640],["Barrow","2021-02-22",86383,172,8812],["Barrow","2021-02-23",86383,328,9140],["Barrow","2021-02-24",86383,377,9517],["Barrow","2021-02-25",86383,268,9785],["Barrow","2021-02-26",86383,404,10189],["Barrow","2021-02-27",86383,209,10398],["Barrow","2021-02-28",86383,46,10444],["Barrow","2021-03-01",86383,234,10678],["Barrow","2021-03-02",86383,356,11034],["Barrow","2021-03-03",86383,354,11388],["Barrow","2021-03-04",86383,273,11661],["Barrow","2021-03-05",86383,303,11964],["Barrow","2021-03-06",86383,186,12150],["Barrow","2021-03-07",86383,55,12205],["Barrow","2021-03-08",86383,383,12588],["Barrow","2021-03-09",86383,444,13032],["Barrow","2021-03-10",86383,466,13498],["Barrow","2021-03-11",86383,707,14205],["Barrow","2021-03-12",86383,388,14593],["Barrow","2021-03-13",86383,196,14789],["Barrow","2021-03-14",86383,104,14893],["Barrow","2021-03-15",86383,309,15202],["Barrow","2021-03-16",86383,492,15694],["Barrow","2021-03-17",86383,701,16395],["Barrow","2021-03-18",86383,449,16844],["Barrow","2021-03-19",86383,350,17194],["Barrow","2021-03-20",86383,306,17500],["Barrow","2021-03-21",86383,99,17599],["Barrow","2021-03-22",86383,277,17876],["Barrow","2021-03-23",86383,608,18484],["Barrow","2021-03-24",86383,485,18969],["Barrow","2021-03-25",86383,655,19624],["Barrow","2021-03-26",86383,503,20127],["Barrow","2021-03-27",86383,279,20406],["Barrow","2021-03-28",86383,130,20536],["Barrow","2021-03-29",86383,510,21046],["Barrow","2021-03-30",86383,680,21726],["Barrow","2021-03-31",86383,723,22449],["Barrow","2021-04-01",86383,1009,23458],["Barrow","2021-04-02",86383,542,24000],["Barrow","2021-04-03",86383,277,24277],["Barrow","2021-04-04",86383,138,24415],["Barrow","2021-04-05",86383,524,24939],["Barrow","2021-04-06",86383,676,25615],["Barrow","2021-04-07",86383,856,26471],["Barrow","2021-04-08",86383,540,27011],["Barrow","2021-04-09",86383,572,27583],["Barrow","2021-04-10",86383,355,27938],["Barrow","2021-04-11",86383,185,28123],["Barrow","2021-04-12",86383,463,28586],["Barrow","2021-04-13",86383,630,29216],["Barrow","2021-04-14",86383,642,29858],["Barrow","2021-04-15",86383,552,30410],["Barrow","2021-04-16",86383,526,30936],["Barrow","2021-04-17",86383,215,31151],["Barrow","2021-04-18",86383,127,31278],["Barrow","2021-04-19",86383,414,31692],["Barrow","2021-04-20",86383,656,32348],["Barrow","2021-04-21",86383,624,32972],["Barrow","2021-04-22",86383,636,33608],["Barrow","2021-04-23",86383,616,34224],["Barrow","2021-04-24",86383,236,34460],["Barrow","2021-04-25",86383,107,34567],["Barrow","2021-04-26",86383,480,35047],["Barrow","2021-04-27",86383,617,35664],["Barrow","2021-04-28",86383,554,36218],["Barrow","2021-04-29",86383,527,36745],["Barrow","2021-04-30",86383,554,37299],["Barrow","2021-05-01",86383,291,37590],["Barrow","2021-05-02",86383,137,37727],["Barrow","2021-05-03",86383,332,38059],["Barrow","2021-05-04",86383,446,38505],["Barrow","2021-05-05",86383,408,38913],["Barrow","2021-05-06",86383,377,39290],["Barrow","2021-05-07",86383,417,39707],["Barrow","2021-05-08",86383,251,39958],["Barrow","2021-05-09",86383,93,40051],["Barrow","2021-05-10",86383,234,40285],["Barrow","2021-05-11",86383,328,40613],["Barrow","2021-05-12",86383,337,40950],["Barrow","2021-05-13",86383,270,41220],["Barrow","2021-05-14",86383,383,41603],["Barrow","2021-05-15",86383,208,41811],["Barrow","2021-05-16",86383,147,41958],["Barrow","2021-05-17",86383,276,42234],["Barrow","2021-05-18",86383,337,42571],["Barrow","2021-05-19",86383,401,42972],["Barrow","2021-05-20",86383,326,43298],["Barrow","2021-05-21",86383,347,43645],["Barrow","2021-05-22",86383,229,43874],["Barrow","2021-05-23",86383,92,43966],["Barrow","2021-05-24",86383,202,44168],["Barrow","2021-05-25",86383,292,44460],["Barrow","2021-05-26",86383,255,44715],["Barrow","2021-05-27",86383,230,44945],["Barrow","2021-05-28",86383,249,45194],["Barrow","2021-05-29",86383,111,45305],["Barrow","2021-05-30",86383,74,45379],["Barrow","2021-05-31",86383,53,45432],["Barrow","2021-06-01",86383,246,45678],["Barrow","2021-06-02",86383,247,45925],["Barrow","2021-06-03",86383,209,46134],["Barrow","2021-06-04",86383,280,46414],["Barrow","2021-06-05",86383,220,46634],["Barrow","2021-06-06",86383,96,46730],["Barrow","2021-06-07",86383,209,46939],["Barrow","2021-06-08",86383,197,47136],["Barrow","2021-06-09",86383,208,47344],["Barrow","2021-06-10",86383,180,47524],["Barrow","2021-06-11",86383,286,47810],["Barrow","2021-06-12",86383,167,47977],["Barrow","2021-06-13",86383,77,48054],["Barrow","2021-06-14",86383,132,48186],["Barrow","2021-06-15",86383,215,48401],["Barrow","2021-06-16",86383,159,48560],["Barrow","2021-06-17",86383,141,48701],["Barrow","2021-06-18",86383,191,48892],["Barrow","2021-06-19",86383,113,49005],["Barrow","2021-06-20",86383,48,49053],["Barrow","2021-06-21",86383,107,49160],["Barrow","2021-06-22",86383,137,49297],["Barrow","2021-06-23",86383,147,49444],["Barrow","2021-06-24",86383,138,49582],["Barrow","2021-06-25",86383,174,49756],["Barrow","2021-06-26",86383,121,49877],["Barrow","2021-06-27",86383,58,49935],["Barrow","2021-06-28",86383,167,50102],["Barrow","2021-06-29",86383,133,50235],["Barrow","2021-06-30",86383,157,50392],["Barrow","2021-07-01",86383,98,50490],["Barrow","2021-07-02",86383,154,50644],["Barrow","2021-07-03",86383,86,50730],["Barrow","2021-07-04",86383,8,50738],["Barrow","2021-07-05",86383,58,50796],["Barrow","2021-07-06",86383,92,50888],["Barrow","2021-07-07",86383,124,51012],["Barrow","2021-07-08",86383,79,51091],["Barrow","2021-07-09",86383,153,51244],["Barrow","2021-07-10",86383,76,51320],["Barrow","2021-07-11",86383,60,51380],["Barrow","2021-07-12",86383,85,51465],["Barrow","2021-07-13",86383,93,51558],["Barrow","2021-07-14",86383,90,51648],["Barrow","2021-07-15",86383,91,51739],["Barrow","2021-07-16",86383,151,51890],["Barrow","2021-07-17",86383,96,51986],["Barrow","2021-07-18",86383,66,52052],["Barrow","2021-07-19",86383,113,52165],["Barrow","2021-07-20",86383,102,52267],["Barrow","2021-07-21",86383,211,52478],["Barrow","2021-07-22",86383,117,52595],["Barrow","2021-07-23",86383,151,52746],["Barrow","2021-07-24",86383,118,52864],["Barrow","2021-07-25",86383,70,52934],["Barrow","2021-07-26",86383,130,53064],["Barrow","2021-07-27",86383,128,53192],["Barrow","2021-07-28",86383,195,53387],["Barrow","2021-07-29",86383,140,53527],["Barrow","2021-07-30",86383,207,53734],["Barrow","2021-07-31",86383,119,53853],["Barrow","2021-08-01",86383,87,53940],["Barrow","2021-08-02",86383,174,54114],["Barrow","2021-08-03",86383,107,54221],["Barrow","2021-08-04",86383,182,54403],["Barrow","2021-08-05",86383,172,54575],["Barrow","2021-08-06",86383,211,54786],["Barrow","2021-08-07",86383,150,54936],["Barrow","2021-08-08",86383,113,55049],["Barrow","2021-08-09",86383,180,55229],["Barrow","2021-08-10",86383,174,55403],["Barrow","2021-08-11",86383,165,55568],["Barrow","2021-08-12",86383,172,55740],["Barrow","2021-08-13",86383,227,55967],["Barrow","2021-08-14",86383,155,56122],["Barrow","2021-08-15",86383,108,56230],["Barrow","2021-08-16",86383,196,56426],["Barrow","2021-08-17",86383,173,56599],["Barrow","2021-08-18",86383,204,56803],["Barrow","2021-08-19",86383,197,57000],["Barrow","2021-08-20",86383,283,57283],["Barrow","2021-08-21",86383,166,57449],["Barrow","2021-08-22",86383,89,57538],["Barrow","2021-08-23",86383,183,57721],["Barrow","2021-08-24",86383,201,57922],["Barrow","2021-08-25",86383,203,58125],["Barrow","2021-08-26",86383,189,58314],["Barrow","2021-08-27",86383,280,58594],["Barrow","2021-08-28",86383,189,58783],["Barrow","2021-08-29",86383,119,58902],["Barrow","2021-08-30",86383,186,59088],["Barrow","2021-08-31",86383,183,59271],["Barrow","2021-09-01",86383,200,59471],["Barrow","2021-09-02",86383,210,59681],["Barrow","2021-09-03",86383,259,59940],["Barrow","2021-09-04",86383,159,60099],["Barrow","2021-09-05",86383,117,60216],["Barrow","2021-09-06",86383,32,60248],["Barrow","2021-09-07",86383,183,60431],["Barrow","2021-09-08",86383,185,60616],["Barrow","2021-09-09",86383,194,60810],["Barrow","2021-09-10",86383,228,61038],["Barrow","2021-09-11",86383,130,61168],["Barrow","2021-09-12",86383,86,61254],["Barrow","2021-09-13",86383,188,61442],["Barrow","2021-09-14",86383,148,61590],["Barrow","2021-09-15",86383,159,61749],["Barrow","2021-09-16",86383,143,61892],["Barrow","2021-09-17",86383,219,62111],["Barrow","2021-09-18",86383,125,62236],["Barrow","2021-09-19",86383,76,62312],["Barrow","2021-09-20",86383,109,62421],["Barrow","2021-09-21",86383,135,62556],["Barrow","2021-09-22",86383,124,62680],["Barrow","2021-09-23",86383,115,62795],["Barrow","2021-09-24",86383,219,63014],["Barrow","2021-09-25",86383,121,63135],["Barrow","2021-09-26",86383,63,63198],["Barrow","2021-09-27",86383,108,63306],["Barrow","2021-09-28",86383,189,63495],["Barrow","2021-09-29",86383,174,63669],["Barrow","2021-09-30",86383,150,63819],["Barrow","2021-10-01",86383,207,64026],["Barrow","2021-10-02",86383,86,64112],["Barrow","2021-10-03",86383,60,64172],["Barrow","2021-10-04",86383,183,64355],["Barrow","2021-10-05",86383,116,64471],["Barrow","2021-10-06",86383,123,64594],["Barrow","2021-10-07",86383,119,64713],["Barrow","2021-10-08",86383,189,64902],["Barrow","2021-10-09",86383,90,64992],["Barrow","2021-10-10",86383,52,65044],["Barrow","2021-10-11",86383,79,65123],["Barrow","2021-10-12",86383,92,65215],["Barrow","2021-10-13",86383,131,65346],["Barrow","2021-10-14",86383,96,65442],["Barrow","2021-10-15",86383,160,65602],["Barrow","2021-10-16",86383,64,65666],["Barrow","2021-10-17",86383,41,65707],["Barrow","2021-10-18",86383,98,65805],["Barrow","2021-10-19",86383,94,65899],["Barrow","2021-10-20",86383,162,66061],["Barrow","2021-10-21",86383,87,66148],["Barrow","2021-10-22",86383,156,66304],["Barrow","2021-10-23",86383,143,66447],["Barrow","2021-10-24",86383,100,66547],["Barrow","2021-10-25",86383,225,66772],["Barrow","2021-10-26",86383,173,66945],["Barrow","2021-10-27",86383,204,67149],["Barrow","2021-10-28",86383,209,67358],["Barrow","2021-10-29",86383,242,67600],["Barrow","2021-10-30",86383,93,67693],["Barrow","2021-10-31",86383,71,67764],["Barrow","2021-11-01",86383,165,67929],["Barrow","2021-11-02",86383,199,68128],["Barrow","2021-11-03",86383,230,68358],["Barrow","2021-11-04",86383,168,68526],["Barrow","2021-11-05",86383,263,68789],["Barrow","2021-11-06",86383,98,68887],["Barrow","2021-11-07",86383,79,68966],["Barrow","2021-11-08",86383,142,69108],["Barrow","2021-11-09",86383,158,69266],["Barrow","2021-11-10",86383,173,69439],["Barrow","2021-11-11",86383,183,69622],["Barrow","2021-11-12",86383,196,69818],["Barrow","2021-11-13",86383,117,69935],["Barrow","2021-11-14",86383,44,69979],["Barrow","2021-11-15",86383,218,70197],["Barrow","2021-11-16",86383,155,70352],["Barrow","2021-11-17",86383,133,70485],["Barrow","2021-11-18",86383,182,70667],["Barrow","2021-11-19",86383,245,70912],["Barrow","2021-11-20",86383,126,71038],["Barrow","2021-11-21",86383,94,71132],["Barrow","2021-11-22",86383,183,71315],["Barrow","2021-11-23",86383,179,71494],["Barrow","2021-11-24",86383,124,71618],["Barrow","2021-11-26",86383,138,71756],["Barrow","2021-11-27",86383,105,71861],["Barrow","2021-11-28",86383,62,71923],["Barrow","2021-11-29",86383,224,72147],["Barrow","2021-11-30",86383,232,72379],["Barrow","2021-12-01",86383,268,72647],["Barrow","2021-12-02",86383,265,72912],["Barrow","2021-12-03",86383,305,73217],["Barrow","2021-12-04",86383,166,73383],["Barrow","2021-12-05",86383,98,73481],["Barrow","2021-12-06",86383,252,73733],["Barrow","2021-12-07",86383,191,73924],["Barrow","2021-12-08",86383,193,74117],["Barrow","2021-12-09",86383,230,74347],["Barrow","2021-12-10",86383,305,74652],["Barrow","2021-12-11",86383,125,74777],["Barrow","2021-12-12",86383,91,74868],["Barrow","2021-12-13",86383,169,75037],["Barrow","2021-12-14",86383,136,75173],["Barrow","2021-12-15",86383,192,75365],["Barrow","2021-12-16",86383,177,75542],["Barrow","2021-12-17",86383,221,75763],["Barrow","2021-12-18",86383,140,75903],["Barrow","2021-12-19",86383,76,75979],["Barrow","2021-12-20",86383,175,76154],["Barrow","2021-12-21",86383,192,76346],["Barrow","2021-12-22",86383,241,76587],["Barrow","2021-12-23",86383,199,76786],["Barrow","2021-12-24",86383,60,76846],["Barrow","2021-12-26",86383,74,76920],["Barrow","2021-12-27",86383,192,77112],["Barrow","2021-12-28",86383,220,77332],["Barrow","2021-12-29",86383,207,77539],["Barrow","2021-12-30",86383,232,77771],["Barrow","2021-12-31",86383,114,77885],["Barrow","2022-01-01",86383,34,77919],["Barrow","2022-01-02",86383,63,77982],["Barrow","2022-01-03",86383,44,78026],["Bartow","2020-12-14",110771,2,2],["Bartow","2020-12-15",110771,1,3],["Bartow","2020-12-17",110771,4,7],["Bartow","2020-12-18",110771,22,29],["Bartow","2020-12-19",110771,3,32],["Bartow","2020-12-20",110771,8,40],["Bartow","2020-12-21",110771,38,78],["Bartow","2020-12-22",110771,43,121],["Bartow","2020-12-23",110771,58,179],["Bartow","2020-12-24",110771,11,190],["Bartow","2020-12-26",110771,3,193],["Bartow","2020-12-27",110771,19,212],["Bartow","2020-12-28",110771,261,473],["Bartow","2020-12-29",110771,132,605],["Bartow","2020-12-30",110771,167,772],["Bartow","2020-12-31",110771,59,831],["Bartow","2021-01-01",110771,25,856],["Bartow","2021-01-02",110771,18,874],["Bartow","2021-01-03",110771,12,886],["Bartow","2021-01-04",110771,105,991],["Bartow","2021-01-05",110771,140,1131],["Bartow","2021-01-06",110771,114,1245],["Bartow","2021-01-07",110771,186,1431],["Bartow","2021-01-08",110771,86,1517],["Bartow","2021-01-09",110771,18,1535],["Bartow","2021-01-10",110771,11,1546],["Bartow","2021-01-11",110771,280,1826],["Bartow","2021-01-12",110771,366,2192],["Bartow","2021-01-13",110771,441,2633],["Bartow","2021-01-14",110771,512,3145],["Bartow","2021-01-15",110771,255,3400],["Bartow","2021-01-16",110771,68,3468],["Bartow","2021-01-17",110771,87,3555],["Bartow","2021-01-18",110771,551,4106],["Bartow","2021-01-19",110771,597,4703],["Bartow","2021-01-20",110771,505,5208],["Bartow","2021-01-21",110771,392,5600],["Bartow","2021-01-22",110771,224,5824],["Bartow","2021-01-23",110771,52,5876],["Bartow","2021-01-24",110771,52,5928],["Bartow","2021-01-25",110771,530,6458],["Bartow","2021-01-26",110771,639,7097],["Bartow","2021-01-27",110771,593,7690],["Bartow","2021-01-28",110771,580,8270],["Bartow","2021-01-29",110771,215,8485],["Bartow","2021-01-30",110771,51,8536],["Bartow","2021-01-31",110771,7,8543],["Bartow","2021-02-01",110771,326,8869],["Bartow","2021-02-02",110771,252,9121],["Bartow","2021-02-03",110771,289,9410],["Bartow","2021-02-04",110771,433,9843],["Bartow","2021-02-05",110771,250,10093],["Bartow","2021-02-06",110771,53,10146],["Bartow","2021-02-07",110771,16,10162],["Bartow","2021-02-08",110771,347,10509],["Bartow","2021-02-09",110771,332,10841],["Bartow","2021-02-10",110771,460,11301],["Bartow","2021-02-11",110771,491,11792],["Bartow","2021-02-12",110771,353,12145],["Bartow","2021-02-13",110771,173,12318],["Bartow","2021-02-14",110771,61,12379],["Bartow","2021-02-15",110771,511,12890],["Bartow","2021-02-16",110771,241,13131],["Bartow","2021-02-17",110771,323,13454],["Bartow","2021-02-18",110771,385,13839],["Bartow","2021-02-19",110771,260,14099],["Bartow","2021-02-20",110771,41,14140],["Bartow","2021-02-21",110771,35,14175],["Bartow","2021-02-22",110771,140,14315],["Bartow","2021-02-23",110771,236,14551],["Bartow","2021-02-24",110771,572,15123],["Bartow","2021-02-25",110771,574,15697],["Bartow","2021-02-26",110771,431,16128],["Bartow","2021-02-27",110771,113,16241],["Bartow","2021-02-28",110771,76,16317],["Bartow","2021-03-01",110771,781,17098],["Bartow","2021-03-02",110771,760,17858],["Bartow","2021-03-03",110771,754,18612],["Bartow","2021-03-04",110771,635,19247],["Bartow","2021-03-05",110771,444,19691],["Bartow","2021-03-06",110771,125,19816],["Bartow","2021-03-07",110771,75,19891],["Bartow","2021-03-08",110771,579,20470],["Bartow","2021-03-09",110771,517,20987],["Bartow","2021-03-10",110771,425,21412],["Bartow","2021-03-11",110771,394,21806],["Bartow","2021-03-12",110771,493,22299],["Bartow","2021-03-13",110771,191,22490],["Bartow","2021-03-14",110771,49,22539],["Bartow","2021-03-15",110771,683,23222],["Bartow","2021-03-16",110771,709,23931],["Bartow","2021-03-17",110771,646,24577],["Bartow","2021-03-18",110771,535,25112],["Bartow","2021-03-19",110771,616,25728],["Bartow","2021-03-20",110771,90,25818],["Bartow","2021-03-21",110771,117,25935],["Bartow","2021-03-22",110771,463,26398],["Bartow","2021-03-23",110771,626,27024],["Bartow","2021-03-24",110771,633,27657],["Bartow","2021-03-25",110771,521,28178],["Bartow","2021-03-26",110771,636,28814],["Bartow","2021-03-27",110771,274,29088],["Bartow","2021-03-28",110771,132,29220],["Bartow","2021-03-29",110771,516,29736],["Bartow","2021-03-30",110771,642,30378],["Bartow","2021-03-31",110771,742,31120],["Bartow","2021-04-01",110771,721,31841],["Bartow","2021-04-02",110771,508,32349],["Bartow","2021-04-03",110771,204,32553],["Bartow","2021-04-04",110771,148,32701],["Bartow","2021-04-05",110771,899,33600],["Bartow","2021-04-06",110771,624,34224],["Bartow","2021-04-07",110771,878,35102],["Bartow","2021-04-08",110771,645,35747],["Bartow","2021-04-09",110771,769,36516],["Bartow","2021-04-10",110771,368,36884],["Bartow","2021-04-11",110771,133,37017],["Bartow","2021-04-12",110771,867,37884],["Bartow","2021-04-13",110771,639,38523],["Bartow","2021-04-14",110771,900,39423],["Bartow","2021-04-15",110771,698,40121],["Bartow","2021-04-16",110771,895,41016],["Bartow","2021-04-17",110771,125,41141],["Bartow","2021-04-18",110771,75,41216],["Bartow","2021-04-19",110771,666,41882],["Bartow","2021-04-20",110771,628,42510],["Bartow","2021-04-21",110771,789,43299],["Bartow","2021-04-22",110771,626,43925],["Bartow","2021-04-23",110771,728,44653],["Bartow","2021-04-24",110771,317,44970],["Bartow","2021-04-25",110771,99,45069],["Bartow","2021-04-26",110771,580,45649],["Bartow","2021-04-27",110771,433,46082],["Bartow","2021-04-28",110771,636,46718],["Bartow","2021-04-29",110771,540,47258],["Bartow","2021-04-30",110771,650,47908],["Bartow","2021-05-01",110771,180,48088],["Bartow","2021-05-02",110771,93,48181],["Bartow","2021-05-03",110771,393,48574],["Bartow","2021-05-04",110771,421,48995],["Bartow","2021-05-05",110771,526,49521],["Bartow","2021-05-06",110771,386,49907],["Bartow","2021-05-07",110771,452,50359],["Bartow","2021-05-08",110771,277,50636],["Bartow","2021-05-09",110771,61,50697],["Bartow","2021-05-10",110771,337,51034],["Bartow","2021-05-11",110771,293,51327],["Bartow","2021-05-12",110771,384,51711],["Bartow","2021-05-13",110771,427,52138],["Bartow","2021-05-14",110771,502,52640],["Bartow","2021-05-15",110771,178,52818],["Bartow","2021-05-16",110771,106,52924],["Bartow","2021-05-17",110771,293,53217],["Bartow","2021-05-18",110771,295,53512],["Bartow","2021-05-19",110771,384,53896],["Bartow","2021-05-20",110771,310,54206],["Bartow","2021-05-21",110771,331,54537],["Bartow","2021-05-22",110771,142,54679],["Bartow","2021-05-23",110771,91,54770],["Bartow","2021-05-24",110771,196,54966],["Bartow","2021-05-25",110771,242,55208],["Bartow","2021-05-26",110771,243,55451],["Bartow","2021-05-27",110771,238,55689],["Bartow","2021-05-28",110771,205,55894],["Bartow","2021-05-29",110771,101,55995],["Bartow","2021-05-30",110771,62,56057],["Bartow","2021-05-31",110771,37,56094],["Bartow","2021-06-01",110771,241,56335],["Bartow","2021-06-02",110771,194,56529],["Bartow","2021-06-03",110771,186,56715],["Bartow","2021-06-04",110771,263,56978],["Bartow","2021-06-05",110771,116,57094],["Bartow","2021-06-06",110771,99,57193],["Bartow","2021-06-07",110771,166,57359],["Bartow","2021-06-08",110771,183,57542],["Bartow","2021-06-09",110771,149,57691],["Bartow","2021-06-10",110771,174,57865],["Bartow","2021-06-11",110771,231,58096],["Bartow","2021-06-12",110771,144,58240],["Bartow","2021-06-13",110771,62,58302],["Bartow","2021-06-14",110771,96,58398],["Bartow","2021-06-15",110771,157,58555],["Bartow","2021-06-16",110771,107,58662],["Bartow","2021-06-17",110771,125,58787],["Bartow","2021-06-18",110771,143,58930],["Bartow","2021-06-19",110771,85,59015],["Bartow","2021-06-20",110771,51,59066],["Bartow","2021-06-21",110771,107,59173],["Bartow","2021-06-22",110771,102,59275],["Bartow","2021-06-23",110771,160,59435],["Bartow","2021-06-24",110771,129,59564],["Bartow","2021-06-25",110771,135,59699],["Bartow","2021-06-26",110771,65,59764],["Bartow","2021-06-27",110771,46,59810],["Bartow","2021-06-28",110771,89,59899],["Bartow","2021-06-29",110771,138,60037],["Bartow","2021-06-30",110771,84,60121],["Bartow","2021-07-01",110771,101,60222],["Bartow","2021-07-02",110771,150,60372],["Bartow","2021-07-03",110771,55,60427],["Bartow","2021-07-04",110771,7,60434],["Bartow","2021-07-05",110771,80,60514],["Bartow","2021-07-06",110771,96,60610],["Bartow","2021-07-07",110771,80,60690],["Bartow","2021-07-08",110771,99,60789],["Bartow","2021-07-09",110771,114,60903],["Bartow","2021-07-10",110771,81,60984],["Bartow","2021-07-11",110771,44,61028],["Bartow","2021-07-12",110771,77,61105],["Bartow","2021-07-13",110771,109,61214],["Bartow","2021-07-14",110771,84,61298],["Bartow","2021-07-15",110771,110,61408],["Bartow","2021-07-16",110771,148,61556],["Bartow","2021-07-17",110771,76,61632],["Bartow","2021-07-18",110771,61,61693],["Bartow","2021-07-19",110771,108,61801],["Bartow","2021-07-20",110771,156,61957],["Bartow","2021-07-21",110771,113,62070],["Bartow","2021-07-22",110771,154,62224],["Bartow","2021-07-23",110771,153,62377],["Bartow","2021-07-24",110771,105,62482],["Bartow","2021-07-25",110771,74,62556],["Bartow","2021-07-26",110771,124,62680],["Bartow","2021-07-27",110771,145,62825],["Bartow","2021-07-28",110771,183,63008],["Bartow","2021-07-29",110771,167,63175],["Bartow","2021-07-30",110771,218,63393],["Bartow","2021-07-31",110771,160,63553],["Bartow","2021-08-01",110771,115,63668],["Bartow","2021-08-02",110771,180,63848],["Bartow","2021-08-03",110771,220,64068],["Bartow","2021-08-04",110771,212,64280],["Bartow","2021-08-05",110771,235,64515],["Bartow","2021-08-06",110771,251,64766],["Bartow","2021-08-07",110771,165,64931],["Bartow","2021-08-08",110771,106,65037],["Bartow","2021-08-09",110771,193,65230],["Bartow","2021-08-10",110771,245,65475],["Bartow","2021-08-11",110771,208,65683],["Bartow","2021-08-12",110771,257,65940],["Bartow","2021-08-13",110771,312,66252],["Bartow","2021-08-14",110771,196,66448],["Bartow","2021-08-15",110771,144,66592],["Bartow","2021-08-16",110771,181,66773],["Bartow","2021-08-17",110771,218,66991],["Bartow","2021-08-18",110771,255,67246],["Bartow","2021-08-19",110771,322,67568],["Bartow","2021-08-20",110771,406,67974],["Bartow","2021-08-21",110771,211,68185],["Bartow","2021-08-22",110771,181,68366],["Bartow","2021-08-23",110771,300,68666],["Bartow","2021-08-24",110771,284,68950],["Bartow","2021-08-25",110771,262,69212],["Bartow","2021-08-26",110771,231,69443],["Bartow","2021-08-27",110771,377,69820],["Bartow","2021-08-28",110771,194,70014],["Bartow","2021-08-29",110771,175,70189],["Bartow","2021-08-30",110771,274,70463],["Bartow","2021-08-31",110771,294,70757],["Bartow","2021-09-01",110771,293,71050],["Bartow","2021-09-02",110771,356,71406],["Bartow","2021-09-03",110771,346,71752],["Bartow","2021-09-04",110771,215,71967],["Bartow","2021-09-05",110771,132,72099],["Bartow","2021-09-06",110771,56,72155],["Bartow","2021-09-07",110771,264,72419],["Bartow","2021-09-08",110771,247,72666],["Bartow","2021-09-09",110771,251,72917],["Bartow","2021-09-10",110771,367,73284],["Bartow","2021-09-11",110771,187,73471],["Bartow","2021-09-12",110771,118,73589],["Bartow","2021-09-13",110771,238,73827],["Bartow","2021-09-14",110771,212,74039],["Bartow","2021-09-15",110771,206,74245],["Bartow","2021-09-16",110771,238,74483],["Bartow","2021-09-17",110771,325,74808],["Bartow","2021-09-18",110771,160,74968],["Bartow","2021-09-19",110771,110,75078],["Bartow","2021-09-20",110771,206,75284],["Bartow","2021-09-21",110771,212,75496],["Bartow","2021-09-22",110771,185,75681],["Bartow","2021-09-23",110771,183,75864],["Bartow","2021-09-24",110771,231,76095],["Bartow","2021-09-25",110771,120,76215],["Bartow","2021-09-26",110771,74,76289],["Bartow","2021-09-27",110771,162,76451],["Bartow","2021-09-28",110771,165,76616],["Bartow","2021-09-29",110771,189,76805],["Bartow","2021-09-30",110771,212,77017],["Bartow","2021-10-01",110771,256,77273],["Bartow","2021-10-02",110771,97,77370],["Bartow","2021-10-03",110771,79,77449],["Bartow","2021-10-04",110771,127,77576],["Bartow","2021-10-05",110771,173,77749],["Bartow","2021-10-06",110771,129,77878],["Bartow","2021-10-07",110771,141,78019],["Bartow","2021-10-08",110771,176,78195],["Bartow","2021-10-09",110771,80,78275],["Bartow","2021-10-10",110771,52,78327],["Bartow","2021-10-11",110771,84,78411],["Bartow","2021-10-12",110771,122,78533],["Bartow","2021-10-13",110771,112,78645],["Bartow","2021-10-14",110771,109,78754],["Bartow","2021-10-15",110771,168,78922],["Bartow","2021-10-16",110771,73,78995],["Bartow","2021-10-17",110771,38,79033],["Bartow","2021-10-18",110771,84,79117],["Bartow","2021-10-19",110771,108,79225],["Bartow","2021-10-20",110771,110,79335],["Bartow","2021-10-21",110771,118,79453],["Bartow","2021-10-22",110771,216,79669],["Bartow","2021-10-23",110771,126,79795],["Bartow","2021-10-24",110771,103,79898],["Bartow","2021-10-25",110771,325,80223],["Bartow","2021-10-26",110771,402,80625],["Bartow","2021-10-27",110771,281,80906],["Bartow","2021-10-28",110771,312,81218],["Bartow","2021-10-29",110771,375,81593],["Bartow","2021-10-30",110771,103,81696],["Bartow","2021-10-31",110771,62,81758],["Bartow","2021-11-01",110771,306,82064],["Bartow","2021-11-02",110771,310,82374],["Bartow","2021-11-03",110771,266,82640],["Bartow","2021-11-04",110771,239,82879],["Bartow","2021-11-05",110771,369,83248],["Bartow","2021-11-06",110771,128,83376],["Bartow","2021-11-07",110771,76,83452],["Bartow","2021-11-08",110771,236,83688],["Bartow","2021-11-09",110771,203,83891],["Bartow","2021-11-10",110771,200,84091],["Bartow","2021-11-11",110771,245,84336],["Bartow","2021-11-12",110771,322,84658],["Bartow","2021-11-13",110771,131,84789],["Bartow","2021-11-14",110771,63,84852],["Bartow","2021-11-15",110771,194,85046],["Bartow","2021-11-16",110771,281,85327],["Bartow","2021-11-17",110771,218,85545],["Bartow","2021-11-18",110771,237,85782],["Bartow","2021-11-19",110771,347,86129],["Bartow","2021-11-20",110771,115,86244],["Bartow","2021-11-21",110771,89,86333],["Bartow","2021-11-22",110771,215,86548],["Bartow","2021-11-23",110771,254,86802],["Bartow","2021-11-24",110771,159,86961],["Bartow","2021-11-25",110771,1,86962],["Bartow","2021-11-26",110771,148,87110],["Bartow","2021-11-27",110771,124,87234],["Bartow","2021-11-28",110771,85,87319],["Bartow","2021-11-29",110771,264,87583],["Bartow","2021-11-30",110771,331,87914],["Bartow","2021-12-01",110771,337,88251],["Bartow","2021-12-02",110771,387,88638],["Bartow","2021-12-03",110771,384,89022],["Bartow","2021-12-04",110771,173,89195],["Bartow","2021-12-05",110771,115,89310],["Bartow","2021-12-06",110771,194,89504],["Bartow","2021-12-07",110771,266,89770],["Bartow","2021-12-08",110771,251,90021],["Bartow","2021-12-09",110771,296,90317],["Bartow","2021-12-10",110771,321,90638],["Bartow","2021-12-11",110771,143,90781],["Bartow","2021-12-12",110771,102,90883],["Bartow","2021-12-13",110771,170,91053],["Bartow","2021-12-14",110771,242,91295],["Bartow","2021-12-15",110771,178,91473],["Bartow","2021-12-16",110771,233,91706],["Bartow","2021-12-17",110771,271,91977],["Bartow","2021-12-18",110771,140,92117],["Bartow","2021-12-19",110771,79,92196],["Bartow","2021-12-20",110771,234,92430],["Bartow","2021-12-21",110771,273,92703],["Bartow","2021-12-22",110771,270,92973],["Bartow","2021-12-23",110771,220,93193],["Bartow","2021-12-24",110771,62,93255],["Bartow","2021-12-25",110771,2,93257],["Bartow","2021-12-26",110771,81,93338],["Bartow","2021-12-27",110771,215,93553],["Bartow","2021-12-28",110771,278,93831],["Bartow","2021-12-29",110771,299,94130],["Bartow","2021-12-30",110771,238,94368],["Bartow","2021-12-31",110771,145,94513],["Bartow","2022-01-01",110771,33,94546],["Bartow","2022-01-02",110771,101,94647],["Bartow","2022-01-03",110771,54,94701],["Ben Hill","2020-12-18",16645,2,2],["Ben Hill","2020-12-21",16645,1,3],["Ben Hill","2020-12-22",16645,3,6],["Ben Hill","2020-12-23",16645,13,19],["Ben Hill","2020-12-24",16645,12,31],["Ben Hill","2020-12-27",16645,5,36],["Ben Hill","2020-12-28",16645,14,50],["Ben Hill","2020-12-29",16645,57,107],["Ben Hill","2020-12-30",16645,25,132],["Ben Hill","2020-12-31",16645,16,148],["Ben Hill","2021-01-01",16645,1,149],["Ben Hill","2021-01-03",16645,3,152],["Ben Hill","2021-01-04",16645,55,207],["Ben Hill","2021-01-05",16645,26,233],["Ben Hill","2021-01-06",16645,28,261],["Ben Hill","2021-01-07",16645,45,306],["Ben Hill","2021-01-08",16645,29,335],["Ben Hill","2021-01-09",16645,3,338],["Ben Hill","2021-01-10",16645,3,341],["Ben Hill","2021-01-11",16645,70,411],["Ben Hill","2021-01-12",16645,91,502],["Ben Hill","2021-01-13",16645,66,568],["Ben Hill","2021-01-14",16645,126,694],["Ben Hill","2021-01-15",16645,135,829],["Ben Hill","2021-01-16",16645,11,840],["Ben Hill","2021-01-17",16645,10,850],["Ben Hill","2021-01-18",16645,120,970],["Ben Hill","2021-01-19",16645,92,1062],["Ben Hill","2021-01-20",16645,129,1191],["Ben Hill","2021-01-21",16645,121,1312],["Ben Hill","2021-01-22",16645,65,1377],["Ben Hill","2021-01-23",16645,2,1379],["Ben Hill","2021-01-24",16645,37,1416],["Ben Hill","2021-01-25",16645,42,1458],["Ben Hill","2021-01-26",16645,70,1528],["Ben Hill","2021-01-27",16645,72,1600],["Ben Hill","2021-01-28",16645,73,1673],["Ben Hill","2021-01-29",16645,24,1697],["Ben Hill","2021-01-30",16645,2,1699],["Ben Hill","2021-01-31",16645,4,1703],["Ben Hill","2021-02-01",16645,43,1746],["Ben Hill","2021-02-02",16645,44,1790],["Ben Hill","2021-02-03",16645,65,1855],["Ben Hill","2021-02-04",16645,76,1931],["Ben Hill","2021-02-05",16645,68,1999],["Ben Hill","2021-02-06",16645,2,2001],["Ben Hill","2021-02-07",16645,6,2007],["Ben Hill","2021-02-08",16645,99,2106],["Ben Hill","2021-02-09",16645,106,2212],["Ben Hill","2021-02-10",16645,137,2349],["Ben Hill","2021-02-11",16645,119,2468],["Ben Hill","2021-02-12",16645,163,2631],["Ben Hill","2021-02-13",16645,17,2648],["Ben Hill","2021-02-14",16645,12,2660],["Ben Hill","2021-02-15",16645,184,2844],["Ben Hill","2021-02-16",16645,111,2955],["Ben Hill","2021-02-17",16645,110,3065],["Ben Hill","2021-02-18",16645,132,3197],["Ben Hill","2021-02-19",16645,70,3267],["Ben Hill","2021-02-20",16645,2,3269],["Ben Hill","2021-02-22",16645,73,3342],["Ben Hill","2021-02-23",16645,91,3433],["Ben Hill","2021-02-24",16645,90,3523],["Ben Hill","2021-02-25",16645,121,3644],["Ben Hill","2021-02-26",16645,48,3692],["Ben Hill","2021-02-27",16645,6,3698],["Ben Hill","2021-02-28",16645,1,3699],["Ben Hill","2021-03-01",16645,47,3746],["Ben Hill","2021-03-02",16645,58,3804],["Ben Hill","2021-03-03",16645,67,3871],["Ben Hill","2021-03-04",16645,76,3947],["Ben Hill","2021-03-05",16645,83,4030],["Ben Hill","2021-03-06",16645,2,4032],["Ben Hill","2021-03-07",16645,1,4033],["Ben Hill","2021-03-08",16645,69,4102],["Ben Hill","2021-03-09",16645,83,4185],["Ben Hill","2021-03-10",16645,88,4273],["Ben Hill","2021-03-11",16645,93,4366],["Ben Hill","2021-03-12",16645,96,4462],["Ben Hill","2021-03-13",16645,8,4470],["Ben Hill","2021-03-14",16645,6,4476],["Ben Hill","2021-03-15",16645,120,4596],["Ben Hill","2021-03-16",16645,106,4702],["Ben Hill","2021-03-17",16645,119,4821],["Ben Hill","2021-03-18",16645,125,4946],["Ben Hill","2021-03-19",16645,110,5056],["Ben Hill","2021-03-20",16645,4,5060],["Ben Hill","2021-03-21",16645,1,5061],["Ben Hill","2021-03-22",16645,54,5115],["Ben Hill","2021-03-23",16645,168,5283],["Ben Hill","2021-03-24",16645,102,5385],["Ben Hill","2021-03-25",16645,107,5492],["Ben Hill","2021-03-26",16645,142,5634],["Ben Hill","2021-03-27",16645,12,5646],["Ben Hill","2021-03-29",16645,70,5716],["Ben Hill","2021-03-30",16645,79,5795],["Ben Hill","2021-03-31",16645,84,5879],["Ben Hill","2021-04-01",16645,84,5963],["Ben Hill","2021-04-02",16645,102,6065],["Ben Hill","2021-04-03",16645,2,6067],["Ben Hill","2021-04-04",16645,1,6068],["Ben Hill","2021-04-05",16645,109,6177],["Ben Hill","2021-04-06",16645,92,6269],["Ben Hill","2021-04-07",16645,81,6350],["Ben Hill","2021-04-08",16645,91,6441],["Ben Hill","2021-04-09",16645,103,6544],["Ben Hill","2021-04-10",16645,9,6553],["Ben Hill","2021-04-11",16645,9,6562],["Ben Hill","2021-04-12",16645,88,6650],["Ben Hill","2021-04-13",16645,83,6733],["Ben Hill","2021-04-14",16645,105,6838],["Ben Hill","2021-04-15",16645,94,6932],["Ben Hill","2021-04-16",16645,117,7049],["Ben Hill","2021-04-17",16645,38,7087],["Ben Hill","2021-04-18",16645,3,7090],["Ben Hill","2021-04-19",16645,89,7179],["Ben Hill","2021-04-20",16645,63,7242],["Ben Hill","2021-04-21",16645,75,7317],["Ben Hill","2021-04-22",16645,78,7395],["Ben Hill","2021-04-23",16645,109,7504],["Ben Hill","2021-04-24",16645,5,7509],["Ben Hill","2021-04-25",16645,1,7510],["Ben Hill","2021-04-26",16645,50,7560],["Ben Hill","2021-04-27",16645,66,7626],["Ben Hill","2021-04-28",16645,51,7677],["Ben Hill","2021-04-29",16645,51,7728],["Ben Hill","2021-04-30",16645,41,7769],["Ben Hill","2021-05-01",16645,6,7775],["Ben Hill","2021-05-02",16645,3,7778],["Ben Hill","2021-05-03",16645,49,7827],["Ben Hill","2021-05-04",16645,42,7869],["Ben Hill","2021-05-05",16645,56,7925],["Ben Hill","2021-05-06",16645,30,7955],["Ben Hill","2021-05-07",16645,42,7997],["Ben Hill","2021-05-08",16645,16,8013],["Ben Hill","2021-05-09",16645,10,8023],["Ben Hill","2021-05-10",16645,48,8071],["Ben Hill","2021-05-11",16645,25,8096],["Ben Hill","2021-05-12",16645,46,8142],["Ben Hill","2021-05-13",16645,36,8178],["Ben Hill","2021-05-14",16645,58,8236],["Ben Hill","2021-05-15",16645,8,8244],["Ben Hill","2021-05-16",16645,9,8253],["Ben Hill","2021-05-17",16645,45,8298],["Ben Hill","2021-05-18",16645,109,8407],["Ben Hill","2021-05-19",16645,44,8451],["Ben Hill","2021-05-20",16645,27,8478],["Ben Hill","2021-05-21",16645,55,8533],["Ben Hill","2021-05-22",16645,34,8567],["Ben Hill","2021-05-23",16645,3,8570],["Ben Hill","2021-05-24",16645,18,8588],["Ben Hill","2021-05-25",16645,26,8614],["Ben Hill","2021-05-26",16645,26,8640],["Ben Hill","2021-05-27",16645,22,8662],["Ben Hill","2021-05-28",16645,24,8686],["Ben Hill","2021-05-29",16645,11,8697],["Ben Hill","2021-05-30",16645,5,8702],["Ben Hill","2021-05-31",16645,5,8707],["Ben Hill","2021-06-01",16645,30,8737],["Ben Hill","2021-06-02",16645,36,8773],["Ben Hill","2021-06-03",16645,32,8805],["Ben Hill","2021-06-04",16645,19,8824],["Ben Hill","2021-06-05",16645,8,8832],["Ben Hill","2021-06-06",16645,7,8839],["Ben Hill","2021-06-07",16645,20,8859],["Ben Hill","2021-06-08",16645,32,8891],["Ben Hill","2021-06-09",16645,26,8917],["Ben Hill","2021-06-10",16645,16,8933],["Ben Hill","2021-06-11",16645,34,8967],["Ben Hill","2021-06-12",16645,10,8977],["Ben Hill","2021-06-13",16645,1,8978],["Ben Hill","2021-06-14",16645,30,9008],["Ben Hill","2021-06-15",16645,27,9035],["Ben Hill","2021-06-16",16645,19,9054],["Ben Hill","2021-06-17",16645,16,9070],["Ben Hill","2021-06-18",16645,49,9119],["Ben Hill","2021-06-19",16645,25,9144],["Ben Hill","2021-06-20",16645,5,9149],["Ben Hill","2021-06-21",16645,13,9162],["Ben Hill","2021-06-22",16645,29,9191],["Ben Hill","2021-06-23",16645,13,9204],["Ben Hill","2021-06-24",16645,21,9225],["Ben Hill","2021-06-25",16645,17,9242],["Ben Hill","2021-06-26",16645,13,9255],["Ben Hill","2021-06-27",16645,1,9256],["Ben Hill","2021-06-28",16645,18,9274],["Ben Hill","2021-06-29",16645,14,9288],["Ben Hill","2021-06-30",16645,13,9301],["Ben Hill","2021-07-01",16645,9,9310],["Ben Hill","2021-07-02",16645,18,9328],["Ben Hill","2021-07-03",16645,6,9334],["Ben Hill","2021-07-04",16645,2,9336],["Ben Hill","2021-07-05",16645,13,9349],["Ben Hill","2021-07-06",16645,19,9368],["Ben Hill","2021-07-07",16645,22,9390],["Ben Hill","2021-07-08",16645,6,9396],["Ben Hill","2021-07-09",16645,22,9418],["Ben Hill","2021-07-10",16645,6,9424],["Ben Hill","2021-07-12",16645,9,9433],["Ben Hill","2021-07-13",16645,34,9467],["Ben Hill","2021-07-14",16645,10,9477],["Ben Hill","2021-07-15",16645,31,9508],["Ben Hill","2021-07-16",16645,26,9534],["Ben Hill","2021-07-17",16645,5,9539],["Ben Hill","2021-07-18",16645,4,9543],["Ben Hill","2021-07-19",16645,37,9580],["Ben Hill","2021-07-20",16645,36,9616],["Ben Hill","2021-07-21",16645,43,9659],["Ben Hill","2021-07-22",16645,31,9690],["Ben Hill","2021-07-23",16645,55,9745],["Ben Hill","2021-07-24",16645,21,9766],["Ben Hill","2021-07-25",16645,4,9770],["Ben Hill","2021-07-26",16645,44,9814],["Ben Hill","2021-07-27",16645,26,9840],["Ben Hill","2021-07-28",16645,33,9873],["Ben Hill","2021-07-29",16645,16,9889],["Ben Hill","2021-07-30",16645,52,9941],["Ben Hill","2021-07-31",16645,16,9957],["Ben Hill","2021-08-01",16645,7,9964],["Ben Hill","2021-08-02",16645,63,10027],["Ben Hill","2021-08-03",16645,53,10080],["Ben Hill","2021-08-04",16645,45,10125],["Ben Hill","2021-08-05",16645,43,10168],["Ben Hill","2021-08-06",16645,86,10254],["Ben Hill","2021-08-07",16645,27,10281],["Ben Hill","2021-08-08",16645,12,10293],["Ben Hill","2021-08-09",16645,48,10341],["Ben Hill","2021-08-10",16645,59,10400],["Ben Hill","2021-08-11",16645,73,10473],["Ben Hill","2021-08-12",16645,37,10510],["Ben Hill","2021-08-13",16645,111,10621],["Ben Hill","2021-08-14",16645,36,10657],["Ben Hill","2021-08-15",16645,13,10670],["Ben Hill","2021-08-16",16645,69,10739],["Ben Hill","2021-08-17",16645,67,10806],["Ben Hill","2021-08-18",16645,52,10858],["Ben Hill","2021-08-19",16645,31,10889],["Ben Hill","2021-08-20",16645,88,10977],["Ben Hill","2021-08-21",16645,33,11010],["Ben Hill","2021-08-22",16645,13,11023],["Ben Hill","2021-08-23",16645,50,11073],["Ben Hill","2021-08-24",16645,27,11100],["Ben Hill","2021-08-25",16645,60,11160],["Ben Hill","2021-08-26",16645,34,11194],["Ben Hill","2021-08-27",16645,80,11274],["Ben Hill","2021-08-28",16645,33,11307],["Ben Hill","2021-08-29",16645,14,11321],["Ben Hill","2021-08-30",16645,63,11384],["Ben Hill","2021-08-31",16645,45,11429],["Ben Hill","2021-09-01",16645,56,11485],["Ben Hill","2021-09-02",16645,52,11537],["Ben Hill","2021-09-03",16645,62,11599],["Ben Hill","2021-09-04",16645,23,11622],["Ben Hill","2021-09-05",16645,16,11638],["Ben Hill","2021-09-06",16645,16,11654],["Ben Hill","2021-09-07",16645,54,11708],["Ben Hill","2021-09-08",16645,60,11768],["Ben Hill","2021-09-09",16645,43,11811],["Ben Hill","2021-09-10",16645,73,11884],["Ben Hill","2021-09-11",16645,21,11905],["Ben Hill","2021-09-12",16645,16,11921],["Ben Hill","2021-09-13",16645,52,11973],["Ben Hill","2021-09-14",16645,35,12008],["Ben Hill","2021-09-15",16645,50,12058],["Ben Hill","2021-09-16",16645,36,12094],["Ben Hill","2021-09-17",16645,59,12153],["Ben Hill","2021-09-18",16645,17,12170],["Ben Hill","2021-09-19",16645,12,12182],["Ben Hill","2021-09-20",16645,29,12211],["Ben Hill","2021-09-21",16645,39,12250],["Ben Hill","2021-09-22",16645,23,12273],["Ben Hill","2021-09-23",16645,30,12303],["Ben Hill","2021-09-24",16645,22,12325],["Ben Hill","2021-09-25",16645,8,12333],["Ben Hill","2021-09-26",16645,6,12339],["Ben Hill","2021-09-27",16645,37,12376],["Ben Hill","2021-09-28",16645,21,12397],["Ben Hill","2021-09-29",16645,19,12416],["Ben Hill","2021-09-30",16645,19,12435],["Ben Hill","2021-10-01",16645,24,12459],["Ben Hill","2021-10-02",16645,8,12467],["Ben Hill","2021-10-03",16645,13,12480],["Ben Hill","2021-10-04",16645,21,12501],["Ben Hill","2021-10-05",16645,26,12527],["Ben Hill","2021-10-06",16645,21,12548],["Ben Hill","2021-10-07",16645,26,12574],["Ben Hill","2021-10-08",16645,25,12599],["Ben Hill","2021-10-09",16645,8,12607],["Ben Hill","2021-10-10",16645,4,12611],["Ben Hill","2021-10-11",16645,14,12625],["Ben Hill","2021-10-12",16645,7,12632],["Ben Hill","2021-10-13",16645,14,12646],["Ben Hill","2021-10-14",16645,32,12678],["Ben Hill","2021-10-15",16645,12,12690],["Ben Hill","2021-10-16",16645,3,12693],["Ben Hill","2021-10-17",16645,2,12695],["Ben Hill","2021-10-18",16645,8,12703],["Ben Hill","2021-10-19",16645,8,12711],["Ben Hill","2021-10-20",16645,10,12721],["Ben Hill","2021-10-21",16645,28,12749],["Ben Hill","2021-10-22",16645,21,12770],["Ben Hill","2021-10-23",16645,46,12816],["Ben Hill","2021-10-24",16645,5,12821],["Ben Hill","2021-10-25",16645,56,12877],["Ben Hill","2021-10-26",16645,24,12901],["Ben Hill","2021-10-27",16645,67,12968],["Ben Hill","2021-10-28",16645,35,13003],["Ben Hill","2021-10-29",16645,27,13030],["Ben Hill","2021-10-30",16645,6,13036],["Ben Hill","2021-11-01",16645,56,13092],["Ben Hill","2021-11-02",16645,26,13118],["Ben Hill","2021-11-03",16645,56,13174],["Ben Hill","2021-11-04",16645,40,13214],["Ben Hill","2021-11-05",16645,30,13244],["Ben Hill","2021-11-06",16645,14,13258],["Ben Hill","2021-11-07",16645,7,13265],["Ben Hill","2021-11-08",16645,55,13320],["Ben Hill","2021-11-09",16645,39,13359],["Ben Hill","2021-11-10",16645,101,13460],["Ben Hill","2021-11-11",16645,26,13486],["Ben Hill","2021-11-12",16645,20,13506],["Ben Hill","2021-11-13",16645,7,13513],["Ben Hill","2021-11-14",16645,1,13514],["Ben Hill","2021-11-15",16645,46,13560],["Ben Hill","2021-11-16",16645,18,13578],["Ben Hill","2021-11-17",16645,21,13599],["Ben Hill","2021-11-18",16645,51,13650],["Ben Hill","2021-11-19",16645,75,13725],["Ben Hill","2021-11-20",16645,7,13732],["Ben Hill","2021-11-21",16645,10,13742],["Ben Hill","2021-11-22",16645,61,13803],["Ben Hill","2021-11-23",16645,30,13833],["Ben Hill","2021-11-24",16645,18,13851],["Ben Hill","2021-11-26",16645,10,13861],["Ben Hill","2021-11-27",16645,6,13867],["Ben Hill","2021-11-28",16645,5,13872],["Ben Hill","2021-11-29",16645,43,13915],["Ben Hill","2021-11-30",16645,53,13968],["Ben Hill","2021-12-01",16645,52,14020],["Ben Hill","2021-12-02",16645,39,14059],["Ben Hill","2021-12-03",16645,49,14108],["Ben Hill","2021-12-04",16645,12,14120],["Ben Hill","2021-12-05",16645,6,14126],["Ben Hill","2021-12-06",16645,58,14184],["Ben Hill","2021-12-07",16645,42,14226],["Ben Hill","2021-12-08",16645,77,14303],["Ben Hill","2021-12-09",16645,29,14332],["Ben Hill","2021-12-10",16645,36,14368],["Ben Hill","2021-12-11",16645,3,14371],["Ben Hill","2021-12-12",16645,3,14374],["Ben Hill","2021-12-13",16645,42,14416],["Ben Hill","2021-12-14",16645,11,14427],["Ben Hill","2021-12-15",16645,65,14492],["Ben Hill","2021-12-16",16645,50,14542],["Ben Hill","2021-12-17",16645,26,14568],["Ben Hill","2021-12-18",16645,5,14573],["Ben Hill","2021-12-19",16645,3,14576],["Ben Hill","2021-12-20",16645,52,14628],["Ben Hill","2021-12-21",16645,46,14674],["Ben Hill","2021-12-22",16645,36,14710],["Ben Hill","2021-12-23",16645,20,14730],["Ben Hill","2021-12-24",16645,8,14738],["Ben Hill","2021-12-26",16645,6,14744],["Ben Hill","2021-12-27",16645,64,14808],["Ben Hill","2021-12-28",16645,53,14861],["Ben Hill","2021-12-29",16645,40,14901],["Ben Hill","2021-12-30",16645,30,14931],["Ben Hill","2021-12-31",16645,11,14942],["Ben Hill","2022-01-02",16645,3,14945],["Ben Hill","2022-01-03",16645,14,14959],["Berrien","2020-12-18",19276,1,1],["Berrien","2020-12-21",19276,10,11],["Berrien","2020-12-22",19276,16,27],["Berrien","2020-12-23",19276,27,54],["Berrien","2020-12-24",19276,6,60],["Berrien","2020-12-26",19276,2,62],["Berrien","2020-12-28",19276,19,81],["Berrien","2020-12-29",19276,36,117],["Berrien","2020-12-30",19276,42,159],["Berrien","2020-12-31",19276,15,174],["Berrien","2021-01-01",19276,3,177],["Berrien","2021-01-03",19276,48,225],["Berrien","2021-01-04",19276,52,277],["Berrien","2021-01-05",19276,36,313],["Berrien","2021-01-06",19276,32,345],["Berrien","2021-01-07",19276,18,363],["Berrien","2021-01-08",19276,16,379],["Berrien","2021-01-09",19276,1,380],["Berrien","2021-01-11",19276,68,448],["Berrien","2021-01-12",19276,66,514],["Berrien","2021-01-13",19276,104,618],["Berrien","2021-01-14",19276,82,700],["Berrien","2021-01-15",19276,84,784],["Berrien","2021-01-16",19276,3,787],["Berrien","2021-01-18",19276,86,873],["Berrien","2021-01-19",19276,87,960],["Berrien","2021-01-20",19276,125,1085],["Berrien","2021-01-21",19276,83,1168],["Berrien","2021-01-22",19276,81,1249],["Berrien","2021-01-24",19276,56,1305],["Berrien","2021-01-25",19276,97,1402],["Berrien","2021-01-26",19276,74,1476],["Berrien","2021-01-27",19276,134,1610],["Berrien","2021-01-28",19276,55,1665],["Berrien","2021-01-29",19276,55,1720],["Berrien","2021-01-30",19276,66,1786],["Berrien","2021-01-31",19276,2,1788],["Berrien","2021-02-01",19276,105,1893],["Berrien","2021-02-02",19276,87,1980],["Berrien","2021-02-03",19276,155,2135],["Berrien","2021-02-04",19276,74,2209],["Berrien","2021-02-05",19276,90,2299],["Berrien","2021-02-06",19276,2,2301],["Berrien","2021-02-08",19276,81,2382],["Berrien","2021-02-09",19276,84,2466],["Berrien","2021-02-10",19276,87,2553],["Berrien","2021-02-11",19276,68,2621],["Berrien","2021-02-12",19276,131,2752],["Berrien","2021-02-13",19276,11,2763],["Berrien","2021-02-14",19276,3,2766],["Berrien","2021-02-15",19276,119,2885],["Berrien","2021-02-16",19276,98,2983],["Berrien","2021-02-17",19276,207,3190],["Berrien","2021-02-18",19276,97,3287],["Berrien","2021-02-19",19276,94,3381],["Berrien","2021-02-20",19276,1,3382],["Berrien","2021-02-21",19276,1,3383],["Berrien","2021-02-22",19276,90,3473],["Berrien","2021-02-23",19276,75,3548],["Berrien","2021-02-24",19276,152,3700],["Berrien","2021-02-25",19276,68,3768],["Berrien","2021-02-26",19276,62,3830],["Berrien","2021-02-27",19276,67,3897],["Berrien","2021-02-28",19276,3,3900],["Berrien","2021-03-01",19276,89,3989],["Berrien","2021-03-02",19276,76,4065],["Berrien","2021-03-03",19276,108,4173],["Berrien","2021-03-04",19276,35,4208],["Berrien","2021-03-05",19276,56,4264],["Berrien","2021-03-06",19276,4,4268],["Berrien","2021-03-07",19276,2,4270],["Berrien","2021-03-08",19276,102,4372],["Berrien","2021-03-09",19276,92,4464],["Berrien","2021-03-10",19276,86,4550],["Berrien","2021-03-11",19276,71,4621],["Berrien","2021-03-12",19276,88,4709],["Berrien","2021-03-13",19276,14,4723],["Berrien","2021-03-14",19276,19,4742],["Berrien","2021-03-15",19276,77,4819],["Berrien","2021-03-16",19276,57,4876],["Berrien","2021-03-17",19276,123,4999],["Berrien","2021-03-18",19276,44,5043],["Berrien","2021-03-19",19276,72,5115],["Berrien","2021-03-20",19276,6,5121],["Berrien","2021-03-21",19276,8,5129],["Berrien","2021-03-22",19276,123,5252],["Berrien","2021-03-23",19276,85,5337],["Berrien","2021-03-24",19276,93,5430],["Berrien","2021-03-25",19276,58,5488],["Berrien","2021-03-26",19276,67,5555],["Berrien","2021-03-27",19276,30,5585],["Berrien","2021-03-28",19276,12,5597],["Berrien","2021-03-29",19276,100,5697],["Berrien","2021-03-30",19276,83,5780],["Berrien","2021-03-31",19276,98,5878],["Berrien","2021-04-01",19276,68,5946],["Berrien","2021-04-02",19276,76,6022],["Berrien","2021-04-03",19276,14,6036],["Berrien","2021-04-04",19276,8,6044],["Berrien","2021-04-05",19276,104,6148],["Berrien","2021-04-06",19276,100,6248],["Berrien","2021-04-07",19276,124,6372],["Berrien","2021-04-08",19276,63,6435],["Berrien","2021-04-09",19276,83,6518],["Berrien","2021-04-10",19276,6,6524],["Berrien","2021-04-11",19276,24,6548],["Berrien","2021-04-12",19276,105,6653],["Berrien","2021-04-13",19276,67,6720],["Berrien","2021-04-14",19276,96,6816],["Berrien","2021-04-15",19276,81,6897],["Berrien","2021-04-16",19276,89,6986],["Berrien","2021-04-17",19276,2,6988],["Berrien","2021-04-18",19276,10,6998],["Berrien","2021-04-19",19276,61,7059],["Berrien","2021-04-20",19276,36,7095],["Berrien","2021-04-21",19276,89,7184],["Berrien","2021-04-22",19276,45,7229],["Berrien","2021-04-23",19276,60,7289],["Berrien","2021-04-24",19276,17,7306],["Berrien","2021-04-25",19276,5,7311],["Berrien","2021-04-26",19276,76,7387],["Berrien","2021-04-27",19276,44,7431],["Berrien","2021-04-28",19276,73,7504],["Berrien","2021-04-29",19276,56,7560],["Berrien","2021-04-30",19276,69,7629],["Berrien","2021-05-01",19276,6,7635],["Berrien","2021-05-02",19276,2,7637],["Berrien","2021-05-03",19276,24,7661],["Berrien","2021-05-04",19276,45,7706],["Berrien","2021-05-05",19276,48,7754],["Berrien","2021-05-06",19276,38,7792],["Berrien","2021-05-07",19276,49,7841],["Berrien","2021-05-08",19276,7,7848],["Berrien","2021-05-09",19276,5,7853],["Berrien","2021-05-10",19276,41,7894],["Berrien","2021-05-11",19276,63,7957],["Berrien","2021-05-12",19276,55,8012],["Berrien","2021-05-13",19276,49,8061],["Berrien","2021-05-14",19276,44,8105],["Berrien","2021-05-15",19276,16,8121],["Berrien","2021-05-16",19276,5,8126],["Berrien","2021-05-17",19276,28,8154],["Berrien","2021-05-18",19276,49,8203],["Berrien","2021-05-19",19276,46,8249],["Berrien","2021-05-20",19276,41,8290],["Berrien","2021-05-21",19276,39,8329],["Berrien","2021-05-22",19276,9,8338],["Berrien","2021-05-23",19276,3,8341],["Berrien","2021-05-24",19276,33,8374],["Berrien","2021-05-25",19276,32,8406],["Berrien","2021-05-26",19276,36,8442],["Berrien","2021-05-27",19276,26,8468],["Berrien","2021-05-28",19276,34,8502],["Berrien","2021-05-29",19276,11,8513],["Berrien","2021-05-30",19276,4,8517],["Berrien","2021-05-31",19276,3,8520],["Berrien","2021-06-01",19276,23,8543],["Berrien","2021-06-02",19276,21,8564],["Berrien","2021-06-03",19276,24,8588],["Berrien","2021-06-04",19276,28,8616],["Berrien","2021-06-05",19276,10,8626],["Berrien","2021-06-06",19276,7,8633],["Berrien","2021-06-07",19276,25,8658],["Berrien","2021-06-08",19276,23,8681],["Berrien","2021-06-09",19276,20,8701],["Berrien","2021-06-10",19276,36,8737],["Berrien","2021-06-11",19276,41,8778],["Berrien","2021-06-12",19276,7,8785],["Berrien","2021-06-13",19276,6,8791],["Berrien","2021-06-14",19276,15,8806],["Berrien","2021-06-15",19276,18,8824],["Berrien","2021-06-16",19276,18,8842],["Berrien","2021-06-17",19276,24,8866],["Berrien","2021-06-18",19276,20,8886],["Berrien","2021-06-19",19276,18,8904],["Berrien","2021-06-20",19276,2,8906],["Berrien","2021-06-21",19276,22,8928],["Berrien","2021-06-22",19276,11,8939],["Berrien","2021-06-23",19276,14,8953],["Berrien","2021-06-24",19276,22,8975],["Berrien","2021-06-25",19276,31,9006],["Berrien","2021-06-26",19276,6,9012],["Berrien","2021-06-27",19276,10,9022],["Berrien","2021-06-28",19276,10,9032],["Berrien","2021-06-29",19276,16,9048],["Berrien","2021-06-30",19276,10,9058],["Berrien","2021-07-01",19276,10,9068],["Berrien","2021-07-02",19276,18,9086],["Berrien","2021-07-03",19276,1,9087],["Berrien","2021-07-04",19276,1,9088],["Berrien","2021-07-05",19276,6,9094],["Berrien","2021-07-06",19276,9,9103],["Berrien","2021-07-07",19276,7,9110],["Berrien","2021-07-08",19276,14,9124],["Berrien","2021-07-09",19276,31,9155],["Berrien","2021-07-10",19276,6,9161],["Berrien","2021-07-11",19276,2,9163],["Berrien","2021-07-12",19276,14,9177],["Berrien","2021-07-13",19276,15,9192],["Berrien","2021-07-14",19276,9,9201],["Berrien","2021-07-15",19276,18,9219],["Berrien","2021-07-16",19276,21,9240],["Berrien","2021-07-17",19276,9,9249],["Berrien","2021-07-18",19276,10,9259],["Berrien","2021-07-19",19276,23,9282],["Berrien","2021-07-20",19276,17,9299],["Berrien","2021-07-21",19276,15,9314],["Berrien","2021-07-22",19276,16,9330],["Berrien","2021-07-23",19276,45,9375],["Berrien","2021-07-24",19276,12,9387],["Berrien","2021-07-25",19276,8,9395],["Berrien","2021-07-26",19276,38,9433],["Berrien","2021-07-27",19276,44,9477],["Berrien","2021-07-28",19276,57,9534],["Berrien","2021-07-29",19276,34,9568],["Berrien","2021-07-30",19276,48,9616],["Berrien","2021-07-31",19276,17,9633],["Berrien","2021-08-01",19276,6,9639],["Berrien","2021-08-02",19276,27,9666],["Berrien","2021-08-03",19276,39,9705],["Berrien","2021-08-04",19276,37,9742],["Berrien","2021-08-05",19276,40,9782],["Berrien","2021-08-06",19276,77,9859],["Berrien","2021-08-07",19276,31,9890],["Berrien","2021-08-08",19276,22,9912],["Berrien","2021-08-09",19276,67,9979],["Berrien","2021-08-10",19276,59,10038],["Berrien","2021-08-11",19276,64,10102],["Berrien","2021-08-12",19276,54,10156],["Berrien","2021-08-13",19276,88,10244],["Berrien","2021-08-14",19276,38,10282],["Berrien","2021-08-15",19276,13,10295],["Berrien","2021-08-16",19276,55,10350],["Berrien","2021-08-17",19276,62,10412],["Berrien","2021-08-18",19276,66,10478],["Berrien","2021-08-19",19276,64,10542],["Berrien","2021-08-20",19276,72,10614],["Berrien","2021-08-21",19276,25,10639],["Berrien","2021-08-22",19276,17,10656],["Berrien","2021-08-23",19276,39,10695],["Berrien","2021-08-24",19276,44,10739],["Berrien","2021-08-25",19276,61,10800],["Berrien","2021-08-26",19276,108,10908],["Berrien","2021-08-27",19276,96,11004],["Berrien","2021-08-28",19276,40,11044],["Berrien","2021-08-29",19276,17,11061],["Berrien","2021-08-30",19276,58,11119],["Berrien","2021-08-31",19276,68,11187],["Berrien","2021-09-01",19276,67,11254],["Berrien","2021-09-02",19276,79,11333],["Berrien","2021-09-03",19276,66,11399],["Berrien","2021-09-04",19276,28,11427],["Berrien","2021-09-05",19276,8,11435],["Berrien","2021-09-06",19276,2,11437],["Berrien","2021-09-07",19276,80,11517],["Berrien","2021-09-08",19276,52,11569],["Berrien","2021-09-09",19276,52,11621],["Berrien","2021-09-10",19276,70,11691],["Berrien","2021-09-11",19276,15,11706],["Berrien","2021-09-12",19276,14,11720],["Berrien","2021-09-13",19276,35,11755],["Berrien","2021-09-14",19276,31,11786],["Berrien","2021-09-15",19276,34,11820],["Berrien","2021-09-16",19276,96,11916],["Berrien","2021-09-17",19276,45,11961],["Berrien","2021-09-18",19276,14,11975],["Berrien","2021-09-19",19276,2,11977],["Berrien","2021-09-20",19276,37,12014],["Berrien","2021-09-21",19276,24,12038],["Berrien","2021-09-22",19276,29,12067],["Berrien","2021-09-23",19276,25,12092],["Berrien","2021-09-24",19276,46,12138],["Berrien","2021-09-25",19276,8,12146],["Berrien","2021-09-26",19276,6,12152],["Berrien","2021-09-27",19276,15,12167],["Berrien","2021-09-28",19276,31,12198],["Berrien","2021-09-29",19276,21,12219],["Berrien","2021-09-30",19276,24,12243],["Berrien","2021-10-01",19276,38,12281],["Berrien","2021-10-02",19276,2,12283],["Berrien","2021-10-03",19276,7,12290],["Berrien","2021-10-04",19276,17,12307],["Berrien","2021-10-05",19276,27,12334],["Berrien","2021-10-06",19276,83,12417],["Berrien","2021-10-07",19276,20,12437],["Berrien","2021-10-08",19276,20,12457],["Berrien","2021-10-09",19276,10,12467],["Berrien","2021-10-10",19276,6,12473],["Berrien","2021-10-11",19276,8,12481],["Berrien","2021-10-12",19276,19,12500],["Berrien","2021-10-13",19276,14,12514],["Berrien","2021-10-14",19276,12,12526],["Berrien","2021-10-15",19276,22,12548],["Berrien","2021-10-16",19276,5,12553],["Berrien","2021-10-17",19276,5,12558],["Berrien","2021-10-18",19276,16,12574],["Berrien","2021-10-19",19276,25,12599],["Berrien","2021-10-20",19276,15,12614],["Berrien","2021-10-21",19276,18,12632],["Berrien","2021-10-22",19276,32,12664],["Berrien","2021-10-23",19276,4,12668],["Berrien","2021-10-24",19276,6,12674],["Berrien","2021-10-25",19276,24,12698],["Berrien","2021-10-26",19276,48,12746],["Berrien","2021-10-27",19276,23,12769],["Berrien","2021-10-28",19276,33,12802],["Berrien","2021-10-29",19276,38,12840],["Berrien","2021-10-30",19276,8,12848],["Berrien","2021-10-31",19276,4,12852],["Berrien","2021-11-01",19276,61,12913],["Berrien","2021-11-02",19276,17,12930],["Berrien","2021-11-03",19276,31,12961],["Berrien","2021-11-04",19276,22,12983],["Berrien","2021-11-05",19276,28,13011],["Berrien","2021-11-06",19276,12,13023],["Berrien","2021-11-07",19276,2,13025],["Berrien","2021-11-08",19276,48,13073],["Berrien","2021-11-09",19276,30,13103],["Berrien","2021-11-10",19276,19,13122],["Berrien","2021-11-11",19276,24,13146],["Berrien","2021-11-12",19276,47,13193],["Berrien","2021-11-13",19276,9,13202],["Berrien","2021-11-14",19276,3,13205],["Berrien","2021-11-15",19276,55,13260],["Berrien","2021-11-16",19276,31,13291],["Berrien","2021-11-17",19276,31,13322],["Berrien","2021-11-18",19276,28,13350],["Berrien","2021-11-19",19276,35,13385],["Berrien","2021-11-20",19276,23,13408],["Berrien","2021-11-21",19276,6,13414],["Berrien","2021-11-22",19276,79,13493],["Berrien","2021-11-23",19276,38,13531],["Berrien","2021-11-24",19276,12,13543],["Berrien","2021-11-26",19276,13,13556],["Berrien","2021-11-27",19276,10,13566],["Berrien","2021-11-28",19276,5,13571],["Berrien","2021-11-29",19276,52,13623],["Berrien","2021-11-30",19276,50,13673],["Berrien","2021-12-01",19276,49,13722],["Berrien","2021-12-02",19276,25,13747],["Berrien","2021-12-03",19276,57,13804],["Berrien","2021-12-04",19276,5,13809],["Berrien","2021-12-05",19276,2,13811],["Berrien","2021-12-06",19276,54,13865],["Berrien","2021-12-07",19276,33,13898],["Berrien","2021-12-08",19276,36,13934],["Berrien","2021-12-09",19276,24,13958],["Berrien","2021-12-10",19276,57,14015],["Berrien","2021-12-11",19276,9,14024],["Berrien","2021-12-12",19276,3,14027],["Berrien","2021-12-13",19276,42,14069],["Berrien","2021-12-14",19276,13,14082],["Berrien","2021-12-15",19276,28,14110],["Berrien","2021-12-16",19276,18,14128],["Berrien","2021-12-17",19276,49,14177],["Berrien","2021-12-18",19276,4,14181],["Berrien","2021-12-19",19276,5,14186],["Berrien","2021-12-20",19276,38,14224],["Berrien","2021-12-21",19276,34,14258],["Berrien","2021-12-22",19276,27,14285],["Berrien","2021-12-23",19276,10,14295],["Berrien","2021-12-24",19276,8,14303],["Berrien","2021-12-26",19276,5,14308],["Berrien","2021-12-27",19276,42,14350],["Berrien","2021-12-28",19276,35,14385],["Berrien","2021-12-29",19276,37,14422],["Berrien","2021-12-30",19276,27,14449],["Berrien","2021-12-31",19276,20,14469],["Berrien","2022-01-01",19276,1,14470],["Berrien","2022-01-02",19276,2,14472],["Berrien","2022-01-03",19276,7,14479],["Bibb","2020-12-16",152150,5,5],["Bibb","2020-12-17",152150,7,12],["Bibb","2020-12-18",152150,17,29],["Bibb","2020-12-19",152150,11,40],["Bibb","2020-12-20",152150,3,43],["Bibb","2020-12-21",152150,34,77],["Bibb","2020-12-22",152150,162,239],["Bibb","2020-12-23",152150,185,424],["Bibb","2020-12-24",152150,218,642],["Bibb","2020-12-25",152150,2,644],["Bibb","2020-12-26",152150,135,779],["Bibb","2020-12-27",152150,42,821],["Bibb","2020-12-28",152150,430,1251],["Bibb","2020-12-29",152150,219,1470],["Bibb","2020-12-30",152150,449,1919],["Bibb","2020-12-31",152150,53,1972],["Bibb","2021-01-01",152150,52,2024],["Bibb","2021-01-02",152150,20,2044],["Bibb","2021-01-03",152150,43,2087],["Bibb","2021-01-04",152150,189,2276],["Bibb","2021-01-05",152150,251,2527],["Bibb","2021-01-06",152150,327,2854],["Bibb","2021-01-07",152150,258,3112],["Bibb","2021-01-08",152150,266,3378],["Bibb","2021-01-09",152150,53,3431],["Bibb","2021-01-10",152150,108,3539],["Bibb","2021-01-11",152150,297,3836],["Bibb","2021-01-12",152150,359,4195],["Bibb","2021-01-13",152150,536,4731],["Bibb","2021-01-14",152150,407,5138],["Bibb","2021-01-15",152150,520,5658],["Bibb","2021-01-16",152150,175,5833],["Bibb","2021-01-17",152150,110,5943],["Bibb","2021-01-18",152150,608,6551],["Bibb","2021-01-19",152150,451,7002],["Bibb","2021-01-20",152150,1036,8038],["Bibb","2021-01-21",152150,796,8834],["Bibb","2021-01-22",152150,899,9733],["Bibb","2021-01-23",152150,187,9920],["Bibb","2021-01-24",152150,155,10075],["Bibb","2021-01-25",152150,879,10954],["Bibb","2021-01-26",152150,510,11464],["Bibb","2021-01-27",152150,1306,12770],["Bibb","2021-01-28",152150,518,13288],["Bibb","2021-01-29",152150,677,13965],["Bibb","2021-01-30",152150,60,14025],["Bibb","2021-01-31",152150,138,14163],["Bibb","2021-02-01",152150,539,14702],["Bibb","2021-02-02",152150,413,15115],["Bibb","2021-02-03",152150,688,15803],["Bibb","2021-02-04",152150,461,16264],["Bibb","2021-02-05",152150,734,16998],["Bibb","2021-02-06",152150,90,17088],["Bibb","2021-02-07",152150,51,17139],["Bibb","2021-02-08",152150,566,17705],["Bibb","2021-02-09",152150,388,18093],["Bibb","2021-02-10",152150,997,19090],["Bibb","2021-02-11",152150,529,19619],["Bibb","2021-02-12",152150,867,20486],["Bibb","2021-02-13",152150,234,20720],["Bibb","2021-02-14",152150,153,20873],["Bibb","2021-02-15",152150,810,21683],["Bibb","2021-02-16",152150,527,22210],["Bibb","2021-02-17",152150,1065,23275],["Bibb","2021-02-18",152150,803,24078],["Bibb","2021-02-19",152150,621,24699],["Bibb","2021-02-20",152150,182,24881],["Bibb","2021-02-21",152150,43,24924],["Bibb","2021-02-22",152150,658,25582],["Bibb","2021-02-23",152150,600,26182],["Bibb","2021-02-24",152150,1132,27314],["Bibb","2021-02-25",152150,1088,28402],["Bibb","2021-02-26",152150,1491,29893],["Bibb","2021-02-27",152150,154,30047],["Bibb","2021-02-28",152150,81,30128],["Bibb","2021-03-01",152150,1436,31564],["Bibb","2021-03-02",152150,808,32372],["Bibb","2021-03-03",152150,1362,33734],["Bibb","2021-03-04",152150,1191,34925],["Bibb","2021-03-05",152150,1191,36116],["Bibb","2021-03-06",152150,101,36217],["Bibb","2021-03-07",152150,75,36292],["Bibb","2021-03-08",152150,1241,37533],["Bibb","2021-03-09",152150,836,38369],["Bibb","2021-03-10",152150,1221,39590],["Bibb","2021-03-11",152150,1014,40604],["Bibb","2021-03-12",152150,1038,41642],["Bibb","2021-03-13",152150,787,42429],["Bibb","2021-03-14",152150,181,42610],["Bibb","2021-03-15",152150,1664,44274],["Bibb","2021-03-16",152150,1235,45509],["Bibb","2021-03-17",152150,1475,46984],["Bibb","2021-03-18",152150,966,47950],["Bibb","2021-03-19",152150,1432,49382],["Bibb","2021-03-20",152150,261,49643],["Bibb","2021-03-21",152150,95,49738],["Bibb","2021-03-22",152150,1078,50816],["Bibb","2021-03-23",152150,878,51694],["Bibb","2021-03-24",152150,1034,52728],["Bibb","2021-03-25",152150,1377,54105],["Bibb","2021-03-26",152150,1362,55467],["Bibb","2021-03-27",152150,174,55641],["Bibb","2021-03-28",152150,169,55810],["Bibb","2021-03-29",152150,1775,57585],["Bibb","2021-03-30",152150,1329,58914],["Bibb","2021-03-31",152150,1376,60290],["Bibb","2021-04-01",152150,1405,61695],["Bibb","2021-04-02",152150,1260,62955],["Bibb","2021-04-03",152150,885,63840],["Bibb","2021-04-04",152150,134,63974],["Bibb","2021-04-05",152150,1506,65480],["Bibb","2021-04-06",152150,1405,66885],["Bibb","2021-04-07",152150,1562,68447],["Bibb","2021-04-08",152150,1287,69734],["Bibb","2021-04-09",152150,1686,71420],["Bibb","2021-04-10",152150,210,71630],["Bibb","2021-04-11",152150,172,71802],["Bibb","2021-04-12",152150,1465,73267],["Bibb","2021-04-13",152150,998,74265],["Bibb","2021-04-14",152150,1060,75325],["Bibb","2021-04-15",152150,954,76279],["Bibb","2021-04-16",152150,1289,77568],["Bibb","2021-04-17",152150,139,77707],["Bibb","2021-04-18",152150,95,77802],["Bibb","2021-04-19",152150,1106,78908],["Bibb","2021-04-20",152150,815,79723],["Bibb","2021-04-21",152150,913,80636],["Bibb","2021-04-22",152150,839,81475],["Bibb","2021-04-23",152150,1183,82658],["Bibb","2021-04-24",152150,161,82819],["Bibb","2021-04-25",152150,111,82930],["Bibb","2021-04-26",152150,1102,84032],["Bibb","2021-04-27",152150,908,84940],["Bibb","2021-04-28",152150,948,85888],["Bibb","2021-04-29",152150,899,86787],["Bibb","2021-04-30",152150,1012,87799],["Bibb","2021-05-01",152150,203,88002],["Bibb","2021-05-02",152150,123,88125],["Bibb","2021-05-03",152150,660,88785],["Bibb","2021-05-04",152150,585,89370],["Bibb","2021-05-05",152150,695,90065],["Bibb","2021-05-06",152150,477,90542],["Bibb","2021-05-07",152150,657,91199],["Bibb","2021-05-08",152150,183,91382],["Bibb","2021-05-09",152150,73,91455],["Bibb","2021-05-10",152150,380,91835],["Bibb","2021-05-11",152150,423,92258],["Bibb","2021-05-12",152150,469,92727],["Bibb","2021-05-13",152150,453,93180],["Bibb","2021-05-14",152150,616,93796],["Bibb","2021-05-15",152150,239,94035],["Bibb","2021-05-16",152150,136,94171],["Bibb","2021-05-17",152150,473,94644],["Bibb","2021-05-18",152150,557,95201],["Bibb","2021-05-19",152150,461,95662],["Bibb","2021-05-20",152150,448,96110],["Bibb","2021-05-21",152150,593,96703],["Bibb","2021-05-22",152150,175,96878],["Bibb","2021-05-23",152150,128,97006],["Bibb","2021-05-24",152150,304,97310],["Bibb","2021-05-25",152150,351,97661],["Bibb","2021-05-26",152150,337,97998],["Bibb","2021-05-27",152150,318,98316],["Bibb","2021-05-28",152150,269,98585],["Bibb","2021-05-29",152150,129,98714],["Bibb","2021-05-30",152150,110,98824],["Bibb","2021-05-31",152150,60,98884],["Bibb","2021-06-01",152150,383,99267],["Bibb","2021-06-02",152150,299,99566],["Bibb","2021-06-03",152150,313,99879],["Bibb","2021-06-04",152150,354,100233],["Bibb","2021-06-05",152150,183,100416],["Bibb","2021-06-06",152150,131,100547],["Bibb","2021-06-07",152150,316,100863],["Bibb","2021-06-08",152150,242,101105],["Bibb","2021-06-09",152150,297,101402],["Bibb","2021-06-10",152150,328,101730],["Bibb","2021-06-11",152150,334,102064],["Bibb","2021-06-12",152150,190,102254],["Bibb","2021-06-13",152150,83,102337],["Bibb","2021-06-14",152150,242,102579],["Bibb","2021-06-15",152150,249,102828],["Bibb","2021-06-16",152150,242,103070],["Bibb","2021-06-17",152150,267,103337],["Bibb","2021-06-18",152150,223,103560],["Bibb","2021-06-19",152150,137,103697],["Bibb","2021-06-20",152150,108,103805],["Bibb","2021-06-21",152150,174,103979],["Bibb","2021-06-22",152150,250,104229],["Bibb","2021-06-23",152150,201,104430],["Bibb","2021-06-24",152150,215,104645],["Bibb","2021-06-25",152150,207,104852],["Bibb","2021-06-26",152150,136,104988],["Bibb","2021-06-27",152150,85,105073],["Bibb","2021-06-28",152150,192,105265],["Bibb","2021-06-29",152150,183,105448],["Bibb","2021-06-30",152150,269,105717],["Bibb","2021-07-01",152150,190,105907],["Bibb","2021-07-02",152150,190,106097],["Bibb","2021-07-03",152150,85,106182],["Bibb","2021-07-04",152150,17,106199],["Bibb","2021-07-05",152150,153,106352],["Bibb","2021-07-06",152150,188,106540],["Bibb","2021-07-07",152150,162,106702],["Bibb","2021-07-08",152150,180,106882],["Bibb","2021-07-09",152150,197,107079],["Bibb","2021-07-10",152150,104,107183],["Bibb","2021-07-11",152150,61,107244],["Bibb","2021-07-12",152150,143,107387],["Bibb","2021-07-13",152150,173,107560],["Bibb","2021-07-14",152150,223,107783],["Bibb","2021-07-15",152150,176,107959],["Bibb","2021-07-16",152150,195,108154],["Bibb","2021-07-17",152150,156,108310],["Bibb","2021-07-18",152150,81,108391],["Bibb","2021-07-19",152150,220,108611],["Bibb","2021-07-20",152150,205,108816],["Bibb","2021-07-21",152150,259,109075],["Bibb","2021-07-22",152150,291,109366],["Bibb","2021-07-23",152150,300,109666],["Bibb","2021-07-24",152150,379,110045],["Bibb","2021-07-25",152150,129,110174],["Bibb","2021-07-26",152150,318,110492],["Bibb","2021-07-27",152150,335,110827],["Bibb","2021-07-28",152150,346,111173],["Bibb","2021-07-29",152150,336,111509],["Bibb","2021-07-30",152150,396,111905],["Bibb","2021-07-31",152150,231,112136],["Bibb","2021-08-01",152150,178,112314],["Bibb","2021-08-02",152150,299,112613],["Bibb","2021-08-03",152150,286,112899],["Bibb","2021-08-04",152150,381,113280],["Bibb","2021-08-05",152150,398,113678],["Bibb","2021-08-06",152150,502,114180],["Bibb","2021-08-07",152150,264,114444],["Bibb","2021-08-08",152150,223,114667],["Bibb","2021-08-09",152150,334,115001],["Bibb","2021-08-10",152150,409,115410],["Bibb","2021-08-11",152150,422,115832],["Bibb","2021-08-12",152150,457,116289],["Bibb","2021-08-13",152150,490,116779],["Bibb","2021-08-14",152150,412,117191],["Bibb","2021-08-15",152150,239,117430],["Bibb","2021-08-16",152150,430,117860],["Bibb","2021-08-17",152150,399,118259],["Bibb","2021-08-18",152150,448,118707],["Bibb","2021-08-19",152150,419,119126],["Bibb","2021-08-20",152150,536,119662],["Bibb","2021-08-21",152150,314,119976],["Bibb","2021-08-22",152150,231,120207],["Bibb","2021-08-23",152150,365,120572],["Bibb","2021-08-24",152150,424,120996],["Bibb","2021-08-25",152150,443,121439],["Bibb","2021-08-26",152150,450,121889],["Bibb","2021-08-27",152150,551,122440],["Bibb","2021-08-28",152150,320,122760],["Bibb","2021-08-29",152150,252,123012],["Bibb","2021-08-30",152150,389,123401],["Bibb","2021-08-31",152150,425,123826],["Bibb","2021-09-01",152150,413,124239],["Bibb","2021-09-02",152150,444,124683],["Bibb","2021-09-03",152150,495,125178],["Bibb","2021-09-04",152150,286,125464],["Bibb","2021-09-05",152150,213,125677],["Bibb","2021-09-06",152150,81,125758],["Bibb","2021-09-07",152150,396,126154],["Bibb","2021-09-08",152150,469,126623],["Bibb","2021-09-09",152150,426,127049],["Bibb","2021-09-10",152150,533,127582],["Bibb","2021-09-11",152150,288,127870],["Bibb","2021-09-12",152150,172,128042],["Bibb","2021-09-13",152150,347,128389],["Bibb","2021-09-14",152150,310,128699],["Bibb","2021-09-15",152150,340,129039],["Bibb","2021-09-16",152150,323,129362],["Bibb","2021-09-17",152150,455,129817],["Bibb","2021-09-18",152150,188,130005],["Bibb","2021-09-19",152150,150,130155],["Bibb","2021-09-20",152150,268,130423],["Bibb","2021-09-21",152150,256,130679],["Bibb","2021-09-22",152150,298,130977],["Bibb","2021-09-23",152150,278,131255],["Bibb","2021-09-24",152150,347,131602],["Bibb","2021-09-25",152150,174,131776],["Bibb","2021-09-26",152150,139,131915],["Bibb","2021-09-27",152150,280,132195],["Bibb","2021-09-28",152150,329,132524],["Bibb","2021-09-29",152150,323,132847],["Bibb","2021-09-30",152150,332,133179],["Bibb","2021-10-01",152150,377,133556],["Bibb","2021-10-02",152150,193,133749],["Bibb","2021-10-03",152150,128,133877],["Bibb","2021-10-04",152150,277,134154],["Bibb","2021-10-05",152150,282,134436],["Bibb","2021-10-06",152150,295,134731],["Bibb","2021-10-07",152150,287,135018],["Bibb","2021-10-08",152150,363,135381],["Bibb","2021-10-09",152150,182,135563],["Bibb","2021-10-10",152150,111,135674],["Bibb","2021-10-11",152150,210,135884],["Bibb","2021-10-12",152150,250,136134],["Bibb","2021-10-13",152150,220,136354],["Bibb","2021-10-14",152150,215,136569],["Bibb","2021-10-15",152150,322,136891],["Bibb","2021-10-16",152150,154,137045],["Bibb","2021-10-17",152150,100,137145],["Bibb","2021-10-18",152150,243,137388],["Bibb","2021-10-19",152150,230,137618],["Bibb","2021-10-20",152150,402,138020],["Bibb","2021-10-21",152150,285,138305],["Bibb","2021-10-22",152150,414,138719],["Bibb","2021-10-23",152150,305,139024],["Bibb","2021-10-24",152150,183,139207],["Bibb","2021-10-25",152150,446,139653],["Bibb","2021-10-26",152150,586,140239],["Bibb","2021-10-27",152150,885,141124],["Bibb","2021-10-28",152150,500,141624],["Bibb","2021-10-29",152150,579,142203],["Bibb","2021-10-30",152150,256,142459],["Bibb","2021-10-31",152150,155,142614],["Bibb","2021-11-01",152150,470,143084],["Bibb","2021-11-02",152150,508,143592],["Bibb","2021-11-03",152150,576,144168],["Bibb","2021-11-04",152150,559,144727],["Bibb","2021-11-05",152150,558,145285],["Bibb","2021-11-06",152150,244,145529],["Bibb","2021-11-07",152150,171,145700],["Bibb","2021-11-08",152150,457,146157],["Bibb","2021-11-09",152150,417,146574],["Bibb","2021-11-10",152150,516,147090],["Bibb","2021-11-11",152150,437,147527],["Bibb","2021-11-12",152150,512,148039],["Bibb","2021-11-13",152150,216,148255],["Bibb","2021-11-14",152150,143,148398],["Bibb","2021-11-15",152150,396,148794],["Bibb","2021-11-16",152150,439,149233],["Bibb","2021-11-17",152150,531,149764],["Bibb","2021-11-18",152150,537,150301],["Bibb","2021-11-19",152150,532,150833],["Bibb","2021-11-20",152150,320,151153],["Bibb","2021-11-21",152150,156,151309],["Bibb","2021-11-22",152150,478,151787],["Bibb","2021-11-23",152150,548,152335],["Bibb","2021-11-24",152150,297,152632],["Bibb","2021-11-25",152150,2,152634],["Bibb","2021-11-26",152150,305,152939],["Bibb","2021-11-27",152150,236,153175],["Bibb","2021-11-28",152150,195,153370],["Bibb","2021-11-29",152150,438,153808],["Bibb","2021-11-30",152150,505,154313],["Bibb","2021-12-01",152150,644,154957],["Bibb","2021-12-02",152150,606,155563],["Bibb","2021-12-03",152150,717,156280],["Bibb","2021-12-04",152150,343,156623],["Bibb","2021-12-05",152150,155,156778],["Bibb","2021-12-06",152150,414,157192],["Bibb","2021-12-07",152150,441,157633],["Bibb","2021-12-08",152150,513,158146],["Bibb","2021-12-09",152150,535,158681],["Bibb","2021-12-10",152150,552,159233],["Bibb","2021-12-11",152150,215,159448],["Bibb","2021-12-12",152150,113,159561],["Bibb","2021-12-13",152150,321,159882],["Bibb","2021-12-14",152150,312,160194],["Bibb","2021-12-15",152150,439,160633],["Bibb","2021-12-16",152150,350,160983],["Bibb","2021-12-17",152150,469,161452],["Bibb","2021-12-18",152150,232,161684],["Bibb","2021-12-19",152150,177,161861],["Bibb","2021-12-20",152150,444,162305],["Bibb","2021-12-21",152150,477,162782],["Bibb","2021-12-22",152150,531,163313],["Bibb","2021-12-23",152150,379,163692],["Bibb","2021-12-24",152150,130,163822],["Bibb","2021-12-25",152150,1,163823],["Bibb","2021-12-26",152150,154,163977],["Bibb","2021-12-27",152150,410,164387],["Bibb","2021-12-28",152150,462,164849],["Bibb","2021-12-29",152150,562,165411],["Bibb","2021-12-30",152150,418,165829],["Bibb","2021-12-31",152150,262,166091],["Bibb","2022-01-01",152150,23,166114],["Bibb","2022-01-02",152150,115,166229],["Bibb","2022-01-03",152150,135,166364],["Bleckley","2020-12-16",12838,1,1],["Bleckley","2020-12-17",12838,1,2],["Bleckley","2020-12-18",12838,4,6],["Bleckley","2020-12-19",12838,1,7],["Bleckley","2020-12-21",12838,2,9],["Bleckley","2020-12-22",12838,5,14],["Bleckley","2020-12-23",12838,4,18],["Bleckley","2020-12-24",12838,4,22],["Bleckley","2020-12-26",12838,5,27],["Bleckley","2020-12-27",12838,1,28],["Bleckley","2020-12-28",12838,22,50],["Bleckley","2020-12-29",12838,14,64],["Bleckley","2020-12-30",12838,13,77],["Bleckley","2020-12-31",12838,6,83],["Bleckley","2021-01-01",12838,3,86],["Bleckley","2021-01-02",12838,2,88],["Bleckley","2021-01-03",12838,3,91],["Bleckley","2021-01-04",12838,26,117],["Bleckley","2021-01-05",12838,20,137],["Bleckley","2021-01-06",12838,25,162],["Bleckley","2021-01-07",12838,24,186],["Bleckley","2021-01-08",12838,39,225],["Bleckley","2021-01-09",12838,1,226],["Bleckley","2021-01-11",12838,42,268],["Bleckley","2021-01-12",12838,17,285],["Bleckley","2021-01-13",12838,85,370],["Bleckley","2021-01-14",12838,35,405],["Bleckley","2021-01-15",12838,44,449],["Bleckley","2021-01-16",12838,3,452],["Bleckley","2021-01-17",12838,4,456],["Bleckley","2021-01-18",12838,342,798],["Bleckley","2021-01-19",12838,22,820],["Bleckley","2021-01-20",12838,70,890],["Bleckley","2021-01-21",12838,64,954],["Bleckley","2021-01-22",12838,134,1088],["Bleckley","2021-01-23",12838,3,1091],["Bleckley","2021-01-24",12838,3,1094],["Bleckley","2021-01-25",12838,314,1408],["Bleckley","2021-01-26",12838,35,1443],["Bleckley","2021-01-27",12838,20,1463],["Bleckley","2021-01-28",12838,38,1501],["Bleckley","2021-01-29",12838,27,1528],["Bleckley","2021-01-30",12838,1,1529],["Bleckley","2021-02-01",12838,117,1646],["Bleckley","2021-02-02",12838,22,1668],["Bleckley","2021-02-03",12838,32,1700],["Bleckley","2021-02-04",12838,20,1720],["Bleckley","2021-02-05",12838,51,1771],["Bleckley","2021-02-06",12838,2,1773],["Bleckley","2021-02-08",12838,85,1858],["Bleckley","2021-02-09",12838,21,1879],["Bleckley","2021-02-10",12838,32,1911],["Bleckley","2021-02-11",12838,86,1997],["Bleckley","2021-02-12",12838,35,2032],["Bleckley","2021-02-13",12838,10,2042],["Bleckley","2021-02-14",12838,2,2044],["Bleckley","2021-02-15",12838,354,2398],["Bleckley","2021-02-16",12838,16,2414],["Bleckley","2021-02-17",12838,28,2442],["Bleckley","2021-02-18",12838,67,2509],["Bleckley","2021-02-19",12838,51,2560],["Bleckley","2021-02-20",12838,3,2563],["Bleckley","2021-02-22",12838,388,2951],["Bleckley","2021-02-23",12838,13,2964],["Bleckley","2021-02-24",12838,38,3002],["Bleckley","2021-02-25",12838,64,3066],["Bleckley","2021-02-26",12838,38,3104],["Bleckley","2021-02-27",12838,4,3108],["Bleckley","2021-02-28",12838,4,3112],["Bleckley","2021-03-01",12838,148,3260],["Bleckley","2021-03-02",12838,10,3270],["Bleckley","2021-03-03",12838,33,3303],["Bleckley","2021-03-04",12838,28,3331],["Bleckley","2021-03-05",12838,25,3356],["Bleckley","2021-03-06",12838,5,3361],["Bleckley","2021-03-07",12838,6,3367],["Bleckley","2021-03-08",12838,105,3472],["Bleckley","2021-03-09",12838,18,3490],["Bleckley","2021-03-10",12838,39,3529],["Bleckley","2021-03-11",12838,28,3557],["Bleckley","2021-03-12",12838,24,3581],["Bleckley","2021-03-13",12838,10,3591],["Bleckley","2021-03-14",12838,8,3599],["Bleckley","2021-03-15",12838,157,3756],["Bleckley","2021-03-16",12838,23,3779],["Bleckley","2021-03-17",12838,38,3817],["Bleckley","2021-03-18",12838,61,3878],["Bleckley","2021-03-19",12838,55,3933],["Bleckley","2021-03-20",12838,13,3946],["Bleckley","2021-03-21",12838,2,3948],["Bleckley","2021-03-22",12838,38,3986],["Bleckley","2021-03-23",12838,20,4006],["Bleckley","2021-03-24",12838,38,4044],["Bleckley","2021-03-25",12838,60,4104],["Bleckley","2021-03-26",12838,35,4139],["Bleckley","2021-03-27",12838,8,4147],["Bleckley","2021-03-28",12838,11,4158],["Bleckley","2021-03-29",12838,38,4196],["Bleckley","2021-03-30",12838,55,4251],["Bleckley","2021-03-31",12838,67,4318],["Bleckley","2021-04-01",12838,101,4419],["Bleckley","2021-04-02",12838,42,4461],["Bleckley","2021-04-03",12838,16,4477],["Bleckley","2021-04-04",12838,10,4487],["Bleckley","2021-04-05",12838,36,4523],["Bleckley","2021-04-06",12838,37,4560],["Bleckley","2021-04-07",12838,43,4603],["Bleckley","2021-04-08",12838,113,4716],["Bleckley","2021-04-09",12838,58,4774],["Bleckley","2021-04-10",12838,19,4793],["Bleckley","2021-04-11",12838,13,4806],["Bleckley","2021-04-12",12838,58,4864],["Bleckley","2021-04-13",12838,51,4915],["Bleckley","2021-04-14",12838,31,4946],["Bleckley","2021-04-15",12838,97,5043],["Bleckley","2021-04-16",12838,62,5105],["Bleckley","2021-04-17",12838,18,5123],["Bleckley","2021-04-18",12838,4,5127],["Bleckley","2021-04-19",12838,41,5168],["Bleckley","2021-04-20",12838,23,5191],["Bleckley","2021-04-21",12838,37,5228],["Bleckley","2021-04-22",12838,90,5318],["Bleckley","2021-04-23",12838,34,5352],["Bleckley","2021-04-24",12838,7,5359],["Bleckley","2021-04-25",12838,11,5370],["Bleckley","2021-04-26",12838,22,5392],["Bleckley","2021-04-27",12838,38,5430],["Bleckley","2021-04-28",12838,55,5485],["Bleckley","2021-04-29",12838,108,5593],["Bleckley","2021-04-30",12838,48,5641],["Bleckley","2021-05-01",12838,15,5656],["Bleckley","2021-05-02",12838,7,5663],["Bleckley","2021-05-03",12838,23,5686],["Bleckley","2021-05-04",12838,23,5709],["Bleckley","2021-05-05",12838,37,5746],["Bleckley","2021-05-06",12838,80,5826],["Bleckley","2021-05-07",12838,51,5877],["Bleckley","2021-05-08",12838,17,5894],["Bleckley","2021-05-09",12838,14,5908],["Bleckley","2021-05-10",12838,6,5914],["Bleckley","2021-05-11",12838,26,5940],["Bleckley","2021-05-12",12838,17,5957],["Bleckley","2021-05-13",12838,54,6011],["Bleckley","2021-05-14",12838,19,6030],["Bleckley","2021-05-15",12838,14,6044],["Bleckley","2021-05-16",12838,5,6049],["Bleckley","2021-05-17",12838,24,6073],["Bleckley","2021-05-18",12838,22,6095],["Bleckley","2021-05-19",12838,10,6105],["Bleckley","2021-05-20",12838,53,6158],["Bleckley","2021-05-21",12838,25,6183],["Bleckley","2021-05-22",12838,8,6191],["Bleckley","2021-05-23",12838,11,6202],["Bleckley","2021-05-24",12838,10,6212],["Bleckley","2021-05-25",12838,7,6219],["Bleckley","2021-05-26",12838,24,6243],["Bleckley","2021-05-27",12838,41,6284],["Bleckley","2021-05-28",12838,10,6294],["Bleckley","2021-05-29",12838,6,6300],["Bleckley","2021-05-30",12838,5,6305],["Bleckley","2021-05-31",12838,5,6310],["Bleckley","2021-06-01",12838,23,6333],["Bleckley","2021-06-02",12838,22,6355],["Bleckley","2021-06-03",12838,19,6374],["Bleckley","2021-06-04",12838,23,6397],["Bleckley","2021-06-05",12838,6,6403],["Bleckley","2021-06-06",12838,5,6408],["Bleckley","2021-06-07",12838,13,6421],["Bleckley","2021-06-08",12838,14,6435],["Bleckley","2021-06-09",12838,13,6448],["Bleckley","2021-06-10",12838,15,6463],["Bleckley","2021-06-11",12838,16,6479],["Bleckley","2021-06-12",12838,3,6482],["Bleckley","2021-06-13",12838,4,6486],["Bleckley","2021-06-14",12838,12,6498],["Bleckley","2021-06-15",12838,15,6513],["Bleckley","2021-06-16",12838,9,6522],["Bleckley","2021-06-17",12838,18,6540],["Bleckley","2021-06-18",12838,7,6547],["Bleckley","2021-06-19",12838,5,6552],["Bleckley","2021-06-20",12838,4,6556],["Bleckley","2021-06-21",12838,8,6564],["Bleckley","2021-06-22",12838,5,6569],["Bleckley","2021-06-23",12838,16,6585],["Bleckley","2021-06-24",12838,9,6594],["Bleckley","2021-06-25",12838,8,6602],["Bleckley","2021-06-26",12838,10,6612],["Bleckley","2021-06-27",12838,3,6615],["Bleckley","2021-06-28",12838,15,6630],["Bleckley","2021-06-29",12838,12,6642],["Bleckley","2021-06-30",12838,15,6657],["Bleckley","2021-07-01",12838,9,6666],["Bleckley","2021-07-02",12838,15,6681],["Bleckley","2021-07-03",12838,6,6687],["Bleckley","2021-07-04",12838,1,6688],["Bleckley","2021-07-05",12838,5,6693],["Bleckley","2021-07-06",12838,9,6702],["Bleckley","2021-07-07",12838,17,6719],["Bleckley","2021-07-08",12838,14,6733],["Bleckley","2021-07-09",12838,4,6737],["Bleckley","2021-07-10",12838,4,6741],["Bleckley","2021-07-11",12838,3,6744],["Bleckley","2021-07-12",12838,7,6751],["Bleckley","2021-07-13",12838,13,6764],["Bleckley","2021-07-14",12838,8,6772],["Bleckley","2021-07-15",12838,11,6783],["Bleckley","2021-07-16",12838,15,6798],["Bleckley","2021-07-17",12838,8,6806],["Bleckley","2021-07-18",12838,4,6810],["Bleckley","2021-07-19",12838,18,6828],["Bleckley","2021-07-20",12838,15,6843],["Bleckley","2021-07-21",12838,11,6854],["Bleckley","2021-07-22",12838,11,6865],["Bleckley","2021-07-23",12838,15,6880],["Bleckley","2021-07-24",12838,11,6891],["Bleckley","2021-07-25",12838,10,6901],["Bleckley","2021-07-26",12838,22,6923],["Bleckley","2021-07-27",12838,18,6941],["Bleckley","2021-07-28",12838,40,6981],["Bleckley","2021-07-29",12838,31,7012],["Bleckley","2021-07-30",12838,29,7041],["Bleckley","2021-07-31",12838,20,7061],["Bleckley","2021-08-01",12838,11,7072],["Bleckley","2021-08-02",12838,23,7095],["Bleckley","2021-08-03",12838,26,7121],["Bleckley","2021-08-04",12838,29,7150],["Bleckley","2021-08-05",12838,32,7182],["Bleckley","2021-08-06",12838,39,7221],["Bleckley","2021-08-07",12838,22,7243],["Bleckley","2021-08-08",12838,11,7254],["Bleckley","2021-08-09",12838,41,7295],["Bleckley","2021-08-10",12838,35,7330],["Bleckley","2021-08-11",12838,31,7361],["Bleckley","2021-08-12",12838,18,7379],["Bleckley","2021-08-13",12838,45,7424],["Bleckley","2021-08-14",12838,18,7442],["Bleckley","2021-08-15",12838,9,7451],["Bleckley","2021-08-16",12838,43,7494],["Bleckley","2021-08-17",12838,43,7537],["Bleckley","2021-08-18",12838,54,7591],["Bleckley","2021-08-19",12838,40,7631],["Bleckley","2021-08-20",12838,57,7688],["Bleckley","2021-08-21",12838,19,7707],["Bleckley","2021-08-22",12838,18,7725],["Bleckley","2021-08-23",12838,39,7764],["Bleckley","2021-08-24",12838,38,7802],["Bleckley","2021-08-25",12838,50,7852],["Bleckley","2021-08-26",12838,39,7891],["Bleckley","2021-08-27",12838,41,7932],["Bleckley","2021-08-28",12838,31,7963],["Bleckley","2021-08-29",12838,17,7980],["Bleckley","2021-08-30",12838,48,8028],["Bleckley","2021-08-31",12838,34,8062],["Bleckley","2021-09-01",12838,42,8104],["Bleckley","2021-09-02",12838,46,8150],["Bleckley","2021-09-03",12838,33,8183],["Bleckley","2021-09-04",12838,22,8205],["Bleckley","2021-09-05",12838,11,8216],["Bleckley","2021-09-06",12838,18,8234],["Bleckley","2021-09-07",12838,34,8268],["Bleckley","2021-09-08",12838,44,8312],["Bleckley","2021-09-09",12838,40,8352],["Bleckley","2021-09-10",12838,43,8395],["Bleckley","2021-09-11",12838,31,8426],["Bleckley","2021-09-12",12838,9,8435],["Bleckley","2021-09-13",12838,28,8463],["Bleckley","2021-09-14",12838,27,8490],["Bleckley","2021-09-15",12838,36,8526],["Bleckley","2021-09-16",12838,42,8568],["Bleckley","2021-09-17",12838,59,8627],["Bleckley","2021-09-18",12838,14,8641],["Bleckley","2021-09-19",12838,13,8654],["Bleckley","2021-09-20",12838,27,8681],["Bleckley","2021-09-21",12838,17,8698],["Bleckley","2021-09-22",12838,23,8721],["Bleckley","2021-09-23",12838,43,8764],["Bleckley","2021-09-24",12838,23,8787],["Bleckley","2021-09-25",12838,9,8796],["Bleckley","2021-09-26",12838,7,8803],["Bleckley","2021-09-27",12838,24,8827],["Bleckley","2021-09-28",12838,19,8846],["Bleckley","2021-09-29",12838,33,8879],["Bleckley","2021-09-30",12838,34,8913],["Bleckley","2021-10-01",12838,16,8929],["Bleckley","2021-10-02",12838,7,8936],["Bleckley","2021-10-03",12838,5,8941],["Bleckley","2021-10-04",12838,15,8956],["Bleckley","2021-10-05",12838,10,8966],["Bleckley","2021-10-06",12838,22,8988],["Bleckley","2021-10-07",12838,20,9008],["Bleckley","2021-10-08",12838,30,9038],["Bleckley","2021-10-09",12838,5,9043],["Bleckley","2021-10-10",12838,4,9047],["Bleckley","2021-10-11",12838,13,9060],["Bleckley","2021-10-12",12838,15,9075],["Bleckley","2021-10-13",12838,14,9089],["Bleckley","2021-10-14",12838,10,9099],["Bleckley","2021-10-15",12838,19,9118],["Bleckley","2021-10-16",12838,3,9121],["Bleckley","2021-10-17",12838,4,9125],["Bleckley","2021-10-18",12838,17,9142],["Bleckley","2021-10-19",12838,12,9154],["Bleckley","2021-10-20",12838,11,9165],["Bleckley","2021-10-21",12838,19,9184],["Bleckley","2021-10-22",12838,12,9196],["Bleckley","2021-10-23",12838,7,9203],["Bleckley","2021-10-24",12838,4,9207],["Bleckley","2021-10-25",12838,39,9246],["Bleckley","2021-10-26",12838,26,9272],["Bleckley","2021-10-27",12838,75,9347],["Bleckley","2021-10-28",12838,64,9411],["Bleckley","2021-10-29",12838,20,9431],["Bleckley","2021-10-30",12838,5,9436],["Bleckley","2021-10-31",12838,5,9441],["Bleckley","2021-11-01",12838,20,9461],["Bleckley","2021-11-02",12838,19,9480],["Bleckley","2021-11-03",12838,100,9580],["Bleckley","2021-11-04",12838,67,9647],["Bleckley","2021-11-05",12838,59,9706],["Bleckley","2021-11-06",12838,5,9711],["Bleckley","2021-11-07",12838,6,9717],["Bleckley","2021-11-08",12838,33,9750],["Bleckley","2021-11-09",12838,28,9778],["Bleckley","2021-11-10",12838,50,9828],["Bleckley","2021-11-11",12838,19,9847],["Bleckley","2021-11-12",12838,68,9915],["Bleckley","2021-11-13",12838,3,9918],["Bleckley","2021-11-14",12838,4,9922],["Bleckley","2021-11-15",12838,29,9951],["Bleckley","2021-11-16",12838,19,9970],["Bleckley","2021-11-17",12838,75,10045],["Bleckley","2021-11-18",12838,58,10103],["Bleckley","2021-11-19",12838,26,10129],["Bleckley","2021-11-20",12838,5,10134],["Bleckley","2021-11-21",12838,9,10143],["Bleckley","2021-11-22",12838,29,10172],["Bleckley","2021-11-23",12838,13,10185],["Bleckley","2021-11-24",12838,19,10204],["Bleckley","2021-11-26",12838,8,10212],["Bleckley","2021-11-27",12838,14,10226],["Bleckley","2021-11-28",12838,4,10230],["Bleckley","2021-11-29",12838,24,10254],["Bleckley","2021-11-30",12838,30,10284],["Bleckley","2021-12-01",12838,52,10336],["Bleckley","2021-12-02",12838,77,10413],["Bleckley","2021-12-03",12838,32,10445],["Bleckley","2021-12-04",12838,8,10453],["Bleckley","2021-12-05",12838,6,10459],["Bleckley","2021-12-06",12838,30,10489],["Bleckley","2021-12-07",12838,14,10503],["Bleckley","2021-12-08",12838,49,10552],["Bleckley","2021-12-09",12838,27,10579],["Bleckley","2021-12-10",12838,53,10632],["Bleckley","2021-12-11",12838,5,10637],["Bleckley","2021-12-12",12838,7,10644],["Bleckley","2021-12-13",12838,24,10668],["Bleckley","2021-12-14",12838,10,10678],["Bleckley","2021-12-15",12838,35,10713],["Bleckley","2021-12-16",12838,36,10749],["Bleckley","2021-12-17",12838,27,10776],["Bleckley","2021-12-18",12838,10,10786],["Bleckley","2021-12-19",12838,8,10794],["Bleckley","2021-12-20",12838,21,10815],["Bleckley","2021-12-21",12838,21,10836],["Bleckley","2021-12-22",12838,27,10863],["Bleckley","2021-12-23",12838,13,10876],["Bleckley","2021-12-24",12838,2,10878],["Bleckley","2021-12-26",12838,10,10888],["Bleckley","2021-12-27",12838,18,10906],["Bleckley","2021-12-28",12838,21,10927],["Bleckley","2021-12-29",12838,61,10988],["Bleckley","2021-12-30",12838,30,11018],["Bleckley","2021-12-31",12838,11,11029],["Bleckley","2022-01-01",12838,4,11033],["Bleckley","2022-01-02",12838,10,11043],["Bleckley","2022-01-03",12838,14,11057],["Brantley","2020-12-15",19202,6,6],["Brantley","2020-12-17",19202,14,20],["Brantley","2020-12-18",19202,2,22],["Brantley","2020-12-19",19202,1,23],["Brantley","2020-12-21",19202,7,30],["Brantley","2020-12-22",19202,7,37],["Brantley","2020-12-23",19202,8,45],["Brantley","2020-12-24",19202,3,48],["Brantley","2020-12-27",19202,1,49],["Brantley","2020-12-28",19202,6,55],["Brantley","2020-12-29",19202,9,64],["Brantley","2020-12-30",19202,13,77],["Brantley","2020-12-31",19202,6,83],["Brantley","2021-01-01",19202,2,85],["Brantley","2021-01-03",19202,2,87],["Brantley","2021-01-04",19202,14,101],["Brantley","2021-01-05",19202,17,118],["Brantley","2021-01-06",19202,19,137],["Brantley","2021-01-07",19202,34,171],["Brantley","2021-01-08",19202,30,201],["Brantley","2021-01-09",19202,2,203],["Brantley","2021-01-10",19202,2,205],["Brantley","2021-01-11",19202,36,241],["Brantley","2021-01-12",19202,30,271],["Brantley","2021-01-13",19202,26,297],["Brantley","2021-01-14",19202,26,323],["Brantley","2021-01-15",19202,56,379],["Brantley","2021-01-16",19202,37,416],["Brantley","2021-01-17",19202,3,419],["Brantley","2021-01-18",19202,35,454],["Brantley","2021-01-19",19202,31,485],["Brantley","2021-01-20",19202,52,537],["Brantley","2021-01-21",19202,30,567],["Brantley","2021-01-22",19202,38,605],["Brantley","2021-01-23",19202,17,622],["Brantley","2021-01-24",19202,4,626],["Brantley","2021-01-25",19202,44,670],["Brantley","2021-01-26",19202,34,704],["Brantley","2021-01-27",19202,33,737],["Brantley","2021-01-28",19202,63,800],["Brantley","2021-01-29",19202,55,855],["Brantley","2021-01-30",19202,27,882],["Brantley","2021-01-31",19202,2,884],["Brantley","2021-02-01",19202,60,944],["Brantley","2021-02-02",19202,26,970],["Brantley","2021-02-03",19202,54,1024],["Brantley","2021-02-04",19202,46,1070],["Brantley","2021-02-05",19202,39,1109],["Brantley","2021-02-06",19202,12,1121],["Brantley","2021-02-07",19202,3,1124],["Brantley","2021-02-08",19202,64,1188],["Brantley","2021-02-09",19202,26,1214],["Brantley","2021-02-10",19202,53,1267],["Brantley","2021-02-11",19202,35,1302],["Brantley","2021-02-12",19202,78,1380],["Brantley","2021-02-13",19202,61,1441],["Brantley","2021-02-14",19202,3,1444],["Brantley","2021-02-15",19202,66,1510],["Brantley","2021-02-16",19202,34,1544],["Brantley","2021-02-17",19202,105,1649],["Brantley","2021-02-18",19202,31,1680],["Brantley","2021-02-19",19202,84,1764],["Brantley","2021-02-20",19202,33,1797],["Brantley","2021-02-21",19202,1,1798],["Brantley","2021-02-22",19202,62,1860],["Brantley","2021-02-23",19202,24,1884],["Brantley","2021-02-24",19202,44,1928],["Brantley","2021-02-25",19202,39,1967],["Brantley","2021-02-26",19202,87,2054],["Brantley","2021-02-27",19202,22,2076],["Brantley","2021-03-01",19202,77,2153],["Brantley","2021-03-02",19202,25,2178],["Brantley","2021-03-03",19202,83,2261],["Brantley","2021-03-04",19202,46,2307],["Brantley","2021-03-05",19202,72,2379],["Brantley","2021-03-06",19202,12,2391],["Brantley","2021-03-08",19202,56,2447],["Brantley","2021-03-09",19202,17,2464],["Brantley","2021-03-10",19202,85,2549],["Brantley","2021-03-11",19202,44,2593],["Brantley","2021-03-12",19202,76,2669],["Brantley","2021-03-13",19202,39,2708],["Brantley","2021-03-14",19202,1,2709],["Brantley","2021-03-15",19202,86,2795],["Brantley","2021-03-16",19202,74,2869],["Brantley","2021-03-17",19202,141,3010],["Brantley","2021-03-18",19202,54,3064],["Brantley","2021-03-19",19202,98,3162],["Brantley","2021-03-20",19202,56,3218],["Brantley","2021-03-21",19202,2,3220],["Brantley","2021-03-22",19202,70,3290],["Brantley","2021-03-23",19202,41,3331],["Brantley","2021-03-24",19202,110,3441],["Brantley","2021-03-25",19202,82,3523],["Brantley","2021-03-26",19202,119,3642],["Brantley","2021-03-27",19202,49,3691],["Brantley","2021-03-28",19202,4,3695],["Brantley","2021-03-29",19202,36,3731],["Brantley","2021-03-30",19202,72,3803],["Brantley","2021-03-31",19202,151,3954],["Brantley","2021-04-01",19202,78,4032],["Brantley","2021-04-02",19202,54,4086],["Brantley","2021-04-03",19202,39,4125],["Brantley","2021-04-04",19202,1,4126],["Brantley","2021-04-05",19202,35,4161],["Brantley","2021-04-06",19202,61,4222],["Brantley","2021-04-07",19202,84,4306],["Brantley","2021-04-08",19202,71,4377],["Brantley","2021-04-09",19202,52,4429],["Brantley","2021-04-10",19202,52,4481],["Brantley","2021-04-11",19202,3,4484],["Brantley","2021-04-12",19202,34,4518],["Brantley","2021-04-13",19202,69,4587],["Brantley","2021-04-14",19202,79,4666],["Brantley","2021-04-15",19202,59,4725],["Brantley","2021-04-16",19202,74,4799],["Brantley","2021-04-17",19202,41,4840],["Brantley","2021-04-18",19202,1,4841],["Brantley","2021-04-19",19202,38,4879],["Brantley","2021-04-20",19202,89,4968],["Brantley","2021-04-21",19202,122,5090],["Brantley","2021-04-22",19202,79,5169],["Brantley","2021-04-23",19202,87,5256],["Brantley","2021-04-24",19202,44,5300],["Brantley","2021-04-26",19202,30,5330],["Brantley","2021-04-27",19202,44,5374],["Brantley","2021-04-28",19202,70,5444],["Brantley","2021-04-29",19202,38,5482],["Brantley","2021-04-30",19202,50,5532],["Brantley","2021-05-01",19202,34,5566],["Brantley","2021-05-02",19202,4,5570],["Brantley","2021-05-03",19202,18,5588],["Brantley","2021-05-04",19202,29,5617],["Brantley","2021-05-05",19202,59,5676],["Brantley","2021-05-06",19202,18,5694],["Brantley","2021-05-07",19202,19,5713],["Brantley","2021-05-08",19202,15,5728],["Brantley","2021-05-10",19202,10,5738],["Brantley","2021-05-11",19202,32,5770],["Brantley","2021-05-12",19202,53,5823],["Brantley","2021-05-13",19202,27,5850],["Brantley","2021-05-14",19202,30,5880],["Brantley","2021-05-15",19202,31,5911],["Brantley","2021-05-16",19202,3,5914],["Brantley","2021-05-17",19202,10,5924],["Brantley","2021-05-18",19202,21,5945],["Brantley","2021-05-19",19202,59,6004],["Brantley","2021-05-20",19202,22,6026],["Brantley","2021-05-21",19202,31,6057],["Brantley","2021-05-22",19202,8,6065],["Brantley","2021-05-23",19202,3,6068],["Brantley","2021-05-24",19202,11,6079],["Brantley","2021-05-25",19202,28,6107],["Brantley","2021-05-26",19202,53,6160],["Brantley","2021-05-27",19202,14,6174],["Brantley","2021-05-28",19202,9,6183],["Brantley","2021-05-29",19202,21,6204],["Brantley","2021-05-30",19202,1,6205],["Brantley","2021-05-31",19202,1,6206],["Brantley","2021-06-01",19202,16,6222],["Brantley","2021-06-02",19202,31,6253],["Brantley","2021-06-03",19202,17,6270],["Brantley","2021-06-04",19202,17,6287],["Brantley","2021-06-05",19202,13,6300],["Brantley","2021-06-06",19202,1,6301],["Brantley","2021-06-07",19202,4,6305],["Brantley","2021-06-08",19202,9,6314],["Brantley","2021-06-09",19202,30,6344],["Brantley","2021-06-10",19202,17,6361],["Brantley","2021-06-11",19202,12,6373],["Brantley","2021-06-12",19202,11,6384],["Brantley","2021-06-13",19202,2,6386],["Brantley","2021-06-14",19202,4,6390],["Brantley","2021-06-15",19202,8,6398],["Brantley","2021-06-16",19202,20,6418],["Brantley","2021-06-17",19202,14,6432],["Brantley","2021-06-18",19202,15,6447],["Brantley","2021-06-19",19202,9,6456],["Brantley","2021-06-20",19202,4,6460],["Brantley","2021-06-21",19202,5,6465],["Brantley","2021-06-22",19202,10,6475],["Brantley","2021-06-23",19202,36,6511],["Brantley","2021-06-24",19202,9,6520],["Brantley","2021-06-25",19202,6,6526],["Brantley","2021-06-26",19202,9,6535],["Brantley","2021-06-28",19202,8,6543],["Brantley","2021-06-29",19202,12,6555],["Brantley","2021-06-30",19202,18,6573],["Brantley","2021-07-01",19202,5,6578],["Brantley","2021-07-02",19202,8,6586],["Brantley","2021-07-03",19202,3,6589],["Brantley","2021-07-05",19202,1,6590],["Brantley","2021-07-06",19202,9,6599],["Brantley","2021-07-07",19202,14,6613],["Brantley","2021-07-08",19202,7,6620],["Brantley","2021-07-09",19202,4,6624],["Brantley","2021-07-10",19202,1,6625],["Brantley","2021-07-11",19202,1,6626],["Brantley","2021-07-12",19202,6,6632],["Brantley","2021-07-13",19202,14,6646],["Brantley","2021-07-14",19202,21,6667],["Brantley","2021-07-15",19202,7,6674],["Brantley","2021-07-16",19202,10,6684],["Brantley","2021-07-17",19202,4,6688],["Brantley","2021-07-18",19202,1,6689],["Brantley","2021-07-19",19202,9,6698],["Brantley","2021-07-20",19202,8,6706],["Brantley","2021-07-21",19202,40,6746],["Brantley","2021-07-22",19202,22,6768],["Brantley","2021-07-23",19202,22,6790],["Brantley","2021-07-24",19202,9,6799],["Brantley","2021-07-25",19202,5,6804],["Brantley","2021-07-26",19202,23,6827],["Brantley","2021-07-27",19202,34,6861],["Brantley","2021-07-28",19202,39,6900],["Brantley","2021-07-29",19202,33,6933],["Brantley","2021-07-30",19202,42,6975],["Brantley","2021-07-31",19202,20,6995],["Brantley","2021-08-01",19202,10,7005],["Brantley","2021-08-02",19202,30,7035],["Brantley","2021-08-03",19202,53,7088],["Brantley","2021-08-04",19202,48,7136],["Brantley","2021-08-05",19202,45,7181],["Brantley","2021-08-06",19202,54,7235],["Brantley","2021-08-07",19202,27,7262],["Brantley","2021-08-08",19202,15,7277],["Brantley","2021-08-09",19202,44,7321],["Brantley","2021-08-10",19202,43,7364],["Brantley","2021-08-11",19202,65,7429],["Brantley","2021-08-12",19202,72,7501],["Brantley","2021-08-13",19202,53,7554],["Brantley","2021-08-14",19202,20,7574],["Brantley","2021-08-15",19202,16,7590],["Brantley","2021-08-16",19202,36,7626],["Brantley","2021-08-17",19202,60,7686],["Brantley","2021-08-18",19202,56,7742],["Brantley","2021-08-19",19202,51,7793],["Brantley","2021-08-20",19202,71,7864],["Brantley","2021-08-21",19202,22,7886],["Brantley","2021-08-22",19202,9,7895],["Brantley","2021-08-23",19202,40,7935],["Brantley","2021-08-24",19202,66,8001],["Brantley","2021-08-25",19202,57,8058],["Brantley","2021-08-26",19202,62,8120],["Brantley","2021-08-27",19202,67,8187],["Brantley","2021-08-28",19202,27,8214],["Brantley","2021-08-29",19202,13,8227],["Brantley","2021-08-30",19202,55,8282],["Brantley","2021-08-31",19202,52,8334],["Brantley","2021-09-01",19202,57,8391],["Brantley","2021-09-02",19202,76,8467],["Brantley","2021-09-03",19202,69,8536],["Brantley","2021-09-04",19202,16,8552],["Brantley","2021-09-05",19202,14,8566],["Brantley","2021-09-06",19202,11,8577],["Brantley","2021-09-07",19202,82,8659],["Brantley","2021-09-08",19202,54,8713],["Brantley","2021-09-09",19202,62,8775],["Brantley","2021-09-10",19202,64,8839],["Brantley","2021-09-11",19202,19,8858],["Brantley","2021-09-12",19202,17,8875],["Brantley","2021-09-13",19202,59,8934],["Brantley","2021-09-14",19202,56,8990],["Brantley","2021-09-15",19202,40,9030],["Brantley","2021-09-16",19202,37,9067],["Brantley","2021-09-17",19202,78,9145],["Brantley","2021-09-18",19202,17,9162],["Brantley","2021-09-19",19202,3,9165],["Brantley","2021-09-20",19202,37,9202],["Brantley","2021-09-21",19202,34,9236],["Brantley","2021-09-22",19202,19,9255],["Brantley","2021-09-23",19202,41,9296],["Brantley","2021-09-24",19202,34,9330],["Brantley","2021-09-25",19202,7,9337],["Brantley","2021-09-26",19202,3,9340],["Brantley","2021-09-27",19202,15,9355],["Brantley","2021-09-28",19202,43,9398],["Brantley","2021-09-29",19202,34,9432],["Brantley","2021-09-30",19202,31,9463],["Brantley","2021-10-01",19202,37,9500],["Brantley","2021-10-02",19202,6,9506],["Brantley","2021-10-03",19202,9,9515],["Brantley","2021-10-04",19202,30,9545],["Brantley","2021-10-05",19202,40,9585],["Brantley","2021-10-06",19202,27,9612],["Brantley","2021-10-07",19202,21,9633],["Brantley","2021-10-08",19202,34,9667],["Brantley","2021-10-09",19202,9,9676],["Brantley","2021-10-10",19202,2,9678],["Brantley","2021-10-11",19202,9,9687],["Brantley","2021-10-12",19202,20,9707],["Brantley","2021-10-13",19202,20,9727],["Brantley","2021-10-14",19202,19,9746],["Brantley","2021-10-15",19202,19,9765],["Brantley","2021-10-16",19202,1,9766],["Brantley","2021-10-17",19202,1,9767],["Brantley","2021-10-18",19202,39,9806],["Brantley","2021-10-19",19202,26,9832],["Brantley","2021-10-20",19202,13,9845],["Brantley","2021-10-21",19202,17,9862],["Brantley","2021-10-22",19202,21,9883],["Brantley","2021-10-23",19202,13,9896],["Brantley","2021-10-24",19202,1,9897],["Brantley","2021-10-25",19202,22,9919],["Brantley","2021-10-26",19202,33,9952],["Brantley","2021-10-27",19202,49,10001],["Brantley","2021-10-28",19202,33,10034],["Brantley","2021-10-29",19202,32,10066],["Brantley","2021-10-30",19202,7,10073],["Brantley","2021-10-31",19202,1,10074],["Brantley","2021-11-01",19202,32,10106],["Brantley","2021-11-02",19202,30,10136],["Brantley","2021-11-03",19202,47,10183],["Brantley","2021-11-04",19202,27,10210],["Brantley","2021-11-05",19202,20,10230],["Brantley","2021-11-06",19202,9,10239],["Brantley","2021-11-07",19202,3,10242],["Brantley","2021-11-08",19202,38,10280],["Brantley","2021-11-09",19202,26,10306],["Brantley","2021-11-10",19202,25,10331],["Brantley","2021-11-11",19202,18,10349],["Brantley","2021-11-12",19202,23,10372],["Brantley","2021-11-13",19202,6,10378],["Brantley","2021-11-14",19202,7,10385],["Brantley","2021-11-15",19202,17,10402],["Brantley","2021-11-16",19202,31,10433],["Brantley","2021-11-17",19202,16,10449],["Brantley","2021-11-18",19202,33,10482],["Brantley","2021-11-19",19202,24,10506],["Brantley","2021-11-20",19202,12,10518],["Brantley","2021-11-21",19202,2,10520],["Brantley","2021-11-22",19202,29,10549],["Brantley","2021-11-23",19202,31,10580],["Brantley","2021-11-24",19202,21,10601],["Brantley","2021-11-25",19202,1,10602],["Brantley","2021-11-26",19202,9,10611],["Brantley","2021-11-27",19202,3,10614],["Brantley","2021-11-28",19202,5,10619],["Brantley","2021-11-29",19202,61,10680],["Brantley","2021-11-30",19202,62,10742],["Brantley","2021-12-01",19202,46,10788],["Brantley","2021-12-02",19202,50,10838],["Brantley","2021-12-03",19202,39,10877],["Brantley","2021-12-04",19202,6,10883],["Brantley","2021-12-05",19202,3,10886],["Brantley","2021-12-06",19202,37,10923],["Brantley","2021-12-07",19202,25,10948],["Brantley","2021-12-08",19202,33,10981],["Brantley","2021-12-09",19202,26,11007],["Brantley","2021-12-10",19202,47,11054],["Brantley","2021-12-11",19202,10,11064],["Brantley","2021-12-12",19202,3,11067],["Brantley","2021-12-13",19202,23,11090],["Brantley","2021-12-14",19202,28,11118],["Brantley","2021-12-15",19202,10,11128],["Brantley","2021-12-16",19202,18,11146],["Brantley","2021-12-17",19202,34,11180],["Brantley","2021-12-18",19202,5,11185],["Brantley","2021-12-19",19202,3,11188],["Brantley","2021-12-20",19202,29,11217],["Brantley","2021-12-21",19202,29,11246],["Brantley","2021-12-22",19202,22,11268],["Brantley","2021-12-23",19202,12,11280],["Brantley","2021-12-24",19202,4,11284],["Brantley","2021-12-27",19202,27,11311],["Brantley","2021-12-28",19202,29,11340],["Brantley","2021-12-29",19202,22,11362],["Brantley","2021-12-30",19202,21,11383],["Brantley","2021-12-31",19202,10,11393],["Brantley","2022-01-02",19202,6,11399],["Brantley","2022-01-03",19202,6,11405],["Brooks","2020-12-16",15727,1,1],["Brooks","2020-12-17",15727,1,2],["Brooks","2020-12-18",15727,5,7],["Brooks","2020-12-19",15727,3,10],["Brooks","2020-12-21",15727,15,25],["Brooks","2020-12-22",15727,25,50],["Brooks","2020-12-23",15727,19,69],["Brooks","2020-12-24",15727,1,70],["Brooks","2020-12-26",15727,1,71],["Brooks","2020-12-28",15727,20,91],["Brooks","2020-12-29",15727,13,104],["Brooks","2020-12-30",15727,23,127],["Brooks","2020-12-31",15727,22,149],["Brooks","2021-01-01",15727,7,156],["Brooks","2021-01-04",15727,28,184],["Brooks","2021-01-05",15727,27,211],["Brooks","2021-01-06",15727,26,237],["Brooks","2021-01-07",15727,15,252],["Brooks","2021-01-08",15727,18,270],["Brooks","2021-01-11",15727,67,337],["Brooks","2021-01-12",15727,72,409],["Brooks","2021-01-13",15727,110,519],["Brooks","2021-01-14",15727,133,652],["Brooks","2021-01-15",15727,87,739],["Brooks","2021-01-16",15727,5,744],["Brooks","2021-01-17",15727,1,745],["Brooks","2021-01-18",15727,47,792],["Brooks","2021-01-19",15727,191,983],["Brooks","2021-01-20",15727,157,1140],["Brooks","2021-01-21",15727,108,1248],["Brooks","2021-01-22",15727,94,1342],["Brooks","2021-01-23",15727,2,1344],["Brooks","2021-01-25",15727,82,1426],["Brooks","2021-01-26",15727,71,1497],["Brooks","2021-01-27",15727,72,1569],["Brooks","2021-01-28",15727,52,1621],["Brooks","2021-01-29",15727,92,1713],["Brooks","2021-02-01",15727,82,1795],["Brooks","2021-02-02",15727,134,1929],["Brooks","2021-02-03",15727,143,2072],["Brooks","2021-02-04",15727,130,2202],["Brooks","2021-02-05",15727,73,2275],["Brooks","2021-02-06",15727,1,2276],["Brooks","2021-02-08",15727,85,2361],["Brooks","2021-02-09",15727,174,2535],["Brooks","2021-02-10",15727,174,2709],["Brooks","2021-02-11",15727,178,2887],["Brooks","2021-02-12",15727,179,3066],["Brooks","2021-02-13",15727,21,3087],["Brooks","2021-02-14",15727,3,3090],["Brooks","2021-02-15",15727,91,3181],["Brooks","2021-02-16",15727,64,3245],["Brooks","2021-02-17",15727,139,3384],["Brooks","2021-02-18",15727,140,3524],["Brooks","2021-02-19",15727,95,3619],["Brooks","2021-02-20",15727,3,3622],["Brooks","2021-02-21",15727,2,3624],["Brooks","2021-02-22",15727,76,3700],["Brooks","2021-02-23",15727,74,3774],["Brooks","2021-02-24",15727,113,3887],["Brooks","2021-02-25",15727,125,4012],["Brooks","2021-02-26",15727,74,4086],["Brooks","2021-02-28",15727,3,4089],["Brooks","2021-03-01",15727,85,4174],["Brooks","2021-03-02",15727,130,4304],["Brooks","2021-03-03",15727,148,4452],["Brooks","2021-03-04",15727,127,4579],["Brooks","2021-03-05",15727,69,4648],["Brooks","2021-03-06",15727,3,4651],["Brooks","2021-03-07",15727,6,4657],["Brooks","2021-03-08",15727,66,4723],["Brooks","2021-03-09",15727,121,4844],["Brooks","2021-03-10",15727,57,4901],["Brooks","2021-03-11",15727,75,4976],["Brooks","2021-03-12",15727,110,5086],["Brooks","2021-03-13",15727,25,5111],["Brooks","2021-03-14",15727,6,5117],["Brooks","2021-03-15",15727,100,5217],["Brooks","2021-03-16",15727,107,5324],["Brooks","2021-03-17",15727,111,5435],["Brooks","2021-03-18",15727,121,5556],["Brooks","2021-03-19",15727,123,5679],["Brooks","2021-03-20",15727,22,5701],["Brooks","2021-03-21",15727,5,5706],["Brooks","2021-03-22",15727,142,5848],["Brooks","2021-03-23",15727,76,5924],["Brooks","2021-03-24",15727,137,6061],["Brooks","2021-03-25",15727,145,6206],["Brooks","2021-03-26",15727,117,6323],["Brooks","2021-03-27",15727,8,6331],["Brooks","2021-03-28",15727,6,6337],["Brooks","2021-03-29",15727,112,6449],["Brooks","2021-03-30",15727,96,6545],["Brooks","2021-03-31",15727,98,6643],["Brooks","2021-04-01",15727,119,6762],["Brooks","2021-04-02",15727,80,6842],["Brooks","2021-04-03",15727,13,6855],["Brooks","2021-04-04",15727,6,6861],["Brooks","2021-04-05",15727,131,6992],["Brooks","2021-04-06",15727,126,7118],["Brooks","2021-04-07",15727,88,7206],["Brooks","2021-04-08",15727,132,7338],["Brooks","2021-04-09",15727,105,7443],["Brooks","2021-04-10",15727,14,7457],["Brooks","2021-04-11",15727,8,7465],["Brooks","2021-04-12",15727,119,7584],["Brooks","2021-04-13",15727,80,7664],["Brooks","2021-04-14",15727,100,7764],["Brooks","2021-04-15",15727,61,7825],["Brooks","2021-04-16",15727,111,7936],["Brooks","2021-04-17",15727,6,7942],["Brooks","2021-04-18",15727,2,7944],["Brooks","2021-04-19",15727,49,7993],["Brooks","2021-04-20",15727,53,8046],["Brooks","2021-04-21",15727,94,8140],["Brooks","2021-04-22",15727,104,8244],["Brooks","2021-04-23",15727,122,8366],["Brooks","2021-04-24",15727,10,8376],["Brooks","2021-04-25",15727,3,8379],["Brooks","2021-04-26",15727,77,8456],["Brooks","2021-04-27",15727,87,8543],["Brooks","2021-04-28",15727,68,8611],["Brooks","2021-04-29",15727,79,8690],["Brooks","2021-04-30",15727,49,8739],["Brooks","2021-05-01",15727,18,8757],["Brooks","2021-05-02",15727,2,8759],["Brooks","2021-05-03",15727,32,8791],["Brooks","2021-05-04",15727,38,8829],["Brooks","2021-05-05",15727,64,8893],["Brooks","2021-05-06",15727,75,8968],["Brooks","2021-05-07",15727,50,9018],["Brooks","2021-05-08",15727,6,9024],["Brooks","2021-05-09",15727,5,9029],["Brooks","2021-05-10",15727,22,9051],["Brooks","2021-05-11",15727,28,9079],["Brooks","2021-05-12",15727,51,9130],["Brooks","2021-05-13",15727,49,9179],["Brooks","2021-05-14",15727,31,9210],["Brooks","2021-05-15",15727,16,9226],["Brooks","2021-05-16",15727,7,9233],["Brooks","2021-05-17",15727,26,9259],["Brooks","2021-05-18",15727,37,9296],["Brooks","2021-05-19",15727,60,9356],["Brooks","2021-05-20",15727,68,9424],["Brooks","2021-05-21",15727,46,9470],["Brooks","2021-05-22",15727,11,9481],["Brooks","2021-05-23",15727,5,9486],["Brooks","2021-05-24",15727,21,9507],["Brooks","2021-05-25",15727,27,9534],["Brooks","2021-05-26",15727,38,9572],["Brooks","2021-05-27",15727,34,9606],["Brooks","2021-05-28",15727,23,9629],["Brooks","2021-05-29",15727,5,9634],["Brooks","2021-05-30",15727,4,9638],["Brooks","2021-05-31",15727,4,9642],["Brooks","2021-06-01",15727,36,9678],["Brooks","2021-06-02",15727,38,9716],["Brooks","2021-06-03",15727,30,9746],["Brooks","2021-06-04",15727,26,9772],["Brooks","2021-06-05",15727,15,9787],["Brooks","2021-06-06",15727,8,9795],["Brooks","2021-06-07",15727,24,9819],["Brooks","2021-06-08",15727,21,9840],["Brooks","2021-06-09",15727,14,9854],["Brooks","2021-06-10",15727,47,9901],["Brooks","2021-06-11",15727,21,9922],["Brooks","2021-06-12",15727,18,9940],["Brooks","2021-06-13",15727,6,9946],["Brooks","2021-06-14",15727,15,9961],["Brooks","2021-06-15",15727,21,9982],["Brooks","2021-06-16",15727,36,10018],["Brooks","2021-06-17",15727,32,10050],["Brooks","2021-06-18",15727,25,10075],["Brooks","2021-06-19",15727,2,10077],["Brooks","2021-06-20",15727,3,10080],["Brooks","2021-06-21",15727,17,10097],["Brooks","2021-06-22",15727,30,10127],["Brooks","2021-06-23",15727,32,10159],["Brooks","2021-06-24",15727,16,10175],["Brooks","2021-06-25",15727,15,10190],["Brooks","2021-06-26",15727,11,10201],["Brooks","2021-06-27",15727,8,10209],["Brooks","2021-06-28",15727,30,10239],["Brooks","2021-06-29",15727,22,10261],["Brooks","2021-06-30",15727,17,10278],["Brooks","2021-07-01",15727,19,10297],["Brooks","2021-07-02",15727,20,10317],["Brooks","2021-07-03",15727,7,10324],["Brooks","2021-07-05",15727,9,10333],["Brooks","2021-07-06",15727,13,10346],["Brooks","2021-07-07",15727,23,10369],["Brooks","2021-07-08",15727,23,10392],["Brooks","2021-07-09",15727,12,10404],["Brooks","2021-07-10",15727,8,10412],["Brooks","2021-07-11",15727,4,10416],["Brooks","2021-07-12",15727,21,10437],["Brooks","2021-07-13",15727,16,10453],["Brooks","2021-07-14",15727,23,10476],["Brooks","2021-07-15",15727,17,10493],["Brooks","2021-07-16",15727,12,10505],["Brooks","2021-07-17",15727,12,10517],["Brooks","2021-07-18",15727,4,10521],["Brooks","2021-07-19",15727,24,10545],["Brooks","2021-07-20",15727,26,10571],["Brooks","2021-07-21",15727,30,10601],["Brooks","2021-07-22",15727,45,10646],["Brooks","2021-07-23",15727,27,10673],["Brooks","2021-07-24",15727,17,10690],["Brooks","2021-07-25",15727,6,10696],["Brooks","2021-07-26",15727,58,10754],["Brooks","2021-07-27",15727,27,10781],["Brooks","2021-07-28",15727,58,10839],["Brooks","2021-07-29",15727,79,10918],["Brooks","2021-07-30",15727,61,10979],["Brooks","2021-07-31",15727,16,10995],["Brooks","2021-08-01",15727,18,11013],["Brooks","2021-08-02",15727,75,11088],["Brooks","2021-08-03",15727,44,11132],["Brooks","2021-08-04",15727,55,11187],["Brooks","2021-08-05",15727,52,11239],["Brooks","2021-08-06",15727,66,11305],["Brooks","2021-08-07",15727,42,11347],["Brooks","2021-08-08",15727,11,11358],["Brooks","2021-08-09",15727,67,11425],["Brooks","2021-08-10",15727,60,11485],["Brooks","2021-08-11",15727,54,11539],["Brooks","2021-08-12",15727,57,11596],["Brooks","2021-08-13",15727,58,11654],["Brooks","2021-08-14",15727,34,11688],["Brooks","2021-08-15",15727,13,11701],["Brooks","2021-08-16",15727,49,11750],["Brooks","2021-08-17",15727,40,11790],["Brooks","2021-08-18",15727,90,11880],["Brooks","2021-08-19",15727,71,11951],["Brooks","2021-08-20",15727,76,12027],["Brooks","2021-08-21",15727,25,12052],["Brooks","2021-08-22",15727,10,12062],["Brooks","2021-08-23",15727,54,12116],["Brooks","2021-08-24",15727,52,12168],["Brooks","2021-08-25",15727,109,12277],["Brooks","2021-08-26",15727,58,12335],["Brooks","2021-08-27",15727,96,12431],["Brooks","2021-08-28",15727,77,12508],["Brooks","2021-08-29",15727,11,12519],["Brooks","2021-08-30",15727,78,12597],["Brooks","2021-08-31",15727,68,12665],["Brooks","2021-09-01",15727,71,12736],["Brooks","2021-09-02",15727,72,12808],["Brooks","2021-09-03",15727,76,12884],["Brooks","2021-09-04",15727,28,12912],["Brooks","2021-09-05",15727,13,12925],["Brooks","2021-09-06",15727,4,12929],["Brooks","2021-09-07",15727,53,12982],["Brooks","2021-09-08",15727,46,13028],["Brooks","2021-09-09",15727,63,13091],["Brooks","2021-09-10",15727,107,13198],["Brooks","2021-09-11",15727,21,13219],["Brooks","2021-09-12",15727,12,13231],["Brooks","2021-09-13",15727,62,13293],["Brooks","2021-09-14",15727,38,13331],["Brooks","2021-09-15",15727,54,13385],["Brooks","2021-09-16",15727,52,13437],["Brooks","2021-09-17",15727,61,13498],["Brooks","2021-09-18",15727,31,13529],["Brooks","2021-09-19",15727,3,13532],["Brooks","2021-09-20",15727,19,13551],["Brooks","2021-09-21",15727,34,13585],["Brooks","2021-09-22",15727,57,13642],["Brooks","2021-09-23",15727,37,13679],["Brooks","2021-09-24",15727,40,13719],["Brooks","2021-09-25",15727,7,13726],["Brooks","2021-09-26",15727,3,13729],["Brooks","2021-09-27",15727,33,13762],["Brooks","2021-09-28",15727,31,13793],["Brooks","2021-09-29",15727,35,13828],["Brooks","2021-09-30",15727,42,13870],["Brooks","2021-10-01",15727,32,13902],["Brooks","2021-10-02",15727,13,13915],["Brooks","2021-10-03",15727,5,13920],["Brooks","2021-10-04",15727,23,13943],["Brooks","2021-10-05",15727,28,13971],["Brooks","2021-10-06",15727,44,14015],["Brooks","2021-10-07",15727,50,14065],["Brooks","2021-10-08",15727,27,14092],["Brooks","2021-10-09",15727,5,14097],["Brooks","2021-10-10",15727,3,14100],["Brooks","2021-10-11",15727,15,14115],["Brooks","2021-10-12",15727,18,14133],["Brooks","2021-10-13",15727,55,14188],["Brooks","2021-10-14",15727,33,14221],["Brooks","2021-10-15",15727,16,14237],["Brooks","2021-10-16",15727,4,14241],["Brooks","2021-10-17",15727,1,14242],["Brooks","2021-10-18",15727,15,14257],["Brooks","2021-10-19",15727,14,14271],["Brooks","2021-10-20",15727,17,14288],["Brooks","2021-10-21",15727,32,14320],["Brooks","2021-10-22",15727,38,14358],["Brooks","2021-10-23",15727,11,14369],["Brooks","2021-10-24",15727,3,14372],["Brooks","2021-10-25",15727,46,14418],["Brooks","2021-10-26",15727,48,14466],["Brooks","2021-10-27",15727,64,14530],["Brooks","2021-10-28",15727,51,14581],["Brooks","2021-10-29",15727,51,14632],["Brooks","2021-10-30",15727,7,14639],["Brooks","2021-10-31",15727,1,14640],["Brooks","2021-11-01",15727,31,14671],["Brooks","2021-11-02",15727,46,14717],["Brooks","2021-11-03",15727,41,14758],["Brooks","2021-11-04",15727,51,14809],["Brooks","2021-11-05",15727,40,14849],["Brooks","2021-11-06",15727,12,14861],["Brooks","2021-11-07",15727,1,14862],["Brooks","2021-11-08",15727,43,14905],["Brooks","2021-11-09",15727,47,14952],["Brooks","2021-11-10",15727,42,14994],["Brooks","2021-11-11",15727,29,15023],["Brooks","2021-11-12",15727,125,15148],["Brooks","2021-11-13",15727,17,15165],["Brooks","2021-11-14",15727,2,15167],["Brooks","2021-11-15",15727,41,15208],["Brooks","2021-11-16",15727,75,15283],["Brooks","2021-11-17",15727,45,15328],["Brooks","2021-11-18",15727,54,15382],["Brooks","2021-11-19",15727,71,15453],["Brooks","2021-11-20",15727,11,15464],["Brooks","2021-11-21",15727,2,15466],["Brooks","2021-11-22",15727,54,15520],["Brooks","2021-11-23",15727,77,15597],["Brooks","2021-11-24",15727,35,15632],["Brooks","2021-11-26",15727,7,15639],["Brooks","2021-11-27",15727,8,15647],["Brooks","2021-11-28",15727,2,15649],["Brooks","2021-11-29",15727,57,15706],["Brooks","2021-11-30",15727,66,15772],["Brooks","2021-12-01",15727,61,15833],["Brooks","2021-12-02",15727,46,15879],["Brooks","2021-12-03",15727,64,15943],["Brooks","2021-12-04",15727,24,15967],["Brooks","2021-12-05",15727,1,15968],["Brooks","2021-12-06",15727,66,16034],["Brooks","2021-12-07",15727,56,16090],["Brooks","2021-12-08",15727,51,16141],["Brooks","2021-12-09",15727,54,16195],["Brooks","2021-12-10",15727,47,16242],["Brooks","2021-12-11",15727,11,16253],["Brooks","2021-12-12",15727,11,16264],["Brooks","2021-12-13",15727,34,16298],["Brooks","2021-12-14",15727,41,16339],["Brooks","2021-12-15",15727,24,16363],["Brooks","2021-12-16",15727,38,16401],["Brooks","2021-12-17",15727,74,16475],["Brooks","2021-12-18",15727,17,16492],["Brooks","2021-12-19",15727,4,16496],["Brooks","2021-12-20",15727,59,16555],["Brooks","2021-12-21",15727,60,16615],["Brooks","2021-12-22",15727,61,16676],["Brooks","2021-12-23",15727,41,16717],["Brooks","2021-12-24",15727,7,16724],["Brooks","2021-12-26",15727,10,16734],["Brooks","2021-12-27",15727,55,16789],["Brooks","2021-12-28",15727,45,16834],["Brooks","2021-12-29",15727,58,16892],["Brooks","2021-12-30",15727,47,16939],["Brooks","2021-12-31",15727,18,16957],["Brooks","2022-01-01",15727,2,16959],["Brooks","2022-01-02",15727,8,16967],["Brooks","2022-01-03",15727,31,16998],["Bryan","2020-12-15",39137,5,5],["Bryan","2020-12-16",39137,51,56],["Bryan","2020-12-17",39137,11,67],["Bryan","2020-12-18",39137,102,169],["Bryan","2020-12-19",39137,8,177],["Bryan","2020-12-20",39137,3,180],["Bryan","2020-12-21",39137,44,224],["Bryan","2020-12-22",39137,59,283],["Bryan","2020-12-23",39137,46,329],["Bryan","2020-12-24",39137,9,338],["Bryan","2020-12-26",39137,1,339],["Bryan","2020-12-28",39137,40,379],["Bryan","2020-12-29",39137,77,456],["Bryan","2020-12-30",39137,63,519],["Bryan","2020-12-31",39137,35,554],["Bryan","2021-01-01",39137,9,563],["Bryan","2021-01-02",39137,10,573],["Bryan","2021-01-04",39137,33,606],["Bryan","2021-01-05",39137,55,661],["Bryan","2021-01-06",39137,161,822],["Bryan","2021-01-07",39137,99,921],["Bryan","2021-01-08",39137,90,1011],["Bryan","2021-01-09",39137,49,1060],["Bryan","2021-01-10",39137,14,1074],["Bryan","2021-01-11",39137,130,1204],["Bryan","2021-01-12",39137,100,1304],["Bryan","2021-01-13",39137,105,1409],["Bryan","2021-01-14",39137,300,1709],["Bryan","2021-01-15",39137,108,1817],["Bryan","2021-01-16",39137,138,1955],["Bryan","2021-01-17",39137,36,1991],["Bryan","2021-01-18",39137,173,2164],["Bryan","2021-01-19",39137,130,2294],["Bryan","2021-01-20",39137,196,2490],["Bryan","2021-01-21",39137,329,2819],["Bryan","2021-01-22",39137,109,2928],["Bryan","2021-01-23",39137,83,3011],["Bryan","2021-01-24",39137,50,3061],["Bryan","2021-01-25",39137,219,3280],["Bryan","2021-01-26",39137,105,3385],["Bryan","2021-01-27",39137,122,3507],["Bryan","2021-01-28",39137,307,3814],["Bryan","2021-01-29",39137,164,3978],["Bryan","2021-01-30",39137,308,4286],["Bryan","2021-01-31",39137,29,4315],["Bryan","2021-02-01",39137,227,4542],["Bryan","2021-02-02",39137,276,4818],["Bryan","2021-02-03",39137,135,4953],["Bryan","2021-02-04",39137,231,5184],["Bryan","2021-02-05",39137,165,5349],["Bryan","2021-02-06",39137,95,5444],["Bryan","2021-02-07",39137,12,5456],["Bryan","2021-02-08",39137,141,5597],["Bryan","2021-02-09",39137,199,5796],["Bryan","2021-02-10",39137,83,5879],["Bryan","2021-02-11",39137,234,6113],["Bryan","2021-02-12",39137,120,6233],["Bryan","2021-02-13",39137,125,6358],["Bryan","2021-02-14",39137,35,6393],["Bryan","2021-02-15",39137,213,6606],["Bryan","2021-02-16",39137,176,6782],["Bryan","2021-02-17",39137,130,6912],["Bryan","2021-02-18",39137,409,7321],["Bryan","2021-02-19",39137,155,7476],["Bryan","2021-02-20",39137,97,7573],["Bryan","2021-02-21",39137,54,7627],["Bryan","2021-02-22",39137,201,7828],["Bryan","2021-02-23",39137,212,8040],["Bryan","2021-02-24",39137,124,8164],["Bryan","2021-02-25",39137,341,8505],["Bryan","2021-02-26",39137,139,8644],["Bryan","2021-02-27",39137,325,8969],["Bryan","2021-02-28",39137,56,9025],["Bryan","2021-03-01",39137,204,9229],["Bryan","2021-03-02",39137,219,9448],["Bryan","2021-03-03",39137,98,9546],["Bryan","2021-03-04",39137,442,9988],["Bryan","2021-03-05",39137,133,10121],["Bryan","2021-03-06",39137,62,10183],["Bryan","2021-03-07",39137,44,10227],["Bryan","2021-03-08",39137,226,10453],["Bryan","2021-03-09",39137,211,10664],["Bryan","2021-03-10",39137,134,10798],["Bryan","2021-03-11",39137,328,11126],["Bryan","2021-03-12",39137,218,11344],["Bryan","2021-03-13",39137,299,11643],["Bryan","2021-03-14",39137,46,11689],["Bryan","2021-03-15",39137,276,11965],["Bryan","2021-03-16",39137,309,12274],["Bryan","2021-03-17",39137,203,12477],["Bryan","2021-03-18",39137,327,12804],["Bryan","2021-03-19",39137,308,13112],["Bryan","2021-03-20",39137,176,13288],["Bryan","2021-03-21",39137,45,13333],["Bryan","2021-03-22",39137,289,13622],["Bryan","2021-03-23",39137,355,13977],["Bryan","2021-03-24",39137,288,14265],["Bryan","2021-03-25",39137,466,14731],["Bryan","2021-03-26",39137,243,14974],["Bryan","2021-03-27",39137,172,15146],["Bryan","2021-03-28",39137,79,15225],["Bryan","2021-03-29",39137,284,15509],["Bryan","2021-03-30",39137,404,15913],["Bryan","2021-03-31",39137,242,16155],["Bryan","2021-04-01",39137,462,16617],["Bryan","2021-04-02",39137,255,16872],["Bryan","2021-04-03",39137,91,16963],["Bryan","2021-04-04",39137,56,17019],["Bryan","2021-04-05",39137,231,17250],["Bryan","2021-04-06",39137,287,17537],["Bryan","2021-04-07",39137,273,17810],["Bryan","2021-04-08",39137,473,18283],["Bryan","2021-04-09",39137,243,18526],["Bryan","2021-04-10",39137,219,18745],["Bryan","2021-04-11",39137,60,18805],["Bryan","2021-04-12",39137,281,19086],["Bryan","2021-04-13",39137,315,19401],["Bryan","2021-04-14",39137,267,19668],["Bryan","2021-04-15",39137,538,20206],["Bryan","2021-04-16",39137,219,20425],["Bryan","2021-04-17",39137,175,20600],["Bryan","2021-04-18",39137,38,20638],["Bryan","2021-04-19",39137,209,20847],["Bryan","2021-04-20",39137,283,21130],["Bryan","2021-04-21",39137,217,21347],["Bryan","2021-04-22",39137,476,21823],["Bryan","2021-04-23",39137,288,22111],["Bryan","2021-04-24",39137,108,22219],["Bryan","2021-04-25",39137,21,22240],["Bryan","2021-04-26",39137,227,22467],["Bryan","2021-04-27",39137,218,22685],["Bryan","2021-04-28",39137,186,22871],["Bryan","2021-04-29",39137,471,23342],["Bryan","2021-04-30",39137,263,23605],["Bryan","2021-05-01",39137,112,23717],["Bryan","2021-05-02",39137,30,23747],["Bryan","2021-05-03",39137,159,23906],["Bryan","2021-05-04",39137,157,24063],["Bryan","2021-05-05",39137,136,24199],["Bryan","2021-05-06",39137,264,24463],["Bryan","2021-05-07",39137,149,24612],["Bryan","2021-05-08",39137,82,24694],["Bryan","2021-05-09",39137,11,24705],["Bryan","2021-05-10",39137,87,24792],["Bryan","2021-05-11",39137,118,24910],["Bryan","2021-05-12",39137,85,24995],["Bryan","2021-05-13",39137,215,25210],["Bryan","2021-05-14",39137,169,25379],["Bryan","2021-05-15",39137,75,25454],["Bryan","2021-05-16",39137,50,25504],["Bryan","2021-05-17",39137,144,25648],["Bryan","2021-05-18",39137,121,25769],["Bryan","2021-05-19",39137,128,25897],["Bryan","2021-05-20",39137,169,26066],["Bryan","2021-05-21",39137,140,26206],["Bryan","2021-05-22",39137,68,26274],["Bryan","2021-05-23",39137,43,26317],["Bryan","2021-05-24",39137,85,26402],["Bryan","2021-05-25",39137,77,26479],["Bryan","2021-05-26",39137,89,26568],["Bryan","2021-05-27",39137,130,26698],["Bryan","2021-05-28",39137,77,26775],["Bryan","2021-05-29",39137,54,26829],["Bryan","2021-05-30",39137,21,26850],["Bryan","2021-05-31",39137,11,26861],["Bryan","2021-06-01",39137,104,26965],["Bryan","2021-06-02",39137,80,27045],["Bryan","2021-06-03",39137,102,27147],["Bryan","2021-06-04",39137,121,27268],["Bryan","2021-06-05",39137,67,27335],["Bryan","2021-06-06",39137,43,27378],["Bryan","2021-06-07",39137,104,27482],["Bryan","2021-06-08",39137,87,27569],["Bryan","2021-06-09",39137,68,27637],["Bryan","2021-06-10",39137,100,27737],["Bryan","2021-06-11",39137,112,27849],["Bryan","2021-06-12",39137,64,27913],["Bryan","2021-06-13",39137,38,27951],["Bryan","2021-06-14",39137,73,28024],["Bryan","2021-06-15",39137,66,28090],["Bryan","2021-06-16",39137,71,28161],["Bryan","2021-06-17",39137,102,28263],["Bryan","2021-06-18",39137,91,28354],["Bryan","2021-06-19",39137,46,28400],["Bryan","2021-06-20",39137,15,28415],["Bryan","2021-06-21",39137,46,28461],["Bryan","2021-06-22",39137,38,28499],["Bryan","2021-06-23",39137,72,28571],["Bryan","2021-06-24",39137,65,28636],["Bryan","2021-06-25",39137,78,28714],["Bryan","2021-06-26",39137,27,28741],["Bryan","2021-06-27",39137,21,28762],["Bryan","2021-06-28",39137,37,28799],["Bryan","2021-06-29",39137,56,28855],["Bryan","2021-06-30",39137,46,28901],["Bryan","2021-07-01",39137,57,28958],["Bryan","2021-07-02",39137,70,29028],["Bryan","2021-07-03",39137,32,29060],["Bryan","2021-07-04",39137,3,29063],["Bryan","2021-07-05",39137,27,29090],["Bryan","2021-07-06",39137,43,29133],["Bryan","2021-07-07",39137,53,29186],["Bryan","2021-07-08",39137,63,29249],["Bryan","2021-07-09",39137,76,29325],["Bryan","2021-07-10",39137,23,29348],["Bryan","2021-07-11",39137,25,29373],["Bryan","2021-07-12",39137,42,29415],["Bryan","2021-07-13",39137,42,29457],["Bryan","2021-07-14",39137,45,29502],["Bryan","2021-07-15",39137,70,29572],["Bryan","2021-07-16",39137,82,29654],["Bryan","2021-07-17",39137,32,29686],["Bryan","2021-07-18",39137,10,29696],["Bryan","2021-07-19",39137,48,29744],["Bryan","2021-07-20",39137,43,29787],["Bryan","2021-07-21",39137,76,29863],["Bryan","2021-07-22",39137,71,29934],["Bryan","2021-07-23",39137,112,30046],["Bryan","2021-07-24",39137,49,30095],["Bryan","2021-07-25",39137,15,30110],["Bryan","2021-07-26",39137,87,30197],["Bryan","2021-07-27",39137,91,30288],["Bryan","2021-07-28",39137,99,30387],["Bryan","2021-07-29",39137,90,30477],["Bryan","2021-07-30",39137,147,30624],["Bryan","2021-07-31",39137,55,30679],["Bryan","2021-08-01",39137,31,30710],["Bryan","2021-08-02",39137,77,30787],["Bryan","2021-08-03",39137,76,30863],["Bryan","2021-08-04",39137,82,30945],["Bryan","2021-08-05",39137,107,31052],["Bryan","2021-08-06",39137,147,31199],["Bryan","2021-08-07",39137,60,31259],["Bryan","2021-08-08",39137,32,31291],["Bryan","2021-08-09",39137,77,31368],["Bryan","2021-08-10",39137,85,31453],["Bryan","2021-08-11",39137,103,31556],["Bryan","2021-08-12",39137,156,31712],["Bryan","2021-08-13",39137,165,31877],["Bryan","2021-08-14",39137,87,31964],["Bryan","2021-08-15",39137,48,32012],["Bryan","2021-08-16",39137,140,32152],["Bryan","2021-08-17",39137,119,32271],["Bryan","2021-08-18",39137,136,32407],["Bryan","2021-08-19",39137,167,32574],["Bryan","2021-08-20",39137,203,32777],["Bryan","2021-08-21",39137,93,32870],["Bryan","2021-08-22",39137,37,32907],["Bryan","2021-08-23",39137,103,33010],["Bryan","2021-08-24",39137,88,33098],["Bryan","2021-08-25",39137,106,33204],["Bryan","2021-08-26",39137,137,33341],["Bryan","2021-08-27",39137,187,33528],["Bryan","2021-08-28",39137,85,33613],["Bryan","2021-08-29",39137,33,33646],["Bryan","2021-08-30",39137,116,33762],["Bryan","2021-08-31",39137,102,33864],["Bryan","2021-09-01",39137,142,34006],["Bryan","2021-09-02",39137,161,34167],["Bryan","2021-09-03",39137,168,34335],["Bryan","2021-09-04",39137,56,34391],["Bryan","2021-09-05",39137,28,34419],["Bryan","2021-09-06",39137,14,34433],["Bryan","2021-09-07",39137,117,34550],["Bryan","2021-09-08",39137,112,34662],["Bryan","2021-09-09",39137,128,34790],["Bryan","2021-09-10",39137,162,34952],["Bryan","2021-09-11",39137,50,35002],["Bryan","2021-09-12",39137,37,35039],["Bryan","2021-09-13",39137,113,35152],["Bryan","2021-09-14",39137,89,35241],["Bryan","2021-09-15",39137,122,35363],["Bryan","2021-09-16",39137,107,35470],["Bryan","2021-09-17",39137,126,35596],["Bryan","2021-09-18",39137,65,35661],["Bryan","2021-09-19",39137,28,35689],["Bryan","2021-09-20",39137,70,35759],["Bryan","2021-09-21",39137,75,35834],["Bryan","2021-09-22",39137,108,35942],["Bryan","2021-09-23",39137,82,36024],["Bryan","2021-09-24",39137,89,36113],["Bryan","2021-09-25",39137,54,36167],["Bryan","2021-09-26",39137,18,36185],["Bryan","2021-09-27",39137,75,36260],["Bryan","2021-09-28",39137,73,36333],["Bryan","2021-09-29",39137,115,36448],["Bryan","2021-09-30",39137,94,36542],["Bryan","2021-10-01",39137,105,36647],["Bryan","2021-10-02",39137,36,36683],["Bryan","2021-10-03",39137,23,36706],["Bryan","2021-10-04",39137,73,36779],["Bryan","2021-10-05",39137,47,36826],["Bryan","2021-10-06",39137,65,36891],["Bryan","2021-10-07",39137,86,36977],["Bryan","2021-10-08",39137,92,37069],["Bryan","2021-10-09",39137,30,37099],["Bryan","2021-10-10",39137,21,37120],["Bryan","2021-10-11",39137,49,37169],["Bryan","2021-10-12",39137,50,37219],["Bryan","2021-10-13",39137,53,37272],["Bryan","2021-10-14",39137,58,37330],["Bryan","2021-10-15",39137,67,37397],["Bryan","2021-10-16",39137,19,37416],["Bryan","2021-10-17",39137,10,37426],["Bryan","2021-10-18",39137,45,37471],["Bryan","2021-10-19",39137,34,37505],["Bryan","2021-10-20",39137,49,37554],["Bryan","2021-10-21",39137,57,37611],["Bryan","2021-10-22",39137,126,37737],["Bryan","2021-10-23",39137,63,37800],["Bryan","2021-10-24",39137,38,37838],["Bryan","2021-10-25",39137,140,37978],["Bryan","2021-10-26",39137,93,38071],["Bryan","2021-10-27",39137,140,38211],["Bryan","2021-10-28",39137,235,38446],["Bryan","2021-10-29",39137,135,38581],["Bryan","2021-10-30",39137,55,38636],["Bryan","2021-10-31",39137,18,38654],["Bryan","2021-11-01",39137,93,38747],["Bryan","2021-11-02",39137,66,38813],["Bryan","2021-11-03",39137,134,38947],["Bryan","2021-11-04",39137,228,39175],["Bryan","2021-11-05",39137,127,39302],["Bryan","2021-11-06",39137,81,39383],["Bryan","2021-11-07",39137,33,39416],["Bryan","2021-11-08",39137,111,39527],["Bryan","2021-11-09",39137,79,39606],["Bryan","2021-11-10",39137,130,39736],["Bryan","2021-11-11",39137,115,39851],["Bryan","2021-11-12",39137,138,39989],["Bryan","2021-11-13",39137,76,40065],["Bryan","2021-11-14",39137,27,40092],["Bryan","2021-11-15",39137,104,40196],["Bryan","2021-11-16",39137,85,40281],["Bryan","2021-11-17",39137,111,40392],["Bryan","2021-11-18",39137,116,40508],["Bryan","2021-11-19",39137,129,40637],["Bryan","2021-11-20",39137,74,40711],["Bryan","2021-11-21",39137,25,40736],["Bryan","2021-11-22",39137,118,40854],["Bryan","2021-11-23",39137,103,40957],["Bryan","2021-11-24",39137,91,41048],["Bryan","2021-11-26",39137,97,41145],["Bryan","2021-11-27",39137,45,41190],["Bryan","2021-11-28",39137,34,41224],["Bryan","2021-11-29",39137,149,41373],["Bryan","2021-11-30",39137,119,41492],["Bryan","2021-12-01",39137,189,41681],["Bryan","2021-12-02",39137,243,41924],["Bryan","2021-12-03",39137,177,42101],["Bryan","2021-12-04",39137,67,42168],["Bryan","2021-12-05",39137,42,42210],["Bryan","2021-12-06",39137,113,42323],["Bryan","2021-12-07",39137,100,42423],["Bryan","2021-12-08",39137,157,42580],["Bryan","2021-12-09",39137,214,42794],["Bryan","2021-12-10",39137,133,42927],["Bryan","2021-12-11",39137,62,42989],["Bryan","2021-12-12",39137,26,43015],["Bryan","2021-12-13",39137,95,43110],["Bryan","2021-12-14",39137,81,43191],["Bryan","2021-12-15",39137,115,43306],["Bryan","2021-12-16",39137,114,43420],["Bryan","2021-12-17",39137,124,43544],["Bryan","2021-12-18",39137,46,43590],["Bryan","2021-12-19",39137,53,43643],["Bryan","2021-12-20",39137,130,43773],["Bryan","2021-12-21",39137,136,43909],["Bryan","2021-12-22",39137,125,44034],["Bryan","2021-12-23",39137,104,44138],["Bryan","2021-12-24",39137,25,44163],["Bryan","2021-12-26",39137,28,44191],["Bryan","2021-12-27",39137,107,44298],["Bryan","2021-12-28",39137,90,44388],["Bryan","2021-12-29",39137,120,44508],["Bryan","2021-12-30",39137,151,44659],["Bryan","2021-12-31",39137,54,44713],["Bryan","2022-01-01",39137,5,44718],["Bryan","2022-01-02",39137,25,44743],["Bryan","2022-01-03",39137,42,44785],["Bulloch","2020-12-15",79467,2,2],["Bulloch","2020-12-16",79467,7,9],["Bulloch","2020-12-17",79467,2,11],["Bulloch","2020-12-18",79467,25,36],["Bulloch","2020-12-19",79467,6,42],["Bulloch","2020-12-20",79467,1,43],["Bulloch","2020-12-21",79467,17,60],["Bulloch","2020-12-22",79467,23,83],["Bulloch","2020-12-23",79467,117,200],["Bulloch","2020-12-24",79467,61,261],["Bulloch","2020-12-26",79467,2,263],["Bulloch","2020-12-27",79467,13,276],["Bulloch","2020-12-28",79467,116,392],["Bulloch","2020-12-29",79467,72,464],["Bulloch","2020-12-30",79467,107,571],["Bulloch","2020-12-31",79467,79,650],["Bulloch","2021-01-01",79467,47,697],["Bulloch","2021-01-02",79467,5,702],["Bulloch","2021-01-03",79467,3,705],["Bulloch","2021-01-04",79467,99,804],["Bulloch","2021-01-05",79467,103,907],["Bulloch","2021-01-06",79467,140,1047],["Bulloch","2021-01-07",79467,217,1264],["Bulloch","2021-01-08",79467,153,1417],["Bulloch","2021-01-09",79467,24,1441],["Bulloch","2021-01-10",79467,20,1461],["Bulloch","2021-01-11",79467,261,1722],["Bulloch","2021-01-12",79467,356,2078],["Bulloch","2021-01-13",79467,224,2302],["Bulloch","2021-01-14",79467,273,2575],["Bulloch","2021-01-15",79467,345,2920],["Bulloch","2021-01-16",79467,174,3094],["Bulloch","2021-01-17",79467,19,3113],["Bulloch","2021-01-18",79467,233,3346],["Bulloch","2021-01-19",79467,436,3782],["Bulloch","2021-01-20",79467,208,3990],["Bulloch","2021-01-21",79467,340,4330],["Bulloch","2021-01-22",79467,316,4646],["Bulloch","2021-01-23",79467,184,4830],["Bulloch","2021-01-24",79467,3,4833],["Bulloch","2021-01-25",79467,317,5150],["Bulloch","2021-01-26",79467,361,5511],["Bulloch","2021-01-27",79467,268,5779],["Bulloch","2021-01-28",79467,250,6029],["Bulloch","2021-01-29",79467,401,6430],["Bulloch","2021-01-30",79467,79,6509],["Bulloch","2021-01-31",79467,9,6518],["Bulloch","2021-02-01",79467,436,6954],["Bulloch","2021-02-02",79467,351,7305],["Bulloch","2021-02-03",79467,225,7530],["Bulloch","2021-02-04",79467,291,7821],["Bulloch","2021-02-05",79467,457,8278],["Bulloch","2021-02-06",79467,123,8401],["Bulloch","2021-02-07",79467,9,8410],["Bulloch","2021-02-08",79467,316,8726],["Bulloch","2021-02-09",79467,435,9161],["Bulloch","2021-02-10",79467,207,9368],["Bulloch","2021-02-11",79467,325,9693],["Bulloch","2021-02-12",79467,534,10227],["Bulloch","2021-02-13",79467,234,10461],["Bulloch","2021-02-14",79467,23,10484],["Bulloch","2021-02-15",79467,344,10828],["Bulloch","2021-02-16",79467,537,11365],["Bulloch","2021-02-17",79467,222,11587],["Bulloch","2021-02-18",79467,260,11847],["Bulloch","2021-02-19",79467,541,12388],["Bulloch","2021-02-20",79467,28,12416],["Bulloch","2021-02-21",79467,184,12600],["Bulloch","2021-02-22",79467,288,12888],["Bulloch","2021-02-23",79467,402,13290],["Bulloch","2021-02-24",79467,203,13493],["Bulloch","2021-02-25",79467,224,13717],["Bulloch","2021-02-26",79467,437,14154],["Bulloch","2021-02-27",79467,21,14175],["Bulloch","2021-02-28",79467,30,14205],["Bulloch","2021-03-01",79467,454,14659],["Bulloch","2021-03-02",79467,425,15084],["Bulloch","2021-03-03",79467,236,15320],["Bulloch","2021-03-04",79467,261,15581],["Bulloch","2021-03-05",79467,455,16036],["Bulloch","2021-03-06",79467,134,16170],["Bulloch","2021-03-07",79467,42,16212],["Bulloch","2021-03-08",79467,436,16648],["Bulloch","2021-03-09",79467,463,17111],["Bulloch","2021-03-10",79467,347,17458],["Bulloch","2021-03-11",79467,227,17685],["Bulloch","2021-03-12",79467,564,18249],["Bulloch","2021-03-13",79467,194,18443],["Bulloch","2021-03-14",79467,80,18523],["Bulloch","2021-03-15",79467,432,18955],["Bulloch","2021-03-16",79467,517,19472],["Bulloch","2021-03-17",79467,401,19873],["Bulloch","2021-03-18",79467,290,20163],["Bulloch","2021-03-19",79467,683,20846],["Bulloch","2021-03-20",79467,78,20924],["Bulloch","2021-03-21",79467,54,20978],["Bulloch","2021-03-22",79467,356,21334],["Bulloch","2021-03-23",79467,380,21714],["Bulloch","2021-03-24",79467,419,22133],["Bulloch","2021-03-25",79467,346,22479],["Bulloch","2021-03-26",79467,455,22934],["Bulloch","2021-03-27",79467,102,23036],["Bulloch","2021-03-28",79467,77,23113],["Bulloch","2021-03-29",79467,386,23499],["Bulloch","2021-03-30",79467,459,23958],["Bulloch","2021-03-31",79467,320,24278],["Bulloch","2021-04-01",79467,462,24740],["Bulloch","2021-04-02",79467,767,25507],["Bulloch","2021-04-03",79467,157,25664],["Bulloch","2021-04-04",79467,82,25746],["Bulloch","2021-04-05",79467,471,26217],["Bulloch","2021-04-06",79467,405,26622],["Bulloch","2021-04-07",79467,435,27057],["Bulloch","2021-04-08",79467,377,27434],["Bulloch","2021-04-09",79467,420,27854],["Bulloch","2021-04-10",79467,175,28029],["Bulloch","2021-04-11",79467,68,28097],["Bulloch","2021-04-12",79467,425,28522],["Bulloch","2021-04-13",79467,436,28958],["Bulloch","2021-04-14",79467,352,29310],["Bulloch","2021-04-15",79467,359,29669],["Bulloch","2021-04-16",79467,606,30275],["Bulloch","2021-04-17",79467,97,30372],["Bulloch","2021-04-18",79467,31,30403],["Bulloch","2021-04-19",79467,323,30726],["Bulloch","2021-04-20",79467,357,31083],["Bulloch","2021-04-21",79467,395,31478],["Bulloch","2021-04-22",79467,307,31785],["Bulloch","2021-04-23",79467,382,32167],["Bulloch","2021-04-24",79467,77,32244],["Bulloch","2021-04-25",79467,17,32261],["Bulloch","2021-04-26",79467,284,32545],["Bulloch","2021-04-27",79467,344,32889],["Bulloch","2021-04-28",79467,204,33093],["Bulloch","2021-04-29",79467,300,33393],["Bulloch","2021-04-30",79467,596,33989],["Bulloch","2021-05-01",79467,154,34143],["Bulloch","2021-05-02",79467,21,34164],["Bulloch","2021-05-03",79467,233,34397],["Bulloch","2021-05-04",79467,264,34661],["Bulloch","2021-05-05",79467,256,34917],["Bulloch","2021-05-06",79467,200,35117],["Bulloch","2021-05-07",79467,210,35327],["Bulloch","2021-05-08",79467,50,35377],["Bulloch","2021-05-09",79467,13,35390],["Bulloch","2021-05-10",79467,119,35509],["Bulloch","2021-05-11",79467,238,35747],["Bulloch","2021-05-12",79467,99,35846],["Bulloch","2021-05-13",79467,163,36009],["Bulloch","2021-05-14",79467,227,36236],["Bulloch","2021-05-15",79467,104,36340],["Bulloch","2021-05-16",79467,42,36382],["Bulloch","2021-05-17",79467,137,36519],["Bulloch","2021-05-18",79467,224,36743],["Bulloch","2021-05-19",79467,139,36882],["Bulloch","2021-05-20",79467,183,37065],["Bulloch","2021-05-21",79467,142,37207],["Bulloch","2021-05-22",79467,58,37265],["Bulloch","2021-05-23",79467,19,37284],["Bulloch","2021-05-24",79467,76,37360],["Bulloch","2021-05-25",79467,138,37498],["Bulloch","2021-05-26",79467,98,37596],["Bulloch","2021-05-27",79467,111,37707],["Bulloch","2021-05-28",79467,165,37872],["Bulloch","2021-05-29",79467,54,37926],["Bulloch","2021-05-30",79467,14,37940],["Bulloch","2021-05-31",79467,14,37954],["Bulloch","2021-06-01",79467,142,38096],["Bulloch","2021-06-02",79467,113,38209],["Bulloch","2021-06-03",79467,141,38350],["Bulloch","2021-06-04",79467,130,38480],["Bulloch","2021-06-05",79467,47,38527],["Bulloch","2021-06-06",79467,27,38554],["Bulloch","2021-06-07",79467,109,38663],["Bulloch","2021-06-08",79467,115,38778],["Bulloch","2021-06-09",79467,68,38846],["Bulloch","2021-06-10",79467,92,38938],["Bulloch","2021-06-11",79467,154,39092],["Bulloch","2021-06-12",79467,76,39168],["Bulloch","2021-06-13",79467,14,39182],["Bulloch","2021-06-14",79467,77,39259],["Bulloch","2021-06-15",79467,111,39370],["Bulloch","2021-06-16",79467,83,39453],["Bulloch","2021-06-17",79467,119,39572],["Bulloch","2021-06-18",79467,78,39650],["Bulloch","2021-06-19",79467,45,39695],["Bulloch","2021-06-20",79467,16,39711],["Bulloch","2021-06-21",79467,74,39785],["Bulloch","2021-06-22",79467,103,39888],["Bulloch","2021-06-23",79467,71,39959],["Bulloch","2021-06-24",79467,80,40039],["Bulloch","2021-06-25",79467,74,40113],["Bulloch","2021-06-26",79467,43,40156],["Bulloch","2021-06-27",79467,15,40171],["Bulloch","2021-06-28",79467,53,40224],["Bulloch","2021-06-29",79467,75,40299],["Bulloch","2021-06-30",79467,74,40373],["Bulloch","2021-07-01",79467,71,40444],["Bulloch","2021-07-02",79467,53,40497],["Bulloch","2021-07-03",79467,23,40520],["Bulloch","2021-07-04",79467,8,40528],["Bulloch","2021-07-05",79467,23,40551],["Bulloch","2021-07-06",79467,64,40615],["Bulloch","2021-07-07",79467,49,40664],["Bulloch","2021-07-08",79467,80,40744],["Bulloch","2021-07-09",79467,83,40827],["Bulloch","2021-07-10",79467,40,40867],["Bulloch","2021-07-11",79467,11,40878],["Bulloch","2021-07-12",79467,60,40938],["Bulloch","2021-07-13",79467,65,41003],["Bulloch","2021-07-14",79467,72,41075],["Bulloch","2021-07-15",79467,70,41145],["Bulloch","2021-07-16",79467,64,41209],["Bulloch","2021-07-17",79467,40,41249],["Bulloch","2021-07-18",79467,18,41267],["Bulloch","2021-07-19",79467,100,41367],["Bulloch","2021-07-20",79467,98,41465],["Bulloch","2021-07-21",79467,90,41555],["Bulloch","2021-07-22",79467,106,41661],["Bulloch","2021-07-23",79467,111,41772],["Bulloch","2021-07-24",79467,99,41871],["Bulloch","2021-07-25",79467,23,41894],["Bulloch","2021-07-26",79467,105,41999],["Bulloch","2021-07-27",79467,143,42142],["Bulloch","2021-07-28",79467,173,42315],["Bulloch","2021-07-29",79467,164,42479],["Bulloch","2021-07-30",79467,185,42664],["Bulloch","2021-07-31",79467,77,42741],["Bulloch","2021-08-01",79467,59,42800],["Bulloch","2021-08-02",79467,130,42930],["Bulloch","2021-08-03",79467,136,43066],["Bulloch","2021-08-04",79467,145,43211],["Bulloch","2021-08-05",79467,164,43375],["Bulloch","2021-08-06",79467,228,43603],["Bulloch","2021-08-07",79467,108,43711],["Bulloch","2021-08-08",79467,44,43755],["Bulloch","2021-08-09",79467,165,43920],["Bulloch","2021-08-10",79467,202,44122],["Bulloch","2021-08-11",79467,166,44288],["Bulloch","2021-08-12",79467,203,44491],["Bulloch","2021-08-13",79467,309,44800],["Bulloch","2021-08-14",79467,152,44952],["Bulloch","2021-08-15",79467,59,45011],["Bulloch","2021-08-16",79467,205,45216],["Bulloch","2021-08-17",79467,223,45439],["Bulloch","2021-08-18",79467,195,45634],["Bulloch","2021-08-19",79467,210,45844],["Bulloch","2021-08-20",79467,295,46139],["Bulloch","2021-08-21",79467,126,46265],["Bulloch","2021-08-22",79467,34,46299],["Bulloch","2021-08-23",79467,211,46510],["Bulloch","2021-08-24",79467,189,46699],["Bulloch","2021-08-25",79467,195,46894],["Bulloch","2021-08-26",79467,285,47179],["Bulloch","2021-08-27",79467,384,47563],["Bulloch","2021-08-28",79467,121,47684],["Bulloch","2021-08-29",79467,50,47734],["Bulloch","2021-08-30",79467,241,47975],["Bulloch","2021-08-31",79467,236,48211],["Bulloch","2021-09-01",79467,225,48436],["Bulloch","2021-09-02",79467,231,48667],["Bulloch","2021-09-03",79467,337,49004],["Bulloch","2021-09-04",79467,119,49123],["Bulloch","2021-09-05",79467,27,49150],["Bulloch","2021-09-06",79467,29,49179],["Bulloch","2021-09-07",79467,231,49410],["Bulloch","2021-09-08",79467,190,49600],["Bulloch","2021-09-09",79467,171,49771],["Bulloch","2021-09-10",79467,301,50072],["Bulloch","2021-09-11",79467,98,50170],["Bulloch","2021-09-12",79467,34,50204],["Bulloch","2021-09-13",79467,185,50389],["Bulloch","2021-09-14",79467,138,50527],["Bulloch","2021-09-15",79467,150,50677],["Bulloch","2021-09-16",79467,146,50823],["Bulloch","2021-09-17",79467,257,51080],["Bulloch","2021-09-18",79467,134,51214],["Bulloch","2021-09-19",79467,28,51242],["Bulloch","2021-09-20",79467,141,51383],["Bulloch","2021-09-21",79467,156,51539],["Bulloch","2021-09-22",79467,131,51670],["Bulloch","2021-09-23",79467,101,51771],["Bulloch","2021-09-24",79467,223,51994],["Bulloch","2021-09-25",79467,53,52047],["Bulloch","2021-09-26",79467,20,52067],["Bulloch","2021-09-27",79467,98,52165],["Bulloch","2021-09-28",79467,135,52300],["Bulloch","2021-09-29",79467,101,52401],["Bulloch","2021-09-30",79467,108,52509],["Bulloch","2021-10-01",79467,197,52706],["Bulloch","2021-10-02",79467,57,52763],["Bulloch","2021-10-03",79467,17,52780],["Bulloch","2021-10-04",79467,63,52843],["Bulloch","2021-10-05",79467,88,52931],["Bulloch","2021-10-06",79467,72,53003],["Bulloch","2021-10-07",79467,83,53086],["Bulloch","2021-10-08",79467,123,53209],["Bulloch","2021-10-09",79467,68,53277],["Bulloch","2021-10-10",79467,16,53293],["Bulloch","2021-10-11",79467,55,53348],["Bulloch","2021-10-12",79467,70,53418],["Bulloch","2021-10-13",79467,47,53465],["Bulloch","2021-10-14",79467,48,53513],["Bulloch","2021-10-15",79467,99,53612],["Bulloch","2021-10-16",79467,30,53642],["Bulloch","2021-10-17",79467,11,53653],["Bulloch","2021-10-18",79467,44,53697],["Bulloch","2021-10-19",79467,73,53770],["Bulloch","2021-10-20",79467,60,53830],["Bulloch","2021-10-21",79467,100,53930],["Bulloch","2021-10-22",79467,159,54089],["Bulloch","2021-10-23",79467,102,54191],["Bulloch","2021-10-24",79467,18,54209],["Bulloch","2021-10-25",79467,224,54433],["Bulloch","2021-10-26",79467,275,54708],["Bulloch","2021-10-27",79467,216,54924],["Bulloch","2021-10-28",79467,282,55206],["Bulloch","2021-10-29",79467,324,55530],["Bulloch","2021-10-30",79467,64,55594],["Bulloch","2021-10-31",79467,13,55607],["Bulloch","2021-11-01",79467,219,55826],["Bulloch","2021-11-02",79467,300,56126],["Bulloch","2021-11-03",79467,232,56358],["Bulloch","2021-11-04",79467,225,56583],["Bulloch","2021-11-05",79467,293,56876],["Bulloch","2021-11-06",79467,79,56955],["Bulloch","2021-11-07",79467,37,56992],["Bulloch","2021-11-08",79467,198,57190],["Bulloch","2021-11-09",79467,215,57405],["Bulloch","2021-11-10",79467,173,57578],["Bulloch","2021-11-11",79467,155,57733],["Bulloch","2021-11-12",79467,303,58036],["Bulloch","2021-11-13",79467,109,58145],["Bulloch","2021-11-14",79467,25,58170],["Bulloch","2021-11-15",79467,154,58324],["Bulloch","2021-11-16",79467,188,58512],["Bulloch","2021-11-17",79467,163,58675],["Bulloch","2021-11-18",79467,170,58845],["Bulloch","2021-11-19",79467,312,59157],["Bulloch","2021-11-20",79467,82,59239],["Bulloch","2021-11-21",79467,35,59274],["Bulloch","2021-11-22",79467,209,59483],["Bulloch","2021-11-23",79467,200,59683],["Bulloch","2021-11-24",79467,119,59802],["Bulloch","2021-11-26",79467,120,59922],["Bulloch","2021-11-27",79467,74,59996],["Bulloch","2021-11-28",79467,30,60026],["Bulloch","2021-11-29",79467,190,60216],["Bulloch","2021-11-30",79467,273,60489],["Bulloch","2021-12-01",79467,219,60708],["Bulloch","2021-12-02",79467,250,60958],["Bulloch","2021-12-03",79467,390,61348],["Bulloch","2021-12-04",79467,102,61450],["Bulloch","2021-12-05",79467,24,61474],["Bulloch","2021-12-06",79467,155,61629],["Bulloch","2021-12-07",79467,213,61842],["Bulloch","2021-12-08",79467,181,62023],["Bulloch","2021-12-09",79467,169,62192],["Bulloch","2021-12-10",79467,243,62435],["Bulloch","2021-12-11",79467,105,62540],["Bulloch","2021-12-12",79467,23,62563],["Bulloch","2021-12-13",79467,127,62690],["Bulloch","2021-12-14",79467,182,62872],["Bulloch","2021-12-15",79467,142,63014],["Bulloch","2021-12-16",79467,138,63152],["Bulloch","2021-12-17",79467,221,63373],["Bulloch","2021-12-18",79467,69,63442],["Bulloch","2021-12-19",79467,15,63457],["Bulloch","2021-12-20",79467,213,63670],["Bulloch","2021-12-21",79467,243,63913],["Bulloch","2021-12-22",79467,137,64050],["Bulloch","2021-12-23",79467,112,64162],["Bulloch","2021-12-24",79467,24,64186],["Bulloch","2021-12-26",79467,25,64211],["Bulloch","2021-12-27",79467,124,64335],["Bulloch","2021-12-28",79467,149,64484],["Bulloch","2021-12-29",79467,124,64608],["Bulloch","2021-12-30",79467,193,64801],["Bulloch","2021-12-31",79467,108,64909],["Bulloch","2022-01-01",79467,7,64916],["Bulloch","2022-01-02",79467,24,64940],["Bulloch","2022-01-03",79467,95,65035],["Burke","2020-12-17",22342,2,2],["Burke","2020-12-18",22342,4,6],["Burke","2020-12-19",22342,2,8],["Burke","2020-12-20",22342,1,9],["Burke","2020-12-21",22342,1,10],["Burke","2020-12-22",22342,22,32],["Burke","2020-12-23",22342,23,55],["Burke","2020-12-24",22342,5,60],["Burke","2020-12-26",22342,4,64],["Burke","2020-12-27",22342,2,66],["Burke","2020-12-28",22342,48,114],["Burke","2020-12-29",22342,52,166],["Burke","2020-12-30",22342,46,212],["Burke","2020-12-31",22342,22,234],["Burke","2021-01-02",22342,1,235],["Burke","2021-01-03",22342,3,238],["Burke","2021-01-04",22342,47,285],["Burke","2021-01-05",22342,31,316],["Burke","2021-01-06",22342,56,372],["Burke","2021-01-07",22342,14,386],["Burke","2021-01-08",22342,16,402],["Burke","2021-01-09",22342,6,408],["Burke","2021-01-10",22342,3,411],["Burke","2021-01-11",22342,26,437],["Burke","2021-01-12",22342,64,501],["Burke","2021-01-13",22342,238,739],["Burke","2021-01-14",22342,139,878],["Burke","2021-01-15",22342,71,949],["Burke","2021-01-16",22342,3,952],["Burke","2021-01-17",22342,2,954],["Burke","2021-01-18",22342,42,996],["Burke","2021-01-19",22342,37,1033],["Burke","2021-01-20",22342,241,1274],["Burke","2021-01-21",22342,51,1325],["Burke","2021-01-22",22342,27,1352],["Burke","2021-01-23",22342,8,1360],["Burke","2021-01-24",22342,2,1362],["Burke","2021-01-25",22342,31,1393],["Burke","2021-01-26",22342,93,1486],["Burke","2021-01-27",22342,266,1752],["Burke","2021-01-28",22342,126,1878],["Burke","2021-01-29",22342,37,1915],["Burke","2021-01-30",22342,18,1933],["Burke","2021-01-31",22342,4,1937],["Burke","2021-02-01",22342,36,1973],["Burke","2021-02-02",22342,60,2033],["Burke","2021-02-03",22342,353,2386],["Burke","2021-02-04",22342,57,2443],["Burke","2021-02-05",22342,46,2489],["Burke","2021-02-06",22342,76,2565],["Burke","2021-02-07",22342,2,2567],["Burke","2021-02-08",22342,43,2610],["Burke","2021-02-09",22342,82,2692],["Burke","2021-02-10",22342,388,3080],["Burke","2021-02-11",22342,158,3238],["Burke","2021-02-12",22342,88,3326],["Burke","2021-02-13",22342,33,3359],["Burke","2021-02-14",22342,4,3363],["Burke","2021-02-15",22342,28,3391],["Burke","2021-02-16",22342,61,3452],["Burke","2021-02-17",22342,228,3680],["Burke","2021-02-18",22342,43,3723],["Burke","2021-02-19",22342,40,3763],["Burke","2021-02-20",22342,9,3772],["Burke","2021-02-21",22342,4,3776],["Burke","2021-02-22",22342,33,3809],["Burke","2021-02-23",22342,59,3868],["Burke","2021-02-24",22342,370,4238],["Burke","2021-02-25",22342,89,4327],["Burke","2021-02-26",22342,70,4397],["Burke","2021-02-27",22342,23,4420],["Burke","2021-02-28",22342,12,4432],["Burke","2021-03-01",22342,37,4469],["Burke","2021-03-02",22342,35,4504],["Burke","2021-03-03",22342,369,4873],["Burke","2021-03-04",22342,48,4921],["Burke","2021-03-05",22342,31,4952],["Burke","2021-03-06",22342,123,5075],["Burke","2021-03-07",22342,32,5107],["Burke","2021-03-08",22342,37,5144],["Burke","2021-03-09",22342,54,5198],["Burke","2021-03-10",22342,354,5552],["Burke","2021-03-11",22342,366,5918],["Burke","2021-03-12",22342,87,6005],["Burke","2021-03-13",22342,51,6056],["Burke","2021-03-14",22342,17,6073],["Burke","2021-03-15",22342,86,6159],["Burke","2021-03-16",22342,79,6238],["Burke","2021-03-17",22342,333,6571],["Burke","2021-03-18",22342,65,6636],["Burke","2021-03-19",22342,74,6710],["Burke","2021-03-20",22342,37,6747],["Burke","2021-03-21",22342,21,6768],["Burke","2021-03-22",22342,102,6870],["Burke","2021-03-23",22342,75,6945],["Burke","2021-03-24",22342,266,7211],["Burke","2021-03-25",22342,146,7357],["Burke","2021-03-26",22342,80,7437],["Burke","2021-03-27",22342,46,7483],["Burke","2021-03-28",22342,34,7517],["Burke","2021-03-29",22342,73,7590],["Burke","2021-03-30",22342,119,7709],["Burke","2021-03-31",22342,307,8016],["Burke","2021-04-01",22342,247,8263],["Burke","2021-04-02",22342,98,8361],["Burke","2021-04-03",22342,61,8422],["Burke","2021-04-04",22342,19,8441],["Burke","2021-04-05",22342,81,8522],["Burke","2021-04-06",22342,67,8589],["Burke","2021-04-07",22342,310,8899],["Burke","2021-04-08",22342,125,9024],["Burke","2021-04-09",22342,88,9112],["Burke","2021-04-10",22342,73,9185],["Burke","2021-04-11",22342,28,9213],["Burke","2021-04-12",22342,93,9306],["Burke","2021-04-13",22342,111,9417],["Burke","2021-04-14",22342,301,9718],["Burke","2021-04-15",22342,357,10075],["Burke","2021-04-16",22342,118,10193],["Burke","2021-04-17",22342,40,10233],["Burke","2021-04-18",22342,8,10241],["Burke","2021-04-19",22342,82,10323],["Burke","2021-04-20",22342,109,10432],["Burke","2021-04-21",22342,264,10696],["Burke","2021-04-22",22342,174,10870],["Burke","2021-04-23",22342,109,10979],["Burke","2021-04-24",22342,45,11024],["Burke","2021-04-25",22342,11,11035],["Burke","2021-04-26",22342,73,11108],["Burke","2021-04-27",22342,107,11215],["Burke","2021-04-28",22342,237,11452],["Burke","2021-04-29",22342,118,11570],["Burke","2021-04-30",22342,120,11690],["Burke","2021-05-01",22342,67,11757],["Burke","2021-05-02",22342,14,11771],["Burke","2021-05-03",22342,75,11846],["Burke","2021-05-04",22342,82,11928],["Burke","2021-05-05",22342,140,12068],["Burke","2021-05-06",22342,127,12195],["Burke","2021-05-07",22342,97,12292],["Burke","2021-05-08",22342,24,12316],["Burke","2021-05-09",22342,9,12325],["Burke","2021-05-10",22342,49,12374],["Burke","2021-05-11",22342,112,12486],["Burke","2021-05-12",22342,80,12566],["Burke","2021-05-13",22342,77,12643],["Burke","2021-05-14",22342,81,12724],["Burke","2021-05-15",22342,40,12764],["Burke","2021-05-16",22342,21,12785],["Burke","2021-05-17",22342,73,12858],["Burke","2021-05-18",22342,88,12946],["Burke","2021-05-19",22342,80,13026],["Burke","2021-05-20",22342,103,13129],["Burke","2021-05-21",22342,52,13181],["Burke","2021-05-22",22342,31,13212],["Burke","2021-05-23",22342,18,13230],["Burke","2021-05-24",22342,34,13264],["Burke","2021-05-25",22342,52,13316],["Burke","2021-05-26",22342,78,13394],["Burke","2021-05-27",22342,67,13461],["Burke","2021-05-28",22342,42,13503],["Burke","2021-05-29",22342,25,13528],["Burke","2021-05-30",22342,9,13537],["Burke","2021-05-31",22342,12,13549],["Burke","2021-06-01",22342,86,13635],["Burke","2021-06-02",22342,45,13680],["Burke","2021-06-03",22342,97,13777],["Burke","2021-06-04",22342,65,13842],["Burke","2021-06-05",22342,49,13891],["Burke","2021-06-06",22342,18,13909],["Burke","2021-06-07",22342,54,13963],["Burke","2021-06-08",22342,60,14023],["Burke","2021-06-09",22342,65,14088],["Burke","2021-06-10",22342,62,14150],["Burke","2021-06-11",22342,60,14210],["Burke","2021-06-12",22342,48,14258],["Burke","2021-06-13",22342,9,14267],["Burke","2021-06-14",22342,37,14304],["Burke","2021-06-15",22342,72,14376],["Burke","2021-06-16",22342,38,14414],["Burke","2021-06-17",22342,61,14475],["Burke","2021-06-18",22342,55,14530],["Burke","2021-06-19",22342,41,14571],["Burke","2021-06-20",22342,6,14577],["Burke","2021-06-21",22342,48,14625],["Burke","2021-06-22",22342,66,14691],["Burke","2021-06-23",22342,46,14737],["Burke","2021-06-24",22342,43,14780],["Burke","2021-06-25",22342,36,14816],["Burke","2021-06-26",22342,21,14837],["Burke","2021-06-27",22342,24,14861],["Burke","2021-06-28",22342,27,14888],["Burke","2021-06-29",22342,39,14927],["Burke","2021-06-30",22342,31,14958],["Burke","2021-07-01",22342,53,15011],["Burke","2021-07-02",22342,47,15058],["Burke","2021-07-03",22342,17,15075],["Burke","2021-07-04",22342,1,15076],["Burke","2021-07-05",22342,20,15096],["Burke","2021-07-06",22342,32,15128],["Burke","2021-07-07",22342,31,15159],["Burke","2021-07-08",22342,35,15194],["Burke","2021-07-09",22342,39,15233],["Burke","2021-07-10",22342,29,15262],["Burke","2021-07-11",22342,11,15273],["Burke","2021-07-12",22342,30,15303],["Burke","2021-07-13",22342,40,15343],["Burke","2021-07-14",22342,62,15405],["Burke","2021-07-15",22342,36,15441],["Burke","2021-07-16",22342,25,15466],["Burke","2021-07-17",22342,11,15477],["Burke","2021-07-18",22342,9,15486],["Burke","2021-07-19",22342,39,15525],["Burke","2021-07-20",22342,40,15565],["Burke","2021-07-21",22342,50,15615],["Burke","2021-07-22",22342,45,15660],["Burke","2021-07-23",22342,51,15711],["Burke","2021-07-24",22342,22,15733],["Burke","2021-07-25",22342,13,15746],["Burke","2021-07-26",22342,52,15798],["Burke","2021-07-27",22342,64,15862],["Burke","2021-07-28",22342,71,15933],["Burke","2021-07-29",22342,69,16002],["Burke","2021-07-30",22342,61,16063],["Burke","2021-07-31",22342,22,16085],["Burke","2021-08-01",22342,24,16109],["Burke","2021-08-02",22342,93,16202],["Burke","2021-08-03",22342,69,16271],["Burke","2021-08-04",22342,72,16343],["Burke","2021-08-05",22342,69,16412],["Burke","2021-08-06",22342,85,16497],["Burke","2021-08-07",22342,62,16559],["Burke","2021-08-08",22342,31,16590],["Burke","2021-08-09",22342,69,16659],["Burke","2021-08-10",22342,95,16754],["Burke","2021-08-11",22342,99,16853],["Burke","2021-08-12",22342,184,17037],["Burke","2021-08-13",22342,125,17162],["Burke","2021-08-14",22342,44,17206],["Burke","2021-08-15",22342,45,17251],["Burke","2021-08-16",22342,90,17341],["Burke","2021-08-17",22342,72,17413],["Burke","2021-08-18",22342,101,17514],["Burke","2021-08-19",22342,66,17580],["Burke","2021-08-20",22342,93,17673],["Burke","2021-08-21",22342,33,17706],["Burke","2021-08-22",22342,18,17724],["Burke","2021-08-23",22342,92,17816],["Burke","2021-08-24",22342,75,17891],["Burke","2021-08-25",22342,103,17994],["Burke","2021-08-26",22342,86,18080],["Burke","2021-08-27",22342,103,18183],["Burke","2021-08-28",22342,71,18254],["Burke","2021-08-29",22342,23,18277],["Burke","2021-08-30",22342,105,18382],["Burke","2021-08-31",22342,102,18484],["Burke","2021-09-01",22342,80,18564],["Burke","2021-09-02",22342,120,18684],["Burke","2021-09-03",22342,103,18787],["Burke","2021-09-04",22342,51,18838],["Burke","2021-09-05",22342,38,18876],["Burke","2021-09-06",22342,7,18883],["Burke","2021-09-07",22342,103,18986],["Burke","2021-09-08",22342,86,19072],["Burke","2021-09-09",22342,176,19248],["Burke","2021-09-10",22342,97,19345],["Burke","2021-09-11",22342,34,19379],["Burke","2021-09-12",22342,25,19404],["Burke","2021-09-13",22342,63,19467],["Burke","2021-09-14",22342,76,19543],["Burke","2021-09-15",22342,73,19616],["Burke","2021-09-16",22342,53,19669],["Burke","2021-09-17",22342,78,19747],["Burke","2021-09-18",22342,51,19798],["Burke","2021-09-19",22342,13,19811],["Burke","2021-09-20",22342,73,19884],["Burke","2021-09-21",22342,53,19937],["Burke","2021-09-22",22342,68,20005],["Burke","2021-09-23",22342,56,20061],["Burke","2021-09-24",22342,88,20149],["Burke","2021-09-25",22342,30,20179],["Burke","2021-09-26",22342,16,20195],["Burke","2021-09-27",22342,51,20246],["Burke","2021-09-28",22342,59,20305],["Burke","2021-09-29",22342,53,20358],["Burke","2021-09-30",22342,74,20432],["Burke","2021-10-01",22342,71,20503],["Burke","2021-10-02",22342,23,20526],["Burke","2021-10-03",22342,17,20543],["Burke","2021-10-04",22342,30,20573],["Burke","2021-10-05",22342,37,20610],["Burke","2021-10-06",22342,78,20688],["Burke","2021-10-07",22342,40,20728],["Burke","2021-10-08",22342,67,20795],["Burke","2021-10-09",22342,33,20828],["Burke","2021-10-10",22342,12,20840],["Burke","2021-10-11",22342,35,20875],["Burke","2021-10-12",22342,38,20913],["Burke","2021-10-13",22342,47,20960],["Burke","2021-10-14",22342,39,20999],["Burke","2021-10-15",22342,53,21052],["Burke","2021-10-16",22342,14,21066],["Burke","2021-10-17",22342,14,21080],["Burke","2021-10-18",22342,51,21131],["Burke","2021-10-19",22342,31,21162],["Burke","2021-10-20",22342,84,21246],["Burke","2021-10-21",22342,36,21282],["Burke","2021-10-22",22342,69,21351],["Burke","2021-10-23",22342,24,21375],["Burke","2021-10-24",22342,10,21385],["Burke","2021-10-25",22342,60,21445],["Burke","2021-10-26",22342,153,21598],["Burke","2021-10-27",22342,139,21737],["Burke","2021-10-28",22342,82,21819],["Burke","2021-10-29",22342,95,21914],["Burke","2021-10-30",22342,35,21949],["Burke","2021-10-31",22342,11,21960],["Burke","2021-11-01",22342,126,22086],["Burke","2021-11-02",22342,167,22253],["Burke","2021-11-03",22342,108,22361],["Burke","2021-11-04",22342,70,22431],["Burke","2021-11-05",22342,116,22547],["Burke","2021-11-06",22342,47,22594],["Burke","2021-11-07",22342,16,22610],["Burke","2021-11-08",22342,91,22701],["Burke","2021-11-09",22342,82,22783],["Burke","2021-11-10",22342,83,22866],["Burke","2021-11-11",22342,103,22969],["Burke","2021-11-12",22342,83,23052],["Burke","2021-11-13",22342,24,23076],["Burke","2021-11-14",22342,15,23091],["Burke","2021-11-15",22342,85,23176],["Burke","2021-11-16",22342,102,23278],["Burke","2021-11-17",22342,102,23380],["Burke","2021-11-18",22342,83,23463],["Burke","2021-11-19",22342,115,23578],["Burke","2021-11-20",22342,26,23604],["Burke","2021-11-21",22342,10,23614],["Burke","2021-11-22",22342,122,23736],["Burke","2021-11-23",22342,56,23792],["Burke","2021-11-24",22342,33,23825],["Burke","2021-11-25",22342,1,23826],["Burke","2021-11-26",22342,25,23851],["Burke","2021-11-27",22342,21,23872],["Burke","2021-11-28",22342,6,23878],["Burke","2021-11-29",22342,90,23968],["Burke","2021-11-30",22342,144,24112],["Burke","2021-12-01",22342,109,24221],["Burke","2021-12-02",22342,118,24339],["Burke","2021-12-03",22342,113,24452],["Burke","2021-12-04",22342,57,24509],["Burke","2021-12-05",22342,11,24520],["Burke","2021-12-06",22342,107,24627],["Burke","2021-12-07",22342,107,24734],["Burke","2021-12-08",22342,76,24810],["Burke","2021-12-09",22342,85,24895],["Burke","2021-12-10",22342,70,24965],["Burke","2021-12-11",22342,22,24987],["Burke","2021-12-12",22342,16,25003],["Burke","2021-12-13",22342,81,25084],["Burke","2021-12-14",22342,54,25138],["Burke","2021-12-15",22342,104,25242],["Burke","2021-12-16",22342,48,25290],["Burke","2021-12-17",22342,73,25363],["Burke","2021-12-18",22342,28,25391],["Burke","2021-12-19",22342,11,25402],["Burke","2021-12-20",22342,96,25498],["Burke","2021-12-21",22342,93,25591],["Burke","2021-12-22",22342,119,25710],["Burke","2021-12-23",22342,44,25754],["Burke","2021-12-24",22342,10,25764],["Burke","2021-12-26",22342,12,25776],["Burke","2021-12-27",22342,74,25850],["Burke","2021-12-28",22342,71,25921],["Burke","2021-12-29",22342,88,26009],["Burke","2021-12-30",22342,76,26085],["Burke","2021-12-31",22342,32,26117],["Burke","2022-01-01",22342,5,26122],["Burke","2022-01-02",22342,11,26133],["Burke","2022-01-03",22342,56,26189],["Butts","2020-12-17",25174,2,2],["Butts","2020-12-18",25174,4,6],["Butts","2020-12-19",25174,10,16],["Butts","2020-12-20",25174,2,18],["Butts","2020-12-21",25174,3,21],["Butts","2020-12-22",25174,10,31],["Butts","2020-12-23",25174,11,42],["Butts","2020-12-27",25174,2,44],["Butts","2020-12-28",25174,70,114],["Butts","2020-12-29",25174,23,137],["Butts","2020-12-30",25174,10,147],["Butts","2020-12-31",25174,14,161],["Butts","2021-01-01",25174,7,168],["Butts","2021-01-02",25174,3,171],["Butts","2021-01-03",25174,1,172],["Butts","2021-01-04",25174,17,189],["Butts","2021-01-05",25174,12,201],["Butts","2021-01-06",25174,49,250],["Butts","2021-01-07",25174,76,326],["Butts","2021-01-08",25174,81,407],["Butts","2021-01-09",25174,17,424],["Butts","2021-01-10",25174,4,428],["Butts","2021-01-11",25174,18,446],["Butts","2021-01-12",25174,28,474],["Butts","2021-01-13",25174,26,500],["Butts","2021-01-14",25174,23,523],["Butts","2021-01-15",25174,219,742],["Butts","2021-01-16",25174,22,764],["Butts","2021-01-17",25174,29,793],["Butts","2021-01-18",25174,97,890],["Butts","2021-01-19",25174,40,930],["Butts","2021-01-20",25174,39,969],["Butts","2021-01-21",25174,46,1015],["Butts","2021-01-22",25174,228,1243],["Butts","2021-01-23",25174,18,1261],["Butts","2021-01-24",25174,7,1268],["Butts","2021-01-25",25174,39,1307],["Butts","2021-01-26",25174,45,1352],["Butts","2021-01-27",25174,47,1399],["Butts","2021-01-28",25174,46,1445],["Butts","2021-01-29",25174,32,1477],["Butts","2021-01-30",25174,17,1494],["Butts","2021-01-31",25174,5,1499],["Butts","2021-02-01",25174,31,1530],["Butts","2021-02-02",25174,28,1558],["Butts","2021-02-03",25174,30,1588],["Butts","2021-02-04",25174,94,1682],["Butts","2021-02-05",25174,133,1815],["Butts","2021-02-06",25174,9,1824],["Butts","2021-02-07",25174,15,1839],["Butts","2021-02-08",25174,35,1874],["Butts","2021-02-09",25174,38,1912],["Butts","2021-02-10",25174,49,1961],["Butts","2021-02-11",25174,40,2001],["Butts","2021-02-12",25174,209,2210],["Butts","2021-02-13",25174,23,2233],["Butts","2021-02-14",25174,21,2254],["Butts","2021-02-15",25174,55,2309],["Butts","2021-02-16",25174,43,2352],["Butts","2021-02-17",25174,58,2410],["Butts","2021-02-18",25174,47,2457],["Butts","2021-02-19",25174,226,2683],["Butts","2021-02-20",25174,17,2700],["Butts","2021-02-21",25174,7,2707],["Butts","2021-02-22",25174,27,2734],["Butts","2021-02-23",25174,59,2793],["Butts","2021-02-24",25174,72,2865],["Butts","2021-02-25",25174,118,2983],["Butts","2021-02-26",25174,140,3123],["Butts","2021-02-27",25174,19,3142],["Butts","2021-02-28",25174,9,3151],["Butts","2021-03-01",25174,42,3193],["Butts","2021-03-02",25174,66,3259],["Butts","2021-03-03",25174,75,3334],["Butts","2021-03-04",25174,144,3478],["Butts","2021-03-05",25174,146,3624],["Butts","2021-03-06",25174,10,3634],["Butts","2021-03-07",25174,8,3642],["Butts","2021-03-08",25174,48,3690],["Butts","2021-03-09",25174,87,3777],["Butts","2021-03-10",25174,109,3886],["Butts","2021-03-11",25174,159,4045],["Butts","2021-03-12",25174,183,4228],["Butts","2021-03-13",25174,24,4252],["Butts","2021-03-14",25174,28,4280],["Butts","2021-03-15",25174,86,4366],["Butts","2021-03-16",25174,113,4479],["Butts","2021-03-17",25174,107,4586],["Butts","2021-03-18",25174,184,4770],["Butts","2021-03-19",25174,167,4937],["Butts","2021-03-20",25174,17,4954],["Butts","2021-03-21",25174,16,4970],["Butts","2021-03-22",25174,54,5024],["Butts","2021-03-23",25174,65,5089],["Butts","2021-03-24",25174,114,5203],["Butts","2021-03-25",25174,232,5435],["Butts","2021-03-26",25174,278,5713],["Butts","2021-03-27",25174,33,5746],["Butts","2021-03-28",25174,21,5767],["Butts","2021-03-29",25174,76,5843],["Butts","2021-03-30",25174,152,5995],["Butts","2021-03-31",25174,123,6118],["Butts","2021-04-01",25174,207,6325],["Butts","2021-04-02",25174,84,6409],["Butts","2021-04-03",25174,40,6449],["Butts","2021-04-04",25174,30,6479],["Butts","2021-04-05",25174,138,6617],["Butts","2021-04-06",25174,144,6761],["Butts","2021-04-07",25174,129,6890],["Butts","2021-04-08",25174,181,7071],["Butts","2021-04-09",25174,260,7331],["Butts","2021-04-10",25174,40,7371],["Butts","2021-04-11",25174,24,7395],["Butts","2021-04-12",25174,101,7496],["Butts","2021-04-13",25174,108,7604],["Butts","2021-04-14",25174,108,7712],["Butts","2021-04-15",25174,238,7950],["Butts","2021-04-16",25174,157,8107],["Butts","2021-04-17",25174,43,8150],["Butts","2021-04-18",25174,24,8174],["Butts","2021-04-19",25174,86,8260],["Butts","2021-04-20",25174,152,8412],["Butts","2021-04-21",25174,94,8506],["Butts","2021-04-22",25174,184,8690],["Butts","2021-04-23",25174,91,8781],["Butts","2021-04-24",25174,46,8827],["Butts","2021-04-25",25174,15,8842],["Butts","2021-04-26",25174,77,8919],["Butts","2021-04-27",25174,114,9033],["Butts","2021-04-28",25174,111,9144],["Butts","2021-04-29",25174,121,9265],["Butts","2021-04-30",25174,139,9404],["Butts","2021-05-01",25174,55,9459],["Butts","2021-05-02",25174,28,9487],["Butts","2021-05-03",25174,80,9567],["Butts","2021-05-04",25174,69,9636],["Butts","2021-05-05",25174,82,9718],["Butts","2021-05-06",25174,102,9820],["Butts","2021-05-07",25174,96,9916],["Butts","2021-05-08",25174,22,9938],["Butts","2021-05-09",25174,14,9952],["Butts","2021-05-10",25174,53,10005],["Butts","2021-05-11",25174,68,10073],["Butts","2021-05-12",25174,59,10132],["Butts","2021-05-13",25174,99,10231],["Butts","2021-05-14",25174,81,10312],["Butts","2021-05-15",25174,44,10356],["Butts","2021-05-16",25174,27,10383],["Butts","2021-05-17",25174,68,10451],["Butts","2021-05-18",25174,91,10542],["Butts","2021-05-19",25174,64,10606],["Butts","2021-05-20",25174,140,10746],["Butts","2021-05-21",25174,98,10844],["Butts","2021-05-22",25174,42,10886],["Butts","2021-05-23",25174,24,10910],["Butts","2021-05-24",25174,56,10966],["Butts","2021-05-25",25174,51,11017],["Butts","2021-05-26",25174,59,11076],["Butts","2021-05-27",25174,83,11159],["Butts","2021-05-28",25174,51,11210],["Butts","2021-05-29",25174,25,11235],["Butts","2021-05-30",25174,7,11242],["Butts","2021-05-31",25174,6,11248],["Butts","2021-06-01",25174,43,11291],["Butts","2021-06-02",25174,51,11342],["Butts","2021-06-03",25174,64,11406],["Butts","2021-06-04",25174,59,11465],["Butts","2021-06-05",25174,27,11492],["Butts","2021-06-06",25174,17,11509],["Butts","2021-06-07",25174,34,11543],["Butts","2021-06-08",25174,47,11590],["Butts","2021-06-09",25174,38,11628],["Butts","2021-06-10",25174,66,11694],["Butts","2021-06-11",25174,49,11743],["Butts","2021-06-12",25174,41,11784],["Butts","2021-06-13",25174,13,11797],["Butts","2021-06-14",25174,35,11832],["Butts","2021-06-15",25174,51,11883],["Butts","2021-06-16",25174,28,11911],["Butts","2021-06-17",25174,45,11956],["Butts","2021-06-18",25174,27,11983],["Butts","2021-06-19",25174,36,12019],["Butts","2021-06-20",25174,11,12030],["Butts","2021-06-21",25174,23,12053],["Butts","2021-06-22",25174,22,12075],["Butts","2021-06-23",25174,28,12103],["Butts","2021-06-24",25174,30,12133],["Butts","2021-06-25",25174,38,12171],["Butts","2021-06-26",25174,19,12190],["Butts","2021-06-27",25174,10,12200],["Butts","2021-06-28",25174,28,12228],["Butts","2021-06-29",25174,17,12245],["Butts","2021-06-30",25174,26,12271],["Butts","2021-07-01",25174,20,12291],["Butts","2021-07-02",25174,20,12311],["Butts","2021-07-03",25174,6,12317],["Butts","2021-07-04",25174,1,12318],["Butts","2021-07-05",25174,23,12341],["Butts","2021-07-06",25174,22,12363],["Butts","2021-07-07",25174,24,12387],["Butts","2021-07-08",25174,28,12415],["Butts","2021-07-09",25174,23,12438],["Butts","2021-07-10",25174,18,12456],["Butts","2021-07-11",25174,7,12463],["Butts","2021-07-12",25174,11,12474],["Butts","2021-07-13",25174,29,12503],["Butts","2021-07-14",25174,15,12518],["Butts","2021-07-15",25174,19,12537],["Butts","2021-07-16",25174,26,12563],["Butts","2021-07-17",25174,22,12585],["Butts","2021-07-18",25174,8,12593],["Butts","2021-07-19",25174,27,12620],["Butts","2021-07-20",25174,25,12645],["Butts","2021-07-21",25174,25,12670],["Butts","2021-07-22",25174,33,12703],["Butts","2021-07-23",25174,31,12734],["Butts","2021-07-24",25174,24,12758],["Butts","2021-07-25",25174,17,12775],["Butts","2021-07-26",25174,34,12809],["Butts","2021-07-27",25174,40,12849],["Butts","2021-07-28",25174,34,12883],["Butts","2021-07-29",25174,40,12923],["Butts","2021-07-30",25174,41,12964],["Butts","2021-07-31",25174,24,12988],["Butts","2021-08-01",25174,14,13002],["Butts","2021-08-02",25174,30,13032],["Butts","2021-08-03",25174,36,13068],["Butts","2021-08-04",25174,28,13096],["Butts","2021-08-05",25174,30,13126],["Butts","2021-08-06",25174,74,13200],["Butts","2021-08-07",25174,38,13238],["Butts","2021-08-08",25174,20,13258],["Butts","2021-08-09",25174,41,13299],["Butts","2021-08-10",25174,72,13371],["Butts","2021-08-11",25174,41,13412],["Butts","2021-08-12",25174,42,13454],["Butts","2021-08-13",25174,44,13498],["Butts","2021-08-14",25174,51,13549],["Butts","2021-08-15",25174,22,13571],["Butts","2021-08-16",25174,49,13620],["Butts","2021-08-17",25174,48,13668],["Butts","2021-08-18",25174,48,13716],["Butts","2021-08-19",25174,56,13772],["Butts","2021-08-20",25174,67,13839],["Butts","2021-08-21",25174,36,13875],["Butts","2021-08-22",25174,26,13901],["Butts","2021-08-23",25174,48,13949],["Butts","2021-08-24",25174,61,14010],["Butts","2021-08-25",25174,51,14061],["Butts","2021-08-26",25174,56,14117],["Butts","2021-08-27",25174,75,14192],["Butts","2021-08-28",25174,50,14242],["Butts","2021-08-29",25174,19,14261],["Butts","2021-08-30",25174,56,14317],["Butts","2021-08-31",25174,57,14374],["Butts","2021-09-01",25174,50,14424],["Butts","2021-09-02",25174,56,14480],["Butts","2021-09-03",25174,70,14550],["Butts","2021-09-04",25174,36,14586],["Butts","2021-09-05",25174,23,14609],["Butts","2021-09-06",25174,10,14619],["Butts","2021-09-07",25174,65,14684],["Butts","2021-09-08",25174,47,14731],["Butts","2021-09-09",25174,54,14785],["Butts","2021-09-10",25174,56,14841],["Butts","2021-09-11",25174,53,14894],["Butts","2021-09-12",25174,13,14907],["Butts","2021-09-13",25174,50,14957],["Butts","2021-09-14",25174,50,15007],["Butts","2021-09-15",25174,46,15053],["Butts","2021-09-16",25174,57,15110],["Butts","2021-09-17",25174,68,15178],["Butts","2021-09-18",25174,31,15209],["Butts","2021-09-19",25174,16,15225],["Butts","2021-09-20",25174,22,15247],["Butts","2021-09-21",25174,54,15301],["Butts","2021-09-22",25174,41,15342],["Butts","2021-09-23",25174,39,15381],["Butts","2021-09-24",25174,62,15443],["Butts","2021-09-25",25174,30,15473],["Butts","2021-09-26",25174,19,15492],["Butts","2021-09-27",25174,29,15521],["Butts","2021-09-28",25174,81,15602],["Butts","2021-09-29",25174,42,15644],["Butts","2021-09-30",25174,43,15687],["Butts","2021-10-01",25174,74,15761],["Butts","2021-10-02",25174,29,15790],["Butts","2021-10-03",25174,7,15797],["Butts","2021-10-04",25174,36,15833],["Butts","2021-10-05",25174,30,15863],["Butts","2021-10-06",25174,32,15895],["Butts","2021-10-07",25174,27,15922],["Butts","2021-10-08",25174,46,15968],["Butts","2021-10-09",25174,21,15989],["Butts","2021-10-10",25174,10,15999],["Butts","2021-10-11",25174,32,16031],["Butts","2021-10-12",25174,34,16065],["Butts","2021-10-13",25174,32,16097],["Butts","2021-10-14",25174,26,16123],["Butts","2021-10-15",25174,43,16166],["Butts","2021-10-16",25174,17,16183],["Butts","2021-10-17",25174,12,16195],["Butts","2021-10-18",25174,24,16219],["Butts","2021-10-19",25174,27,16246],["Butts","2021-10-20",25174,20,16266],["Butts","2021-10-21",25174,23,16289],["Butts","2021-10-22",25174,52,16341],["Butts","2021-10-23",25174,42,16383],["Butts","2021-10-24",25174,15,16398],["Butts","2021-10-25",25174,63,16461],["Butts","2021-10-26",25174,100,16561],["Butts","2021-10-27",25174,78,16639],["Butts","2021-10-28",25174,85,16724],["Butts","2021-10-29",25174,125,16849],["Butts","2021-10-30",25174,24,16873],["Butts","2021-10-31",25174,12,16885],["Butts","2021-11-01",25174,68,16953],["Butts","2021-11-02",25174,60,17013],["Butts","2021-11-03",25174,38,17051],["Butts","2021-11-04",25174,52,17103],["Butts","2021-11-05",25174,63,17166],["Butts","2021-11-06",25174,13,17179],["Butts","2021-11-07",25174,14,17193],["Butts","2021-11-08",25174,23,17216],["Butts","2021-11-09",25174,52,17268],["Butts","2021-11-10",25174,20,17288],["Butts","2021-11-11",25174,38,17326],["Butts","2021-11-12",25174,77,17403],["Butts","2021-11-13",25174,30,17433],["Butts","2021-11-14",25174,11,17444],["Butts","2021-11-15",25174,37,17481],["Butts","2021-11-16",25174,43,17524],["Butts","2021-11-17",25174,25,17549],["Butts","2021-11-18",25174,54,17603],["Butts","2021-11-19",25174,91,17694],["Butts","2021-11-20",25174,33,17727],["Butts","2021-11-21",25174,17,17744],["Butts","2021-11-22",25174,58,17802],["Butts","2021-11-23",25174,69,17871],["Butts","2021-11-24",25174,17,17888],["Butts","2021-11-25",25174,1,17889],["Butts","2021-11-26",25174,34,17923],["Butts","2021-11-27",25174,21,17944],["Butts","2021-11-28",25174,14,17958],["Butts","2021-11-29",25174,41,17999],["Butts","2021-11-30",25174,52,18051],["Butts","2021-12-01",25174,63,18114],["Butts","2021-12-02",25174,97,18211],["Butts","2021-12-03",25174,108,18319],["Butts","2021-12-04",25174,34,18353],["Butts","2021-12-05",25174,7,18360],["Butts","2021-12-06",25174,43,18403],["Butts","2021-12-07",25174,51,18454],["Butts","2021-12-08",25174,31,18485],["Butts","2021-12-09",25174,72,18557],["Butts","2021-12-10",25174,73,18630],["Butts","2021-12-11",25174,26,18656],["Butts","2021-12-12",25174,11,18667],["Butts","2021-12-13",25174,35,18702],["Butts","2021-12-14",25174,43,18745],["Butts","2021-12-15",25174,65,18810],["Butts","2021-12-16",25174,62,18872],["Butts","2021-12-17",25174,72,18944],["Butts","2021-12-18",25174,24,18968],["Butts","2021-12-19",25174,11,18979],["Butts","2021-12-20",25174,52,19031],["Butts","2021-12-21",25174,47,19078],["Butts","2021-12-22",25174,44,19122],["Butts","2021-12-23",25174,35,19157],["Butts","2021-12-24",25174,7,19164],["Butts","2021-12-26",25174,7,19171],["Butts","2021-12-27",25174,46,19217],["Butts","2021-12-28",25174,52,19269],["Butts","2021-12-29",25174,38,19307],["Butts","2021-12-30",25174,65,19372],["Butts","2021-12-31",25174,34,19406],["Butts","2022-01-01",25174,6,19412],["Butts","2022-01-02",25174,14,19426],["Butts","2022-01-03",25174,14,19440],["Calhoun","2020-12-17",6317,4,4],["Calhoun","2020-12-18",6317,6,10],["Calhoun","2020-12-19",6317,1,11],["Calhoun","2020-12-20",6317,1,12],["Calhoun","2020-12-21",6317,1,13],["Calhoun","2020-12-22",6317,2,15],["Calhoun","2020-12-23",6317,14,29],["Calhoun","2020-12-24",6317,5,34],["Calhoun","2020-12-26",6317,1,35],["Calhoun","2020-12-28",6317,14,49],["Calhoun","2020-12-29",6317,40,89],["Calhoun","2020-12-30",6317,6,95],["Calhoun","2020-12-31",6317,27,122],["Calhoun","2021-01-01",6317,1,123],["Calhoun","2021-01-02",6317,1,124],["Calhoun","2021-01-03",6317,1,125],["Calhoun","2021-01-04",6317,10,135],["Calhoun","2021-01-05",6317,6,141],["Calhoun","2021-01-06",6317,18,159],["Calhoun","2021-01-07",6317,14,173],["Calhoun","2021-01-08",6317,18,191],["Calhoun","2021-01-10",6317,1,192],["Calhoun","2021-01-11",6317,44,236],["Calhoun","2021-01-12",6317,48,284],["Calhoun","2021-01-13",6317,119,403],["Calhoun","2021-01-14",6317,32,435],["Calhoun","2021-01-15",6317,18,453],["Calhoun","2021-01-16",6317,7,460],["Calhoun","2021-01-18",6317,34,494],["Calhoun","2021-01-19",6317,36,530],["Calhoun","2021-01-20",6317,44,574],["Calhoun","2021-01-21",6317,117,691],["Calhoun","2021-01-22",6317,17,708],["Calhoun","2021-01-23",6317,6,714],["Calhoun","2021-01-25",6317,33,747],["Calhoun","2021-01-26",6317,29,776],["Calhoun","2021-01-27",6317,63,839],["Calhoun","2021-01-28",6317,47,886],["Calhoun","2021-01-29",6317,38,924],["Calhoun","2021-01-30",6317,3,927],["Calhoun","2021-01-31",6317,2,929],["Calhoun","2021-02-01",6317,32,961],["Calhoun","2021-02-02",6317,29,990],["Calhoun","2021-02-03",6317,34,1024],["Calhoun","2021-02-04",6317,93,1117],["Calhoun","2021-02-05",6317,29,1146],["Calhoun","2021-02-06",6317,6,1152],["Calhoun","2021-02-08",6317,59,1211],["Calhoun","2021-02-09",6317,60,1271],["Calhoun","2021-02-10",6317,158,1429],["Calhoun","2021-02-11",6317,37,1466],["Calhoun","2021-02-12",6317,16,1482],["Calhoun","2021-02-13",6317,8,1490],["Calhoun","2021-02-14",6317,3,1493],["Calhoun","2021-02-15",6317,33,1526],["Calhoun","2021-02-16",6317,48,1574],["Calhoun","2021-02-17",6317,66,1640],["Calhoun","2021-02-18",6317,50,1690],["Calhoun","2021-02-19",6317,85,1775],["Calhoun","2021-02-20",6317,3,1778],["Calhoun","2021-02-21",6317,1,1779],["Calhoun","2021-02-22",6317,37,1816],["Calhoun","2021-02-23",6317,36,1852],["Calhoun","2021-02-24",6317,67,1919],["Calhoun","2021-02-25",6317,51,1970],["Calhoun","2021-02-26",6317,15,1985],["Calhoun","2021-02-27",6317,5,1990],["Calhoun","2021-03-01",6317,38,2028],["Calhoun","2021-03-02",6317,36,2064],["Calhoun","2021-03-03",6317,36,2100],["Calhoun","2021-03-04",6317,43,2143],["Calhoun","2021-03-05",6317,96,2239],["Calhoun","2021-03-06",6317,1,2240],["Calhoun","2021-03-07",6317,2,2242],["Calhoun","2021-03-08",6317,36,2278],["Calhoun","2021-03-09",6317,22,2300],["Calhoun","2021-03-10",6317,106,2406],["Calhoun","2021-03-11",6317,49,2455],["Calhoun","2021-03-12",6317,17,2472],["Calhoun","2021-03-13",6317,9,2481],["Calhoun","2021-03-14",6317,5,2486],["Calhoun","2021-03-15",6317,57,2543],["Calhoun","2021-03-16",6317,34,2577],["Calhoun","2021-03-17",6317,86,2663],["Calhoun","2021-03-18",6317,18,2681],["Calhoun","2021-03-19",6317,20,2701],["Calhoun","2021-03-20",6317,2,2703],["Calhoun","2021-03-21",6317,2,2705],["Calhoun","2021-03-22",6317,27,2732],["Calhoun","2021-03-23",6317,27,2759],["Calhoun","2021-03-24",6317,91,2850],["Calhoun","2021-03-25",6317,25,2875],["Calhoun","2021-03-26",6317,18,2893],["Calhoun","2021-03-28",6317,1,2894],["Calhoun","2021-03-29",6317,25,2919],["Calhoun","2021-03-30",6317,32,2951],["Calhoun","2021-03-31",6317,51,3002],["Calhoun","2021-04-01",6317,61,3063],["Calhoun","2021-04-02",6317,24,3087],["Calhoun","2021-04-03",6317,2,3089],["Calhoun","2021-04-04",6317,1,3090],["Calhoun","2021-04-05",6317,12,3102],["Calhoun","2021-04-06",6317,44,3146],["Calhoun","2021-04-07",6317,53,3199],["Calhoun","2021-04-08",6317,67,3266],["Calhoun","2021-04-09",6317,20,3286],["Calhoun","2021-04-10",6317,5,3291],["Calhoun","2021-04-11",6317,2,3293],["Calhoun","2021-04-12",6317,37,3330],["Calhoun","2021-04-13",6317,105,3435],["Calhoun","2021-04-14",6317,20,3455],["Calhoun","2021-04-15",6317,52,3507],["Calhoun","2021-04-16",6317,33,3540],["Calhoun","2021-04-18",6317,4,3544],["Calhoun","2021-04-19",6317,46,3590],["Calhoun","2021-04-20",6317,49,3639],["Calhoun","2021-04-21",6317,16,3655],["Calhoun","2021-04-22",6317,26,3681],["Calhoun","2021-04-23",6317,15,3696],["Calhoun","2021-04-24",6317,2,3698],["Calhoun","2021-04-25",6317,1,3699],["Calhoun","2021-04-26",6317,5,3704],["Calhoun","2021-04-27",6317,47,3751],["Calhoun","2021-04-28",6317,17,3768],["Calhoun","2021-04-29",6317,43,3811],["Calhoun","2021-04-30",6317,33,3844],["Calhoun","2021-05-01",6317,3,3847],["Calhoun","2021-05-02",6317,1,3848],["Calhoun","2021-05-03",6317,9,3857],["Calhoun","2021-05-04",6317,22,3879],["Calhoun","2021-05-05",6317,15,3894],["Calhoun","2021-05-06",6317,39,3933],["Calhoun","2021-05-07",6317,4,3937],["Calhoun","2021-05-08",6317,1,3938],["Calhoun","2021-05-10",6317,8,3946],["Calhoun","2021-05-11",6317,17,3963],["Calhoun","2021-05-12",6317,12,3975],["Calhoun","2021-05-13",6317,51,4026],["Calhoun","2021-05-14",6317,9,4035],["Calhoun","2021-05-15",6317,1,4036],["Calhoun","2021-05-16",6317,3,4039],["Calhoun","2021-05-17",6317,3,4042],["Calhoun","2021-05-18",6317,16,4058],["Calhoun","2021-05-19",6317,15,4073],["Calhoun","2021-05-20",6317,33,4106],["Calhoun","2021-05-21",6317,12,4118],["Calhoun","2021-05-22",6317,3,4121],["Calhoun","2021-05-23",6317,1,4122],["Calhoun","2021-05-24",6317,6,4128],["Calhoun","2021-05-25",6317,7,4135],["Calhoun","2021-05-26",6317,12,4147],["Calhoun","2021-05-27",6317,13,4160],["Calhoun","2021-05-28",6317,12,4172],["Calhoun","2021-05-29",6317,1,4173],["Calhoun","2021-05-30",6317,2,4175],["Calhoun","2021-06-01",6317,13,4188],["Calhoun","2021-06-02",6317,23,4211],["Calhoun","2021-06-03",6317,23,4234],["Calhoun","2021-06-04",6317,7,4241],["Calhoun","2021-06-05",6317,2,4243],["Calhoun","2021-06-06",6317,1,4244],["Calhoun","2021-06-07",6317,6,4250],["Calhoun","2021-06-08",6317,14,4264],["Calhoun","2021-06-09",6317,5,4269],["Calhoun","2021-06-10",6317,15,4284],["Calhoun","2021-06-11",6317,12,4296],["Calhoun","2021-06-12",6317,4,4300],["Calhoun","2021-06-14",6317,8,4308],["Calhoun","2021-06-15",6317,8,4316],["Calhoun","2021-06-16",6317,13,4329],["Calhoun","2021-06-17",6317,5,4334],["Calhoun","2021-06-18",6317,4,4338],["Calhoun","2021-06-19",6317,4,4342],["Calhoun","2021-06-20",6317,1,4343],["Calhoun","2021-06-21",6317,3,4346],["Calhoun","2021-06-22",6317,5,4351],["Calhoun","2021-06-23",6317,13,4364],["Calhoun","2021-06-24",6317,14,4378],["Calhoun","2021-06-25",6317,8,4386],["Calhoun","2021-06-26",6317,3,4389],["Calhoun","2021-06-27",6317,3,4392],["Calhoun","2021-06-28",6317,4,4396],["Calhoun","2021-06-29",6317,17,4413],["Calhoun","2021-06-30",6317,11,4424],["Calhoun","2021-07-01",6317,8,4432],["Calhoun","2021-07-02",6317,2,4434],["Calhoun","2021-07-03",6317,2,4436],["Calhoun","2021-07-06",6317,10,4446],["Calhoun","2021-07-07",6317,13,4459],["Calhoun","2021-07-08",6317,19,4478],["Calhoun","2021-07-09",6317,4,4482],["Calhoun","2021-07-10",6317,2,4484],["Calhoun","2021-07-11",6317,1,4485],["Calhoun","2021-07-12",6317,7,4492],["Calhoun","2021-07-13",6317,10,4502],["Calhoun","2021-07-14",6317,14,4516],["Calhoun","2021-07-15",6317,5,4521],["Calhoun","2021-07-16",6317,2,4523],["Calhoun","2021-07-17",6317,2,4525],["Calhoun","2021-07-18",6317,1,4526],["Calhoun","2021-07-19",6317,7,4533],["Calhoun","2021-07-20",6317,5,4538],["Calhoun","2021-07-21",6317,11,4549],["Calhoun","2021-07-22",6317,7,4556],["Calhoun","2021-07-23",6317,3,4559],["Calhoun","2021-07-24",6317,8,4567],["Calhoun","2021-07-25",6317,2,4569],["Calhoun","2021-07-26",6317,32,4601],["Calhoun","2021-07-27",6317,9,4610],["Calhoun","2021-07-28",6317,32,4642],["Calhoun","2021-07-29",6317,18,4660],["Calhoun","2021-07-30",6317,17,4677],["Calhoun","2021-07-31",6317,5,4682],["Calhoun","2021-08-01",6317,4,4686],["Calhoun","2021-08-02",6317,18,4704],["Calhoun","2021-08-03",6317,22,4726],["Calhoun","2021-08-04",6317,44,4770],["Calhoun","2021-08-05",6317,18,4788],["Calhoun","2021-08-06",6317,22,4810],["Calhoun","2021-08-07",6317,6,4816],["Calhoun","2021-08-08",6317,8,4824],["Calhoun","2021-08-09",6317,20,4844],["Calhoun","2021-08-10",6317,30,4874],["Calhoun","2021-08-11",6317,34,4908],["Calhoun","2021-08-12",6317,22,4930],["Calhoun","2021-08-13",6317,25,4955],["Calhoun","2021-08-14",6317,5,4960],["Calhoun","2021-08-15",6317,6,4966],["Calhoun","2021-08-16",6317,28,4994],["Calhoun","2021-08-17",6317,16,5010],["Calhoun","2021-08-18",6317,46,5056],["Calhoun","2021-08-19",6317,34,5090],["Calhoun","2021-08-20",6317,19,5109],["Calhoun","2021-08-21",6317,9,5118],["Calhoun","2021-08-22",6317,6,5124],["Calhoun","2021-08-23",6317,31,5155],["Calhoun","2021-08-24",6317,16,5171],["Calhoun","2021-08-25",6317,46,5217],["Calhoun","2021-08-26",6317,33,5250],["Calhoun","2021-08-27",6317,33,5283],["Calhoun","2021-08-28",6317,8,5291],["Calhoun","2021-08-29",6317,9,5300],["Calhoun","2021-08-30",6317,33,5333],["Calhoun","2021-08-31",6317,18,5351],["Calhoun","2021-09-01",6317,43,5394],["Calhoun","2021-09-02",6317,29,5423],["Calhoun","2021-09-03",6317,23,5446],["Calhoun","2021-09-04",6317,5,5451],["Calhoun","2021-09-05",6317,6,5457],["Calhoun","2021-09-06",6317,1,5458],["Calhoun","2021-09-07",6317,28,5486],["Calhoun","2021-09-08",6317,40,5526],["Calhoun","2021-09-09",6317,17,5543],["Calhoun","2021-09-10",6317,20,5563],["Calhoun","2021-09-11",6317,7,5570],["Calhoun","2021-09-12",6317,12,5582],["Calhoun","2021-09-13",6317,30,5612],["Calhoun","2021-09-14",6317,23,5635],["Calhoun","2021-09-15",6317,40,5675],["Calhoun","2021-09-16",6317,27,5702],["Calhoun","2021-09-17",6317,30,5732],["Calhoun","2021-09-18",6317,11,5743],["Calhoun","2021-09-19",6317,9,5752],["Calhoun","2021-09-20",6317,7,5759],["Calhoun","2021-09-21",6317,22,5781],["Calhoun","2021-09-22",6317,19,5800],["Calhoun","2021-09-23",6317,15,5815],["Calhoun","2021-09-24",6317,16,5831],["Calhoun","2021-09-25",6317,1,5832],["Calhoun","2021-09-26",6317,7,5839],["Calhoun","2021-09-27",6317,10,5849],["Calhoun","2021-09-28",6317,18,5867],["Calhoun","2021-09-29",6317,25,5892],["Calhoun","2021-09-30",6317,24,5916],["Calhoun","2021-10-01",6317,16,5932],["Calhoun","2021-10-02",6317,9,5941],["Calhoun","2021-10-03",6317,1,5942],["Calhoun","2021-10-04",6317,9,5951],["Calhoun","2021-10-05",6317,17,5968],["Calhoun","2021-10-06",6317,19,5987],["Calhoun","2021-10-07",6317,9,5996],["Calhoun","2021-10-08",6317,17,6013],["Calhoun","2021-10-09",6317,5,6018],["Calhoun","2021-10-10",6317,2,6020],["Calhoun","2021-10-11",6317,7,6027],["Calhoun","2021-10-12",6317,13,6040],["Calhoun","2021-10-13",6317,9,6049],["Calhoun","2021-10-14",6317,11,6060],["Calhoun","2021-10-15",6317,8,6068],["Calhoun","2021-10-16",6317,4,6072],["Calhoun","2021-10-17",6317,1,6073],["Calhoun","2021-10-18",6317,1,6074],["Calhoun","2021-10-19",6317,5,6079],["Calhoun","2021-10-20",6317,9,6088],["Calhoun","2021-10-21",6317,18,6106],["Calhoun","2021-10-22",6317,15,6121],["Calhoun","2021-10-23",6317,1,6122],["Calhoun","2021-10-24",6317,1,6123],["Calhoun","2021-10-25",6317,15,6138],["Calhoun","2021-10-26",6317,51,6189],["Calhoun","2021-10-27",6317,71,6260],["Calhoun","2021-10-28",6317,55,6315],["Calhoun","2021-10-29",6317,21,6336],["Calhoun","2021-10-30",6317,3,6339],["Calhoun","2021-11-01",6317,47,6386],["Calhoun","2021-11-02",6317,36,6422],["Calhoun","2021-11-03",6317,70,6492],["Calhoun","2021-11-04",6317,39,6531],["Calhoun","2021-11-05",6317,30,6561],["Calhoun","2021-11-06",6317,5,6566],["Calhoun","2021-11-07",6317,1,6567],["Calhoun","2021-11-08",6317,12,6579],["Calhoun","2021-11-09",6317,30,6609],["Calhoun","2021-11-10",6317,45,6654],["Calhoun","2021-11-11",6317,14,6668],["Calhoun","2021-11-12",6317,8,6676],["Calhoun","2021-11-13",6317,4,6680],["Calhoun","2021-11-15",6317,12,6692],["Calhoun","2021-11-16",6317,24,6716],["Calhoun","2021-11-17",6317,40,6756],["Calhoun","2021-11-18",6317,41,6797],["Calhoun","2021-11-19",6317,23,6820],["Calhoun","2021-11-20",6317,7,6827],["Calhoun","2021-11-21",6317,2,6829],["Calhoun","2021-11-22",6317,9,6838],["Calhoun","2021-11-23",6317,26,6864],["Calhoun","2021-11-24",6317,16,6880],["Calhoun","2021-11-26",6317,5,6885],["Calhoun","2021-11-27",6317,2,6887],["Calhoun","2021-11-29",6317,19,6906],["Calhoun","2021-11-30",6317,21,6927],["Calhoun","2021-12-01",6317,16,6943],["Calhoun","2021-12-02",6317,26,6969],["Calhoun","2021-12-03",6317,18,6987],["Calhoun","2021-12-04",6317,8,6995],["Calhoun","2021-12-05",6317,1,6996],["Calhoun","2021-12-06",6317,14,7010],["Calhoun","2021-12-07",6317,21,7031],["Calhoun","2021-12-08",6317,21,7052],["Calhoun","2021-12-09",6317,26,7078],["Calhoun","2021-12-10",6317,16,7094],["Calhoun","2021-12-11",6317,4,7098],["Calhoun","2021-12-12",6317,3,7101],["Calhoun","2021-12-13",6317,9,7110],["Calhoun","2021-12-14",6317,16,7126],["Calhoun","2021-12-15",6317,17,7143],["Calhoun","2021-12-16",6317,18,7161],["Calhoun","2021-12-17",6317,10,7171],["Calhoun","2021-12-20",6317,21,7192],["Calhoun","2021-12-21",6317,19,7211],["Calhoun","2021-12-22",6317,9,7220],["Calhoun","2021-12-23",6317,12,7232],["Calhoun","2021-12-26",6317,1,7233],["Calhoun","2021-12-27",6317,14,7247],["Calhoun","2021-12-28",6317,29,7276],["Calhoun","2021-12-29",6317,26,7302],["Calhoun","2021-12-30",6317,9,7311],["Calhoun","2021-12-31",6317,4,7315],["Calhoun","2022-01-01",6317,1,7316],["Calhoun","2022-01-03",6317,9,7325],["Camden","2020-12-15",53924,2,2],["Camden","2020-12-16",53924,2,4],["Camden","2020-12-17",53924,12,16],["Camden","2020-12-18",53924,24,40],["Camden","2020-12-20",53924,1,41],["Camden","2020-12-21",53924,12,53],["Camden","2020-12-22",53924,80,133],["Camden","2020-12-23",53924,16,149],["Camden","2020-12-24",53924,5,154],["Camden","2020-12-27",53924,1,155],["Camden","2020-12-28",53924,23,178],["Camden","2020-12-29",53924,25,203],["Camden","2020-12-30",53924,24,227],["Camden","2020-12-31",53924,15,242],["Camden","2021-01-01",53924,1,243],["Camden","2021-01-02",53924,2,245],["Camden","2021-01-03",53924,1,246],["Camden","2021-01-04",53924,14,260],["Camden","2021-01-05",53924,66,326],["Camden","2021-01-06",53924,33,359],["Camden","2021-01-07",53924,54,413],["Camden","2021-01-08",53924,52,465],["Camden","2021-01-09",53924,2,467],["Camden","2021-01-10",53924,2,469],["Camden","2021-01-11",53924,284,753],["Camden","2021-01-12",53924,40,793],["Camden","2021-01-13",53924,43,836],["Camden","2021-01-14",53924,153,989],["Camden","2021-01-15",53924,201,1190],["Camden","2021-01-16",53924,184,1374],["Camden","2021-01-17",53924,5,1379],["Camden","2021-01-18",53924,686,2065],["Camden","2021-01-19",53924,40,2105],["Camden","2021-01-20",53924,55,2160],["Camden","2021-01-21",53924,284,2444],["Camden","2021-01-22",53924,562,3006],["Camden","2021-01-23",53924,19,3025],["Camden","2021-01-24",53924,4,3029],["Camden","2021-01-25",53924,216,3245],["Camden","2021-01-26",53924,485,3730],["Camden","2021-01-27",53924,76,3806],["Camden","2021-01-28",53924,182,3988],["Camden","2021-01-29",53924,344,4332],["Camden","2021-01-30",53924,18,4350],["Camden","2021-01-31",53924,12,4362],["Camden","2021-02-01",53924,376,4738],["Camden","2021-02-02",53924,124,4862],["Camden","2021-02-03",53924,46,4908],["Camden","2021-02-04",53924,218,5126],["Camden","2021-02-05",53924,34,5160],["Camden","2021-02-06",53924,76,5236],["Camden","2021-02-07",53924,1,5237],["Camden","2021-02-08",53924,176,5413],["Camden","2021-02-09",53924,155,5568],["Camden","2021-02-10",53924,94,5662],["Camden","2021-02-11",53924,274,5936],["Camden","2021-02-12",53924,225,6161],["Camden","2021-02-13",53924,124,6285],["Camden","2021-02-14",53924,6,6291],["Camden","2021-02-15",53924,747,7038],["Camden","2021-02-16",53924,219,7257],["Camden","2021-02-17",53924,124,7381],["Camden","2021-02-18",53924,285,7666],["Camden","2021-02-19",53924,583,8249],["Camden","2021-02-20",53924,149,8398],["Camden","2021-02-21",53924,28,8426],["Camden","2021-02-22",53924,164,8590],["Camden","2021-02-23",53924,231,8821],["Camden","2021-02-24",53924,59,8880],["Camden","2021-02-25",53924,386,9266],["Camden","2021-02-26",53924,754,10020],["Camden","2021-02-27",53924,44,10064],["Camden","2021-02-28",53924,17,10081],["Camden","2021-03-01",53924,327,10408],["Camden","2021-03-02",53924,230,10638],["Camden","2021-03-03",53924,102,10740],["Camden","2021-03-04",53924,334,11074],["Camden","2021-03-05",53924,350,11424],["Camden","2021-03-06",53924,28,11452],["Camden","2021-03-07",53924,13,11465],["Camden","2021-03-08",53924,338,11803],["Camden","2021-03-09",53924,223,12026],["Camden","2021-03-10",53924,100,12126],["Camden","2021-03-11",53924,354,12480],["Camden","2021-03-12",53924,202,12682],["Camden","2021-03-13",53924,251,12933],["Camden","2021-03-14",53924,37,12970],["Camden","2021-03-15",53924,435,13405],["Camden","2021-03-16",53924,253,13658],["Camden","2021-03-17",53924,105,13763],["Camden","2021-03-18",53924,390,14153],["Camden","2021-03-19",53924,259,14412],["Camden","2021-03-20",53924,180,14592],["Camden","2021-03-21",53924,18,14610],["Camden","2021-03-22",53924,317,14927],["Camden","2021-03-23",53924,246,15173],["Camden","2021-03-24",53924,132,15305],["Camden","2021-03-25",53924,501,15806],["Camden","2021-03-26",53924,260,16066],["Camden","2021-03-27",53924,51,16117],["Camden","2021-03-28",53924,58,16175],["Camden","2021-03-29",53924,409,16584],["Camden","2021-03-30",53924,278,16862],["Camden","2021-03-31",53924,177,17039],["Camden","2021-04-01",53924,509,17548],["Camden","2021-04-02",53924,573,18121],["Camden","2021-04-03",53924,62,18183],["Camden","2021-04-04",53924,45,18228],["Camden","2021-04-05",53924,587,18815],["Camden","2021-04-06",53924,243,19058],["Camden","2021-04-07",53924,121,19179],["Camden","2021-04-08",53924,486,19665],["Camden","2021-04-09",53924,577,20242],["Camden","2021-04-10",53924,67,20309],["Camden","2021-04-11",53924,47,20356],["Camden","2021-04-12",53924,354,20710],["Camden","2021-04-13",53924,152,20862],["Camden","2021-04-14",53924,139,21001],["Camden","2021-04-15",53924,425,21426],["Camden","2021-04-16",53924,337,21763],["Camden","2021-04-17",53924,42,21805],["Camden","2021-04-18",53924,17,21822],["Camden","2021-04-19",53924,315,22137],["Camden","2021-04-20",53924,160,22297],["Camden","2021-04-21",53924,145,22442],["Camden","2021-04-22",53924,412,22854],["Camden","2021-04-23",53924,129,22983],["Camden","2021-04-24",53924,134,23117],["Camden","2021-04-25",53924,17,23134],["Camden","2021-04-26",53924,403,23537],["Camden","2021-04-27",53924,136,23673],["Camden","2021-04-28",53924,112,23785],["Camden","2021-04-29",53924,421,24206],["Camden","2021-04-30",53924,146,24352],["Camden","2021-05-01",53924,62,24414],["Camden","2021-05-02",53924,13,24427],["Camden","2021-05-03",53924,265,24692],["Camden","2021-05-04",53924,113,24805],["Camden","2021-05-05",53924,116,24921],["Camden","2021-05-06",53924,321,25242],["Camden","2021-05-07",53924,88,25330],["Camden","2021-05-08",53924,49,25379],["Camden","2021-05-09",53924,24,25403],["Camden","2021-05-10",53924,180,25583],["Camden","2021-05-11",53924,103,25686],["Camden","2021-05-12",53924,76,25762],["Camden","2021-05-13",53924,198,25960],["Camden","2021-05-14",53924,84,26044],["Camden","2021-05-15",53924,70,26114],["Camden","2021-05-16",53924,43,26157],["Camden","2021-05-17",53924,202,26359],["Camden","2021-05-18",53924,122,26481],["Camden","2021-05-19",53924,98,26579],["Camden","2021-05-20",53924,165,26744],["Camden","2021-05-21",53924,92,26836],["Camden","2021-05-22",53924,61,26897],["Camden","2021-05-23",53924,35,26932],["Camden","2021-05-24",53924,69,27001],["Camden","2021-05-25",53924,67,27068],["Camden","2021-05-26",53924,107,27175],["Camden","2021-05-27",53924,189,27364],["Camden","2021-05-28",53924,49,27413],["Camden","2021-05-29",53924,32,27445],["Camden","2021-05-30",53924,30,27475],["Camden","2021-05-31",53924,7,27482],["Camden","2021-06-01",53924,81,27563],["Camden","2021-06-02",53924,65,27628],["Camden","2021-06-03",53924,159,27787],["Camden","2021-06-04",53924,85,27872],["Camden","2021-06-05",53924,55,27927],["Camden","2021-06-06",53924,49,27976],["Camden","2021-06-07",53924,164,28140],["Camden","2021-06-08",53924,72,28212],["Camden","2021-06-09",53924,67,28279],["Camden","2021-06-10",53924,99,28378],["Camden","2021-06-11",53924,86,28464],["Camden","2021-06-12",53924,78,28542],["Camden","2021-06-13",53924,22,28564],["Camden","2021-06-14",53924,108,28672],["Camden","2021-06-15",53924,52,28724],["Camden","2021-06-16",53924,96,28820],["Camden","2021-06-17",53924,112,28932],["Camden","2021-06-18",53924,64,28996],["Camden","2021-06-19",53924,21,29017],["Camden","2021-06-20",53924,16,29033],["Camden","2021-06-21",53924,63,29096],["Camden","2021-06-22",53924,51,29147],["Camden","2021-06-23",53924,54,29201],["Camden","2021-06-24",53924,74,29275],["Camden","2021-06-25",53924,62,29337],["Camden","2021-06-26",53924,41,29378],["Camden","2021-06-27",53924,31,29409],["Camden","2021-06-28",53924,107,29516],["Camden","2021-06-29",53924,68,29584],["Camden","2021-06-30",53924,71,29655],["Camden","2021-07-01",53924,71,29726],["Camden","2021-07-02",53924,45,29771],["Camden","2021-07-03",53924,32,29803],["Camden","2021-07-04",53924,2,29805],["Camden","2021-07-05",53924,49,29854],["Camden","2021-07-06",53924,51,29905],["Camden","2021-07-07",53924,28,29933],["Camden","2021-07-08",53924,58,29991],["Camden","2021-07-09",53924,61,30052],["Camden","2021-07-10",53924,36,30088],["Camden","2021-07-11",53924,27,30115],["Camden","2021-07-12",53924,84,30199],["Camden","2021-07-13",53924,51,30250],["Camden","2021-07-14",53924,62,30312],["Camden","2021-07-15",53924,108,30420],["Camden","2021-07-16",53924,121,30541],["Camden","2021-07-17",53924,66,30607],["Camden","2021-07-18",53924,36,30643],["Camden","2021-07-19",53924,162,30805],["Camden","2021-07-20",53924,100,30905],["Camden","2021-07-21",53924,103,31008],["Camden","2021-07-22",53924,138,31146],["Camden","2021-07-23",53924,105,31251],["Camden","2021-07-24",53924,75,31326],["Camden","2021-07-25",53924,52,31378],["Camden","2021-07-26",53924,181,31559],["Camden","2021-07-27",53924,142,31701],["Camden","2021-07-28",53924,156,31857],["Camden","2021-07-29",53924,175,32032],["Camden","2021-07-30",53924,149,32181],["Camden","2021-07-31",53924,85,32266],["Camden","2021-08-01",53924,64,32330],["Camden","2021-08-02",53924,165,32495],["Camden","2021-08-03",53924,128,32623],["Camden","2021-08-04",53924,157,32780],["Camden","2021-08-05",53924,179,32959],["Camden","2021-08-06",53924,188,33147],["Camden","2021-08-07",53924,95,33242],["Camden","2021-08-08",53924,81,33323],["Camden","2021-08-09",53924,218,33541],["Camden","2021-08-10",53924,154,33695],["Camden","2021-08-11",53924,141,33836],["Camden","2021-08-12",53924,242,34078],["Camden","2021-08-13",53924,161,34239],["Camden","2021-08-14",53924,110,34349],["Camden","2021-08-15",53924,63,34412],["Camden","2021-08-16",53924,255,34667],["Camden","2021-08-17",53924,148,34815],["Camden","2021-08-18",53924,162,34977],["Camden","2021-08-19",53924,216,35193],["Camden","2021-08-20",53924,193,35386],["Camden","2021-08-21",53924,103,35489],["Camden","2021-08-22",53924,60,35549],["Camden","2021-08-23",53924,192,35741],["Camden","2021-08-24",53924,136,35877],["Camden","2021-08-25",53924,164,36041],["Camden","2021-08-26",53924,291,36332],["Camden","2021-08-27",53924,168,36500],["Camden","2021-08-28",53924,94,36594],["Camden","2021-08-29",53924,53,36647],["Camden","2021-08-30",53924,156,36803],["Camden","2021-08-31",53924,118,36921],["Camden","2021-09-01",53924,162,37083],["Camden","2021-09-02",53924,170,37253],["Camden","2021-09-03",53924,170,37423],["Camden","2021-09-04",53924,87,37510],["Camden","2021-09-05",53924,58,37568],["Camden","2021-09-06",53924,20,37588],["Camden","2021-09-07",53924,142,37730],["Camden","2021-09-08",53924,107,37837],["Camden","2021-09-09",53924,144,37981],["Camden","2021-09-10",53924,145,38126],["Camden","2021-09-11",53924,51,38177],["Camden","2021-09-12",53924,49,38226],["Camden","2021-09-13",53924,170,38396],["Camden","2021-09-14",53924,114,38510],["Camden","2021-09-15",53924,82,38592],["Camden","2021-09-16",53924,141,38733],["Camden","2021-09-17",53924,115,38848],["Camden","2021-09-18",53924,45,38893],["Camden","2021-09-19",53924,29,38922],["Camden","2021-09-20",53924,95,39017],["Camden","2021-09-21",53924,104,39121],["Camden","2021-09-22",53924,77,39198],["Camden","2021-09-23",53924,100,39298],["Camden","2021-09-24",53924,91,39389],["Camden","2021-09-25",53924,52,39441],["Camden","2021-09-26",53924,40,39481],["Camden","2021-09-27",53924,89,39570],["Camden","2021-09-28",53924,80,39650],["Camden","2021-09-29",53924,84,39734],["Camden","2021-09-30",53924,83,39817],["Camden","2021-10-01",53924,100,39917],["Camden","2021-10-02",53924,37,39954],["Camden","2021-10-03",53924,31,39985],["Camden","2021-10-04",53924,82,40067],["Camden","2021-10-05",53924,78,40145],["Camden","2021-10-06",53924,95,40240],["Camden","2021-10-07",53924,80,40320],["Camden","2021-10-08",53924,77,40397],["Camden","2021-10-09",53924,28,40425],["Camden","2021-10-10",53924,17,40442],["Camden","2021-10-11",53924,76,40518],["Camden","2021-10-12",53924,75,40593],["Camden","2021-10-13",53924,82,40675],["Camden","2021-10-14",53924,85,40760],["Camden","2021-10-15",53924,68,40828],["Camden","2021-10-16",53924,15,40843],["Camden","2021-10-17",53924,19,40862],["Camden","2021-10-18",53924,103,40965],["Camden","2021-10-19",53924,70,41035],["Camden","2021-10-20",53924,46,41081],["Camden","2021-10-21",53924,66,41147],["Camden","2021-10-22",53924,95,41242],["Camden","2021-10-23",53924,67,41309],["Camden","2021-10-24",53924,38,41347],["Camden","2021-10-25",53924,173,41520],["Camden","2021-10-26",53924,147,41667],["Camden","2021-10-27",53924,185,41852],["Camden","2021-10-28",53924,122,41974],["Camden","2021-10-29",53924,147,42121],["Camden","2021-10-30",53924,59,42180],["Camden","2021-10-31",53924,41,42221],["Camden","2021-11-01",53924,355,42576],["Camden","2021-11-02",53924,168,42744],["Camden","2021-11-03",53924,147,42891],["Camden","2021-11-04",53924,220,43111],["Camden","2021-11-05",53924,123,43234],["Camden","2021-11-06",53924,67,43301],["Camden","2021-11-07",53924,49,43350],["Camden","2021-11-08",53924,284,43634],["Camden","2021-11-09",53924,150,43784],["Camden","2021-11-10",53924,122,43906],["Camden","2021-11-11",53924,73,43979],["Camden","2021-11-12",53924,151,44130],["Camden","2021-11-13",53924,54,44184],["Camden","2021-11-14",53924,28,44212],["Camden","2021-11-15",53924,241,44453],["Camden","2021-11-16",53924,136,44589],["Camden","2021-11-17",53924,101,44690],["Camden","2021-11-18",53924,138,44828],["Camden","2021-11-19",53924,118,44946],["Camden","2021-11-20",53924,58,45004],["Camden","2021-11-21",53924,58,45062],["Camden","2021-11-22",53924,235,45297],["Camden","2021-11-23",53924,117,45414],["Camden","2021-11-24",53924,63,45477],["Camden","2021-11-26",53924,51,45528],["Camden","2021-11-27",53924,69,45597],["Camden","2021-11-28",53924,42,45639],["Camden","2021-11-29",53924,247,45886],["Camden","2021-11-30",53924,123,46009],["Camden","2021-12-01",53924,174,46183],["Camden","2021-12-02",53924,223,46406],["Camden","2021-12-03",53924,203,46609],["Camden","2021-12-04",53924,71,46680],["Camden","2021-12-05",53924,38,46718],["Camden","2021-12-06",53924,206,46924],["Camden","2021-12-07",53924,115,47039],["Camden","2021-12-08",53924,71,47110],["Camden","2021-12-09",53924,157,47267],["Camden","2021-12-10",53924,133,47400],["Camden","2021-12-11",53924,53,47453],["Camden","2021-12-12",53924,28,47481],["Camden","2021-12-13",53924,172,47653],["Camden","2021-12-14",53924,80,47733],["Camden","2021-12-15",53924,75,47808],["Camden","2021-12-16",53924,118,47926],["Camden","2021-12-17",53924,106,48032],["Camden","2021-12-18",53924,48,48080],["Camden","2021-12-19",53924,32,48112],["Camden","2021-12-20",53924,152,48264],["Camden","2021-12-21",53924,119,48383],["Camden","2021-12-22",53924,112,48495],["Camden","2021-12-23",53924,68,48563],["Camden","2021-12-24",53924,23,48586],["Camden","2021-12-26",53924,32,48618],["Camden","2021-12-27",53924,128,48746],["Camden","2021-12-28",53924,104,48850],["Camden","2021-12-29",53924,85,48935],["Camden","2021-12-30",53924,74,49009],["Camden","2021-12-31",53924,29,49038],["Camden","2022-01-01",53924,12,49050],["Camden","2022-01-02",53924,25,49075],["Camden","2022-01-03",53924,28,49103],["Candler","2020-12-17",10837,1,1],["Candler","2020-12-18",10837,1,2],["Candler","2020-12-21",10837,1,3],["Candler","2020-12-22",10837,6,9],["Candler","2020-12-23",10837,8,17],["Candler","2020-12-24",10837,2,19],["Candler","2020-12-27",10837,28,47],["Candler","2020-12-28",10837,12,59],["Candler","2020-12-29",10837,13,72],["Candler","2020-12-30",10837,11,83],["Candler","2020-12-31",10837,6,89],["Candler","2021-01-01",10837,3,92],["Candler","2021-01-03",10837,1,93],["Candler","2021-01-04",10837,35,128],["Candler","2021-01-05",10837,17,145],["Candler","2021-01-06",10837,36,181],["Candler","2021-01-07",10837,19,200],["Candler","2021-01-08",10837,25,225],["Candler","2021-01-09",10837,2,227],["Candler","2021-01-10",10837,2,229],["Candler","2021-01-11",10837,69,298],["Candler","2021-01-12",10837,100,398],["Candler","2021-01-13",10837,42,440],["Candler","2021-01-14",10837,55,495],["Candler","2021-01-15",10837,38,533],["Candler","2021-01-16",10837,15,548],["Candler","2021-01-17",10837,34,582],["Candler","2021-01-18",10837,42,624],["Candler","2021-01-19",10837,51,675],["Candler","2021-01-20",10837,64,739],["Candler","2021-01-21",10837,135,874],["Candler","2021-01-22",10837,84,958],["Candler","2021-01-23",10837,14,972],["Candler","2021-01-25",10837,44,1016],["Candler","2021-01-26",10837,37,1053],["Candler","2021-01-27",10837,26,1079],["Candler","2021-01-28",10837,60,1139],["Candler","2021-01-29",10837,49,1188],["Candler","2021-01-30",10837,6,1194],["Candler","2021-01-31",10837,2,1196],["Candler","2021-02-01",10837,71,1267],["Candler","2021-02-02",10837,102,1369],["Candler","2021-02-03",10837,39,1408],["Candler","2021-02-04",10837,20,1428],["Candler","2021-02-05",10837,130,1558],["Candler","2021-02-06",10837,4,1562],["Candler","2021-02-07",10837,14,1576],["Candler","2021-02-08",10837,73,1649],["Candler","2021-02-09",10837,81,1730],["Candler","2021-02-10",10837,95,1825],["Candler","2021-02-11",10837,52,1877],["Candler","2021-02-12",10837,59,1936],["Candler","2021-02-13",10837,27,1963],["Candler","2021-02-14",10837,1,1964],["Candler","2021-02-15",10837,64,2028],["Candler","2021-02-16",10837,56,2084],["Candler","2021-02-17",10837,52,2136],["Candler","2021-02-18",10837,59,2195],["Candler","2021-02-19",10837,198,2393],["Candler","2021-02-20",10837,5,2398],["Candler","2021-02-21",10837,12,2410],["Candler","2021-02-22",10837,54,2464],["Candler","2021-02-23",10837,31,2495],["Candler","2021-02-24",10837,25,2520],["Candler","2021-02-25",10837,88,2608],["Candler","2021-02-26",10837,62,2670],["Candler","2021-02-27",10837,8,2678],["Candler","2021-02-28",10837,1,2679],["Candler","2021-03-01",10837,49,2728],["Candler","2021-03-02",10837,42,2770],["Candler","2021-03-03",10837,19,2789],["Candler","2021-03-04",10837,27,2816],["Candler","2021-03-05",10837,128,2944],["Candler","2021-03-06",10837,4,2948],["Candler","2021-03-07",10837,2,2950],["Candler","2021-03-08",10837,24,2974],["Candler","2021-03-09",10837,87,3061],["Candler","2021-03-10",10837,64,3125],["Candler","2021-03-11",10837,53,3178],["Candler","2021-03-12",10837,93,3271],["Candler","2021-03-13",10837,33,3304],["Candler","2021-03-14",10837,3,3307],["Candler","2021-03-15",10837,83,3390],["Candler","2021-03-16",10837,75,3465],["Candler","2021-03-17",10837,68,3533],["Candler","2021-03-18",10837,55,3588],["Candler","2021-03-19",10837,116,3704],["Candler","2021-03-20",10837,7,3711],["Candler","2021-03-21",10837,7,3718],["Candler","2021-03-22",10837,42,3760],["Candler","2021-03-23",10837,37,3797],["Candler","2021-03-24",10837,33,3830],["Candler","2021-03-25",10837,69,3899],["Candler","2021-03-26",10837,124,4023],["Candler","2021-03-27",10837,50,4073],["Candler","2021-03-28",10837,9,4082],["Candler","2021-03-29",10837,66,4148],["Candler","2021-03-30",10837,30,4178],["Candler","2021-03-31",10837,51,4229],["Candler","2021-04-01",10837,48,4277],["Candler","2021-04-02",10837,69,4346],["Candler","2021-04-03",10837,10,4356],["Candler","2021-04-04",10837,3,4359],["Candler","2021-04-05",10837,103,4462],["Candler","2021-04-06",10837,64,4526],["Candler","2021-04-07",10837,65,4591],["Candler","2021-04-08",10837,55,4646],["Candler","2021-04-09",10837,114,4760],["Candler","2021-04-10",10837,11,4771],["Candler","2021-04-11",10837,5,4776],["Candler","2021-04-12",10837,57,4833],["Candler","2021-04-13",10837,53,4886],["Candler","2021-04-14",10837,43,4929],["Candler","2021-04-15",10837,45,4974],["Candler","2021-04-16",10837,106,5080],["Candler","2021-04-17",10837,18,5098],["Candler","2021-04-18",10837,7,5105],["Candler","2021-04-19",10837,27,5132],["Candler","2021-04-20",10837,109,5241],["Candler","2021-04-21",10837,46,5287],["Candler","2021-04-22",10837,48,5335],["Candler","2021-04-23",10837,68,5403],["Candler","2021-04-24",10837,11,5414],["Candler","2021-04-25",10837,9,5423],["Candler","2021-04-26",10837,30,5453],["Candler","2021-04-27",10837,44,5497],["Candler","2021-04-28",10837,31,5528],["Candler","2021-04-29",10837,34,5562],["Candler","2021-04-30",10837,73,5635],["Candler","2021-05-01",10837,40,5675],["Candler","2021-05-02",10837,9,5684],["Candler","2021-05-03",10837,22,5706],["Candler","2021-05-04",10837,31,5737],["Candler","2021-05-05",10837,27,5764],["Candler","2021-05-06",10837,42,5806],["Candler","2021-05-07",10837,49,5855],["Candler","2021-05-08",10837,2,5857],["Candler","2021-05-09",10837,6,5863],["Candler","2021-05-10",10837,23,5886],["Candler","2021-05-11",10837,43,5929],["Candler","2021-05-12",10837,15,5944],["Candler","2021-05-13",10837,33,5977],["Candler","2021-05-14",10837,44,6021],["Candler","2021-05-15",10837,13,6034],["Candler","2021-05-16",10837,2,6036],["Candler","2021-05-17",10837,15,6051],["Candler","2021-05-18",10837,92,6143],["Candler","2021-05-19",10837,14,6157],["Candler","2021-05-20",10837,29,6186],["Candler","2021-05-21",10837,45,6231],["Candler","2021-05-22",10837,7,6238],["Candler","2021-05-23",10837,2,6240],["Candler","2021-05-24",10837,10,6250],["Candler","2021-05-25",10837,12,6262],["Candler","2021-05-26",10837,26,6288],["Candler","2021-05-27",10837,18,6306],["Candler","2021-05-28",10837,37,6343],["Candler","2021-05-29",10837,12,6355],["Candler","2021-05-30",10837,3,6358],["Candler","2021-05-31",10837,2,6360],["Candler","2021-06-01",10837,40,6400],["Candler","2021-06-02",10837,13,6413],["Candler","2021-06-03",10837,21,6434],["Candler","2021-06-04",10837,22,6456],["Candler","2021-06-05",10837,2,6458],["Candler","2021-06-06",10837,6,6464],["Candler","2021-06-07",10837,12,6476],["Candler","2021-06-08",10837,31,6507],["Candler","2021-06-09",10837,11,6518],["Candler","2021-06-10",10837,21,6539],["Candler","2021-06-11",10837,20,6559],["Candler","2021-06-12",10837,11,6570],["Candler","2021-06-14",10837,12,6582],["Candler","2021-06-15",10837,20,6602],["Candler","2021-06-16",10837,10,6612],["Candler","2021-06-17",10837,32,6644],["Candler","2021-06-18",10837,18,6662],["Candler","2021-06-19",10837,12,6674],["Candler","2021-06-20",10837,3,6677],["Candler","2021-06-21",10837,12,6689],["Candler","2021-06-22",10837,8,6697],["Candler","2021-06-23",10837,24,6721],["Candler","2021-06-24",10837,11,6732],["Candler","2021-06-25",10837,15,6747],["Candler","2021-06-26",10837,3,6750],["Candler","2021-06-27",10837,3,6753],["Candler","2021-06-28",10837,25,6778],["Candler","2021-06-29",10837,10,6788],["Candler","2021-06-30",10837,7,6795],["Candler","2021-07-01",10837,19,6814],["Candler","2021-07-02",10837,10,6824],["Candler","2021-07-03",10837,10,6834],["Candler","2021-07-04",10837,1,6835],["Candler","2021-07-05",10837,5,6840],["Candler","2021-07-06",10837,1,6841],["Candler","2021-07-07",10837,9,6850],["Candler","2021-07-08",10837,11,6861],["Candler","2021-07-09",10837,16,6877],["Candler","2021-07-10",10837,4,6881],["Candler","2021-07-11",10837,3,6884],["Candler","2021-07-12",10837,6,6890],["Candler","2021-07-13",10837,6,6896],["Candler","2021-07-14",10837,6,6902],["Candler","2021-07-15",10837,15,6917],["Candler","2021-07-16",10837,15,6932],["Candler","2021-07-17",10837,3,6935],["Candler","2021-07-18",10837,2,6937],["Candler","2021-07-19",10837,24,6961],["Candler","2021-07-20",10837,18,6979],["Candler","2021-07-21",10837,7,6986],["Candler","2021-07-22",10837,14,7000],["Candler","2021-07-23",10837,31,7031],["Candler","2021-07-24",10837,10,7041],["Candler","2021-07-25",10837,7,7048],["Candler","2021-07-26",10837,19,7067],["Candler","2021-07-27",10837,10,7077],["Candler","2021-07-28",10837,19,7096],["Candler","2021-07-29",10837,54,7150],["Candler","2021-07-30",10837,50,7200],["Candler","2021-07-31",10837,13,7213],["Candler","2021-08-01",10837,4,7217],["Candler","2021-08-02",10837,13,7230],["Candler","2021-08-03",10837,19,7249],["Candler","2021-08-04",10837,15,7264],["Candler","2021-08-05",10837,23,7287],["Candler","2021-08-06",10837,46,7333],["Candler","2021-08-07",10837,14,7347],["Candler","2021-08-08",10837,8,7355],["Candler","2021-08-09",10837,23,7378],["Candler","2021-08-10",10837,24,7402],["Candler","2021-08-11",10837,34,7436],["Candler","2021-08-12",10837,39,7475],["Candler","2021-08-13",10837,65,7540],["Candler","2021-08-14",10837,17,7557],["Candler","2021-08-15",10837,10,7567],["Candler","2021-08-16",10837,38,7605],["Candler","2021-08-17",10837,43,7648],["Candler","2021-08-18",10837,38,7686],["Candler","2021-08-19",10837,32,7718],["Candler","2021-08-20",10837,73,7791],["Candler","2021-08-21",10837,10,7801],["Candler","2021-08-22",10837,6,7807],["Candler","2021-08-23",10837,18,7825],["Candler","2021-08-24",10837,23,7848],["Candler","2021-08-25",10837,29,7877],["Candler","2021-08-26",10837,41,7918],["Candler","2021-08-27",10837,97,8015],["Candler","2021-08-28",10837,32,8047],["Candler","2021-08-29",10837,4,8051],["Candler","2021-08-30",10837,25,8076],["Candler","2021-08-31",10837,40,8116],["Candler","2021-09-01",10837,37,8153],["Candler","2021-09-02",10837,28,8181],["Candler","2021-09-03",10837,69,8250],["Candler","2021-09-04",10837,19,8269],["Candler","2021-09-05",10837,8,8277],["Candler","2021-09-06",10837,1,8278],["Candler","2021-09-07",10837,45,8323],["Candler","2021-09-08",10837,34,8357],["Candler","2021-09-09",10837,16,8373],["Candler","2021-09-10",10837,50,8423],["Candler","2021-09-11",10837,14,8437],["Candler","2021-09-12",10837,9,8446],["Candler","2021-09-13",10837,26,8472],["Candler","2021-09-14",10837,28,8500],["Candler","2021-09-15",10837,34,8534],["Candler","2021-09-16",10837,30,8564],["Candler","2021-09-17",10837,61,8625],["Candler","2021-09-18",10837,7,8632],["Candler","2021-09-19",10837,5,8637],["Candler","2021-09-20",10837,27,8664],["Candler","2021-09-21",10837,28,8692],["Candler","2021-09-22",10837,18,8710],["Candler","2021-09-23",10837,26,8736],["Candler","2021-09-24",10837,41,8777],["Candler","2021-09-25",10837,16,8793],["Candler","2021-09-26",10837,8,8801],["Candler","2021-09-27",10837,15,8816],["Candler","2021-09-28",10837,17,8833],["Candler","2021-09-29",10837,21,8854],["Candler","2021-09-30",10837,18,8872],["Candler","2021-10-01",10837,25,8897],["Candler","2021-10-02",10837,3,8900],["Candler","2021-10-03",10837,6,8906],["Candler","2021-10-04",10837,10,8916],["Candler","2021-10-05",10837,23,8939],["Candler","2021-10-06",10837,16,8955],["Candler","2021-10-07",10837,17,8972],["Candler","2021-10-08",10837,24,8996],["Candler","2021-10-09",10837,7,9003],["Candler","2021-10-11",10837,8,9011],["Candler","2021-10-12",10837,14,9025],["Candler","2021-10-13",10837,13,9038],["Candler","2021-10-14",10837,16,9054],["Candler","2021-10-15",10837,18,9072],["Candler","2021-10-16",10837,1,9073],["Candler","2021-10-17",10837,2,9075],["Candler","2021-10-18",10837,15,9090],["Candler","2021-10-19",10837,9,9099],["Candler","2021-10-20",10837,5,9104],["Candler","2021-10-21",10837,14,9118],["Candler","2021-10-22",10837,33,9151],["Candler","2021-10-23",10837,11,9162],["Candler","2021-10-24",10837,3,9165],["Candler","2021-10-25",10837,34,9199],["Candler","2021-10-26",10837,81,9280],["Candler","2021-10-27",10837,25,9305],["Candler","2021-10-28",10837,25,9330],["Candler","2021-10-29",10837,55,9385],["Candler","2021-10-30",10837,11,9396],["Candler","2021-10-31",10837,7,9403],["Candler","2021-11-01",10837,23,9426],["Candler","2021-11-02",10837,67,9493],["Candler","2021-11-03",10837,61,9554],["Candler","2021-11-04",10837,22,9576],["Candler","2021-11-05",10837,48,9624],["Candler","2021-11-06",10837,4,9628],["Candler","2021-11-07",10837,3,9631],["Candler","2021-11-08",10837,19,9650],["Candler","2021-11-09",10837,51,9701],["Candler","2021-11-10",10837,28,9729],["Candler","2021-11-11",10837,15,9744],["Candler","2021-11-12",10837,68,9812],["Candler","2021-11-13",10837,5,9817],["Candler","2021-11-14",10837,2,9819],["Candler","2021-11-15",10837,20,9839],["Candler","2021-11-16",10837,46,9885],["Candler","2021-11-17",10837,21,9906],["Candler","2021-11-18",10837,27,9933],["Candler","2021-11-19",10837,43,9976],["Candler","2021-11-20",10837,2,9978],["Candler","2021-11-21",10837,3,9981],["Candler","2021-11-22",10837,17,9998],["Candler","2021-11-23",10837,45,10043],["Candler","2021-11-24",10837,11,10054],["Candler","2021-11-26",10837,20,10074],["Candler","2021-11-27",10837,9,10083],["Candler","2021-11-28",10837,7,10090],["Candler","2021-11-29",10837,25,10115],["Candler","2021-11-30",10837,62,10177],["Candler","2021-12-01",10837,15,10192],["Candler","2021-12-02",10837,40,10232],["Candler","2021-12-03",10837,43,10275],["Candler","2021-12-04",10837,8,10283],["Candler","2021-12-05",10837,2,10285],["Candler","2021-12-06",10837,23,10308],["Candler","2021-12-07",10837,38,10346],["Candler","2021-12-08",10837,19,10365],["Candler","2021-12-09",10837,27,10392],["Candler","2021-12-10",10837,54,10446],["Candler","2021-12-11",10837,5,10451],["Candler","2021-12-12",10837,2,10453],["Candler","2021-12-13",10837,20,10473],["Candler","2021-12-14",10837,27,10500],["Candler","2021-12-15",10837,16,10516],["Candler","2021-12-16",10837,17,10533],["Candler","2021-12-17",10837,28,10561],["Candler","2021-12-18",10837,9,10570],["Candler","2021-12-19",10837,4,10574],["Candler","2021-12-20",10837,24,10598],["Candler","2021-12-21",10837,48,10646],["Candler","2021-12-22",10837,18,10664],["Candler","2021-12-23",10837,16,10680],["Candler","2021-12-24",10837,3,10683],["Candler","2021-12-27",10837,12,10695],["Candler","2021-12-28",10837,49,10744],["Candler","2021-12-29",10837,30,10774],["Candler","2021-12-30",10837,16,10790],["Candler","2021-12-31",10837,17,10807],["Candler","2022-01-01",10837,1,10808],["Candler","2022-01-02",10837,3,10811],["Candler","2022-01-03",10837,11,10822],["Carroll","2020-12-16",120119,1,1],["Carroll","2020-12-18",120119,8,9],["Carroll","2020-12-19",120119,3,12],["Carroll","2020-12-20",120119,4,16],["Carroll","2020-12-21",120119,19,35],["Carroll","2020-12-22",120119,166,201],["Carroll","2020-12-23",120119,274,475],["Carroll","2020-12-24",120119,46,521],["Carroll","2020-12-26",120119,6,527],["Carroll","2020-12-27",120119,10,537],["Carroll","2020-12-28",120119,152,689],["Carroll","2020-12-29",120119,156,845],["Carroll","2020-12-30",120119,72,917],["Carroll","2020-12-31",120119,135,1052],["Carroll","2021-01-01",120119,9,1061],["Carroll","2021-01-02",120119,7,1068],["Carroll","2021-01-03",120119,72,1140],["Carroll","2021-01-04",120119,216,1356],["Carroll","2021-01-05",120119,129,1485],["Carroll","2021-01-06",120119,88,1573],["Carroll","2021-01-07",120119,249,1822],["Carroll","2021-01-08",120119,84,1906],["Carroll","2021-01-09",120119,24,1930],["Carroll","2021-01-10",120119,72,2002],["Carroll","2021-01-11",120119,109,2111],["Carroll","2021-01-12",120119,1160,3271],["Carroll","2021-01-13",120119,426,3697],["Carroll","2021-01-14",120119,421,4118],["Carroll","2021-01-15",120119,296,4414],["Carroll","2021-01-16",120119,145,4559],["Carroll","2021-01-17",120119,43,4602],["Carroll","2021-01-18",120119,607,5209],["Carroll","2021-01-19",120119,622,5831],["Carroll","2021-01-20",120119,894,6725],["Carroll","2021-01-21",120119,402,7127],["Carroll","2021-01-22",120119,210,7337],["Carroll","2021-01-23",120119,117,7454],["Carroll","2021-01-24",120119,109,7563],["Carroll","2021-01-25",120119,254,7817],["Carroll","2021-01-26",120119,261,8078],["Carroll","2021-01-27",120119,1180,9258],["Carroll","2021-01-28",120119,356,9614],["Carroll","2021-01-29",120119,168,9782],["Carroll","2021-01-30",120119,45,9827],["Carroll","2021-01-31",120119,88,9915],["Carroll","2021-02-01",120119,160,10075],["Carroll","2021-02-02",120119,328,10403],["Carroll","2021-02-03",120119,357,10760],["Carroll","2021-02-04",120119,609,11369],["Carroll","2021-02-05",120119,190,11559],["Carroll","2021-02-06",120119,39,11598],["Carroll","2021-02-07",120119,9,11607],["Carroll","2021-02-08",120119,430,12037],["Carroll","2021-02-09",120119,1129,13166],["Carroll","2021-02-10",120119,391,13557],["Carroll","2021-02-11",120119,254,13811],["Carroll","2021-02-12",120119,531,14342],["Carroll","2021-02-13",120119,195,14537],["Carroll","2021-02-14",120119,56,14593],["Carroll","2021-02-15",120119,270,14863],["Carroll","2021-02-16",120119,356,15219],["Carroll","2021-02-17",120119,1736,16955],["Carroll","2021-02-18",120119,352,17307],["Carroll","2021-02-19",120119,281,17588],["Carroll","2021-02-20",120119,72,17660],["Carroll","2021-02-21",120119,34,17694],["Carroll","2021-02-22",120119,199,17893],["Carroll","2021-02-23",120119,634,18527],["Carroll","2021-02-24",120119,347,18874],["Carroll","2021-02-25",120119,281,19155],["Carroll","2021-02-26",120119,281,19436],["Carroll","2021-02-27",120119,81,19517],["Carroll","2021-02-28",120119,104,19621],["Carroll","2021-03-01",120119,231,19852],["Carroll","2021-03-02",120119,512,20364],["Carroll","2021-03-03",120119,377,20741],["Carroll","2021-03-04",120119,312,21053],["Carroll","2021-03-05",120119,327,21380],["Carroll","2021-03-06",120119,107,21487],["Carroll","2021-03-07",120119,85,21572],["Carroll","2021-03-08",120119,255,21827],["Carroll","2021-03-09",120119,351,22178],["Carroll","2021-03-10",120119,1487,23665],["Carroll","2021-03-11",120119,267,23932],["Carroll","2021-03-12",120119,351,24283],["Carroll","2021-03-13",120119,165,24448],["Carroll","2021-03-14",120119,75,24523],["Carroll","2021-03-15",120119,379,24902],["Carroll","2021-03-16",120119,876,25778],["Carroll","2021-03-17",120119,904,26682],["Carroll","2021-03-18",120119,397,27079],["Carroll","2021-03-19",120119,457,27536],["Carroll","2021-03-20",120119,178,27714],["Carroll","2021-03-21",120119,125,27839],["Carroll","2021-03-22",120119,345,28184],["Carroll","2021-03-23",120119,776,28960],["Carroll","2021-03-24",120119,461,29421],["Carroll","2021-03-25",120119,513,29934],["Carroll","2021-03-26",120119,539,30473],["Carroll","2021-03-27",120119,221,30694],["Carroll","2021-03-28",120119,210,30904],["Carroll","2021-03-29",120119,385,31289],["Carroll","2021-03-30",120119,1754,33043],["Carroll","2021-03-31",120119,2002,35045],["Carroll","2021-04-01",120119,823,35868],["Carroll","2021-04-02",120119,421,36289],["Carroll","2021-04-03",120119,200,36489],["Carroll","2021-04-04",120119,202,36691],["Carroll","2021-04-05",120119,496,37187],["Carroll","2021-04-06",120119,689,37876],["Carroll","2021-04-07",120119,743,38619],["Carroll","2021-04-08",120119,643,39262],["Carroll","2021-04-09",120119,476,39738],["Carroll","2021-04-10",120119,312,40050],["Carroll","2021-04-11",120119,192,40242],["Carroll","2021-04-12",120119,642,40884],["Carroll","2021-04-13",120119,882,41766],["Carroll","2021-04-14",120119,1208,42974],["Carroll","2021-04-15",120119,646,43620],["Carroll","2021-04-16",120119,721,44341],["Carroll","2021-04-17",120119,437,44778],["Carroll","2021-04-18",120119,164,44942],["Carroll","2021-04-19",120119,545,45487],["Carroll","2021-04-20",120119,580,46067],["Carroll","2021-04-21",120119,1926,47993],["Carroll","2021-04-22",120119,748,48741],["Carroll","2021-04-23",120119,592,49333],["Carroll","2021-04-24",120119,239,49572],["Carroll","2021-04-25",120119,103,49675],["Carroll","2021-04-26",120119,497,50172],["Carroll","2021-04-27",120119,773,50945],["Carroll","2021-04-28",120119,1123,52068],["Carroll","2021-04-29",120119,486,52554],["Carroll","2021-04-30",120119,545,53099],["Carroll","2021-05-01",120119,273,53372],["Carroll","2021-05-02",120119,120,53492],["Carroll","2021-05-03",120119,408,53900],["Carroll","2021-05-04",120119,404,54304],["Carroll","2021-05-05",120119,644,54948],["Carroll","2021-05-06",120119,431,55379],["Carroll","2021-05-07",120119,555,55934],["Carroll","2021-05-08",120119,205,56139],["Carroll","2021-05-09",120119,109,56248],["Carroll","2021-05-10",120119,289,56537],["Carroll","2021-05-11",120119,391,56928],["Carroll","2021-05-12",120119,476,57404],["Carroll","2021-05-13",120119,344,57748],["Carroll","2021-05-14",120119,368,58116],["Carroll","2021-05-15",120119,525,58641],["Carroll","2021-05-16",120119,144,58785],["Carroll","2021-05-17",120119,287,59072],["Carroll","2021-05-18",120119,481,59553],["Carroll","2021-05-19",120119,745,60298],["Carroll","2021-05-20",120119,375,60673],["Carroll","2021-05-21",120119,400,61073],["Carroll","2021-05-22",120119,173,61246],["Carroll","2021-05-23",120119,95,61341],["Carroll","2021-05-24",120119,258,61599],["Carroll","2021-05-25",120119,248,61847],["Carroll","2021-05-26",120119,235,62082],["Carroll","2021-05-27",120119,241,62323],["Carroll","2021-05-28",120119,269,62592],["Carroll","2021-05-29",120119,171,62763],["Carroll","2021-05-30",120119,74,62837],["Carroll","2021-05-31",120119,53,62890],["Carroll","2021-06-01",120119,213,63103],["Carroll","2021-06-02",120119,230,63333],["Carroll","2021-06-03",120119,234,63567],["Carroll","2021-06-04",120119,305,63872],["Carroll","2021-06-05",120119,179,64051],["Carroll","2021-06-06",120119,98,64149],["Carroll","2021-06-07",120119,179,64328],["Carroll","2021-06-08",120119,192,64520],["Carroll","2021-06-09",120119,263,64783],["Carroll","2021-06-10",120119,215,64998],["Carroll","2021-06-11",120119,249,65247],["Carroll","2021-06-12",120119,151,65398],["Carroll","2021-06-13",120119,72,65470],["Carroll","2021-06-14",120119,175,65645],["Carroll","2021-06-15",120119,171,65816],["Carroll","2021-06-16",120119,173,65989],["Carroll","2021-06-17",120119,189,66178],["Carroll","2021-06-18",120119,279,66457],["Carroll","2021-06-19",120119,130,66587],["Carroll","2021-06-20",120119,45,66632],["Carroll","2021-06-21",120119,134,66766],["Carroll","2021-06-22",120119,153,66919],["Carroll","2021-06-23",120119,133,67052],["Carroll","2021-06-24",120119,115,67167],["Carroll","2021-06-25",120119,188,67355],["Carroll","2021-06-26",120119,109,67464],["Carroll","2021-06-27",120119,46,67510],["Carroll","2021-06-28",120119,112,67622],["Carroll","2021-06-29",120119,115,67737],["Carroll","2021-06-30",120119,100,67837],["Carroll","2021-07-01",120119,104,67941],["Carroll","2021-07-02",120119,136,68077],["Carroll","2021-07-03",120119,71,68148],["Carroll","2021-07-04",120119,6,68154],["Carroll","2021-07-05",120119,86,68240],["Carroll","2021-07-06",120119,108,68348],["Carroll","2021-07-07",120119,173,68521],["Carroll","2021-07-08",120119,132,68653],["Carroll","2021-07-09",120119,152,68805],["Carroll","2021-07-10",120119,75,68880],["Carroll","2021-07-11",120119,30,68910],["Carroll","2021-07-12",120119,103,69013],["Carroll","2021-07-13",120119,119,69132],["Carroll","2021-07-14",120119,115,69247],["Carroll","2021-07-15",120119,156,69403],["Carroll","2021-07-16",120119,146,69549],["Carroll","2021-07-17",120119,103,69652],["Carroll","2021-07-18",120119,57,69709],["Carroll","2021-07-19",120119,152,69861],["Carroll","2021-07-20",120119,130,69991],["Carroll","2021-07-21",120119,131,70122],["Carroll","2021-07-22",120119,156,70278],["Carroll","2021-07-23",120119,208,70486],["Carroll","2021-07-24",120119,138,70624],["Carroll","2021-07-25",120119,105,70729],["Carroll","2021-07-26",120119,178,70907],["Carroll","2021-07-27",120119,203,71110],["Carroll","2021-07-28",120119,220,71330],["Carroll","2021-07-29",120119,217,71547],["Carroll","2021-07-30",120119,343,71890],["Carroll","2021-07-31",120119,158,72048],["Carroll","2021-08-01",120119,109,72157],["Carroll","2021-08-02",120119,209,72366],["Carroll","2021-08-03",120119,250,72616],["Carroll","2021-08-04",120119,245,72861],["Carroll","2021-08-05",120119,218,73079],["Carroll","2021-08-06",120119,288,73367],["Carroll","2021-08-07",120119,187,73554],["Carroll","2021-08-08",120119,106,73660],["Carroll","2021-08-09",120119,248,73908],["Carroll","2021-08-10",120119,283,74191],["Carroll","2021-08-11",120119,211,74402],["Carroll","2021-08-12",120119,273,74675],["Carroll","2021-08-13",120119,340,75015],["Carroll","2021-08-14",120119,197,75212],["Carroll","2021-08-15",120119,147,75359],["Carroll","2021-08-16",120119,267,75626],["Carroll","2021-08-17",120119,228,75854],["Carroll","2021-08-18",120119,256,76110],["Carroll","2021-08-19",120119,283,76393],["Carroll","2021-08-20",120119,382,76775],["Carroll","2021-08-21",120119,246,77021],["Carroll","2021-08-22",120119,141,77162],["Carroll","2021-08-23",120119,327,77489],["Carroll","2021-08-24",120119,298,77787],["Carroll","2021-08-25",120119,303,78090],["Carroll","2021-08-26",120119,403,78493],["Carroll","2021-08-27",120119,428,78921],["Carroll","2021-08-28",120119,239,79160],["Carroll","2021-08-29",120119,148,79308],["Carroll","2021-08-30",120119,325,79633],["Carroll","2021-08-31",120119,265,79898],["Carroll","2021-09-01",120119,440,80338],["Carroll","2021-09-02",120119,271,80609],["Carroll","2021-09-03",120119,383,80992],["Carroll","2021-09-04",120119,213,81205],["Carroll","2021-09-05",120119,151,81356],["Carroll","2021-09-06",120119,61,81417],["Carroll","2021-09-07",120119,282,81699],["Carroll","2021-09-08",120119,304,82003],["Carroll","2021-09-09",120119,283,82286],["Carroll","2021-09-10",120119,410,82696],["Carroll","2021-09-11",120119,193,82889],["Carroll","2021-09-12",120119,129,83018],["Carroll","2021-09-13",120119,252,83270],["Carroll","2021-09-14",120119,217,83487],["Carroll","2021-09-15",120119,224,83711],["Carroll","2021-09-16",120119,332,84043],["Carroll","2021-09-17",120119,325,84368],["Carroll","2021-09-18",120119,154,84522],["Carroll","2021-09-19",120119,125,84647],["Carroll","2021-09-20",120119,234,84881],["Carroll","2021-09-21",120119,197,85078],["Carroll","2021-09-22",120119,202,85280],["Carroll","2021-09-23",120119,165,85445],["Carroll","2021-09-24",120119,298,85743],["Carroll","2021-09-25",120119,140,85883],["Carroll","2021-09-26",120119,118,86001],["Carroll","2021-09-27",120119,317,86318],["Carroll","2021-09-28",120119,385,86703],["Carroll","2021-09-29",120119,266,86969],["Carroll","2021-09-30",120119,199,87168],["Carroll","2021-10-01",120119,305,87473],["Carroll","2021-10-02",120119,125,87598],["Carroll","2021-10-03",120119,94,87692],["Carroll","2021-10-04",120119,197,87889],["Carroll","2021-10-05",120119,571,88460],["Carroll","2021-10-06",120119,482,88942],["Carroll","2021-10-07",120119,217,89159],["Carroll","2021-10-08",120119,257,89416],["Carroll","2021-10-09",120119,136,89552],["Carroll","2021-10-10",120119,62,89614],["Carroll","2021-10-11",120119,120,89734],["Carroll","2021-10-12",120119,150,89884],["Carroll","2021-10-13",120119,130,90014],["Carroll","2021-10-14",120119,122,90136],["Carroll","2021-10-15",120119,200,90336],["Carroll","2021-10-16",120119,86,90422],["Carroll","2021-10-17",120119,49,90471],["Carroll","2021-10-18",120119,153,90624],["Carroll","2021-10-19",120119,164,90788],["Carroll","2021-10-20",120119,125,90913],["Carroll","2021-10-21",120119,212,91125],["Carroll","2021-10-22",120119,302,91427],["Carroll","2021-10-23",120119,203,91630],["Carroll","2021-10-24",120119,142,91772],["Carroll","2021-10-25",120119,304,92076],["Carroll","2021-10-26",120119,286,92362],["Carroll","2021-10-27",120119,619,92981],["Carroll","2021-10-28",120119,273,93254],["Carroll","2021-10-29",120119,384,93638],["Carroll","2021-10-30",120119,143,93781],["Carroll","2021-10-31",120119,78,93859],["Carroll","2021-11-01",120119,247,94106],["Carroll","2021-11-02",120119,271,94377],["Carroll","2021-11-03",120119,270,94647],["Carroll","2021-11-04",120119,276,94923],["Carroll","2021-11-05",120119,255,95178],["Carroll","2021-11-06",120119,118,95296],["Carroll","2021-11-07",120119,72,95368],["Carroll","2021-11-08",120119,219,95587],["Carroll","2021-11-09",120119,233,95820],["Carroll","2021-11-10",120119,265,96085],["Carroll","2021-11-11",120119,213,96298],["Carroll","2021-11-12",120119,345,96643],["Carroll","2021-11-13",120119,135,96778],["Carroll","2021-11-14",120119,83,96861],["Carroll","2021-11-15",120119,228,97089],["Carroll","2021-11-16",120119,201,97290],["Carroll","2021-11-17",120119,334,97624],["Carroll","2021-11-18",120119,246,97870],["Carroll","2021-11-19",120119,352,98222],["Carroll","2021-11-20",120119,187,98409],["Carroll","2021-11-21",120119,104,98513],["Carroll","2021-11-22",120119,226,98739],["Carroll","2021-11-23",120119,198,98937],["Carroll","2021-11-24",120119,129,99066],["Carroll","2021-11-25",120119,1,99067],["Carroll","2021-11-26",120119,156,99223],["Carroll","2021-11-27",120119,143,99366],["Carroll","2021-11-28",120119,110,99476],["Carroll","2021-11-29",120119,274,99750],["Carroll","2021-11-30",120119,357,100107],["Carroll","2021-12-01",120119,318,100425],["Carroll","2021-12-02",120119,372,100797],["Carroll","2021-12-03",120119,422,101219],["Carroll","2021-12-04",120119,219,101438],["Carroll","2021-12-05",120119,114,101552],["Carroll","2021-12-06",120119,257,101809],["Carroll","2021-12-07",120119,263,102072],["Carroll","2021-12-08",120119,212,102284],["Carroll","2021-12-09",120119,258,102542],["Carroll","2021-12-10",120119,281,102823],["Carroll","2021-12-11",120119,149,102972],["Carroll","2021-12-12",120119,74,103046],["Carroll","2021-12-13",120119,184,103230],["Carroll","2021-12-14",120119,211,103441],["Carroll","2021-12-15",120119,167,103608],["Carroll","2021-12-16",120119,191,103799],["Carroll","2021-12-17",120119,271,104070],["Carroll","2021-12-18",120119,153,104223],["Carroll","2021-12-19",120119,82,104305],["Carroll","2021-12-20",120119,214,104519],["Carroll","2021-12-21",120119,305,104824],["Carroll","2021-12-22",120119,247,105071],["Carroll","2021-12-23",120119,214,105285],["Carroll","2021-12-24",120119,55,105340],["Carroll","2021-12-26",120119,76,105416],["Carroll","2021-12-27",120119,269,105685],["Carroll","2021-12-28",120119,235,105920],["Carroll","2021-12-29",120119,248,106168],["Carroll","2021-12-30",120119,227,106395],["Carroll","2021-12-31",120119,114,106509],["Carroll","2022-01-01",120119,24,106533],["Carroll","2022-01-02",120119,85,106618],["Carroll","2022-01-03",120119,56,106674],["Catoosa","2020-12-12",68771,1,1],["Catoosa","2020-12-17",68771,1,2],["Catoosa","2020-12-18",68771,39,41],["Catoosa","2020-12-19",68771,2,43],["Catoosa","2020-12-20",68771,7,50],["Catoosa","2020-12-21",68771,42,92],["Catoosa","2020-12-22",68771,39,131],["Catoosa","2020-12-23",68771,25,156],["Catoosa","2020-12-24",68771,3,159],["Catoosa","2020-12-26",68771,1,160],["Catoosa","2020-12-27",68771,3,163],["Catoosa","2020-12-28",68771,59,222],["Catoosa","2020-12-29",68771,36,258],["Catoosa","2020-12-30",68771,37,295],["Catoosa","2020-12-31",68771,15,310],["Catoosa","2021-01-01",68771,7,317],["Catoosa","2021-01-03",68771,38,355],["Catoosa","2021-01-04",68771,43,398],["Catoosa","2021-01-05",68771,49,447],["Catoosa","2021-01-06",68771,52,499],["Catoosa","2021-01-07",68771,48,547],["Catoosa","2021-01-08",68771,111,658],["Catoosa","2021-01-09",68771,22,680],["Catoosa","2021-01-10",68771,5,685],["Catoosa","2021-01-11",68771,132,817],["Catoosa","2021-01-12",68771,231,1048],["Catoosa","2021-01-13",68771,385,1433],["Catoosa","2021-01-14",68771,437,1870],["Catoosa","2021-01-15",68771,329,2199],["Catoosa","2021-01-16",68771,52,2251],["Catoosa","2021-01-17",68771,12,2263],["Catoosa","2021-01-18",68771,494,2757],["Catoosa","2021-01-19",68771,378,3135],["Catoosa","2021-01-20",68771,447,3582],["Catoosa","2021-01-21",68771,282,3864],["Catoosa","2021-01-22",68771,47,3911],["Catoosa","2021-01-23",68771,11,3922],["Catoosa","2021-01-24",68771,28,3950],["Catoosa","2021-01-25",68771,75,4025],["Catoosa","2021-01-26",68771,337,4362],["Catoosa","2021-01-27",68771,713,5075],["Catoosa","2021-01-28",68771,885,5960],["Catoosa","2021-01-29",68771,102,6062],["Catoosa","2021-01-30",68771,7,6069],["Catoosa","2021-01-31",68771,4,6073],["Catoosa","2021-02-01",68771,253,6326],["Catoosa","2021-02-02",68771,173,6499],["Catoosa","2021-02-03",68771,873,7372],["Catoosa","2021-02-04",68771,183,7555],["Catoosa","2021-02-05",68771,160,7715],["Catoosa","2021-02-06",68771,6,7721],["Catoosa","2021-02-07",68771,8,7729],["Catoosa","2021-02-08",68771,295,8024],["Catoosa","2021-02-09",68771,353,8377],["Catoosa","2021-02-10",68771,946,9323],["Catoosa","2021-02-11",68771,308,9631],["Catoosa","2021-02-12",68771,176,9807],["Catoosa","2021-02-13",68771,20,9827],["Catoosa","2021-02-14",68771,12,9839],["Catoosa","2021-02-15",68771,277,10116],["Catoosa","2021-02-16",68771,92,10208],["Catoosa","2021-02-17",68771,63,10271],["Catoosa","2021-02-18",68771,73,10344],["Catoosa","2021-02-19",68771,82,10426],["Catoosa","2021-02-20",68771,11,10437],["Catoosa","2021-02-21",68771,2,10439],["Catoosa","2021-02-22",68771,59,10498],["Catoosa","2021-02-23",68771,43,10541],["Catoosa","2021-02-24",68771,1179,11720],["Catoosa","2021-02-25",68771,1010,12730],["Catoosa","2021-02-26",68771,1454,14184],["Catoosa","2021-02-27",68771,17,14201],["Catoosa","2021-02-28",68771,14,14215],["Catoosa","2021-03-01",68771,80,14295],["Catoosa","2021-03-02",68771,492,14787],["Catoosa","2021-03-03",68771,615,15402],["Catoosa","2021-03-04",68771,321,15723],["Catoosa","2021-03-05",68771,162,15885],["Catoosa","2021-03-06",68771,15,15900],["Catoosa","2021-03-07",68771,20,15920],["Catoosa","2021-03-08",68771,312,16232],["Catoosa","2021-03-09",68771,357,16589],["Catoosa","2021-03-10",68771,973,17562],["Catoosa","2021-03-11",68771,338,17900],["Catoosa","2021-03-12",68771,336,18236],["Catoosa","2021-03-13",68771,25,18261],["Catoosa","2021-03-14",68771,22,18283],["Catoosa","2021-03-15",68771,135,18418],["Catoosa","2021-03-16",68771,141,18559],["Catoosa","2021-03-17",68771,746,19305],["Catoosa","2021-03-18",68771,733,20038],["Catoosa","2021-03-19",68771,124,20162],["Catoosa","2021-03-20",68771,41,20203],["Catoosa","2021-03-21",68771,28,20231],["Catoosa","2021-03-22",68771,124,20355],["Catoosa","2021-03-23",68771,118,20473],["Catoosa","2021-03-24",68771,1075,21548],["Catoosa","2021-03-25",68771,534,22082],["Catoosa","2021-03-26",68771,641,22723],["Catoosa","2021-03-27",68771,43,22766],["Catoosa","2021-03-28",68771,68,22834],["Catoosa","2021-03-29",68771,215,23049],["Catoosa","2021-03-30",68771,286,23335],["Catoosa","2021-03-31",68771,589,23924],["Catoosa","2021-04-01",68771,1347,25271],["Catoosa","2021-04-02",68771,187,25458],["Catoosa","2021-04-03",68771,39,25497],["Catoosa","2021-04-04",68771,65,25562],["Catoosa","2021-04-05",68771,210,25772],["Catoosa","2021-04-06",68771,194,25966],["Catoosa","2021-04-07",68771,438,26404],["Catoosa","2021-04-08",68771,797,27201],["Catoosa","2021-04-09",68771,238,27439],["Catoosa","2021-04-10",68771,391,27830],["Catoosa","2021-04-11",68771,59,27889],["Catoosa","2021-04-12",68771,228,28117],["Catoosa","2021-04-13",68771,378,28495],["Catoosa","2021-04-14",68771,454,28949],["Catoosa","2021-04-15",68771,186,29135],["Catoosa","2021-04-16",68771,257,29392],["Catoosa","2021-04-17",68771,28,29420],["Catoosa","2021-04-18",68771,41,29461],["Catoosa","2021-04-19",68771,160,29621],["Catoosa","2021-04-20",68771,298,29919],["Catoosa","2021-04-21",68771,994,30913],["Catoosa","2021-04-22",68771,703,31616],["Catoosa","2021-04-23",68771,297,31913],["Catoosa","2021-04-24",68771,68,31981],["Catoosa","2021-04-25",68771,28,32009],["Catoosa","2021-04-26",68771,198,32207],["Catoosa","2021-04-27",68771,195,32402],["Catoosa","2021-04-28",68771,375,32777],["Catoosa","2021-04-29",68771,422,33199],["Catoosa","2021-04-30",68771,234,33433],["Catoosa","2021-05-01",68771,89,33522],["Catoosa","2021-05-02",68771,47,33569],["Catoosa","2021-05-03",68771,128,33697],["Catoosa","2021-05-04",68771,223,33920],["Catoosa","2021-05-05",68771,161,34081],["Catoosa","2021-05-06",68771,422,34503],["Catoosa","2021-05-07",68771,188,34691],["Catoosa","2021-05-08",68771,72,34763],["Catoosa","2021-05-09",68771,18,34781],["Catoosa","2021-05-10",68771,87,34868],["Catoosa","2021-05-11",68771,124,34992],["Catoosa","2021-05-12",68771,109,35101],["Catoosa","2021-05-13",68771,468,35569],["Catoosa","2021-05-14",68771,142,35711],["Catoosa","2021-05-15",68771,73,35784],["Catoosa","2021-05-16",68771,54,35838],["Catoosa","2021-05-17",68771,101,35939],["Catoosa","2021-05-18",68771,163,36102],["Catoosa","2021-05-19",68771,111,36213],["Catoosa","2021-05-20",68771,141,36354],["Catoosa","2021-05-21",68771,134,36488],["Catoosa","2021-05-22",68771,367,36855],["Catoosa","2021-05-23",68771,55,36910],["Catoosa","2021-05-24",68771,89,36999],["Catoosa","2021-05-25",68771,155,37154],["Catoosa","2021-05-26",68771,80,37234],["Catoosa","2021-05-27",68771,89,37323],["Catoosa","2021-05-28",68771,84,37407],["Catoosa","2021-05-29",68771,55,37462],["Catoosa","2021-05-30",68771,21,37483],["Catoosa","2021-05-31",68771,17,37500],["Catoosa","2021-06-01",68771,147,37647],["Catoosa","2021-06-02",68771,71,37718],["Catoosa","2021-06-03",68771,205,37923],["Catoosa","2021-06-04",68771,113,38036],["Catoosa","2021-06-05",68771,62,38098],["Catoosa","2021-06-06",68771,28,38126],["Catoosa","2021-06-07",68771,66,38192],["Catoosa","2021-06-08",68771,62,38254],["Catoosa","2021-06-09",68771,70,38324],["Catoosa","2021-06-10",68771,127,38451],["Catoosa","2021-06-11",68771,104,38555],["Catoosa","2021-06-12",68771,75,38630],["Catoosa","2021-06-13",68771,29,38659],["Catoosa","2021-06-14",68771,235,38894],["Catoosa","2021-06-15",68771,133,39027],["Catoosa","2021-06-16",68771,80,39107],["Catoosa","2021-06-17",68771,99,39206],["Catoosa","2021-06-18",68771,92,39298],["Catoosa","2021-06-19",68771,53,39351],["Catoosa","2021-06-20",68771,26,39377],["Catoosa","2021-06-21",68771,45,39422],["Catoosa","2021-06-22",68771,77,39499],["Catoosa","2021-06-23",68771,49,39548],["Catoosa","2021-06-24",68771,138,39686],["Catoosa","2021-06-25",68771,67,39753],["Catoosa","2021-06-26",68771,43,39796],["Catoosa","2021-06-27",68771,26,39822],["Catoosa","2021-06-28",68771,40,39862],["Catoosa","2021-06-29",68771,42,39904],["Catoosa","2021-06-30",68771,49,39953],["Catoosa","2021-07-01",68771,105,40058],["Catoosa","2021-07-02",68771,68,40126],["Catoosa","2021-07-03",68771,26,40152],["Catoosa","2021-07-04",68771,6,40158],["Catoosa","2021-07-05",68771,23,40181],["Catoosa","2021-07-06",68771,67,40248],["Catoosa","2021-07-07",68771,35,40283],["Catoosa","2021-07-08",68771,78,40361],["Catoosa","2021-07-09",68771,65,40426],["Catoosa","2021-07-10",68771,38,40464],["Catoosa","2021-07-11",68771,19,40483],["Catoosa","2021-07-12",68771,32,40515],["Catoosa","2021-07-13",68771,35,40550],["Catoosa","2021-07-14",68771,60,40610],["Catoosa","2021-07-15",68771,93,40703],["Catoosa","2021-07-16",68771,68,40771],["Catoosa","2021-07-17",68771,36,40807],["Catoosa","2021-07-18",68771,27,40834],["Catoosa","2021-07-19",68771,53,40887],["Catoosa","2021-07-20",68771,78,40965],["Catoosa","2021-07-21",68771,58,41023],["Catoosa","2021-07-22",68771,189,41212],["Catoosa","2021-07-23",68771,98,41310],["Catoosa","2021-07-24",68771,81,41391],["Catoosa","2021-07-25",68771,35,41426],["Catoosa","2021-07-26",68771,67,41493],["Catoosa","2021-07-27",68771,97,41590],["Catoosa","2021-07-28",68771,77,41667],["Catoosa","2021-07-29",68771,181,41848],["Catoosa","2021-07-30",68771,124,41972],["Catoosa","2021-07-31",68771,72,42044],["Catoosa","2021-08-01",68771,54,42098],["Catoosa","2021-08-02",68771,94,42192],["Catoosa","2021-08-03",68771,82,42274],["Catoosa","2021-08-04",68771,109,42383],["Catoosa","2021-08-05",68771,222,42605],["Catoosa","2021-08-06",68771,123,42728],["Catoosa","2021-08-07",68771,92,42820],["Catoosa","2021-08-08",68771,63,42883],["Catoosa","2021-08-09",68771,98,42981],["Catoosa","2021-08-10",68771,131,43112],["Catoosa","2021-08-11",68771,129,43241],["Catoosa","2021-08-12",68771,273,43514],["Catoosa","2021-08-13",68771,175,43689],["Catoosa","2021-08-14",68771,125,43814],["Catoosa","2021-08-15",68771,83,43897],["Catoosa","2021-08-16",68771,112,44009],["Catoosa","2021-08-17",68771,145,44154],["Catoosa","2021-08-18",68771,136,44290],["Catoosa","2021-08-19",68771,281,44571],["Catoosa","2021-08-20",68771,186,44757],["Catoosa","2021-08-21",68771,118,44875],["Catoosa","2021-08-22",68771,64,44939],["Catoosa","2021-08-23",68771,132,45071],["Catoosa","2021-08-24",68771,160,45231],["Catoosa","2021-08-25",68771,152,45383],["Catoosa","2021-08-26",68771,254,45637],["Catoosa","2021-08-27",68771,175,45812],["Catoosa","2021-08-28",68771,144,45956],["Catoosa","2021-08-29",68771,90,46046],["Catoosa","2021-08-30",68771,153,46199],["Catoosa","2021-08-31",68771,136,46335],["Catoosa","2021-09-01",68771,160,46495],["Catoosa","2021-09-02",68771,224,46719],["Catoosa","2021-09-03",68771,200,46919],["Catoosa","2021-09-04",68771,97,47016],["Catoosa","2021-09-05",68771,91,47107],["Catoosa","2021-09-06",68771,29,47136],["Catoosa","2021-09-07",68771,159,47295],["Catoosa","2021-09-08",68771,105,47400],["Catoosa","2021-09-09",68771,255,47655],["Catoosa","2021-09-10",68771,182,47837],["Catoosa","2021-09-11",68771,91,47928],["Catoosa","2021-09-12",68771,66,47994],["Catoosa","2021-09-13",68771,135,48129],["Catoosa","2021-09-14",68771,121,48250],["Catoosa","2021-09-15",68771,107,48357],["Catoosa","2021-09-16",68771,187,48544],["Catoosa","2021-09-17",68771,124,48668],["Catoosa","2021-09-18",68771,86,48754],["Catoosa","2021-09-19",68771,56,48810],["Catoosa","2021-09-20",68771,85,48895],["Catoosa","2021-09-21",68771,77,48972],["Catoosa","2021-09-22",68771,72,49044],["Catoosa","2021-09-23",68771,104,49148],["Catoosa","2021-09-24",68771,97,49245],["Catoosa","2021-09-25",68771,60,49305],["Catoosa","2021-09-26",68771,38,49343],["Catoosa","2021-09-27",68771,98,49441],["Catoosa","2021-09-28",68771,109,49550],["Catoosa","2021-09-29",68771,122,49672],["Catoosa","2021-09-30",68771,192,49864],["Catoosa","2021-10-01",68771,151,50015],["Catoosa","2021-10-02",68771,50,50065],["Catoosa","2021-10-03",68771,47,50112],["Catoosa","2021-10-04",68771,80,50192],["Catoosa","2021-10-05",68771,52,50244],["Catoosa","2021-10-06",68771,100,50344],["Catoosa","2021-10-07",68771,166,50510],["Catoosa","2021-10-08",68771,82,50592],["Catoosa","2021-10-09",68771,43,50635],["Catoosa","2021-10-10",68771,28,50663],["Catoosa","2021-10-11",68771,67,50730],["Catoosa","2021-10-12",68771,46,50776],["Catoosa","2021-10-13",68771,83,50859],["Catoosa","2021-10-14",68771,104,50963],["Catoosa","2021-10-15",68771,79,51042],["Catoosa","2021-10-16",68771,28,51070],["Catoosa","2021-10-17",68771,21,51091],["Catoosa","2021-10-18",68771,62,51153],["Catoosa","2021-10-19",68771,50,51203],["Catoosa","2021-10-20",68771,64,51267],["Catoosa","2021-10-21",68771,106,51373],["Catoosa","2021-10-22",68771,104,51477],["Catoosa","2021-10-23",68771,72,51549],["Catoosa","2021-10-24",68771,49,51598],["Catoosa","2021-10-25",68771,183,51781],["Catoosa","2021-10-26",68771,216,51997],["Catoosa","2021-10-27",68771,237,52234],["Catoosa","2021-10-28",68771,216,52450],["Catoosa","2021-10-29",68771,138,52588],["Catoosa","2021-10-30",68771,49,52637],["Catoosa","2021-10-31",68771,27,52664],["Catoosa","2021-11-01",68771,215,52879],["Catoosa","2021-11-02",68771,234,53113],["Catoosa","2021-11-03",68771,228,53341],["Catoosa","2021-11-04",68771,202,53543],["Catoosa","2021-11-05",68771,108,53651],["Catoosa","2021-11-06",68771,53,53704],["Catoosa","2021-11-07",68771,41,53745],["Catoosa","2021-11-08",68771,162,53907],["Catoosa","2021-11-09",68771,176,54083],["Catoosa","2021-11-10",68771,147,54230],["Catoosa","2021-11-11",68771,54,54284],["Catoosa","2021-11-12",68771,135,54419],["Catoosa","2021-11-13",68771,56,54475],["Catoosa","2021-11-14",68771,31,54506],["Catoosa","2021-11-15",68771,116,54622],["Catoosa","2021-11-16",68771,129,54751],["Catoosa","2021-11-17",68771,113,54864],["Catoosa","2021-11-18",68771,196,55060],["Catoosa","2021-11-19",68771,174,55234],["Catoosa","2021-11-20",68771,76,55310],["Catoosa","2021-11-21",68771,52,55362],["Catoosa","2021-11-22",68771,182,55544],["Catoosa","2021-11-23",68771,154,55698],["Catoosa","2021-11-24",68771,90,55788],["Catoosa","2021-11-25",68771,1,55789],["Catoosa","2021-11-26",68771,85,55874],["Catoosa","2021-11-27",68771,67,55941],["Catoosa","2021-11-28",68771,61,56002],["Catoosa","2021-11-29",68771,178,56180],["Catoosa","2021-11-30",68771,207,56387],["Catoosa","2021-12-01",68771,221,56608],["Catoosa","2021-12-02",68771,232,56840],["Catoosa","2021-12-03",68771,240,57080],["Catoosa","2021-12-04",68771,97,57177],["Catoosa","2021-12-05",68771,62,57239],["Catoosa","2021-12-06",68771,135,57374],["Catoosa","2021-12-07",68771,130,57504],["Catoosa","2021-12-08",68771,110,57614],["Catoosa","2021-12-09",68771,156,57770],["Catoosa","2021-12-10",68771,126,57896],["Catoosa","2021-12-11",68771,83,57979],["Catoosa","2021-12-12",68771,49,58028],["Catoosa","2021-12-13",68771,107,58135],["Catoosa","2021-12-14",68771,119,58254],["Catoosa","2021-12-15",68771,101,58355],["Catoosa","2021-12-16",68771,132,58487],["Catoosa","2021-12-17",68771,151,58638],["Catoosa","2021-12-18",68771,75,58713],["Catoosa","2021-12-19",68771,60,58773],["Catoosa","2021-12-20",68771,179,58952],["Catoosa","2021-12-21",68771,167,59119],["Catoosa","2021-12-22",68771,180,59299],["Catoosa","2021-12-23",68771,82,59381],["Catoosa","2021-12-24",68771,18,59399],["Catoosa","2021-12-26",68771,38,59437],["Catoosa","2021-12-27",68771,145,59582],["Catoosa","2021-12-28",68771,146,59728],["Catoosa","2021-12-29",68771,153,59881],["Catoosa","2021-12-30",68771,148,60029],["Catoosa","2021-12-31",68771,96,60125],["Catoosa","2022-01-01",68771,9,60134],["Catoosa","2022-01-02",68771,49,60183],["Catoosa","2022-01-03",68771,26,60209],["Charlton","2020-12-16",13251,1,1],["Charlton","2020-12-18",13251,1,2],["Charlton","2020-12-20",13251,1,3],["Charlton","2020-12-22",13251,6,9],["Charlton","2020-12-23",13251,1,10],["Charlton","2020-12-24",13251,1,11],["Charlton","2020-12-28",13251,2,13],["Charlton","2020-12-29",13251,1,14],["Charlton","2020-12-30",13251,2,16],["Charlton","2020-12-31",13251,1,17],["Charlton","2021-01-03",13251,1,18],["Charlton","2021-01-04",13251,1,19],["Charlton","2021-01-05",13251,5,24],["Charlton","2021-01-06",13251,6,30],["Charlton","2021-01-07",13251,20,50],["Charlton","2021-01-08",13251,5,55],["Charlton","2021-01-09",13251,1,56],["Charlton","2021-01-10",13251,2,58],["Charlton","2021-01-11",13251,15,73],["Charlton","2021-01-12",13251,7,80],["Charlton","2021-01-13",13251,23,103],["Charlton","2021-01-14",13251,5,108],["Charlton","2021-01-15",13251,14,122],["Charlton","2021-01-16",13251,28,150],["Charlton","2021-01-18",13251,30,180],["Charlton","2021-01-19",13251,3,183],["Charlton","2021-01-20",13251,25,208],["Charlton","2021-01-21",13251,33,241],["Charlton","2021-01-22",13251,33,274],["Charlton","2021-01-23",13251,1,275],["Charlton","2021-01-24",13251,2,277],["Charlton","2021-01-25",13251,12,289],["Charlton","2021-01-26",13251,11,300],["Charlton","2021-01-27",13251,22,322],["Charlton","2021-01-28",13251,8,330],["Charlton","2021-01-29",13251,19,349],["Charlton","2021-01-30",13251,16,365],["Charlton","2021-01-31",13251,1,366],["Charlton","2021-02-01",13251,21,387],["Charlton","2021-02-02",13251,5,392],["Charlton","2021-02-03",13251,33,425],["Charlton","2021-02-04",13251,16,441],["Charlton","2021-02-05",13251,14,455],["Charlton","2021-02-06",13251,7,462],["Charlton","2021-02-08",13251,31,493],["Charlton","2021-02-09",13251,10,503],["Charlton","2021-02-10",13251,44,547],["Charlton","2021-02-11",13251,8,555],["Charlton","2021-02-12",13251,37,592],["Charlton","2021-02-13",13251,44,636],["Charlton","2021-02-15",13251,64,700],["Charlton","2021-02-16",13251,11,711],["Charlton","2021-02-17",13251,53,764],["Charlton","2021-02-18",13251,24,788],["Charlton","2021-02-19",13251,64,852],["Charlton","2021-02-20",13251,16,868],["Charlton","2021-02-21",13251,2,870],["Charlton","2021-02-22",13251,28,898],["Charlton","2021-02-23",13251,24,922],["Charlton","2021-02-24",13251,39,961],["Charlton","2021-02-25",13251,26,987],["Charlton","2021-02-26",13251,30,1017],["Charlton","2021-02-27",13251,5,1022],["Charlton","2021-03-01",13251,36,1058],["Charlton","2021-03-02",13251,36,1094],["Charlton","2021-03-03",13251,9,1103],["Charlton","2021-03-04",13251,44,1147],["Charlton","2021-03-05",13251,51,1198],["Charlton","2021-03-06",13251,5,1203],["Charlton","2021-03-07",13251,3,1206],["Charlton","2021-03-08",13251,42,1248],["Charlton","2021-03-09",13251,14,1262],["Charlton","2021-03-10",13251,26,1288],["Charlton","2021-03-11",13251,74,1362],["Charlton","2021-03-12",13251,88,1450],["Charlton","2021-03-13",13251,5,1455],["Charlton","2021-03-14",13251,7,1462],["Charlton","2021-03-15",13251,75,1537],["Charlton","2021-03-16",13251,42,1579],["Charlton","2021-03-17",13251,36,1615],["Charlton","2021-03-18",13251,68,1683],["Charlton","2021-03-19",13251,29,1712],["Charlton","2021-03-20",13251,16,1728],["Charlton","2021-03-21",13251,4,1732],["Charlton","2021-03-22",13251,40,1772],["Charlton","2021-03-23",13251,32,1804],["Charlton","2021-03-24",13251,47,1851],["Charlton","2021-03-25",13251,97,1948],["Charlton","2021-03-26",13251,33,1981],["Charlton","2021-03-27",13251,8,1989],["Charlton","2021-03-28",13251,4,1993],["Charlton","2021-03-29",13251,45,2038],["Charlton","2021-03-30",13251,50,2088],["Charlton","2021-03-31",13251,29,2117],["Charlton","2021-04-01",13251,84,2201],["Charlton","2021-04-02",13251,48,2249],["Charlton","2021-04-03",13251,8,2257],["Charlton","2021-04-04",13251,4,2261],["Charlton","2021-04-05",13251,36,2297],["Charlton","2021-04-06",13251,35,2332],["Charlton","2021-04-07",13251,28,2360],["Charlton","2021-04-08",13251,82,2442],["Charlton","2021-04-09",13251,45,2487],["Charlton","2021-04-10",13251,13,2500],["Charlton","2021-04-11",13251,12,2512],["Charlton","2021-04-12",13251,30,2542],["Charlton","2021-04-13",13251,67,2609],["Charlton","2021-04-14",13251,30,2639],["Charlton","2021-04-15",13251,94,2733],["Charlton","2021-04-16",13251,22,2755],["Charlton","2021-04-17",13251,4,2759],["Charlton","2021-04-19",13251,22,2781],["Charlton","2021-04-20",13251,44,2825],["Charlton","2021-04-21",13251,32,2857],["Charlton","2021-04-22",13251,78,2935],["Charlton","2021-04-23",13251,28,2963],["Charlton","2021-04-24",13251,15,2978],["Charlton","2021-04-25",13251,1,2979],["Charlton","2021-04-26",13251,33,3012],["Charlton","2021-04-27",13251,33,3045],["Charlton","2021-04-28",13251,21,3066],["Charlton","2021-04-29",13251,63,3129],["Charlton","2021-04-30",13251,33,3162],["Charlton","2021-05-01",13251,10,3172],["Charlton","2021-05-02",13251,1,3173],["Charlton","2021-05-03",13251,24,3197],["Charlton","2021-05-04",13251,26,3223],["Charlton","2021-05-05",13251,17,3240],["Charlton","2021-05-06",13251,46,3286],["Charlton","2021-05-07",13251,14,3300],["Charlton","2021-05-08",13251,3,3303],["Charlton","2021-05-10",13251,14,3317],["Charlton","2021-05-11",13251,40,3357],["Charlton","2021-05-12",13251,17,3374],["Charlton","2021-05-13",13251,47,3421],["Charlton","2021-05-14",13251,8,3429],["Charlton","2021-05-15",13251,4,3433],["Charlton","2021-05-17",13251,10,3443],["Charlton","2021-05-18",13251,37,3480],["Charlton","2021-05-19",13251,13,3493],["Charlton","2021-05-20",13251,43,3536],["Charlton","2021-05-21",13251,12,3548],["Charlton","2021-05-22",13251,6,3554],["Charlton","2021-05-23",13251,2,3556],["Charlton","2021-05-24",13251,9,3565],["Charlton","2021-05-25",13251,18,3583],["Charlton","2021-05-26",13251,9,3592],["Charlton","2021-05-27",13251,27,3619],["Charlton","2021-05-28",13251,6,3625],["Charlton","2021-05-29",13251,3,3628],["Charlton","2021-05-30",13251,3,3631],["Charlton","2021-05-31",13251,5,3636],["Charlton","2021-06-01",13251,23,3659],["Charlton","2021-06-02",13251,12,3671],["Charlton","2021-06-03",13251,24,3695],["Charlton","2021-06-04",13251,8,3703],["Charlton","2021-06-05",13251,3,3706],["Charlton","2021-06-07",13251,14,3720],["Charlton","2021-06-08",13251,23,3743],["Charlton","2021-06-09",13251,10,3753],["Charlton","2021-06-10",13251,15,3768],["Charlton","2021-06-11",13251,8,3776],["Charlton","2021-06-12",13251,5,3781],["Charlton","2021-06-13",13251,1,3782],["Charlton","2021-06-14",13251,4,3786],["Charlton","2021-06-15",13251,9,3795],["Charlton","2021-06-16",13251,2,3797],["Charlton","2021-06-17",13251,17,3814],["Charlton","2021-06-18",13251,8,3822],["Charlton","2021-06-19",13251,4,3826],["Charlton","2021-06-20",13251,5,3831],["Charlton","2021-06-21",13251,6,3837],["Charlton","2021-06-22",13251,9,3846],["Charlton","2021-06-23",13251,6,3852],["Charlton","2021-06-24",13251,13,3865],["Charlton","2021-06-25",13251,8,3873],["Charlton","2021-06-26",13251,2,3875],["Charlton","2021-06-27",13251,1,3876],["Charlton","2021-06-28",13251,11,3887],["Charlton","2021-06-29",13251,15,3902],["Charlton","2021-06-30",13251,12,3914],["Charlton","2021-07-01",13251,4,3918],["Charlton","2021-07-02",13251,5,3923],["Charlton","2021-07-03",13251,2,3925],["Charlton","2021-07-05",13251,4,3929],["Charlton","2021-07-06",13251,3,3932],["Charlton","2021-07-07",13251,3,3935],["Charlton","2021-07-08",13251,7,3942],["Charlton","2021-07-09",13251,7,3949],["Charlton","2021-07-10",13251,2,3951],["Charlton","2021-07-11",13251,2,3953],["Charlton","2021-07-12",13251,11,3964],["Charlton","2021-07-13",13251,11,3975],["Charlton","2021-07-14",13251,15,3990],["Charlton","2021-07-15",13251,16,4006],["Charlton","2021-07-16",13251,11,4017],["Charlton","2021-07-17",13251,2,4019],["Charlton","2021-07-18",13251,2,4021],["Charlton","2021-07-19",13251,15,4036],["Charlton","2021-07-20",13251,29,4065],["Charlton","2021-07-21",13251,22,4087],["Charlton","2021-07-22",13251,33,4120],["Charlton","2021-07-23",13251,14,4134],["Charlton","2021-07-24",13251,2,4136],["Charlton","2021-07-25",13251,3,4139],["Charlton","2021-07-26",13251,29,4168],["Charlton","2021-07-27",13251,58,4226],["Charlton","2021-07-28",13251,39,4265],["Charlton","2021-07-29",13251,48,4313],["Charlton","2021-07-30",13251,42,4355],["Charlton","2021-07-31",13251,3,4358],["Charlton","2021-08-01",13251,3,4361],["Charlton","2021-08-02",13251,40,4401],["Charlton","2021-08-03",13251,49,4450],["Charlton","2021-08-04",13251,29,4479],["Charlton","2021-08-05",13251,20,4499],["Charlton","2021-08-06",13251,33,4532],["Charlton","2021-08-07",13251,11,4543],["Charlton","2021-08-08",13251,10,4553],["Charlton","2021-08-09",13251,28,4581],["Charlton","2021-08-10",13251,28,4609],["Charlton","2021-08-11",13251,29,4638],["Charlton","2021-08-12",13251,50,4688],["Charlton","2021-08-13",13251,51,4739],["Charlton","2021-08-14",13251,12,4751],["Charlton","2021-08-15",13251,5,4756],["Charlton","2021-08-16",13251,47,4803],["Charlton","2021-08-17",13251,48,4851],["Charlton","2021-08-18",13251,42,4893],["Charlton","2021-08-19",13251,54,4947],["Charlton","2021-08-20",13251,48,4995],["Charlton","2021-08-21",13251,6,5001],["Charlton","2021-08-22",13251,7,5008],["Charlton","2021-08-23",13251,52,5060],["Charlton","2021-08-24",13251,61,5121],["Charlton","2021-08-25",13251,43,5164],["Charlton","2021-08-26",13251,41,5205],["Charlton","2021-08-27",13251,48,5253],["Charlton","2021-08-28",13251,18,5271],["Charlton","2021-08-29",13251,6,5277],["Charlton","2021-08-30",13251,35,5312],["Charlton","2021-08-31",13251,28,5340],["Charlton","2021-09-01",13251,35,5375],["Charlton","2021-09-02",13251,27,5402],["Charlton","2021-09-03",13251,39,5441],["Charlton","2021-09-04",13251,1,5442],["Charlton","2021-09-05",13251,2,5444],["Charlton","2021-09-06",13251,16,5460],["Charlton","2021-09-07",13251,30,5490],["Charlton","2021-09-08",13251,13,5503],["Charlton","2021-09-09",13251,30,5533],["Charlton","2021-09-10",13251,42,5575],["Charlton","2021-09-11",13251,10,5585],["Charlton","2021-09-12",13251,2,5587],["Charlton","2021-09-13",13251,35,5622],["Charlton","2021-09-14",13251,17,5639],["Charlton","2021-09-15",13251,16,5655],["Charlton","2021-09-16",13251,19,5674],["Charlton","2021-09-17",13251,37,5711],["Charlton","2021-09-18",13251,4,5715],["Charlton","2021-09-19",13251,3,5718],["Charlton","2021-09-20",13251,15,5733],["Charlton","2021-09-21",13251,8,5741],["Charlton","2021-09-22",13251,10,5751],["Charlton","2021-09-23",13251,13,5764],["Charlton","2021-09-24",13251,27,5791],["Charlton","2021-09-25",13251,10,5801],["Charlton","2021-09-26",13251,4,5805],["Charlton","2021-09-27",13251,9,5814],["Charlton","2021-09-28",13251,8,5822],["Charlton","2021-09-29",13251,13,5835],["Charlton","2021-09-30",13251,11,5846],["Charlton","2021-10-01",13251,15,5861],["Charlton","2021-10-02",13251,4,5865],["Charlton","2021-10-03",13251,1,5866],["Charlton","2021-10-04",13251,14,5880],["Charlton","2021-10-05",13251,11,5891],["Charlton","2021-10-06",13251,10,5901],["Charlton","2021-10-07",13251,15,5916],["Charlton","2021-10-08",13251,11,5927],["Charlton","2021-10-12",13251,9,5936],["Charlton","2021-10-13",13251,18,5954],["Charlton","2021-10-14",13251,9,5963],["Charlton","2021-10-15",13251,14,5977],["Charlton","2021-10-16",13251,1,5978],["Charlton","2021-10-17",13251,1,5979],["Charlton","2021-10-18",13251,10,5989],["Charlton","2021-10-19",13251,12,6001],["Charlton","2021-10-20",13251,12,6013],["Charlton","2021-10-21",13251,4,6017],["Charlton","2021-10-22",13251,17,6034],["Charlton","2021-10-23",13251,3,6037],["Charlton","2021-10-24",13251,1,6038],["Charlton","2021-10-25",13251,15,6053],["Charlton","2021-10-26",13251,26,6079],["Charlton","2021-10-27",13251,36,6115],["Charlton","2021-10-28",13251,32,6147],["Charlton","2021-10-29",13251,31,6178],["Charlton","2021-10-30",13251,2,6180],["Charlton","2021-10-31",13251,4,6184],["Charlton","2021-11-01",13251,38,6222],["Charlton","2021-11-02",13251,29,6251],["Charlton","2021-11-03",13251,40,6291],["Charlton","2021-11-04",13251,25,6316],["Charlton","2021-11-05",13251,15,6331],["Charlton","2021-11-06",13251,5,6336],["Charlton","2021-11-08",13251,22,6358],["Charlton","2021-11-09",13251,27,6385],["Charlton","2021-11-10",13251,14,6399],["Charlton","2021-11-11",13251,11,6410],["Charlton","2021-11-12",13251,29,6439],["Charlton","2021-11-13",13251,3,6442],["Charlton","2021-11-14",13251,1,6443],["Charlton","2021-11-15",13251,20,6463],["Charlton","2021-11-16",13251,15,6478],["Charlton","2021-11-17",13251,17,6495],["Charlton","2021-11-18",13251,25,6520],["Charlton","2021-11-19",13251,24,6544],["Charlton","2021-11-20",13251,4,6548],["Charlton","2021-11-21",13251,5,6553],["Charlton","2021-11-22",13251,20,6573],["Charlton","2021-11-23",13251,13,6586],["Charlton","2021-11-24",13251,18,6604],["Charlton","2021-11-26",13251,13,6617],["Charlton","2021-11-27",13251,3,6620],["Charlton","2021-11-28",13251,3,6623],["Charlton","2021-11-29",13251,24,6647],["Charlton","2021-11-30",13251,31,6678],["Charlton","2021-12-01",13251,38,6716],["Charlton","2021-12-02",13251,38,6754],["Charlton","2021-12-03",13251,34,6788],["Charlton","2021-12-04",13251,5,6793],["Charlton","2021-12-05",13251,4,6797],["Charlton","2021-12-06",13251,23,6820],["Charlton","2021-12-07",13251,19,6839],["Charlton","2021-12-08",13251,19,6858],["Charlton","2021-12-09",13251,32,6890],["Charlton","2021-12-10",13251,19,6909],["Charlton","2021-12-11",13251,5,6914],["Charlton","2021-12-12",13251,2,6916],["Charlton","2021-12-13",13251,12,6928],["Charlton","2021-12-14",13251,16,6944],["Charlton","2021-12-15",13251,16,6960],["Charlton","2021-12-16",13251,14,6974],["Charlton","2021-12-17",13251,20,6994],["Charlton","2021-12-18",13251,4,6998],["Charlton","2021-12-19",13251,3,7001],["Charlton","2021-12-20",13251,14,7015],["Charlton","2021-12-21",13251,15,7030],["Charlton","2021-12-22",13251,29,7059],["Charlton","2021-12-23",13251,12,7071],["Charlton","2021-12-24",13251,3,7074],["Charlton","2021-12-26",13251,1,7075],["Charlton","2021-12-27",13251,18,7093],["Charlton","2021-12-28",13251,9,7102],["Charlton","2021-12-29",13251,5,7107],["Charlton","2021-12-30",13251,11,7118],["Charlton","2021-12-31",13251,11,7129],["Charlton","2022-01-02",13251,1,7130],["Charlton","2022-01-03",13251,2,7132],["Chatham","2020-12-12",292176,1,1],["Chatham","2020-12-14",292176,4,5],["Chatham","2020-12-15",292176,78,83],["Chatham","2020-12-16",292176,367,450],["Chatham","2020-12-17",292176,228,678],["Chatham","2020-12-18",292176,903,1581],["Chatham","2020-12-19",292176,173,1754],["Chatham","2020-12-20",292176,38,1792],["Chatham","2020-12-21",292176,397,2189],["Chatham","2020-12-22",292176,421,2610],["Chatham","2020-12-23",292176,416,3026],["Chatham","2020-12-24",292176,55,3081],["Chatham","2020-12-26",292176,8,3089],["Chatham","2020-12-27",292176,33,3122],["Chatham","2020-12-28",292176,247,3369],["Chatham","2020-12-29",292176,349,3718],["Chatham","2020-12-30",292176,576,4294],["Chatham","2020-12-31",292176,178,4472],["Chatham","2021-01-01",292176,74,4546],["Chatham","2021-01-02",292176,34,4580],["Chatham","2021-01-03",292176,27,4607],["Chatham","2021-01-04",292176,324,4931],["Chatham","2021-01-05",292176,437,5368],["Chatham","2021-01-06",292176,1377,6745],["Chatham","2021-01-07",292176,1066,7811],["Chatham","2021-01-08",292176,792,8603],["Chatham","2021-01-09",292176,592,9195],["Chatham","2021-01-10",292176,155,9350],["Chatham","2021-01-11",292176,1601,10951],["Chatham","2021-01-12",292176,1380,12331],["Chatham","2021-01-13",292176,1409,13740],["Chatham","2021-01-14",292176,2046,15786],["Chatham","2021-01-15",292176,1281,17067],["Chatham","2021-01-16",292176,612,17679],["Chatham","2021-01-17",292176,524,18203],["Chatham","2021-01-18",292176,1478,19681],["Chatham","2021-01-19",292176,1843,21524],["Chatham","2021-01-20",292176,1958,23482],["Chatham","2021-01-21",292176,2069,25551],["Chatham","2021-01-22",292176,1224,26775],["Chatham","2021-01-23",292176,568,27343],["Chatham","2021-01-24",292176,410,27753],["Chatham","2021-01-25",292176,1334,29087],["Chatham","2021-01-26",292176,1322,30409],["Chatham","2021-01-27",292176,1620,32029],["Chatham","2021-01-28",292176,2153,34182],["Chatham","2021-01-29",292176,2280,36462],["Chatham","2021-01-30",292176,1081,37543],["Chatham","2021-01-31",292176,473,38016],["Chatham","2021-02-01",292176,2817,40833],["Chatham","2021-02-02",292176,2084,42917],["Chatham","2021-02-03",292176,1396,44313],["Chatham","2021-02-04",292176,2564,46877],["Chatham","2021-02-05",292176,2058,48935],["Chatham","2021-02-06",292176,889,49824],["Chatham","2021-02-07",292176,271,50095],["Chatham","2021-02-08",292176,2036,52131],["Chatham","2021-02-09",292176,2086,54217],["Chatham","2021-02-10",292176,1339,55556],["Chatham","2021-02-11",292176,2250,57806],["Chatham","2021-02-12",292176,1983,59789],["Chatham","2021-02-13",292176,853,60642],["Chatham","2021-02-14",292176,351,60993],["Chatham","2021-02-15",292176,1967,62960],["Chatham","2021-02-16",292176,2128,65088],["Chatham","2021-02-17",292176,2095,67183],["Chatham","2021-02-18",292176,2995,70178],["Chatham","2021-02-19",292176,1600,71778],["Chatham","2021-02-20",292176,901,72679],["Chatham","2021-02-21",292176,389,73068],["Chatham","2021-02-22",292176,1459,74527],["Chatham","2021-02-23",292176,2027,76554],["Chatham","2021-02-24",292176,1943,78497],["Chatham","2021-02-25",292176,2518,81015],["Chatham","2021-02-26",292176,1539,82554],["Chatham","2021-02-27",292176,1031,83585],["Chatham","2021-02-28",292176,473,84058],["Chatham","2021-03-01",292176,1455,85513],["Chatham","2021-03-02",292176,1966,87479],["Chatham","2021-03-03",292176,1134,88613],["Chatham","2021-03-04",292176,1787,90400],["Chatham","2021-03-05",292176,1497,91897],["Chatham","2021-03-06",292176,900,92797],["Chatham","2021-03-07",292176,263,93060],["Chatham","2021-03-08",292176,1709,94769],["Chatham","2021-03-09",292176,2028,96797],["Chatham","2021-03-10",292176,1691,98488],["Chatham","2021-03-11",292176,2580,101068],["Chatham","2021-03-12",292176,1780,102848],["Chatham","2021-03-13",292176,2473,105321],["Chatham","2021-03-14",292176,355,105676],["Chatham","2021-03-15",292176,2155,107831],["Chatham","2021-03-16",292176,2852,110683],["Chatham","2021-03-17",292176,2066,112749],["Chatham","2021-03-18",292176,2712,115461],["Chatham","2021-03-19",292176,2395,117856],["Chatham","2021-03-20",292176,1271,119127],["Chatham","2021-03-21",292176,515,119642],["Chatham","2021-03-22",292176,2161,121803],["Chatham","2021-03-23",292176,3462,125265],["Chatham","2021-03-24",292176,2820,128085],["Chatham","2021-03-25",292176,3710,131795],["Chatham","2021-03-26",292176,2197,133992],["Chatham","2021-03-27",292176,1411,135403],["Chatham","2021-03-28",292176,492,135895],["Chatham","2021-03-29",292176,2132,138027],["Chatham","2021-03-30",292176,3297,141324],["Chatham","2021-03-31",292176,2683,144007],["Chatham","2021-04-01",292176,3179,147186],["Chatham","2021-04-02",292176,1591,148777],["Chatham","2021-04-03",292176,692,149469],["Chatham","2021-04-04",292176,398,149867],["Chatham","2021-04-05",292176,2238,152105],["Chatham","2021-04-06",292176,3114,155219],["Chatham","2021-04-07",292176,2695,157914],["Chatham","2021-04-08",292176,3376,161290],["Chatham","2021-04-09",292176,2355,163645],["Chatham","2021-04-10",292176,1881,165526],["Chatham","2021-04-11",292176,447,165973],["Chatham","2021-04-12",292176,2094,168067],["Chatham","2021-04-13",292176,2677,170744],["Chatham","2021-04-14",292176,2670,173414],["Chatham","2021-04-15",292176,3464,176878],["Chatham","2021-04-16",292176,2045,178923],["Chatham","2021-04-17",292176,1566,180489],["Chatham","2021-04-18",292176,381,180870],["Chatham","2021-04-19",292176,1862,182732],["Chatham","2021-04-20",292176,2685,185417],["Chatham","2021-04-21",292176,2146,187563],["Chatham","2021-04-22",292176,2709,190272],["Chatham","2021-04-23",292176,2061,192333],["Chatham","2021-04-24",292176,1081,193414],["Chatham","2021-04-25",292176,271,193685],["Chatham","2021-04-26",292176,1570,195255],["Chatham","2021-04-27",292176,1960,197215],["Chatham","2021-04-28",292176,1660,198875],["Chatham","2021-04-29",292176,2323,201198],["Chatham","2021-04-30",292176,1738,202936],["Chatham","2021-05-01",292176,1025,203961],["Chatham","2021-05-02",292176,284,204245],["Chatham","2021-05-03",292176,1017,205262],["Chatham","2021-05-04",292176,1430,206692],["Chatham","2021-05-05",292176,1194,207886],["Chatham","2021-05-06",292176,1871,209757],["Chatham","2021-05-07",292176,1231,210988],["Chatham","2021-05-08",292176,647,211635],["Chatham","2021-05-09",292176,162,211797],["Chatham","2021-05-10",292176,648,212445],["Chatham","2021-05-11",292176,1031,213476],["Chatham","2021-05-12",292176,804,214280],["Chatham","2021-05-13",292176,1311,215591],["Chatham","2021-05-14",292176,1167,216758],["Chatham","2021-05-15",292176,825,217583],["Chatham","2021-05-16",292176,274,217857],["Chatham","2021-05-17",292176,917,218774],["Chatham","2021-05-18",292176,1055,219829],["Chatham","2021-05-19",292176,953,220782],["Chatham","2021-05-20",292176,1135,221917],["Chatham","2021-05-21",292176,977,222894],["Chatham","2021-05-22",292176,512,223406],["Chatham","2021-05-23",292176,264,223670],["Chatham","2021-05-24",292176,697,224367],["Chatham","2021-05-25",292176,720,225087],["Chatham","2021-05-26",292176,661,225748],["Chatham","2021-05-27",292176,856,226604],["Chatham","2021-05-28",292176,637,227241],["Chatham","2021-05-29",292176,384,227625],["Chatham","2021-05-30",292176,170,227795],["Chatham","2021-05-31",292176,86,227881],["Chatham","2021-06-01",292176,1042,228923],["Chatham","2021-06-02",292176,707,229630],["Chatham","2021-06-03",292176,783,230413],["Chatham","2021-06-04",292176,820,231233],["Chatham","2021-06-05",292176,548,231781],["Chatham","2021-06-06",292176,292,232073],["Chatham","2021-06-07",292176,718,232791],["Chatham","2021-06-08",292176,690,233481],["Chatham","2021-06-09",292176,548,234029],["Chatham","2021-06-10",292176,706,234735],["Chatham","2021-06-11",292176,673,235408],["Chatham","2021-06-12",292176,518,235926],["Chatham","2021-06-13",292176,173,236099],["Chatham","2021-06-14",292176,570,236669],["Chatham","2021-06-15",292176,589,237258],["Chatham","2021-06-16",292176,519,237777],["Chatham","2021-06-17",292176,782,238559],["Chatham","2021-06-18",292176,514,239073],["Chatham","2021-06-19",292176,301,239374],["Chatham","2021-06-20",292176,163,239537],["Chatham","2021-06-21",292176,435,239972],["Chatham","2021-06-22",292176,513,240485],["Chatham","2021-06-23",292176,579,241064],["Chatham","2021-06-24",292176,501,241565],["Chatham","2021-06-25",292176,490,242055],["Chatham","2021-06-26",292176,242,242297],["Chatham","2021-06-27",292176,169,242466],["Chatham","2021-06-28",292176,436,242902],["Chatham","2021-06-29",292176,410,243312],["Chatham","2021-06-30",292176,396,243708],["Chatham","2021-07-01",292176,457,244165],["Chatham","2021-07-02",292176,406,244571],["Chatham","2021-07-03",292176,240,244811],["Chatham","2021-07-04",292176,14,244825],["Chatham","2021-07-05",292176,299,245124],["Chatham","2021-07-06",292176,383,245507],["Chatham","2021-07-07",292176,389,245896],["Chatham","2021-07-08",292176,455,246351],["Chatham","2021-07-09",292176,468,246819],["Chatham","2021-07-10",292176,280,247099],["Chatham","2021-07-11",292176,186,247285],["Chatham","2021-07-12",292176,416,247701],["Chatham","2021-07-13",292176,342,248043],["Chatham","2021-07-14",292176,413,248456],["Chatham","2021-07-15",292176,508,248964],["Chatham","2021-07-16",292176,462,249426],["Chatham","2021-07-17",292176,285,249711],["Chatham","2021-07-18",292176,194,249905],["Chatham","2021-07-19",292176,517,250422],["Chatham","2021-07-20",292176,512,250934],["Chatham","2021-07-21",292176,511,251445],["Chatham","2021-07-22",292176,553,251998],["Chatham","2021-07-23",292176,695,252693],["Chatham","2021-07-24",292176,587,253280],["Chatham","2021-07-25",292176,226,253506],["Chatham","2021-07-26",292176,679,254185],["Chatham","2021-07-27",292176,779,254964],["Chatham","2021-07-28",292176,795,255759],["Chatham","2021-07-29",292176,702,256461],["Chatham","2021-07-30",292176,802,257263],["Chatham","2021-07-31",292176,507,257770],["Chatham","2021-08-01",292176,285,258055],["Chatham","2021-08-02",292176,649,258704],["Chatham","2021-08-03",292176,666,259370],["Chatham","2021-08-04",292176,634,260004],["Chatham","2021-08-05",292176,764,260768],["Chatham","2021-08-06",292176,891,261659],["Chatham","2021-08-07",292176,627,262286],["Chatham","2021-08-08",292176,353,262639],["Chatham","2021-08-09",292176,729,263368],["Chatham","2021-08-10",292176,841,264209],["Chatham","2021-08-11",292176,871,265080],["Chatham","2021-08-12",292176,901,265981],["Chatham","2021-08-13",292176,969,266950],["Chatham","2021-08-14",292176,750,267700],["Chatham","2021-08-15",292176,440,268140],["Chatham","2021-08-16",292176,976,269116],["Chatham","2021-08-17",292176,972,270088],["Chatham","2021-08-18",292176,1210,271298],["Chatham","2021-08-19",292176,1224,272522],["Chatham","2021-08-20",292176,1274,273796],["Chatham","2021-08-21",292176,787,274583],["Chatham","2021-08-22",292176,365,274948],["Chatham","2021-08-23",292176,1086,276034],["Chatham","2021-08-24",292176,962,276996],["Chatham","2021-08-25",292176,1077,278073],["Chatham","2021-08-26",292176,1100,279173],["Chatham","2021-08-27",292176,1311,280484],["Chatham","2021-08-28",292176,609,281093],["Chatham","2021-08-29",292176,449,281542],["Chatham","2021-08-30",292176,1117,282659],["Chatham","2021-08-31",292176,1008,283667],["Chatham","2021-09-01",292176,1202,284869],["Chatham","2021-09-02",292176,1102,285971],["Chatham","2021-09-03",292176,1275,287246],["Chatham","2021-09-04",292176,550,287796],["Chatham","2021-09-05",292176,313,288109],["Chatham","2021-09-06",292176,189,288298],["Chatham","2021-09-07",292176,857,289155],["Chatham","2021-09-08",292176,830,289985],["Chatham","2021-09-09",292176,1011,290996],["Chatham","2021-09-10",292176,1101,292097],["Chatham","2021-09-11",292176,652,292749],["Chatham","2021-09-12",292176,363,293112],["Chatham","2021-09-13",292176,855,293967],["Chatham","2021-09-14",292176,835,294802],["Chatham","2021-09-15",292176,706,295508],["Chatham","2021-09-16",292176,752,296260],["Chatham","2021-09-17",292176,812,297072],["Chatham","2021-09-18",292176,358,297430],["Chatham","2021-09-19",292176,267,297697],["Chatham","2021-09-20",292176,654,298351],["Chatham","2021-09-21",292176,548,298899],["Chatham","2021-09-22",292176,636,299535],["Chatham","2021-09-23",292176,650,300185],["Chatham","2021-09-24",292176,850,301035],["Chatham","2021-09-25",292176,457,301492],["Chatham","2021-09-26",292176,288,301780],["Chatham","2021-09-27",292176,959,302739],["Chatham","2021-09-28",292176,1092,303831],["Chatham","2021-09-29",292176,957,304788],["Chatham","2021-09-30",292176,1168,305956],["Chatham","2021-10-01",292176,1217,307173],["Chatham","2021-10-02",292176,411,307584],["Chatham","2021-10-03",292176,254,307838],["Chatham","2021-10-04",292176,906,308744],["Chatham","2021-10-05",292176,836,309580],["Chatham","2021-10-06",292176,777,310357],["Chatham","2021-10-07",292176,749,311106],["Chatham","2021-10-08",292176,966,312072],["Chatham","2021-10-09",292176,325,312397],["Chatham","2021-10-10",292176,245,312642],["Chatham","2021-10-11",292176,481,313123],["Chatham","2021-10-12",292176,675,313798],["Chatham","2021-10-13",292176,591,314389],["Chatham","2021-10-14",292176,674,315063],["Chatham","2021-10-15",292176,771,315834],["Chatham","2021-10-16",292176,213,316047],["Chatham","2021-10-17",292176,143,316190],["Chatham","2021-10-18",292176,577,316767],["Chatham","2021-10-19",292176,468,317235],["Chatham","2021-10-20",292176,633,317868],["Chatham","2021-10-21",292176,624,318492],["Chatham","2021-10-22",292176,854,319346],["Chatham","2021-10-23",292176,431,319777],["Chatham","2021-10-24",292176,331,320108],["Chatham","2021-10-25",292176,946,321054],["Chatham","2021-10-26",292176,772,321826],["Chatham","2021-10-27",292176,814,322640],["Chatham","2021-10-28",292176,805,323445],["Chatham","2021-10-29",292176,1120,324565],["Chatham","2021-10-30",292176,351,324916],["Chatham","2021-10-31",292176,226,325142],["Chatham","2021-11-01",292176,734,325876],["Chatham","2021-11-02",292176,771,326647],["Chatham","2021-11-03",292176,656,327303],["Chatham","2021-11-04",292176,834,328137],["Chatham","2021-11-05",292176,839,328976],["Chatham","2021-11-06",292176,365,329341],["Chatham","2021-11-07",292176,294,329635],["Chatham","2021-11-08",292176,672,330307],["Chatham","2021-11-09",292176,711,331018],["Chatham","2021-11-10",292176,848,331866],["Chatham","2021-11-11",292176,619,332485],["Chatham","2021-11-12",292176,1049,333534],["Chatham","2021-11-13",292176,950,334484],["Chatham","2021-11-14",292176,240,334724],["Chatham","2021-11-15",292176,746,335470],["Chatham","2021-11-16",292176,881,336351],["Chatham","2021-11-17",292176,773,337124],["Chatham","2021-11-18",292176,830,337954],["Chatham","2021-11-19",292176,975,338929],["Chatham","2021-11-20",292176,537,339466],["Chatham","2021-11-21",292176,375,339841],["Chatham","2021-11-22",292176,1001,340842],["Chatham","2021-11-23",292176,988,341830],["Chatham","2021-11-24",292176,553,342383],["Chatham","2021-11-25",292176,1,342384],["Chatham","2021-11-26",292176,535,342919],["Chatham","2021-11-27",292176,441,343360],["Chatham","2021-11-28",292176,327,343687],["Chatham","2021-11-29",292176,1019,344706],["Chatham","2021-11-30",292176,1073,345779],["Chatham","2021-12-01",292176,1218,346997],["Chatham","2021-12-02",292176,1494,348491],["Chatham","2021-12-03",292176,1367,349858],["Chatham","2021-12-04",292176,960,350818],["Chatham","2021-12-05",292176,329,351147],["Chatham","2021-12-06",292176,951,352098],["Chatham","2021-12-07",292176,891,352989],["Chatham","2021-12-08",292176,1010,353999],["Chatham","2021-12-09",292176,1012,355011],["Chatham","2021-12-10",292176,1015,356026],["Chatham","2021-12-11",292176,495,356521],["Chatham","2021-12-12",292176,301,356822],["Chatham","2021-12-13",292176,778,357600],["Chatham","2021-12-14",292176,756,358356],["Chatham","2021-12-15",292176,765,359121],["Chatham","2021-12-16",292176,783,359904],["Chatham","2021-12-17",292176,949,360853],["Chatham","2021-12-18",292176,513,361366],["Chatham","2021-12-19",292176,371,361737],["Chatham","2021-12-20",292176,1111,362848],["Chatham","2021-12-21",292176,997,363845],["Chatham","2021-12-22",292176,1019,364864],["Chatham","2021-12-23",292176,696,365560],["Chatham","2021-12-24",292176,220,365780],["Chatham","2021-12-26",292176,279,366059],["Chatham","2021-12-27",292176,834,366893],["Chatham","2021-12-28",292176,809,367702],["Chatham","2021-12-29",292176,836,368538],["Chatham","2021-12-30",292176,856,369394],["Chatham","2021-12-31",292176,330,369724],["Chatham","2022-01-01",292176,47,369771],["Chatham","2022-01-02",292176,307,370078],["Chatham","2022-01-03",292176,272,370350],["Chattahoochee","2020-12-21",10749,1,1],["Chattahoochee","2020-12-22",10749,1,2],["Chattahoochee","2020-12-23",10749,3,5],["Chattahoochee","2020-12-24",10749,1,6],["Chattahoochee","2020-12-26",10749,2,8],["Chattahoochee","2020-12-28",10749,1,9],["Chattahoochee","2020-12-29",10749,10,19],["Chattahoochee","2020-12-30",10749,8,27],["Chattahoochee","2020-12-31",10749,3,30],["Chattahoochee","2021-01-04",10749,9,39],["Chattahoochee","2021-01-05",10749,4,43],["Chattahoochee","2021-01-06",10749,3,46],["Chattahoochee","2021-01-07",10749,7,53],["Chattahoochee","2021-01-08",10749,3,56],["Chattahoochee","2021-01-09",10749,1,57],["Chattahoochee","2021-01-11",10749,5,62],["Chattahoochee","2021-01-12",10749,27,89],["Chattahoochee","2021-01-13",10749,4,93],["Chattahoochee","2021-01-14",10749,5,98],["Chattahoochee","2021-01-15",10749,6,104],["Chattahoochee","2021-01-16",10749,5,109],["Chattahoochee","2021-01-17",10749,1,110],["Chattahoochee","2021-01-18",10749,6,116],["Chattahoochee","2021-01-19",10749,31,147],["Chattahoochee","2021-01-20",10749,7,154],["Chattahoochee","2021-01-21",10749,13,167],["Chattahoochee","2021-01-22",10749,2,169],["Chattahoochee","2021-01-23",10749,4,173],["Chattahoochee","2021-01-25",10749,9,182],["Chattahoochee","2021-01-26",10749,36,218],["Chattahoochee","2021-01-27",10749,4,222],["Chattahoochee","2021-01-28",10749,6,228],["Chattahoochee","2021-01-29",10749,6,234],["Chattahoochee","2021-02-01",10749,8,242],["Chattahoochee","2021-02-02",10749,4,246],["Chattahoochee","2021-02-03",10749,3,249],["Chattahoochee","2021-02-04",10749,8,257],["Chattahoochee","2021-02-05",10749,7,264],["Chattahoochee","2021-02-06",10749,1,265],["Chattahoochee","2021-02-07",10749,1,266],["Chattahoochee","2021-02-08",10749,6,272],["Chattahoochee","2021-02-09",10749,21,293],["Chattahoochee","2021-02-10",10749,2,295],["Chattahoochee","2021-02-11",10749,12,307],["Chattahoochee","2021-02-12",10749,7,314],["Chattahoochee","2021-02-13",10749,2,316],["Chattahoochee","2021-02-15",10749,13,329],["Chattahoochee","2021-02-16",10749,35,364],["Chattahoochee","2021-02-17",10749,5,369],["Chattahoochee","2021-02-18",10749,6,375],["Chattahoochee","2021-02-19",10749,5,380],["Chattahoochee","2021-02-21",10749,1,381],["Chattahoochee","2021-02-22",10749,8,389],["Chattahoochee","2021-02-23",10749,129,518],["Chattahoochee","2021-02-24",10749,12,530],["Chattahoochee","2021-02-25",10749,2,532],["Chattahoochee","2021-02-26",10749,18,550],["Chattahoochee","2021-02-27",10749,1,551],["Chattahoochee","2021-03-01",10749,3,554],["Chattahoochee","2021-03-02",10749,3,557],["Chattahoochee","2021-03-03",10749,10,567],["Chattahoochee","2021-03-04",10749,7,574],["Chattahoochee","2021-03-05",10749,11,585],["Chattahoochee","2021-03-06",10749,1,586],["Chattahoochee","2021-03-08",10749,2,588],["Chattahoochee","2021-03-09",10749,10,598],["Chattahoochee","2021-03-10",10749,5,603],["Chattahoochee","2021-03-11",10749,33,636],["Chattahoochee","2021-03-12",10749,14,650],["Chattahoochee","2021-03-13",10749,4,654],["Chattahoochee","2021-03-14",10749,3,657],["Chattahoochee","2021-03-15",10749,13,670],["Chattahoochee","2021-03-16",10749,47,717],["Chattahoochee","2021-03-17",10749,21,738],["Chattahoochee","2021-03-18",10749,13,751],["Chattahoochee","2021-03-19",10749,19,770],["Chattahoochee","2021-03-20",10749,8,778],["Chattahoochee","2021-03-21",10749,4,782],["Chattahoochee","2021-03-22",10749,14,796],["Chattahoochee","2021-03-23",10749,116,912],["Chattahoochee","2021-03-24",10749,14,926],["Chattahoochee","2021-03-25",10749,42,968],["Chattahoochee","2021-03-26",10749,40,1008],["Chattahoochee","2021-03-27",10749,6,1014],["Chattahoochee","2021-03-28",10749,3,1017],["Chattahoochee","2021-03-29",10749,26,1043],["Chattahoochee","2021-03-30",10749,33,1076],["Chattahoochee","2021-03-31",10749,25,1101],["Chattahoochee","2021-04-01",10749,28,1129],["Chattahoochee","2021-04-02",10749,46,1175],["Chattahoochee","2021-04-03",10749,7,1182],["Chattahoochee","2021-04-04",10749,3,1185],["Chattahoochee","2021-04-05",10749,24,1209],["Chattahoochee","2021-04-06",10749,89,1298],["Chattahoochee","2021-04-07",10749,25,1323],["Chattahoochee","2021-04-08",10749,34,1357],["Chattahoochee","2021-04-09",10749,53,1410],["Chattahoochee","2021-04-10",10749,7,1417],["Chattahoochee","2021-04-11",10749,8,1425],["Chattahoochee","2021-04-12",10749,31,1456],["Chattahoochee","2021-04-13",10749,53,1509],["Chattahoochee","2021-04-14",10749,28,1537],["Chattahoochee","2021-04-15",10749,28,1565],["Chattahoochee","2021-04-16",10749,31,1596],["Chattahoochee","2021-04-17",10749,6,1602],["Chattahoochee","2021-04-18",10749,7,1609],["Chattahoochee","2021-04-19",10749,45,1654],["Chattahoochee","2021-04-20",10749,48,1702],["Chattahoochee","2021-04-21",10749,20,1722],["Chattahoochee","2021-04-22",10749,26,1748],["Chattahoochee","2021-04-23",10749,27,1775],["Chattahoochee","2021-04-24",10749,8,1783],["Chattahoochee","2021-04-25",10749,5,1788],["Chattahoochee","2021-04-26",10749,34,1822],["Chattahoochee","2021-04-27",10749,23,1845],["Chattahoochee","2021-04-28",10749,32,1877],["Chattahoochee","2021-04-29",10749,25,1902],["Chattahoochee","2021-04-30",10749,42,1944],["Chattahoochee","2021-05-01",10749,11,1955],["Chattahoochee","2021-05-02",10749,1,1956],["Chattahoochee","2021-05-03",10749,18,1974],["Chattahoochee","2021-05-04",10749,79,2053],["Chattahoochee","2021-05-05",10749,18,2071],["Chattahoochee","2021-05-06",10749,19,2090],["Chattahoochee","2021-05-07",10749,22,2112],["Chattahoochee","2021-05-08",10749,32,2144],["Chattahoochee","2021-05-09",10749,1,2145],["Chattahoochee","2021-05-10",10749,13,2158],["Chattahoochee","2021-05-11",10749,23,2181],["Chattahoochee","2021-05-12",10749,160,2341],["Chattahoochee","2021-05-13",10749,33,2374],["Chattahoochee","2021-05-14",10749,20,2394],["Chattahoochee","2021-05-15",10749,10,2404],["Chattahoochee","2021-05-16",10749,15,2419],["Chattahoochee","2021-05-17",10749,27,2446],["Chattahoochee","2021-05-18",10749,35,2481],["Chattahoochee","2021-05-19",10749,13,2494],["Chattahoochee","2021-05-20",10749,19,2513],["Chattahoochee","2021-05-21",10749,19,2532],["Chattahoochee","2021-05-22",10749,13,2545],["Chattahoochee","2021-05-23",10749,7,2552],["Chattahoochee","2021-05-24",10749,4,2556],["Chattahoochee","2021-05-25",10749,16,2572],["Chattahoochee","2021-05-26",10749,7,2579],["Chattahoochee","2021-05-27",10749,10,2589],["Chattahoochee","2021-05-28",10749,10,2599],["Chattahoochee","2021-05-29",10749,2,2601],["Chattahoochee","2021-05-30",10749,5,2606],["Chattahoochee","2021-05-31",10749,2,2608],["Chattahoochee","2021-06-01",10749,11,2619],["Chattahoochee","2021-06-02",10749,9,2628],["Chattahoochee","2021-06-03",10749,7,2635],["Chattahoochee","2021-06-04",10749,9,2644],["Chattahoochee","2021-06-05",10749,11,2655],["Chattahoochee","2021-06-06",10749,11,2666],["Chattahoochee","2021-06-07",10749,14,2680],["Chattahoochee","2021-06-08",10749,25,2705],["Chattahoochee","2021-06-09",10749,7,2712],["Chattahoochee","2021-06-10",10749,13,2725],["Chattahoochee","2021-06-11",10749,8,2733],["Chattahoochee","2021-06-12",10749,9,2742],["Chattahoochee","2021-06-13",10749,3,2745],["Chattahoochee","2021-06-14",10749,11,2756],["Chattahoochee","2021-06-15",10749,10,2766],["Chattahoochee","2021-06-16",10749,8,2774],["Chattahoochee","2021-06-17",10749,5,2779],["Chattahoochee","2021-06-18",10749,7,2786],["Chattahoochee","2021-06-19",10749,6,2792],["Chattahoochee","2021-06-20",10749,5,2797],["Chattahoochee","2021-06-21",10749,6,2803],["Chattahoochee","2021-06-22",10749,15,2818],["Chattahoochee","2021-06-23",10749,9,2827],["Chattahoochee","2021-06-24",10749,7,2834],["Chattahoochee","2021-06-25",10749,5,2839],["Chattahoochee","2021-06-26",10749,12,2851],["Chattahoochee","2021-06-27",10749,2,2853],["Chattahoochee","2021-06-28",10749,5,2858],["Chattahoochee","2021-06-29",10749,9,2867],["Chattahoochee","2021-06-30",10749,10,2877],["Chattahoochee","2021-07-01",10749,10,2887],["Chattahoochee","2021-07-02",10749,1,2888],["Chattahoochee","2021-07-03",10749,2,2890],["Chattahoochee","2021-07-05",10749,9,2899],["Chattahoochee","2021-07-06",10749,15,2914],["Chattahoochee","2021-07-07",10749,4,2918],["Chattahoochee","2021-07-08",10749,5,2923],["Chattahoochee","2021-07-09",10749,155,3078],["Chattahoochee","2021-07-10",10749,4,3082],["Chattahoochee","2021-07-11",10749,2,3084],["Chattahoochee","2021-07-12",10749,5,3089],["Chattahoochee","2021-07-13",10749,21,3110],["Chattahoochee","2021-07-14",10749,4,3114],["Chattahoochee","2021-07-15",10749,4,3118],["Chattahoochee","2021-07-16",10749,13,3131],["Chattahoochee","2021-07-17",10749,4,3135],["Chattahoochee","2021-07-18",10749,2,3137],["Chattahoochee","2021-07-19",10749,14,3151],["Chattahoochee","2021-07-20",10749,7,3158],["Chattahoochee","2021-07-21",10749,15,3173],["Chattahoochee","2021-07-22",10749,15,3188],["Chattahoochee","2021-07-23",10749,4,3192],["Chattahoochee","2021-07-24",10749,2,3194],["Chattahoochee","2021-07-25",10749,1,3195],["Chattahoochee","2021-07-26",10749,10,3205],["Chattahoochee","2021-07-27",10749,13,3218],["Chattahoochee","2021-07-28",10749,13,3231],["Chattahoochee","2021-07-29",10749,14,3245],["Chattahoochee","2021-07-30",10749,11,3256],["Chattahoochee","2021-07-31",10749,4,3260],["Chattahoochee","2021-08-01",10749,4,3264],["Chattahoochee","2021-08-02",10749,6,3270],["Chattahoochee","2021-08-03",10749,16,3286],["Chattahoochee","2021-08-04",10749,9,3295],["Chattahoochee","2021-08-05",10749,9,3304],["Chattahoochee","2021-08-06",10749,15,3319],["Chattahoochee","2021-08-07",10749,3,3322],["Chattahoochee","2021-08-08",10749,6,3328],["Chattahoochee","2021-08-09",10749,11,3339],["Chattahoochee","2021-08-10",10749,7,3346],["Chattahoochee","2021-08-11",10749,11,3357],["Chattahoochee","2021-08-12",10749,17,3374],["Chattahoochee","2021-08-13",10749,8,3382],["Chattahoochee","2021-08-14",10749,12,3394],["Chattahoochee","2021-08-15",10749,5,3399],["Chattahoochee","2021-08-16",10749,17,3416],["Chattahoochee","2021-08-17",10749,9,3425],["Chattahoochee","2021-08-18",10749,8,3433],["Chattahoochee","2021-08-19",10749,16,3449],["Chattahoochee","2021-08-20",10749,19,3468],["Chattahoochee","2021-08-21",10749,7,3475],["Chattahoochee","2021-08-22",10749,6,3481],["Chattahoochee","2021-08-23",10749,10,3491],["Chattahoochee","2021-08-24",10749,13,3504],["Chattahoochee","2021-08-25",10749,12,3516],["Chattahoochee","2021-08-26",10749,12,3528],["Chattahoochee","2021-08-27",10749,18,3546],["Chattahoochee","2021-08-28",10749,7,3553],["Chattahoochee","2021-08-29",10749,8,3561],["Chattahoochee","2021-08-30",10749,11,3572],["Chattahoochee","2021-08-31",10749,17,3589],["Chattahoochee","2021-09-01",10749,12,3601],["Chattahoochee","2021-09-02",10749,16,3617],["Chattahoochee","2021-09-03",10749,7,3624],["Chattahoochee","2021-09-04",10749,11,3635],["Chattahoochee","2021-09-05",10749,2,3637],["Chattahoochee","2021-09-06",10749,1,3638],["Chattahoochee","2021-09-07",10749,16,3654],["Chattahoochee","2021-09-08",10749,10,3664],["Chattahoochee","2021-09-09",10749,14,3678],["Chattahoochee","2021-09-10",10749,15,3693],["Chattahoochee","2021-09-11",10749,7,3700],["Chattahoochee","2021-09-12",10749,2,3702],["Chattahoochee","2021-09-13",10749,19,3721],["Chattahoochee","2021-09-14",10749,19,3740],["Chattahoochee","2021-09-15",10749,11,3751],["Chattahoochee","2021-09-16",10749,7,3758],["Chattahoochee","2021-09-17",10749,12,3770],["Chattahoochee","2021-09-18",10749,7,3777],["Chattahoochee","2021-09-19",10749,3,3780],["Chattahoochee","2021-09-20",10749,8,3788],["Chattahoochee","2021-09-21",10749,9,3797],["Chattahoochee","2021-09-22",10749,4,3801],["Chattahoochee","2021-09-23",10749,7,3808],["Chattahoochee","2021-09-24",10749,10,3818],["Chattahoochee","2021-09-25",10749,9,3827],["Chattahoochee","2021-09-26",10749,5,3832],["Chattahoochee","2021-09-27",10749,5,3837],["Chattahoochee","2021-09-28",10749,9,3846],["Chattahoochee","2021-09-29",10749,7,3853],["Chattahoochee","2021-09-30",10749,3,3856],["Chattahoochee","2021-10-01",10749,7,3863],["Chattahoochee","2021-10-02",10749,3,3866],["Chattahoochee","2021-10-03",10749,1,3867],["Chattahoochee","2021-10-04",10749,10,3877],["Chattahoochee","2021-10-05",10749,8,3885],["Chattahoochee","2021-10-06",10749,5,3890],["Chattahoochee","2021-10-07",10749,7,3897],["Chattahoochee","2021-10-08",10749,8,3905],["Chattahoochee","2021-10-09",10749,3,3908],["Chattahoochee","2021-10-10",10749,1,3909],["Chattahoochee","2021-10-11",10749,9,3918],["Chattahoochee","2021-10-12",10749,6,3924],["Chattahoochee","2021-10-13",10749,1,3925],["Chattahoochee","2021-10-14",10749,6,3931],["Chattahoochee","2021-10-15",10749,12,3943],["Chattahoochee","2021-10-16",10749,4,3947],["Chattahoochee","2021-10-17",10749,1,3948],["Chattahoochee","2021-10-18",10749,3,3951],["Chattahoochee","2021-10-19",10749,6,3957],["Chattahoochee","2021-10-20",10749,3,3960],["Chattahoochee","2021-10-21",10749,1,3961],["Chattahoochee","2021-10-22",10749,13,3974],["Chattahoochee","2021-10-23",10749,3,3977],["Chattahoochee","2021-10-24",10749,6,3983],["Chattahoochee","2021-10-25",10749,13,3996],["Chattahoochee","2021-10-26",10749,17,4013],["Chattahoochee","2021-10-27",10749,7,4020],["Chattahoochee","2021-10-28",10749,6,4026],["Chattahoochee","2021-10-29",10749,42,4068],["Chattahoochee","2021-10-30",10749,7,4075],["Chattahoochee","2021-10-31",10749,1,4076],["Chattahoochee","2021-11-01",10749,12,4088],["Chattahoochee","2021-11-02",10749,18,4106],["Chattahoochee","2021-11-03",10749,6,4112],["Chattahoochee","2021-11-04",10749,6,4118],["Chattahoochee","2021-11-05",10749,33,4151],["Chattahoochee","2021-11-06",10749,5,4156],["Chattahoochee","2021-11-07",10749,6,4162],["Chattahoochee","2021-11-08",10749,9,4171],["Chattahoochee","2021-11-09",10749,19,4190],["Chattahoochee","2021-11-10",10749,12,4202],["Chattahoochee","2021-11-11",10749,4,4206],["Chattahoochee","2021-11-12",10749,15,4221],["Chattahoochee","2021-11-13",10749,1,4222],["Chattahoochee","2021-11-14",10749,4,4226],["Chattahoochee","2021-11-15",10749,4,4230],["Chattahoochee","2021-11-16",10749,30,4260],["Chattahoochee","2021-11-17",10749,7,4267],["Chattahoochee","2021-11-18",10749,11,4278],["Chattahoochee","2021-11-19",10749,16,4294],["Chattahoochee","2021-11-20",10749,7,4301],["Chattahoochee","2021-11-21",10749,4,4305],["Chattahoochee","2021-11-22",10749,19,4324],["Chattahoochee","2021-11-23",10749,17,4341],["Chattahoochee","2021-11-24",10749,7,4348],["Chattahoochee","2021-11-26",10749,3,4351],["Chattahoochee","2021-11-27",10749,6,4357],["Chattahoochee","2021-11-28",10749,7,4364],["Chattahoochee","2021-11-29",10749,14,4378],["Chattahoochee","2021-11-30",10749,11,4389],["Chattahoochee","2021-12-01",10749,12,4401],["Chattahoochee","2021-12-02",10749,11,4412],["Chattahoochee","2021-12-03",10749,28,4440],["Chattahoochee","2021-12-04",10749,11,4451],["Chattahoochee","2021-12-05",10749,5,4456],["Chattahoochee","2021-12-06",10749,11,4467],["Chattahoochee","2021-12-07",10749,31,4498],["Chattahoochee","2021-12-08",10749,8,4506],["Chattahoochee","2021-12-09",10749,10,4516],["Chattahoochee","2021-12-10",10749,20,4536],["Chattahoochee","2021-12-11",10749,8,4544],["Chattahoochee","2021-12-12",10749,7,4551],["Chattahoochee","2021-12-13",10749,7,4558],["Chattahoochee","2021-12-14",10749,12,4570],["Chattahoochee","2021-12-15",10749,6,4576],["Chattahoochee","2021-12-16",10749,9,4585],["Chattahoochee","2021-12-17",10749,12,4597],["Chattahoochee","2021-12-18",10749,6,4603],["Chattahoochee","2021-12-19",10749,3,4606],["Chattahoochee","2021-12-20",10749,3,4609],["Chattahoochee","2021-12-21",10749,24,4633],["Chattahoochee","2021-12-22",10749,8,4641],["Chattahoochee","2021-12-23",10749,2,4643],["Chattahoochee","2021-12-24",10749,1,4644],["Chattahoochee","2021-12-26",10749,6,4650],["Chattahoochee","2021-12-27",10749,9,4659],["Chattahoochee","2021-12-28",10749,18,4677],["Chattahoochee","2021-12-29",10749,10,4687],["Chattahoochee","2021-12-30",10749,6,4693],["Chattahoochee","2021-12-31",10749,5,4698],["Chattahoochee","2022-01-01",10749,2,4700],["Chattahoochee","2022-01-02",10749,2,4702],["Chattahoochee","2022-01-03",10749,5,4707],["Chattooga","2020-12-18",24766,4,4],["Chattooga","2020-12-20",24766,4,8],["Chattooga","2020-12-21",24766,17,25],["Chattooga","2020-12-22",24766,11,36],["Chattooga","2020-12-23",24766,24,60],["Chattooga","2020-12-26",24766,2,62],["Chattooga","2020-12-27",24766,2,64],["Chattooga","2020-12-28",24766,31,95],["Chattooga","2020-12-29",24766,30,125],["Chattooga","2020-12-30",24766,41,166],["Chattooga","2020-12-31",24766,55,221],["Chattooga","2021-01-01",24766,1,222],["Chattooga","2021-01-02",24766,6,228],["Chattooga","2021-01-03",24766,12,240],["Chattooga","2021-01-04",24766,88,328],["Chattooga","2021-01-05",24766,65,393],["Chattooga","2021-01-06",24766,58,451],["Chattooga","2021-01-07",24766,83,534],["Chattooga","2021-01-08",24766,58,592],["Chattooga","2021-01-09",24766,2,594],["Chattooga","2021-01-10",24766,9,603],["Chattooga","2021-01-11",24766,217,820],["Chattooga","2021-01-12",24766,218,1038],["Chattooga","2021-01-13",24766,159,1197],["Chattooga","2021-01-14",24766,271,1468],["Chattooga","2021-01-15",24766,132,1600],["Chattooga","2021-01-16",24766,6,1606],["Chattooga","2021-01-18",24766,59,1665],["Chattooga","2021-01-19",24766,174,1839],["Chattooga","2021-01-20",24766,171,2010],["Chattooga","2021-01-21",24766,193,2203],["Chattooga","2021-01-22",24766,84,2287],["Chattooga","2021-01-23",24766,1,2288],["Chattooga","2021-01-24",24766,3,2291],["Chattooga","2021-01-25",24766,152,2443],["Chattooga","2021-01-26",24766,130,2573],["Chattooga","2021-01-27",24766,122,2695],["Chattooga","2021-01-28",24766,131,2826],["Chattooga","2021-01-29",24766,86,2912],["Chattooga","2021-01-30",24766,2,2914],["Chattooga","2021-01-31",24766,1,2915],["Chattooga","2021-02-01",24766,223,3138],["Chattooga","2021-02-02",24766,112,3250],["Chattooga","2021-02-03",24766,201,3451],["Chattooga","2021-02-04",24766,179,3630],["Chattooga","2021-02-05",24766,127,3757],["Chattooga","2021-02-06",24766,24,3781],["Chattooga","2021-02-07",24766,1,3782],["Chattooga","2021-02-08",24766,173,3955],["Chattooga","2021-02-09",24766,161,4116],["Chattooga","2021-02-10",24766,160,4276],["Chattooga","2021-02-11",24766,184,4460],["Chattooga","2021-02-12",24766,153,4613],["Chattooga","2021-02-13",24766,23,4636],["Chattooga","2021-02-14",24766,3,4639],["Chattooga","2021-02-15",24766,176,4815],["Chattooga","2021-02-16",24766,20,4835],["Chattooga","2021-02-17",24766,172,5007],["Chattooga","2021-02-18",24766,211,5218],["Chattooga","2021-02-19",24766,160,5378],["Chattooga","2021-02-20",24766,2,5380],["Chattooga","2021-02-21",24766,1,5381],["Chattooga","2021-02-22",24766,155,5536],["Chattooga","2021-02-23",24766,170,5706],["Chattooga","2021-02-24",24766,134,5840],["Chattooga","2021-02-25",24766,196,6036],["Chattooga","2021-02-26",24766,96,6132],["Chattooga","2021-02-27",24766,6,6138],["Chattooga","2021-02-28",24766,5,6143],["Chattooga","2021-03-01",24766,134,6277],["Chattooga","2021-03-02",24766,87,6364],["Chattooga","2021-03-03",24766,88,6452],["Chattooga","2021-03-04",24766,119,6571],["Chattooga","2021-03-05",24766,83,6654],["Chattooga","2021-03-06",24766,19,6673],["Chattooga","2021-03-07",24766,4,6677],["Chattooga","2021-03-08",24766,181,6858],["Chattooga","2021-03-09",24766,72,6930],["Chattooga","2021-03-10",24766,91,7021],["Chattooga","2021-03-11",24766,97,7118],["Chattooga","2021-03-12",24766,113,7231],["Chattooga","2021-03-13",24766,13,7244],["Chattooga","2021-03-14",24766,11,7255],["Chattooga","2021-03-15",24766,150,7405],["Chattooga","2021-03-16",24766,144,7549],["Chattooga","2021-03-17",24766,67,7616],["Chattooga","2021-03-18",24766,173,7789],["Chattooga","2021-03-19",24766,153,7942],["Chattooga","2021-03-20",24766,10,7952],["Chattooga","2021-03-21",24766,2,7954],["Chattooga","2021-03-22",24766,64,8018],["Chattooga","2021-03-23",24766,65,8083],["Chattooga","2021-03-24",24766,88,8171],["Chattooga","2021-03-25",24766,78,8249],["Chattooga","2021-03-26",24766,177,8426],["Chattooga","2021-03-27",24766,15,8441],["Chattooga","2021-03-28",24766,4,8445],["Chattooga","2021-03-29",24766,99,8544],["Chattooga","2021-03-30",24766,111,8655],["Chattooga","2021-03-31",24766,133,8788],["Chattooga","2021-04-01",24766,184,8972],["Chattooga","2021-04-02",24766,172,9144],["Chattooga","2021-04-03",24766,20,9164],["Chattooga","2021-04-04",24766,7,9171],["Chattooga","2021-04-05",24766,79,9250],["Chattooga","2021-04-06",24766,116,9366],["Chattooga","2021-04-07",24766,104,9470],["Chattooga","2021-04-08",24766,83,9553],["Chattooga","2021-04-09",24766,139,9692],["Chattooga","2021-04-10",24766,12,9704],["Chattooga","2021-04-11",24766,15,9719],["Chattooga","2021-04-12",24766,70,9789],["Chattooga","2021-04-13",24766,118,9907],["Chattooga","2021-04-14",24766,175,10082],["Chattooga","2021-04-15",24766,197,10279],["Chattooga","2021-04-16",24766,222,10501],["Chattooga","2021-04-17",24766,9,10510],["Chattooga","2021-04-18",24766,2,10512],["Chattooga","2021-04-19",24766,68,10580],["Chattooga","2021-04-20",24766,80,10660],["Chattooga","2021-04-21",24766,122,10782],["Chattooga","2021-04-22",24766,155,10937],["Chattooga","2021-04-23",24766,139,11076],["Chattooga","2021-04-24",24766,18,11094],["Chattooga","2021-04-25",24766,10,11104],["Chattooga","2021-04-26",24766,139,11243],["Chattooga","2021-04-27",24766,71,11314],["Chattooga","2021-04-28",24766,180,11494],["Chattooga","2021-04-29",24766,108,11602],["Chattooga","2021-04-30",24766,121,11723],["Chattooga","2021-05-01",24766,16,11739],["Chattooga","2021-05-02",24766,9,11748],["Chattooga","2021-05-03",24766,46,11794],["Chattooga","2021-05-04",24766,104,11898],["Chattooga","2021-05-05",24766,123,12021],["Chattooga","2021-05-06",24766,57,12078],["Chattooga","2021-05-07",24766,127,12205],["Chattooga","2021-05-08",24766,14,12219],["Chattooga","2021-05-09",24766,7,12226],["Chattooga","2021-05-10",24766,33,12259],["Chattooga","2021-05-11",24766,56,12315],["Chattooga","2021-05-12",24766,84,12399],["Chattooga","2021-05-13",24766,120,12519],["Chattooga","2021-05-14",24766,55,12574],["Chattooga","2021-05-15",24766,12,12586],["Chattooga","2021-05-16",24766,14,12600],["Chattooga","2021-05-17",24766,37,12637],["Chattooga","2021-05-18",24766,45,12682],["Chattooga","2021-05-19",24766,67,12749],["Chattooga","2021-05-20",24766,123,12872],["Chattooga","2021-05-21",24766,107,12979],["Chattooga","2021-05-22",24766,19,12998],["Chattooga","2021-05-23",24766,11,13009],["Chattooga","2021-05-24",24766,41,13050],["Chattooga","2021-05-25",24766,43,13093],["Chattooga","2021-05-26",24766,55,13148],["Chattooga","2021-05-27",24766,84,13232],["Chattooga","2021-05-28",24766,46,13278],["Chattooga","2021-05-29",24766,16,13294],["Chattooga","2021-05-30",24766,7,13301],["Chattooga","2021-05-31",24766,8,13309],["Chattooga","2021-06-01",24766,46,13355],["Chattooga","2021-06-02",24766,34,13389],["Chattooga","2021-06-03",24766,58,13447],["Chattooga","2021-06-04",24766,37,13484],["Chattooga","2021-06-05",24766,9,13493],["Chattooga","2021-06-06",24766,12,13505],["Chattooga","2021-06-07",24766,16,13521],["Chattooga","2021-06-08",24766,15,13536],["Chattooga","2021-06-09",24766,31,13567],["Chattooga","2021-06-10",24766,102,13669],["Chattooga","2021-06-11",24766,40,13709],["Chattooga","2021-06-12",24766,19,13728],["Chattooga","2021-06-13",24766,6,13734],["Chattooga","2021-06-14",24766,26,13760],["Chattooga","2021-06-15",24766,36,13796],["Chattooga","2021-06-16",24766,33,13829],["Chattooga","2021-06-17",24766,29,13858],["Chattooga","2021-06-18",24766,83,13941],["Chattooga","2021-06-19",24766,13,13954],["Chattooga","2021-06-20",24766,6,13960],["Chattooga","2021-06-21",24766,13,13973],["Chattooga","2021-06-22",24766,16,13989],["Chattooga","2021-06-23",24766,22,14011],["Chattooga","2021-06-24",24766,41,14052],["Chattooga","2021-06-25",24766,54,14106],["Chattooga","2021-06-26",24766,10,14116],["Chattooga","2021-06-27",24766,4,14120],["Chattooga","2021-06-28",24766,16,14136],["Chattooga","2021-06-29",24766,29,14165],["Chattooga","2021-06-30",24766,16,14181],["Chattooga","2021-07-01",24766,25,14206],["Chattooga","2021-07-02",24766,31,14237],["Chattooga","2021-07-03",24766,5,14242],["Chattooga","2021-07-04",24766,2,14244],["Chattooga","2021-07-05",24766,7,14251],["Chattooga","2021-07-06",24766,23,14274],["Chattooga","2021-07-07",24766,19,14293],["Chattooga","2021-07-08",24766,26,14319],["Chattooga","2021-07-09",24766,23,14342],["Chattooga","2021-07-10",24766,15,14357],["Chattooga","2021-07-11",24766,2,14359],["Chattooga","2021-07-12",24766,8,14367],["Chattooga","2021-07-13",24766,13,14380],["Chattooga","2021-07-14",24766,34,14414],["Chattooga","2021-07-15",24766,20,14434],["Chattooga","2021-07-16",24766,15,14449],["Chattooga","2021-07-17",24766,9,14458],["Chattooga","2021-07-18",24766,9,14467],["Chattooga","2021-07-19",24766,15,14482],["Chattooga","2021-07-20",24766,18,14500],["Chattooga","2021-07-21",24766,29,14529],["Chattooga","2021-07-22",24766,56,14585],["Chattooga","2021-07-23",24766,49,14634],["Chattooga","2021-07-24",24766,30,14664],["Chattooga","2021-07-25",24766,4,14668],["Chattooga","2021-07-26",24766,20,14688],["Chattooga","2021-07-27",24766,32,14720],["Chattooga","2021-07-28",24766,36,14756],["Chattooga","2021-07-29",24766,55,14811],["Chattooga","2021-07-30",24766,55,14866],["Chattooga","2021-07-31",24766,26,14892],["Chattooga","2021-08-01",24766,15,14907],["Chattooga","2021-08-02",24766,29,14936],["Chattooga","2021-08-03",24766,42,14978],["Chattooga","2021-08-04",24766,40,15018],["Chattooga","2021-08-05",24766,56,15074],["Chattooga","2021-08-06",24766,58,15132],["Chattooga","2021-08-07",24766,17,15149],["Chattooga","2021-08-08",24766,3,15152],["Chattooga","2021-08-09",24766,32,15184],["Chattooga","2021-08-10",24766,49,15233],["Chattooga","2021-08-11",24766,44,15277],["Chattooga","2021-08-12",24766,56,15333],["Chattooga","2021-08-13",24766,61,15394],["Chattooga","2021-08-14",24766,22,15416],["Chattooga","2021-08-15",24766,14,15430],["Chattooga","2021-08-16",24766,33,15463],["Chattooga","2021-08-17",24766,36,15499],["Chattooga","2021-08-18",24766,56,15555],["Chattooga","2021-08-19",24766,77,15632],["Chattooga","2021-08-20",24766,81,15713],["Chattooga","2021-08-21",24766,50,15763],["Chattooga","2021-08-22",24766,23,15786],["Chattooga","2021-08-23",24766,36,15822],["Chattooga","2021-08-24",24766,57,15879],["Chattooga","2021-08-25",24766,62,15941],["Chattooga","2021-08-26",24766,62,16003],["Chattooga","2021-08-27",24766,113,16116],["Chattooga","2021-08-28",24766,39,16155],["Chattooga","2021-08-29",24766,29,16184],["Chattooga","2021-08-30",24766,54,16238],["Chattooga","2021-08-31",24766,63,16301],["Chattooga","2021-09-01",24766,75,16376],["Chattooga","2021-09-02",24766,120,16496],["Chattooga","2021-09-03",24766,94,16590],["Chattooga","2021-09-04",24766,33,16623],["Chattooga","2021-09-05",24766,26,16649],["Chattooga","2021-09-06",24766,48,16697],["Chattooga","2021-09-07",24766,85,16782],["Chattooga","2021-09-08",24766,67,16849],["Chattooga","2021-09-09",24766,104,16953],["Chattooga","2021-09-10",24766,114,17067],["Chattooga","2021-09-11",24766,31,17098],["Chattooga","2021-09-12",24766,30,17128],["Chattooga","2021-09-13",24766,52,17180],["Chattooga","2021-09-14",24766,42,17222],["Chattooga","2021-09-15",24766,54,17276],["Chattooga","2021-09-16",24766,96,17372],["Chattooga","2021-09-17",24766,111,17483],["Chattooga","2021-09-18",24766,46,17529],["Chattooga","2021-09-19",24766,22,17551],["Chattooga","2021-09-20",24766,42,17593],["Chattooga","2021-09-21",24766,52,17645],["Chattooga","2021-09-22",24766,57,17702],["Chattooga","2021-09-23",24766,60,17762],["Chattooga","2021-09-24",24766,81,17843],["Chattooga","2021-09-25",24766,21,17864],["Chattooga","2021-09-26",24766,15,17879],["Chattooga","2021-09-27",24766,43,17922],["Chattooga","2021-09-28",24766,51,17973],["Chattooga","2021-09-29",24766,40,18013],["Chattooga","2021-09-30",24766,92,18105],["Chattooga","2021-10-01",24766,79,18184],["Chattooga","2021-10-02",24766,32,18216],["Chattooga","2021-10-03",24766,17,18233],["Chattooga","2021-10-04",24766,37,18270],["Chattooga","2021-10-05",24766,62,18332],["Chattooga","2021-10-06",24766,36,18368],["Chattooga","2021-10-07",24766,61,18429],["Chattooga","2021-10-08",24766,50,18479],["Chattooga","2021-10-09",24766,12,18491],["Chattooga","2021-10-10",24766,9,18500],["Chattooga","2021-10-11",24766,23,18523],["Chattooga","2021-10-12",24766,23,18546],["Chattooga","2021-10-13",24766,39,18585],["Chattooga","2021-10-14",24766,40,18625],["Chattooga","2021-10-15",24766,38,18663],["Chattooga","2021-10-16",24766,9,18672],["Chattooga","2021-10-17",24766,7,18679],["Chattooga","2021-10-18",24766,20,18699],["Chattooga","2021-10-19",24766,24,18723],["Chattooga","2021-10-20",24766,12,18735],["Chattooga","2021-10-21",24766,30,18765],["Chattooga","2021-10-22",24766,54,18819],["Chattooga","2021-10-23",24766,33,18852],["Chattooga","2021-10-24",24766,17,18869],["Chattooga","2021-10-25",24766,37,18906],["Chattooga","2021-10-26",24766,103,19009],["Chattooga","2021-10-27",24766,133,19142],["Chattooga","2021-10-28",24766,82,19224],["Chattooga","2021-10-29",24766,170,19394],["Chattooga","2021-10-30",24766,16,19410],["Chattooga","2021-10-31",24766,3,19413],["Chattooga","2021-11-01",24766,97,19510],["Chattooga","2021-11-02",24766,148,19658],["Chattooga","2021-11-03",24766,116,19774],["Chattooga","2021-11-04",24766,60,19834],["Chattooga","2021-11-05",24766,108,19942],["Chattooga","2021-11-06",24766,20,19962],["Chattooga","2021-11-07",24766,7,19969],["Chattooga","2021-11-08",24766,98,20067],["Chattooga","2021-11-09",24766,57,20124],["Chattooga","2021-11-10",24766,104,20228],["Chattooga","2021-11-11",24766,17,20245],["Chattooga","2021-11-12",24766,103,20348],["Chattooga","2021-11-13",24766,11,20359],["Chattooga","2021-11-14",24766,11,20370],["Chattooga","2021-11-15",24766,57,20427],["Chattooga","2021-11-16",24766,37,20464],["Chattooga","2021-11-17",24766,80,20544],["Chattooga","2021-11-18",24766,63,20607],["Chattooga","2021-11-19",24766,132,20739],["Chattooga","2021-11-20",24766,19,20758],["Chattooga","2021-11-21",24766,7,20765],["Chattooga","2021-11-22",24766,72,20837],["Chattooga","2021-11-23",24766,57,20894],["Chattooga","2021-11-24",24766,55,20949],["Chattooga","2021-11-26",24766,15,20964],["Chattooga","2021-11-27",24766,15,20979],["Chattooga","2021-11-28",24766,7,20986],["Chattooga","2021-11-29",24766,67,21053],["Chattooga","2021-11-30",24766,56,21109],["Chattooga","2021-12-01",24766,89,21198],["Chattooga","2021-12-02",24766,78,21276],["Chattooga","2021-12-03",24766,133,21409],["Chattooga","2021-12-04",24766,21,21430],["Chattooga","2021-12-05",24766,7,21437],["Chattooga","2021-12-06",24766,64,21501],["Chattooga","2021-12-07",24766,37,21538],["Chattooga","2021-12-08",24766,42,21580],["Chattooga","2021-12-09",24766,88,21668],["Chattooga","2021-12-10",24766,103,21771],["Chattooga","2021-12-11",24766,15,21786],["Chattooga","2021-12-12",24766,3,21789],["Chattooga","2021-12-13",24766,39,21828],["Chattooga","2021-12-14",24766,34,21862],["Chattooga","2021-12-15",24766,80,21942],["Chattooga","2021-12-16",24766,52,21994],["Chattooga","2021-12-17",24766,71,22065],["Chattooga","2021-12-18",24766,16,22081],["Chattooga","2021-12-19",24766,12,22093],["Chattooga","2021-12-20",24766,48,22141],["Chattooga","2021-12-21",24766,53,22194],["Chattooga","2021-12-22",24766,41,22235],["Chattooga","2021-12-23",24766,25,22260],["Chattooga","2021-12-24",24766,4,22264],["Chattooga","2021-12-26",24766,4,22268],["Chattooga","2021-12-27",24766,56,22324],["Chattooga","2021-12-28",24766,46,22370],["Chattooga","2021-12-29",24766,55,22425],["Chattooga","2021-12-30",24766,48,22473],["Chattooga","2021-12-31",24766,15,22488],["Chattooga","2022-01-01",24766,8,22496],["Chattooga","2022-01-02",24766,11,22507],["Chattooga","2022-01-03",24766,10,22517],["Cherokee","2020-12-12",266617,1,1],["Cherokee","2020-12-13",266617,1,2],["Cherokee","2020-12-16",266617,5,7],["Cherokee","2020-12-17",266617,22,29],["Cherokee","2020-12-18",266617,110,139],["Cherokee","2020-12-19",266617,34,173],["Cherokee","2020-12-20",266617,79,252],["Cherokee","2020-12-21",266617,109,361],["Cherokee","2020-12-22",266617,252,613],["Cherokee","2020-12-23",266617,260,873],["Cherokee","2020-12-24",266617,30,903],["Cherokee","2020-12-26",266617,26,929],["Cherokee","2020-12-27",266617,45,974],["Cherokee","2020-12-28",266617,362,1336],["Cherokee","2020-12-29",266617,482,1818],["Cherokee","2020-12-30",266617,440,2258],["Cherokee","2020-12-31",266617,177,2435],["Cherokee","2021-01-01",266617,225,2660],["Cherokee","2021-01-02",266617,59,2719],["Cherokee","2021-01-03",266617,65,2784],["Cherokee","2021-01-04",266617,336,3120],["Cherokee","2021-01-05",266617,541,3661],["Cherokee","2021-01-06",266617,462,4123],["Cherokee","2021-01-07",266617,457,4580],["Cherokee","2021-01-08",266617,456,5036],["Cherokee","2021-01-09",266617,118,5154],["Cherokee","2021-01-10",266617,211,5365],["Cherokee","2021-01-11",266617,979,6344],["Cherokee","2021-01-12",266617,1073,7417],["Cherokee","2021-01-13",266617,968,8385],["Cherokee","2021-01-14",266617,948,9333],["Cherokee","2021-01-15",266617,921,10254],["Cherokee","2021-01-16",266617,540,10794],["Cherokee","2021-01-17",266617,255,11049],["Cherokee","2021-01-18",266617,1492,12541],["Cherokee","2021-01-19",266617,1680,14221],["Cherokee","2021-01-20",266617,1556,15777],["Cherokee","2021-01-21",266617,1416,17193],["Cherokee","2021-01-22",266617,1087,18280],["Cherokee","2021-01-23",266617,194,18474],["Cherokee","2021-01-24",266617,143,18617],["Cherokee","2021-01-25",266617,1256,19873],["Cherokee","2021-01-26",266617,1266,21139],["Cherokee","2021-01-27",266617,1249,22388],["Cherokee","2021-01-28",266617,1806,24194],["Cherokee","2021-01-29",266617,1244,25438],["Cherokee","2021-01-30",266617,256,25694],["Cherokee","2021-01-31",266617,216,25910],["Cherokee","2021-02-01",266617,1594,27504],["Cherokee","2021-02-02",266617,1284,28788],["Cherokee","2021-02-03",266617,1101,29889],["Cherokee","2021-02-04",266617,1201,31090],["Cherokee","2021-02-05",266617,1052,32142],["Cherokee","2021-02-06",266617,220,32362],["Cherokee","2021-02-07",266617,89,32451],["Cherokee","2021-02-08",266617,1196,33647],["Cherokee","2021-02-09",266617,1861,35508],["Cherokee","2021-02-10",266617,1498,37006],["Cherokee","2021-02-11",266617,1570,38576],["Cherokee","2021-02-12",266617,1446,40022],["Cherokee","2021-02-13",266617,624,40646],["Cherokee","2021-02-14",266617,309,40955],["Cherokee","2021-02-15",266617,1458,42413],["Cherokee","2021-02-16",266617,1540,43953],["Cherokee","2021-02-17",266617,1554,45507],["Cherokee","2021-02-18",266617,1292,46799],["Cherokee","2021-02-19",266617,1095,47894],["Cherokee","2021-02-20",266617,319,48213],["Cherokee","2021-02-21",266617,170,48383],["Cherokee","2021-02-22",266617,1015,49398],["Cherokee","2021-02-23",266617,1444,50842],["Cherokee","2021-02-24",266617,1499,52341],["Cherokee","2021-02-25",266617,2389,54730],["Cherokee","2021-02-26",266617,2260,56990],["Cherokee","2021-02-27",266617,343,57333],["Cherokee","2021-02-28",266617,307,57640],["Cherokee","2021-03-01",266617,1949,59589],["Cherokee","2021-03-02",266617,1710,61299],["Cherokee","2021-03-03",266617,1448,62747],["Cherokee","2021-03-04",266617,1422,64169],["Cherokee","2021-03-05",266617,2004,66173],["Cherokee","2021-03-06",266617,269,66442],["Cherokee","2021-03-07",266617,261,66703],["Cherokee","2021-03-08",266617,1414,68117],["Cherokee","2021-03-09",266617,1790,69907],["Cherokee","2021-03-10",266617,1480,71387],["Cherokee","2021-03-11",266617,2204,73591],["Cherokee","2021-03-12",266617,2273,75864],["Cherokee","2021-03-13",266617,367,76231],["Cherokee","2021-03-14",266617,336,76567],["Cherokee","2021-03-15",266617,2051,78618],["Cherokee","2021-03-16",266617,2063,80681],["Cherokee","2021-03-17",266617,2041,82722],["Cherokee","2021-03-18",266617,1933,84655],["Cherokee","2021-03-19",266617,2808,87463],["Cherokee","2021-03-20",266617,487,87950],["Cherokee","2021-03-21",266617,439,88389],["Cherokee","2021-03-22",266617,1561,89950],["Cherokee","2021-03-23",266617,2480,92430],["Cherokee","2021-03-24",266617,2055,94485],["Cherokee","2021-03-25",266617,2544,97029],["Cherokee","2021-03-26",266617,2106,99135],["Cherokee","2021-03-27",266617,674,99809],["Cherokee","2021-03-28",266617,551,100360],["Cherokee","2021-03-29",266617,2232,102592],["Cherokee","2021-03-30",266617,3109,105701],["Cherokee","2021-03-31",266617,2702,108403],["Cherokee","2021-04-01",266617,3456,111859],["Cherokee","2021-04-02",266617,1660,113519],["Cherokee","2021-04-03",266617,747,114266],["Cherokee","2021-04-04",266617,473,114739],["Cherokee","2021-04-05",266617,2172,116911],["Cherokee","2021-04-06",266617,3346,120257],["Cherokee","2021-04-07",266617,2424,122681],["Cherokee","2021-04-08",266617,3003,125684],["Cherokee","2021-04-09",266617,2740,128424],["Cherokee","2021-04-10",266617,1130,129554],["Cherokee","2021-04-11",266617,653,130207],["Cherokee","2021-04-12",266617,2913,133120],["Cherokee","2021-04-13",266617,2452,135572],["Cherokee","2021-04-14",266617,2297,137869],["Cherokee","2021-04-15",266617,2187,140056],["Cherokee","2021-04-16",266617,2581,142637],["Cherokee","2021-04-17",266617,539,143176],["Cherokee","2021-04-18",266617,635,143811],["Cherokee","2021-04-19",266617,2289,146100],["Cherokee","2021-04-20",266617,2224,148324],["Cherokee","2021-04-21",266617,2632,150956],["Cherokee","2021-04-22",266617,2462,153418],["Cherokee","2021-04-23",266617,2512,155930],["Cherokee","2021-04-24",266617,773,156703],["Cherokee","2021-04-25",266617,407,157110],["Cherokee","2021-04-26",266617,1876,158986],["Cherokee","2021-04-27",266617,1891,160877],["Cherokee","2021-04-28",266617,2284,163161],["Cherokee","2021-04-29",266617,2066,165227],["Cherokee","2021-04-30",266617,2302,167529],["Cherokee","2021-05-01",266617,1103,168632],["Cherokee","2021-05-02",266617,469,169101],["Cherokee","2021-05-03",266617,1440,170541],["Cherokee","2021-05-04",266617,1763,172304],["Cherokee","2021-05-05",266617,1786,174090],["Cherokee","2021-05-06",266617,1500,175590],["Cherokee","2021-05-07",266617,1784,177374],["Cherokee","2021-05-08",266617,546,177920],["Cherokee","2021-05-09",266617,277,178197],["Cherokee","2021-05-10",266617,901,179098],["Cherokee","2021-05-11",266617,1004,180102],["Cherokee","2021-05-12",266617,1213,181315],["Cherokee","2021-05-13",266617,1034,182349],["Cherokee","2021-05-14",266617,1289,183638],["Cherokee","2021-05-15",266617,762,184400],["Cherokee","2021-05-16",266617,440,184840],["Cherokee","2021-05-17",266617,997,185837],["Cherokee","2021-05-18",266617,1143,186980],["Cherokee","2021-05-19",266617,1177,188157],["Cherokee","2021-05-20",266617,975,189132],["Cherokee","2021-05-21",266617,1077,190209],["Cherokee","2021-05-22",266617,576,190785],["Cherokee","2021-05-23",266617,334,191119],["Cherokee","2021-05-24",266617,634,191753],["Cherokee","2021-05-25",266617,778,192531],["Cherokee","2021-05-26",266617,905,193436],["Cherokee","2021-05-27",266617,649,194085],["Cherokee","2021-05-28",266617,748,194833],["Cherokee","2021-05-29",266617,308,195141],["Cherokee","2021-05-30",266617,248,195389],["Cherokee","2021-05-31",266617,92,195481],["Cherokee","2021-06-01",266617,944,196425],["Cherokee","2021-06-02",266617,658,197083],["Cherokee","2021-06-03",266617,646,197729],["Cherokee","2021-06-04",266617,827,198556],["Cherokee","2021-06-05",266617,513,199069],["Cherokee","2021-06-06",266617,348,199417],["Cherokee","2021-06-07",266617,572,199989],["Cherokee","2021-06-08",266617,717,200706],["Cherokee","2021-06-09",266617,549,201255],["Cherokee","2021-06-10",266617,530,201785],["Cherokee","2021-06-11",266617,653,202438],["Cherokee","2021-06-12",266617,413,202851],["Cherokee","2021-06-13",266617,180,203031],["Cherokee","2021-06-14",266617,447,203478],["Cherokee","2021-06-15",266617,517,203995],["Cherokee","2021-06-16",266617,454,204449],["Cherokee","2021-06-17",266617,407,204856],["Cherokee","2021-06-18",266617,517,205373],["Cherokee","2021-06-19",266617,308,205681],["Cherokee","2021-06-20",266617,180,205861],["Cherokee","2021-06-21",266617,281,206142],["Cherokee","2021-06-22",266617,489,206631],["Cherokee","2021-06-23",266617,410,207041],["Cherokee","2021-06-24",266617,342,207383],["Cherokee","2021-06-25",266617,413,207796],["Cherokee","2021-06-26",266617,228,208024],["Cherokee","2021-06-27",266617,179,208203],["Cherokee","2021-06-28",266617,340,208543],["Cherokee","2021-06-29",266617,345,208888],["Cherokee","2021-06-30",266617,293,209181],["Cherokee","2021-07-01",266617,348,209529],["Cherokee","2021-07-02",266617,379,209908],["Cherokee","2021-07-03",266617,177,210085],["Cherokee","2021-07-04",266617,40,210125],["Cherokee","2021-07-05",266617,210,210335],["Cherokee","2021-07-06",266617,284,210619],["Cherokee","2021-07-07",266617,314,210933],["Cherokee","2021-07-08",266617,296,211229],["Cherokee","2021-07-09",266617,360,211589],["Cherokee","2021-07-10",266617,231,211820],["Cherokee","2021-07-11",266617,180,212000],["Cherokee","2021-07-12",266617,289,212289],["Cherokee","2021-07-13",266617,291,212580],["Cherokee","2021-07-14",266617,250,212830],["Cherokee","2021-07-15",266617,253,213083],["Cherokee","2021-07-16",266617,366,213449],["Cherokee","2021-07-17",266617,251,213700],["Cherokee","2021-07-18",266617,167,213867],["Cherokee","2021-07-19",266617,338,214205],["Cherokee","2021-07-20",266617,346,214551],["Cherokee","2021-07-21",266617,377,214928],["Cherokee","2021-07-22",266617,342,215270],["Cherokee","2021-07-23",266617,482,215752],["Cherokee","2021-07-24",266617,334,216086],["Cherokee","2021-07-25",266617,243,216329],["Cherokee","2021-07-26",266617,403,216732],["Cherokee","2021-07-27",266617,423,217155],["Cherokee","2021-07-28",266617,467,217622],["Cherokee","2021-07-29",266617,430,218052],["Cherokee","2021-07-30",266617,628,218680],["Cherokee","2021-07-31",266617,410,219090],["Cherokee","2021-08-01",266617,337,219427],["Cherokee","2021-08-02",266617,485,219912],["Cherokee","2021-08-03",266617,490,220402],["Cherokee","2021-08-04",266617,481,220883],["Cherokee","2021-08-05",266617,482,221365],["Cherokee","2021-08-06",266617,709,222074],["Cherokee","2021-08-07",266617,431,222505],["Cherokee","2021-08-08",266617,352,222857],["Cherokee","2021-08-09",266617,599,223456],["Cherokee","2021-08-10",266617,607,224063],["Cherokee","2021-08-11",266617,584,224647],["Cherokee","2021-08-12",266617,556,225203],["Cherokee","2021-08-13",266617,716,225919],["Cherokee","2021-08-14",266617,543,226462],["Cherokee","2021-08-15",266617,415,226877],["Cherokee","2021-08-16",266617,621,227498],["Cherokee","2021-08-17",266617,579,228077],["Cherokee","2021-08-18",266617,666,228743],["Cherokee","2021-08-19",266617,646,229389],["Cherokee","2021-08-20",266617,790,230179],["Cherokee","2021-08-21",266617,550,230729],["Cherokee","2021-08-22",266617,346,231075],["Cherokee","2021-08-23",266617,630,231705],["Cherokee","2021-08-24",266617,622,232327],["Cherokee","2021-08-25",266617,608,232935],["Cherokee","2021-08-26",266617,666,233601],["Cherokee","2021-08-27",266617,802,234403],["Cherokee","2021-08-28",266617,568,234971],["Cherokee","2021-08-29",266617,339,235310],["Cherokee","2021-08-30",266617,644,235954],["Cherokee","2021-08-31",266617,655,236609],["Cherokee","2021-09-01",266617,706,237315],["Cherokee","2021-09-02",266617,624,237939],["Cherokee","2021-09-03",266617,781,238720],["Cherokee","2021-09-04",266617,401,239121],["Cherokee","2021-09-05",266617,373,239494],["Cherokee","2021-09-06",266617,81,239575],["Cherokee","2021-09-07",266617,694,240269],["Cherokee","2021-09-08",266617,563,240832],["Cherokee","2021-09-09",266617,584,241416],["Cherokee","2021-09-10",266617,778,242194],["Cherokee","2021-09-11",266617,406,242600],["Cherokee","2021-09-12",266617,305,242905],["Cherokee","2021-09-13",266617,587,243492],["Cherokee","2021-09-14",266617,485,243977],["Cherokee","2021-09-15",266617,416,244393],["Cherokee","2021-09-16",266617,442,244835],["Cherokee","2021-09-17",266617,575,245410],["Cherokee","2021-09-18",266617,344,245754],["Cherokee","2021-09-19",266617,209,245963],["Cherokee","2021-09-20",266617,396,246359],["Cherokee","2021-09-21",266617,358,246717],["Cherokee","2021-09-22",266617,328,247045],["Cherokee","2021-09-23",266617,333,247378],["Cherokee","2021-09-24",266617,473,247851],["Cherokee","2021-09-25",266617,364,248215],["Cherokee","2021-09-26",266617,270,248485],["Cherokee","2021-09-27",266617,557,249042],["Cherokee","2021-09-28",266617,590,249632],["Cherokee","2021-09-29",266617,546,250178],["Cherokee","2021-09-30",266617,551,250729],["Cherokee","2021-10-01",266617,727,251456],["Cherokee","2021-10-02",266617,302,251758],["Cherokee","2021-10-03",266617,227,251985],["Cherokee","2021-10-04",266617,509,252494],["Cherokee","2021-10-05",266617,528,253022],["Cherokee","2021-10-06",266617,427,253449],["Cherokee","2021-10-07",266617,456,253905],["Cherokee","2021-10-08",266617,522,254427],["Cherokee","2021-10-09",266617,283,254710],["Cherokee","2021-10-10",266617,205,254915],["Cherokee","2021-10-11",266617,451,255366],["Cherokee","2021-10-12",266617,433,255799],["Cherokee","2021-10-13",266617,352,256151],["Cherokee","2021-10-14",266617,371,256522],["Cherokee","2021-10-15",266617,482,257004],["Cherokee","2021-10-16",266617,239,257243],["Cherokee","2021-10-17",266617,136,257379],["Cherokee","2021-10-18",266617,388,257767],["Cherokee","2021-10-19",266617,322,258089],["Cherokee","2021-10-20",266617,339,258428],["Cherokee","2021-10-21",266617,385,258813],["Cherokee","2021-10-22",266617,686,259499],["Cherokee","2021-10-23",266617,524,260023],["Cherokee","2021-10-24",266617,312,260335],["Cherokee","2021-10-25",266617,883,261218],["Cherokee","2021-10-26",266617,707,261925],["Cherokee","2021-10-27",266617,857,262782],["Cherokee","2021-10-28",266617,741,263523],["Cherokee","2021-10-29",266617,950,264473],["Cherokee","2021-10-30",266617,474,264947],["Cherokee","2021-10-31",266617,255,265202],["Cherokee","2021-11-01",266617,893,266095],["Cherokee","2021-11-02",266617,766,266861],["Cherokee","2021-11-03",266617,755,267616],["Cherokee","2021-11-04",266617,660,268276],["Cherokee","2021-11-05",266617,906,269182],["Cherokee","2021-11-06",266617,582,269764],["Cherokee","2021-11-07",266617,334,270098],["Cherokee","2021-11-08",266617,659,270757],["Cherokee","2021-11-09",266617,683,271440],["Cherokee","2021-11-10",266617,652,272092],["Cherokee","2021-11-11",266617,666,272758],["Cherokee","2021-11-12",266617,971,273729],["Cherokee","2021-11-13",266617,528,274257],["Cherokee","2021-11-14",266617,321,274578],["Cherokee","2021-11-15",266617,656,275234],["Cherokee","2021-11-16",266617,675,275909],["Cherokee","2021-11-17",266617,636,276545],["Cherokee","2021-11-18",266617,937,277482],["Cherokee","2021-11-19",266617,1455,278937],["Cherokee","2021-11-20",266617,667,279604],["Cherokee","2021-11-21",266617,420,280024],["Cherokee","2021-11-22",266617,875,280899],["Cherokee","2021-11-23",266617,783,281682],["Cherokee","2021-11-24",266617,585,282267],["Cherokee","2021-11-25",266617,6,282273],["Cherokee","2021-11-26",266617,767,283040],["Cherokee","2021-11-27",266617,514,283554],["Cherokee","2021-11-28",266617,345,283899],["Cherokee","2021-11-29",266617,924,284823],["Cherokee","2021-11-30",266617,1001,285824],["Cherokee","2021-12-01",266617,1072,286896],["Cherokee","2021-12-02",266617,967,287863],["Cherokee","2021-12-03",266617,1184,289047],["Cherokee","2021-12-04",266617,732,289779],["Cherokee","2021-12-05",266617,417,290196],["Cherokee","2021-12-06",266617,887,291083],["Cherokee","2021-12-07",266617,853,291936],["Cherokee","2021-12-08",266617,850,292786],["Cherokee","2021-12-09",266617,827,293613],["Cherokee","2021-12-10",266617,975,294588],["Cherokee","2021-12-11",266617,632,295220],["Cherokee","2021-12-12",266617,368,295588],["Cherokee","2021-12-13",266617,737,296325],["Cherokee","2021-12-14",266617,743,297068],["Cherokee","2021-12-15",266617,680,297748],["Cherokee","2021-12-16",266617,687,298435],["Cherokee","2021-12-17",266617,839,299274],["Cherokee","2021-12-18",266617,593,299867],["Cherokee","2021-12-19",266617,338,300205],["Cherokee","2021-12-20",266617,781,300986],["Cherokee","2021-12-21",266617,825,301811],["Cherokee","2021-12-22",266617,861,302672],["Cherokee","2021-12-23",266617,673,303345],["Cherokee","2021-12-24",266617,271,303616],["Cherokee","2021-12-25",266617,2,303618],["Cherokee","2021-12-26",266617,237,303855],["Cherokee","2021-12-27",266617,736,304591],["Cherokee","2021-12-28",266617,743,305334],["Cherokee","2021-12-29",266617,762,306096],["Cherokee","2021-12-30",266617,596,306692],["Cherokee","2021-12-31",266617,311,307003],["Cherokee","2022-01-01",266617,50,307053],["Cherokee","2022-01-02",266617,183,307236],["Cherokee","2022-01-03",266617,192,307428],["Clarke","2020-12-14",129779,1,1],["Clarke","2020-12-15",129779,1,2],["Clarke","2020-12-16",129779,2,4],["Clarke","2020-12-17",129779,4,8],["Clarke","2020-12-18",129779,63,71],["Clarke","2020-12-19",129779,32,103],["Clarke","2020-12-20",129779,11,114],["Clarke","2020-12-21",129779,89,203],["Clarke","2020-12-22",129779,190,393],["Clarke","2020-12-23",129779,233,626],["Clarke","2020-12-24",129779,75,701],["Clarke","2020-12-26",129779,39,740],["Clarke","2020-12-27",129779,9,749],["Clarke","2020-12-28",129779,281,1030],["Clarke","2020-12-29",129779,298,1328],["Clarke","2020-12-30",129779,204,1532],["Clarke","2020-12-31",129779,101,1633],["Clarke","2021-01-01",129779,11,1644],["Clarke","2021-01-02",129779,62,1706],["Clarke","2021-01-03",129779,36,1742],["Clarke","2021-01-04",129779,241,1983],["Clarke","2021-01-05",129779,163,2146],["Clarke","2021-01-06",129779,308,2454],["Clarke","2021-01-07",129779,186,2640],["Clarke","2021-01-08",129779,335,2975],["Clarke","2021-01-09",129779,74,3049],["Clarke","2021-01-10",129779,74,3123],["Clarke","2021-01-11",129779,549,3672],["Clarke","2021-01-12",129779,747,4419],["Clarke","2021-01-13",129779,634,5053],["Clarke","2021-01-14",129779,591,5644],["Clarke","2021-01-15",129779,648,6292],["Clarke","2021-01-16",129779,384,6676],["Clarke","2021-01-17",129779,106,6782],["Clarke","2021-01-18",129779,448,7230],["Clarke","2021-01-19",129779,526,7756],["Clarke","2021-01-20",129779,468,8224],["Clarke","2021-01-21",129779,507,8731],["Clarke","2021-01-22",129779,381,9112],["Clarke","2021-01-23",129779,439,9551],["Clarke","2021-01-24",129779,54,9605],["Clarke","2021-01-25",129779,498,10103],["Clarke","2021-01-26",129779,429,10532],["Clarke","2021-01-27",129779,386,10918],["Clarke","2021-01-28",129779,500,11418],["Clarke","2021-01-29",129779,536,11954],["Clarke","2021-01-30",129779,154,12108],["Clarke","2021-01-31",129779,87,12195],["Clarke","2021-02-01",129779,637,12832],["Clarke","2021-02-02",129779,538,13370],["Clarke","2021-02-03",129779,596,13966],["Clarke","2021-02-04",129779,557,14523],["Clarke","2021-02-05",129779,514,15037],["Clarke","2021-02-06",129779,355,15392],["Clarke","2021-02-07",129779,91,15483],["Clarke","2021-02-08",129779,350,15833],["Clarke","2021-02-09",129779,754,16587],["Clarke","2021-02-10",129779,417,17004],["Clarke","2021-02-11",129779,527,17531],["Clarke","2021-02-12",129779,535,18066],["Clarke","2021-02-13",129779,490,18556],["Clarke","2021-02-14",129779,100,18656],["Clarke","2021-02-15",129779,473,19129],["Clarke","2021-02-16",129779,546,19675],["Clarke","2021-02-17",129779,464,20139],["Clarke","2021-02-18",129779,473,20612],["Clarke","2021-02-19",129779,452,21064],["Clarke","2021-02-20",129779,212,21276],["Clarke","2021-02-21",129779,27,21303],["Clarke","2021-02-22",129779,447,21750],["Clarke","2021-02-23",129779,534,22284],["Clarke","2021-02-24",129779,514,22798],["Clarke","2021-02-25",129779,686,23484],["Clarke","2021-02-26",129779,601,24085],["Clarke","2021-02-27",129779,214,24299],["Clarke","2021-02-28",129779,94,24393],["Clarke","2021-03-01",129779,646,25039],["Clarke","2021-03-02",129779,607,25646],["Clarke","2021-03-03",129779,631,26277],["Clarke","2021-03-04",129779,499,26776],["Clarke","2021-03-05",129779,496,27272],["Clarke","2021-03-06",129779,203,27475],["Clarke","2021-03-07",129779,172,27647],["Clarke","2021-03-08",129779,832,28479],["Clarke","2021-03-09",129779,667,29146],["Clarke","2021-03-10",129779,1532,30678],["Clarke","2021-03-11",129779,797,31475],["Clarke","2021-03-12",129779,706,32181],["Clarke","2021-03-13",129779,682,32863],["Clarke","2021-03-14",129779,251,33114],["Clarke","2021-03-15",129779,891,34005],["Clarke","2021-03-16",129779,947,34952],["Clarke","2021-03-17",129779,1338,36290],["Clarke","2021-03-18",129779,1112,37402],["Clarke","2021-03-19",129779,1115,38517],["Clarke","2021-03-20",129779,335,38852],["Clarke","2021-03-21",129779,187,39039],["Clarke","2021-03-22",129779,1310,40349],["Clarke","2021-03-23",129779,1281,41630],["Clarke","2021-03-24",129779,1715,43345],["Clarke","2021-03-25",129779,1495,44840],["Clarke","2021-03-26",129779,1147,45987],["Clarke","2021-03-27",129779,327,46314],["Clarke","2021-03-28",129779,227,46541],["Clarke","2021-03-29",129779,1357,47898],["Clarke","2021-03-30",129779,1473,49371],["Clarke","2021-03-31",129779,2408,51779],["Clarke","2021-04-01",129779,1484,53263],["Clarke","2021-04-02",129779,1156,54419],["Clarke","2021-04-03",129779,669,55088],["Clarke","2021-04-04",129779,252,55340],["Clarke","2021-04-05",129779,1228,56568],["Clarke","2021-04-06",129779,1323,57891],["Clarke","2021-04-07",129779,1472,59363],["Clarke","2021-04-08",129779,1398,60761],["Clarke","2021-04-09",129779,1412,62173],["Clarke","2021-04-10",129779,450,62623],["Clarke","2021-04-11",129779,263,62886],["Clarke","2021-04-12",129779,1291,64177],["Clarke","2021-04-13",129779,1246,65423],["Clarke","2021-04-14",129779,1709,67132],["Clarke","2021-04-15",129779,1319,68451],["Clarke","2021-04-16",129779,1238,69689],["Clarke","2021-04-17",129779,577,70266],["Clarke","2021-04-18",129779,143,70409],["Clarke","2021-04-19",129779,1162,71571],["Clarke","2021-04-20",129779,1322,72893],["Clarke","2021-04-21",129779,1519,74412],["Clarke","2021-04-22",129779,1327,75739],["Clarke","2021-04-23",129779,1283,77022],["Clarke","2021-04-24",129779,323,77345],["Clarke","2021-04-25",129779,136,77481],["Clarke","2021-04-26",129779,920,78401],["Clarke","2021-04-27",129779,1097,79498],["Clarke","2021-04-28",129779,1003,80501],["Clarke","2021-04-29",129779,828,81329],["Clarke","2021-04-30",129779,832,82161],["Clarke","2021-05-01",129779,320,82481],["Clarke","2021-05-02",129779,102,82583],["Clarke","2021-05-03",129779,548,83131],["Clarke","2021-05-04",129779,582,83713],["Clarke","2021-05-05",129779,577,84290],["Clarke","2021-05-06",129779,574,84864],["Clarke","2021-05-07",129779,599,85463],["Clarke","2021-05-08",129779,395,85858],["Clarke","2021-05-09",129779,75,85933],["Clarke","2021-05-10",129779,379,86312],["Clarke","2021-05-11",129779,452,86764],["Clarke","2021-05-12",129779,493,87257],["Clarke","2021-05-13",129779,554,87811],["Clarke","2021-05-14",129779,635,88446],["Clarke","2021-05-15",129779,240,88686],["Clarke","2021-05-16",129779,126,88812],["Clarke","2021-05-17",129779,433,89245],["Clarke","2021-05-18",129779,383,89628],["Clarke","2021-05-19",129779,405,90033],["Clarke","2021-05-20",129779,412,90445],["Clarke","2021-05-21",129779,457,90902],["Clarke","2021-05-22",129779,165,91067],["Clarke","2021-05-23",129779,100,91167],["Clarke","2021-05-24",129779,285,91452],["Clarke","2021-05-25",129779,296,91748],["Clarke","2021-05-26",129779,343,92091],["Clarke","2021-05-27",129779,311,92402],["Clarke","2021-05-28",129779,308,92710],["Clarke","2021-05-29",129779,96,92806],["Clarke","2021-05-30",129779,62,92868],["Clarke","2021-05-31",129779,25,92893],["Clarke","2021-06-01",129779,333,93226],["Clarke","2021-06-02",129779,309,93535],["Clarke","2021-06-03",129779,344,93879],["Clarke","2021-06-04",129779,421,94300],["Clarke","2021-06-05",129779,163,94463],["Clarke","2021-06-06",129779,82,94545],["Clarke","2021-06-07",129779,322,94867],["Clarke","2021-06-08",129779,230,95097],["Clarke","2021-06-09",129779,248,95345],["Clarke","2021-06-10",129779,230,95575],["Clarke","2021-06-11",129779,308,95883],["Clarke","2021-06-12",129779,144,96027],["Clarke","2021-06-13",129779,60,96087],["Clarke","2021-06-14",129779,216,96303],["Clarke","2021-06-15",129779,207,96510],["Clarke","2021-06-16",129779,211,96721],["Clarke","2021-06-17",129779,203,96924],["Clarke","2021-06-18",129779,216,97140],["Clarke","2021-06-19",129779,106,97246],["Clarke","2021-06-20",129779,56,97302],["Clarke","2021-06-21",129779,118,97420],["Clarke","2021-06-22",129779,162,97582],["Clarke","2021-06-23",129779,180,97762],["Clarke","2021-06-24",129779,142,97904],["Clarke","2021-06-25",129779,170,98074],["Clarke","2021-06-26",129779,102,98176],["Clarke","2021-06-27",129779,47,98223],["Clarke","2021-06-28",129779,130,98353],["Clarke","2021-06-29",129779,129,98482],["Clarke","2021-06-30",129779,130,98612],["Clarke","2021-07-01",129779,127,98739],["Clarke","2021-07-02",129779,156,98895],["Clarke","2021-07-03",129779,49,98944],["Clarke","2021-07-04",129779,4,98948],["Clarke","2021-07-05",129779,66,99014],["Clarke","2021-07-06",129779,126,99140],["Clarke","2021-07-07",129779,145,99285],["Clarke","2021-07-08",129779,120,99405],["Clarke","2021-07-09",129779,181,99586],["Clarke","2021-07-10",129779,91,99677],["Clarke","2021-07-11",129779,40,99717],["Clarke","2021-07-12",129779,124,99841],["Clarke","2021-07-13",129779,130,99971],["Clarke","2021-07-14",129779,116,100087],["Clarke","2021-07-15",129779,122,100209],["Clarke","2021-07-16",129779,170,100379],["Clarke","2021-07-17",129779,121,100500],["Clarke","2021-07-18",129779,40,100540],["Clarke","2021-07-19",129779,139,100679],["Clarke","2021-07-20",129779,140,100819],["Clarke","2021-07-21",129779,170,100989],["Clarke","2021-07-22",129779,174,101163],["Clarke","2021-07-23",129779,204,101367],["Clarke","2021-07-24",129779,139,101506],["Clarke","2021-07-25",129779,53,101559],["Clarke","2021-07-26",129779,140,101699],["Clarke","2021-07-27",129779,189,101888],["Clarke","2021-07-28",129779,173,102061],["Clarke","2021-07-29",129779,184,102245],["Clarke","2021-07-30",129779,248,102493],["Clarke","2021-07-31",129779,118,102611],["Clarke","2021-08-01",129779,84,102695],["Clarke","2021-08-02",129779,205,102900],["Clarke","2021-08-03",129779,222,103122],["Clarke","2021-08-04",129779,184,103306],["Clarke","2021-08-05",129779,174,103480],["Clarke","2021-08-06",129779,280,103760],["Clarke","2021-08-07",129779,142,103902],["Clarke","2021-08-08",129779,97,103999],["Clarke","2021-08-09",129779,206,104205],["Clarke","2021-08-10",129779,239,104444],["Clarke","2021-08-11",129779,183,104627],["Clarke","2021-08-12",129779,219,104846],["Clarke","2021-08-13",129779,321,105167],["Clarke","2021-08-14",129779,162,105329],["Clarke","2021-08-15",129779,128,105457],["Clarke","2021-08-16",129779,273,105730],["Clarke","2021-08-17",129779,242,105972],["Clarke","2021-08-18",129779,271,106243],["Clarke","2021-08-19",129779,285,106528],["Clarke","2021-08-20",129779,332,106860],["Clarke","2021-08-21",129779,170,107030],["Clarke","2021-08-22",129779,90,107120],["Clarke","2021-08-23",129779,275,107395],["Clarke","2021-08-24",129779,304,107699],["Clarke","2021-08-25",129779,241,107940],["Clarke","2021-08-26",129779,280,108220],["Clarke","2021-08-27",129779,335,108555],["Clarke","2021-08-28",129779,209,108764],["Clarke","2021-08-29",129779,109,108873],["Clarke","2021-08-30",129779,262,109135],["Clarke","2021-08-31",129779,291,109426],["Clarke","2021-09-01",129779,249,109675],["Clarke","2021-09-02",129779,235,109910],["Clarke","2021-09-03",129779,471,110381],["Clarke","2021-09-04",129779,126,110507],["Clarke","2021-09-05",129779,92,110599],["Clarke","2021-09-06",129779,26,110625],["Clarke","2021-09-07",129779,313,110938],["Clarke","2021-09-08",129779,214,111152],["Clarke","2021-09-09",129779,283,111435],["Clarke","2021-09-10",129779,324,111759],["Clarke","2021-09-11",129779,102,111861],["Clarke","2021-09-12",129779,73,111934],["Clarke","2021-09-13",129779,255,112189],["Clarke","2021-09-14",129779,231,112420],["Clarke","2021-09-15",129779,228,112648],["Clarke","2021-09-16",129779,279,112927],["Clarke","2021-09-17",129779,246,113173],["Clarke","2021-09-18",129779,132,113305],["Clarke","2021-09-19",129779,60,113365],["Clarke","2021-09-20",129779,223,113588],["Clarke","2021-09-21",129779,246,113834],["Clarke","2021-09-22",129779,196,114030],["Clarke","2021-09-23",129779,177,114207],["Clarke","2021-09-24",129779,353,114560],["Clarke","2021-09-25",129779,245,114805],["Clarke","2021-09-26",129779,118,114923],["Clarke","2021-09-27",129779,415,115338],["Clarke","2021-09-28",129779,457,115795],["Clarke","2021-09-29",129779,406,116201],["Clarke","2021-09-30",129779,396,116597],["Clarke","2021-10-01",129779,432,117029],["Clarke","2021-10-02",129779,153,117182],["Clarke","2021-10-03",129779,92,117274],["Clarke","2021-10-04",129779,420,117694],["Clarke","2021-10-05",129779,334,118028],["Clarke","2021-10-06",129779,309,118337],["Clarke","2021-10-07",129779,325,118662],["Clarke","2021-10-08",129779,416,119078],["Clarke","2021-10-09",129779,119,119197],["Clarke","2021-10-10",129779,74,119271],["Clarke","2021-10-11",129779,262,119533],["Clarke","2021-10-12",129779,354,119887],["Clarke","2021-10-13",129779,216,120103],["Clarke","2021-10-14",129779,313,120416],["Clarke","2021-10-15",129779,353,120769],["Clarke","2021-10-16",129779,104,120873],["Clarke","2021-10-17",129779,66,120939],["Clarke","2021-10-18",129779,247,121186],["Clarke","2021-10-19",129779,254,121440],["Clarke","2021-10-20",129779,244,121684],["Clarke","2021-10-21",129779,259,121943],["Clarke","2021-10-22",129779,544,122487],["Clarke","2021-10-23",129779,222,122709],["Clarke","2021-10-24",129779,128,122837],["Clarke","2021-10-25",129779,460,123297],["Clarke","2021-10-26",129779,408,123705],["Clarke","2021-10-27",129779,414,124119],["Clarke","2021-10-28",129779,392,124511],["Clarke","2021-10-29",129779,547,125058],["Clarke","2021-10-30",129779,156,125214],["Clarke","2021-10-31",129779,75,125289],["Clarke","2021-11-01",129779,413,125702],["Clarke","2021-11-02",129779,421,126123],["Clarke","2021-11-03",129779,414,126537],["Clarke","2021-11-04",129779,365,126902],["Clarke","2021-11-05",129779,646,127548],["Clarke","2021-11-06",129779,220,127768],["Clarke","2021-11-07",129779,148,127916],["Clarke","2021-11-08",129779,401,128317],["Clarke","2021-11-09",129779,468,128785],["Clarke","2021-11-10",129779,471,129256],["Clarke","2021-11-11",129779,399,129655],["Clarke","2021-11-12",129779,677,130332],["Clarke","2021-11-13",129779,300,130632],["Clarke","2021-11-14",129779,116,130748],["Clarke","2021-11-15",129779,364,131112],["Clarke","2021-11-16",129779,413,131525],["Clarke","2021-11-17",129779,346,131871],["Clarke","2021-11-18",129779,430,132301],["Clarke","2021-11-19",129779,537,132838],["Clarke","2021-11-20",129779,324,133162],["Clarke","2021-11-21",129779,160,133322],["Clarke","2021-11-22",129779,424,133746],["Clarke","2021-11-23",129779,388,134134],["Clarke","2021-11-24",129779,288,134422],["Clarke","2021-11-25",129779,1,134423],["Clarke","2021-11-26",129779,273,134696],["Clarke","2021-11-27",129779,228,134924],["Clarke","2021-11-28",129779,186,135110],["Clarke","2021-11-29",129779,504,135614],["Clarke","2021-11-30",129779,515,136129],["Clarke","2021-12-01",129779,546,136675],["Clarke","2021-12-02",129779,598,137273],["Clarke","2021-12-03",129779,795,138068],["Clarke","2021-12-04",129779,378,138446],["Clarke","2021-12-05",129779,149,138595],["Clarke","2021-12-06",129779,482,139077],["Clarke","2021-12-07",129779,437,139514],["Clarke","2021-12-08",129779,411,139925],["Clarke","2021-12-09",129779,513,140438],["Clarke","2021-12-10",129779,547,140985],["Clarke","2021-12-11",129779,212,141197],["Clarke","2021-12-12",129779,129,141326],["Clarke","2021-12-13",129779,339,141665],["Clarke","2021-12-14",129779,355,142020],["Clarke","2021-12-15",129779,352,142372],["Clarke","2021-12-16",129779,376,142748],["Clarke","2021-12-17",129779,480,143228],["Clarke","2021-12-18",129779,268,143496],["Clarke","2021-12-19",129779,172,143668],["Clarke","2021-12-20",129779,489,144157],["Clarke","2021-12-21",129779,524,144681],["Clarke","2021-12-22",129779,424,145105],["Clarke","2021-12-23",129779,344,145449],["Clarke","2021-12-24",129779,119,145568],["Clarke","2021-12-26",129779,111,145679],["Clarke","2021-12-27",129779,371,146050],["Clarke","2021-12-28",129779,383,146433],["Clarke","2021-12-29",129779,315,146748],["Clarke","2021-12-30",129779,332,147080],["Clarke","2021-12-31",129779,155,147235],["Clarke","2022-01-01",129779,19,147254],["Clarke","2022-01-02",129779,92,147346],["Clarke","2022-01-03",129779,91,147437],["Clay","2020-12-19",2855,1,1],["Clay","2020-12-21",2855,1,2],["Clay","2020-12-22",2855,1,3],["Clay","2020-12-23",2855,1,4],["Clay","2020-12-24",2855,12,16],["Clay","2020-12-26",2855,11,27],["Clay","2020-12-28",2855,7,34],["Clay","2020-12-29",2855,5,39],["Clay","2020-12-30",2855,6,45],["Clay","2020-12-31",2855,5,50],["Clay","2021-01-01",2855,17,67],["Clay","2021-01-02",2855,17,84],["Clay","2021-01-04",2855,3,87],["Clay","2021-01-05",2855,51,138],["Clay","2021-01-06",2855,11,149],["Clay","2021-01-07",2855,20,169],["Clay","2021-01-08",2855,14,183],["Clay","2021-01-09",2855,2,185],["Clay","2021-01-10",2855,1,186],["Clay","2021-01-11",2855,10,196],["Clay","2021-01-12",2855,29,225],["Clay","2021-01-13",2855,47,272],["Clay","2021-01-14",2855,37,309],["Clay","2021-01-15",2855,60,369],["Clay","2021-01-16",2855,2,371],["Clay","2021-01-17",2855,1,372],["Clay","2021-01-18",2855,15,387],["Clay","2021-01-19",2855,25,412],["Clay","2021-01-20",2855,17,429],["Clay","2021-01-21",2855,57,486],["Clay","2021-01-22",2855,16,502],["Clay","2021-01-23",2855,1,503],["Clay","2021-01-24",2855,2,505],["Clay","2021-01-25",2855,15,520],["Clay","2021-01-26",2855,65,585],["Clay","2021-01-27",2855,19,604],["Clay","2021-01-28",2855,35,639],["Clay","2021-01-29",2855,14,653],["Clay","2021-01-30",2855,3,656],["Clay","2021-01-31",2855,1,657],["Clay","2021-02-01",2855,84,741],["Clay","2021-02-02",2855,12,753],["Clay","2021-02-03",2855,21,774],["Clay","2021-02-04",2855,37,811],["Clay","2021-02-05",2855,22,833],["Clay","2021-02-07",2855,1,834],["Clay","2021-02-08",2855,15,849],["Clay","2021-02-09",2855,39,888],["Clay","2021-02-10",2855,28,916],["Clay","2021-02-11",2855,28,944],["Clay","2021-02-12",2855,110,1054],["Clay","2021-02-13",2855,2,1056],["Clay","2021-02-14",2855,5,1061],["Clay","2021-02-15",2855,26,1087],["Clay","2021-02-16",2855,30,1117],["Clay","2021-02-17",2855,27,1144],["Clay","2021-02-18",2855,62,1206],["Clay","2021-02-19",2855,16,1222],["Clay","2021-02-20",2855,6,1228],["Clay","2021-02-21",2855,5,1233],["Clay","2021-02-22",2855,9,1242],["Clay","2021-02-23",2855,16,1258],["Clay","2021-02-24",2855,45,1303],["Clay","2021-02-25",2855,34,1337],["Clay","2021-02-26",2855,66,1403],["Clay","2021-02-27",2855,6,1409],["Clay","2021-02-28",2855,15,1424],["Clay","2021-03-01",2855,98,1522],["Clay","2021-03-02",2855,29,1551],["Clay","2021-03-03",2855,22,1573],["Clay","2021-03-04",2855,13,1586],["Clay","2021-03-05",2855,45,1631],["Clay","2021-03-06",2855,3,1634],["Clay","2021-03-07",2855,2,1636],["Clay","2021-03-08",2855,25,1661],["Clay","2021-03-09",2855,20,1681],["Clay","2021-03-10",2855,40,1721],["Clay","2021-03-11",2855,16,1737],["Clay","2021-03-12",2855,55,1792],["Clay","2021-03-13",2855,3,1795],["Clay","2021-03-14",2855,4,1799],["Clay","2021-03-15",2855,47,1846],["Clay","2021-03-16",2855,19,1865],["Clay","2021-03-17",2855,39,1904],["Clay","2021-03-18",2855,23,1927],["Clay","2021-03-19",2855,17,1944],["Clay","2021-03-20",2855,2,1946],["Clay","2021-03-21",2855,3,1949],["Clay","2021-03-22",2855,12,1961],["Clay","2021-03-23",2855,16,1977],["Clay","2021-03-24",2855,53,2030],["Clay","2021-03-25",2855,29,2059],["Clay","2021-03-26",2855,30,2089],["Clay","2021-03-27",2855,4,2093],["Clay","2021-03-28",2855,10,2103],["Clay","2021-03-29",2855,43,2146],["Clay","2021-03-30",2855,24,2170],["Clay","2021-03-31",2855,38,2208],["Clay","2021-04-01",2855,83,2291],["Clay","2021-04-02",2855,21,2312],["Clay","2021-04-03",2855,4,2316],["Clay","2021-04-04",2855,4,2320],["Clay","2021-04-05",2855,13,2333],["Clay","2021-04-06",2855,14,2347],["Clay","2021-04-07",2855,34,2381],["Clay","2021-04-08",2855,33,2414],["Clay","2021-04-09",2855,18,2432],["Clay","2021-04-10",2855,19,2451],["Clay","2021-04-11",2855,2,2453],["Clay","2021-04-12",2855,13,2466],["Clay","2021-04-13",2855,26,2492],["Clay","2021-04-14",2855,39,2531],["Clay","2021-04-15",2855,56,2587],["Clay","2021-04-16",2855,35,2622],["Clay","2021-04-18",2855,3,2625],["Clay","2021-04-19",2855,23,2648],["Clay","2021-04-20",2855,15,2663],["Clay","2021-04-21",2855,15,2678],["Clay","2021-04-22",2855,30,2708],["Clay","2021-04-23",2855,19,2727],["Clay","2021-04-24",2855,4,2731],["Clay","2021-04-26",2855,8,2739],["Clay","2021-04-27",2855,22,2761],["Clay","2021-04-28",2855,26,2787],["Clay","2021-04-29",2855,8,2795],["Clay","2021-04-30",2855,20,2815],["Clay","2021-05-01",2855,22,2837],["Clay","2021-05-03",2855,16,2853],["Clay","2021-05-04",2855,12,2865],["Clay","2021-05-05",2855,27,2892],["Clay","2021-05-06",2855,20,2912],["Clay","2021-05-07",2855,5,2917],["Clay","2021-05-08",2855,5,2922],["Clay","2021-05-09",2855,2,2924],["Clay","2021-05-10",2855,7,2931],["Clay","2021-05-11",2855,11,2942],["Clay","2021-05-12",2855,20,2962],["Clay","2021-05-13",2855,9,2971],["Clay","2021-05-14",2855,7,2978],["Clay","2021-05-15",2855,16,2994],["Clay","2021-05-16",2855,1,2995],["Clay","2021-05-17",2855,12,3007],["Clay","2021-05-18",2855,9,3016],["Clay","2021-05-19",2855,14,3030],["Clay","2021-05-20",2855,12,3042],["Clay","2021-05-21",2855,6,3048],["Clay","2021-05-22",2855,5,3053],["Clay","2021-05-24",2855,5,3058],["Clay","2021-05-25",2855,6,3064],["Clay","2021-05-26",2855,12,3076],["Clay","2021-05-27",2855,10,3086],["Clay","2021-05-28",2855,10,3096],["Clay","2021-05-29",2855,2,3098],["Clay","2021-05-30",2855,4,3102],["Clay","2021-05-31",2855,2,3104],["Clay","2021-06-01",2855,18,3122],["Clay","2021-06-02",2855,11,3133],["Clay","2021-06-03",2855,6,3139],["Clay","2021-06-04",2855,5,3144],["Clay","2021-06-05",2855,2,3146],["Clay","2021-06-06",2855,1,3147],["Clay","2021-06-07",2855,4,3151],["Clay","2021-06-08",2855,8,3159],["Clay","2021-06-09",2855,11,3170],["Clay","2021-06-10",2855,11,3181],["Clay","2021-06-11",2855,3,3184],["Clay","2021-06-12",2855,4,3188],["Clay","2021-06-13",2855,1,3189],["Clay","2021-06-14",2855,6,3195],["Clay","2021-06-15",2855,17,3212],["Clay","2021-06-16",2855,3,3215],["Clay","2021-06-17",2855,7,3222],["Clay","2021-06-18",2855,3,3225],["Clay","2021-06-19",2855,3,3228],["Clay","2021-06-20",2855,1,3229],["Clay","2021-06-21",2855,3,3232],["Clay","2021-06-22",2855,10,3242],["Clay","2021-06-23",2855,6,3248],["Clay","2021-06-24",2855,9,3257],["Clay","2021-06-25",2855,5,3262],["Clay","2021-06-26",2855,1,3263],["Clay","2021-06-27",2855,1,3264],["Clay","2021-06-28",2855,2,3266],["Clay","2021-06-29",2855,2,3268],["Clay","2021-06-30",2855,8,3276],["Clay","2021-07-01",2855,4,3280],["Clay","2021-07-02",2855,3,3283],["Clay","2021-07-05",2855,1,3284],["Clay","2021-07-06",2855,2,3286],["Clay","2021-07-07",2855,9,3295],["Clay","2021-07-08",2855,3,3298],["Clay","2021-07-09",2855,2,3300],["Clay","2021-07-10",2855,4,3304],["Clay","2021-07-12",2855,6,3310],["Clay","2021-07-13",2855,15,3325],["Clay","2021-07-14",2855,6,3331],["Clay","2021-07-15",2855,14,3345],["Clay","2021-07-16",2855,10,3355],["Clay","2021-07-18",2855,2,3357],["Clay","2021-07-19",2855,4,3361],["Clay","2021-07-20",2855,1,3362],["Clay","2021-07-21",2855,10,3372],["Clay","2021-07-22",2855,3,3375],["Clay","2021-07-23",2855,7,3382],["Clay","2021-07-26",2855,3,3385],["Clay","2021-07-27",2855,2,3387],["Clay","2021-07-28",2855,17,3404],["Clay","2021-07-29",2855,7,3411],["Clay","2021-07-30",2855,7,3418],["Clay","2021-07-31",2855,1,3419],["Clay","2021-08-01",2855,7,3426],["Clay","2021-08-02",2855,15,3441],["Clay","2021-08-03",2855,4,3445],["Clay","2021-08-04",2855,11,3456],["Clay","2021-08-05",2855,5,3461],["Clay","2021-08-06",2855,19,3480],["Clay","2021-08-07",2855,4,3484],["Clay","2021-08-08",2855,4,3488],["Clay","2021-08-09",2855,8,3496],["Clay","2021-08-10",2855,13,3509],["Clay","2021-08-11",2855,13,3522],["Clay","2021-08-12",2855,21,3543],["Clay","2021-08-13",2855,16,3559],["Clay","2021-08-14",2855,3,3562],["Clay","2021-08-15",2855,7,3569],["Clay","2021-08-16",2855,8,3577],["Clay","2021-08-17",2855,2,3579],["Clay","2021-08-18",2855,12,3591],["Clay","2021-08-19",2855,10,3601],["Clay","2021-08-20",2855,19,3620],["Clay","2021-08-21",2855,4,3624],["Clay","2021-08-22",2855,3,3627],["Clay","2021-08-23",2855,12,3639],["Clay","2021-08-24",2855,2,3641],["Clay","2021-08-25",2855,16,3657],["Clay","2021-08-26",2855,19,3676],["Clay","2021-08-27",2855,11,3687],["Clay","2021-08-28",2855,5,3692],["Clay","2021-08-29",2855,3,3695],["Clay","2021-08-30",2855,9,3704],["Clay","2021-08-31",2855,9,3713],["Clay","2021-09-01",2855,24,3737],["Clay","2021-09-02",2855,16,3753],["Clay","2021-09-03",2855,11,3764],["Clay","2021-09-04",2855,4,3768],["Clay","2021-09-05",2855,5,3773],["Clay","2021-09-06",2855,2,3775],["Clay","2021-09-07",2855,14,3789],["Clay","2021-09-08",2855,20,3809],["Clay","2021-09-09",2855,9,3818],["Clay","2021-09-10",2855,9,3827],["Clay","2021-09-11",2855,3,3830],["Clay","2021-09-12",2855,5,3835],["Clay","2021-09-13",2855,8,3843],["Clay","2021-09-14",2855,7,3850],["Clay","2021-09-15",2855,18,3868],["Clay","2021-09-16",2855,12,3880],["Clay","2021-09-17",2855,13,3893],["Clay","2021-09-18",2855,3,3896],["Clay","2021-09-19",2855,4,3900],["Clay","2021-09-20",2855,13,3913],["Clay","2021-09-21",2855,11,3924],["Clay","2021-09-22",2855,10,3934],["Clay","2021-09-23",2855,6,3940],["Clay","2021-09-24",2855,5,3945],["Clay","2021-09-25",2855,5,3950],["Clay","2021-09-26",2855,2,3952],["Clay","2021-09-27",2855,7,3959],["Clay","2021-09-28",2855,7,3966],["Clay","2021-09-29",2855,8,3974],["Clay","2021-09-30",2855,5,3979],["Clay","2021-10-01",2855,9,3988],["Clay","2021-10-02",2855,1,3989],["Clay","2021-10-04",2855,3,3992],["Clay","2021-10-05",2855,10,4002],["Clay","2021-10-06",2855,5,4007],["Clay","2021-10-07",2855,10,4017],["Clay","2021-10-08",2855,19,4036],["Clay","2021-10-09",2855,2,4038],["Clay","2021-10-10",2855,1,4039],["Clay","2021-10-11",2855,2,4041],["Clay","2021-10-12",2855,2,4043],["Clay","2021-10-13",2855,2,4045],["Clay","2021-10-14",2855,12,4057],["Clay","2021-10-15",2855,8,4065],["Clay","2021-10-17",2855,1,4066],["Clay","2021-10-18",2855,5,4071],["Clay","2021-10-19",2855,4,4075],["Clay","2021-10-20",2855,3,4078],["Clay","2021-10-21",2855,5,4083],["Clay","2021-10-22",2855,2,4085],["Clay","2021-10-23",2855,1,4086],["Clay","2021-10-24",2855,3,4089],["Clay","2021-10-25",2855,11,4100],["Clay","2021-10-26",2855,35,4135],["Clay","2021-10-27",2855,20,4155],["Clay","2021-10-28",2855,27,4182],["Clay","2021-10-29",2855,17,4199],["Clay","2021-10-30",2855,1,4200],["Clay","2021-11-01",2855,20,4220],["Clay","2021-11-02",2855,22,4242],["Clay","2021-11-03",2855,41,4283],["Clay","2021-11-04",2855,26,4309],["Clay","2021-11-05",2855,23,4332],["Clay","2021-11-06",2855,1,4333],["Clay","2021-11-07",2855,4,4337],["Clay","2021-11-08",2855,20,4357],["Clay","2021-11-09",2855,18,4375],["Clay","2021-11-10",2855,32,4407],["Clay","2021-11-11",2855,11,4418],["Clay","2021-11-12",2855,12,4430],["Clay","2021-11-13",2855,2,4432],["Clay","2021-11-14",2855,2,4434],["Clay","2021-11-15",2855,19,4453],["Clay","2021-11-16",2855,7,4460],["Clay","2021-11-17",2855,50,4510],["Clay","2021-11-18",2855,16,4526],["Clay","2021-11-19",2855,13,4539],["Clay","2021-11-20",2855,1,4540],["Clay","2021-11-22",2855,7,4547],["Clay","2021-11-23",2855,18,4565],["Clay","2021-11-24",2855,3,4568],["Clay","2021-11-26",2855,5,4573],["Clay","2021-11-27",2855,3,4576],["Clay","2021-11-29",2855,20,4596],["Clay","2021-11-30",2855,16,4612],["Clay","2021-12-01",2855,14,4626],["Clay","2021-12-02",2855,9,4635],["Clay","2021-12-03",2855,7,4642],["Clay","2021-12-04",2855,2,4644],["Clay","2021-12-05",2855,1,4645],["Clay","2021-12-06",2855,8,4653],["Clay","2021-12-07",2855,10,4663],["Clay","2021-12-08",2855,17,4680],["Clay","2021-12-09",2855,11,4691],["Clay","2021-12-10",2855,3,4694],["Clay","2021-12-11",2855,2,4696],["Clay","2021-12-12",2855,1,4697],["Clay","2021-12-13",2855,16,4713],["Clay","2021-12-14",2855,12,4725],["Clay","2021-12-15",2855,4,4729],["Clay","2021-12-16",2855,5,4734],["Clay","2021-12-17",2855,2,4736],["Clay","2021-12-20",2855,6,4742],["Clay","2021-12-21",2855,4,4746],["Clay","2021-12-22",2855,3,4749],["Clay","2021-12-23",2855,1,4750],["Clay","2021-12-24",2855,1,4751],["Clay","2021-12-27",2855,5,4756],["Clay","2021-12-28",2855,6,4762],["Clay","2021-12-29",2855,4,4766],["Clay","2021-12-30",2855,5,4771],["Clay","2022-01-03",2855,6,4777],["Clayton","2020-12-16",304838,3,3],["Clayton","2020-12-17",304838,11,14],["Clayton","2020-12-18",304838,37,51],["Clayton","2020-12-19",304838,31,82],["Clayton","2020-12-20",304838,21,103],["Clayton","2020-12-21",304838,51,154],["Clayton","2020-12-22",304838,73,227],["Clayton","2020-12-23",304838,124,351],["Clayton","2020-12-24",304838,15,366],["Clayton","2020-12-26",304838,16,382],["Clayton","2020-12-27",304838,98,480],["Clayton","2020-12-28",304838,175,655],["Clayton","2020-12-29",304838,328,983],["Clayton","2020-12-30",304838,219,1202],["Clayton","2020-12-31",304838,128,1330],["Clayton","2021-01-01",304838,40,1370],["Clayton","2021-01-02",304838,23,1393],["Clayton","2021-01-03",304838,26,1419],["Clayton","2021-01-04",304838,155,1574],["Clayton","2021-01-05",304838,176,1750],["Clayton","2021-01-06",304838,354,2104],["Clayton","2021-01-07",304838,168,2272],["Clayton","2021-01-08",304838,211,2483],["Clayton","2021-01-09",304838,105,2588],["Clayton","2021-01-10",304838,57,2645],["Clayton","2021-01-11",304838,346,2991],["Clayton","2021-01-12",304838,282,3273],["Clayton","2021-01-13",304838,341,3614],["Clayton","2021-01-14",304838,330,3944],["Clayton","2021-01-15",304838,727,4671],["Clayton","2021-01-16",304838,338,5009],["Clayton","2021-01-17",304838,191,5200],["Clayton","2021-01-18",304838,339,5539],["Clayton","2021-01-19",304838,448,5987],["Clayton","2021-01-20",304838,557,6544],["Clayton","2021-01-21",304838,469,7013],["Clayton","2021-01-22",304838,441,7454],["Clayton","2021-01-23",304838,677,8131],["Clayton","2021-01-24",304838,65,8196],["Clayton","2021-01-25",304838,456,8652],["Clayton","2021-01-26",304838,539,9191],["Clayton","2021-01-27",304838,545,9736],["Clayton","2021-01-28",304838,524,10260],["Clayton","2021-01-29",304838,1017,11277],["Clayton","2021-01-30",304838,226,11503],["Clayton","2021-01-31",304838,148,11651],["Clayton","2021-02-01",304838,582,12233],["Clayton","2021-02-02",304838,430,12663],["Clayton","2021-02-03",304838,426,13089],["Clayton","2021-02-04",304838,594,13683],["Clayton","2021-02-05",304838,495,14178],["Clayton","2021-02-06",304838,623,14801],["Clayton","2021-02-07",304838,97,14898],["Clayton","2021-02-08",304838,321,15219],["Clayton","2021-02-09",304838,624,15843],["Clayton","2021-02-10",304838,824,16667],["Clayton","2021-02-11",304838,602,17269],["Clayton","2021-02-12",304838,942,18211],["Clayton","2021-02-13",304838,378,18589],["Clayton","2021-02-14",304838,133,18722],["Clayton","2021-02-15",304838,535,19257],["Clayton","2021-02-16",304838,838,20095],["Clayton","2021-02-17",304838,777,20872],["Clayton","2021-02-18",304838,639,21511],["Clayton","2021-02-19",304838,735,22246],["Clayton","2021-02-20",304838,765,23011],["Clayton","2021-02-21",304838,89,23100],["Clayton","2021-02-22",304838,423,23523],["Clayton","2021-02-23",304838,919,24442],["Clayton","2021-02-24",304838,762,25204],["Clayton","2021-02-25",304838,1071,26275],["Clayton","2021-02-26",304838,1309,27584],["Clayton","2021-02-27",304838,344,27928],["Clayton","2021-02-28",304838,192,28120],["Clayton","2021-03-01",304838,648,28768],["Clayton","2021-03-02",304838,1096,29864],["Clayton","2021-03-03",304838,1210,31074],["Clayton","2021-03-04",304838,1083,32157],["Clayton","2021-03-05",304838,1194,33351],["Clayton","2021-03-06",304838,979,34330],["Clayton","2021-03-07",304838,277,34607],["Clayton","2021-03-08",304838,859,35466],["Clayton","2021-03-09",304838,1417,36883],["Clayton","2021-03-10",304838,1331,38214],["Clayton","2021-03-11",304838,1443,39657],["Clayton","2021-03-12",304838,1481,41138],["Clayton","2021-03-13",304838,706,41844],["Clayton","2021-03-14",304838,454,42298],["Clayton","2021-03-15",304838,1240,43538],["Clayton","2021-03-16",304838,1583,45121],["Clayton","2021-03-17",304838,1499,46620],["Clayton","2021-03-18",304838,1346,47966],["Clayton","2021-03-19",304838,1647,49613],["Clayton","2021-03-20",304838,779,50392],["Clayton","2021-03-21",304838,530,50922],["Clayton","2021-03-22",304838,1198,52120],["Clayton","2021-03-23",304838,1844,53964],["Clayton","2021-03-24",304838,2026,55990],["Clayton","2021-03-25",304838,2320,58310],["Clayton","2021-03-26",304838,1994,60304],["Clayton","2021-03-27",304838,1136,61440],["Clayton","2021-03-28",304838,665,62105],["Clayton","2021-03-29",304838,1672,63777],["Clayton","2021-03-30",304838,2514,66291],["Clayton","2021-03-31",304838,2485,68776],["Clayton","2021-04-01",304838,2596,71372],["Clayton","2021-04-02",304838,2251,73623],["Clayton","2021-04-03",304838,1303,74926],["Clayton","2021-04-04",304838,521,75447],["Clayton","2021-04-05",304838,1842,77289],["Clayton","2021-04-06",304838,2846,80135],["Clayton","2021-04-07",304838,2813,82948],["Clayton","2021-04-08",304838,2542,85490],["Clayton","2021-04-09",304838,2605,88095],["Clayton","2021-04-10",304838,1875,89970],["Clayton","2021-04-11",304838,735,90705],["Clayton","2021-04-12",304838,1860,92565],["Clayton","2021-04-13",304838,2183,94748],["Clayton","2021-04-14",304838,2685,97433],["Clayton","2021-04-15",304838,2460,99893],["Clayton","2021-04-16",304838,2181,102074],["Clayton","2021-04-17",304838,1090,103164],["Clayton","2021-04-18",304838,820,103984],["Clayton","2021-04-19",304838,1684,105668],["Clayton","2021-04-20",304838,2522,108190],["Clayton","2021-04-21",304838,2247,110437],["Clayton","2021-04-22",304838,2130,112567],["Clayton","2021-04-23",304838,2281,114848],["Clayton","2021-04-24",304838,1367,116215],["Clayton","2021-04-25",304838,500,116715],["Clayton","2021-04-26",304838,1571,118286],["Clayton","2021-04-27",304838,2101,120387],["Clayton","2021-04-28",304838,2033,122420],["Clayton","2021-04-29",304838,2027,124447],["Clayton","2021-04-30",304838,2264,126711],["Clayton","2021-05-01",304838,1831,128542],["Clayton","2021-05-02",304838,574,129116],["Clayton","2021-05-03",304838,1501,130617],["Clayton","2021-05-04",304838,1820,132437],["Clayton","2021-05-05",304838,2044,134481],["Clayton","2021-05-06",304838,1546,136027],["Clayton","2021-05-07",304838,1779,137806],["Clayton","2021-05-08",304838,1032,138838],["Clayton","2021-05-09",304838,402,139240],["Clayton","2021-05-10",304838,1155,140395],["Clayton","2021-05-11",304838,1547,141942],["Clayton","2021-05-12",304838,1237,143179],["Clayton","2021-05-13",304838,1158,144337],["Clayton","2021-05-14",304838,1560,145897],["Clayton","2021-05-15",304838,1186,147083],["Clayton","2021-05-16",304838,687,147770],["Clayton","2021-05-17",304838,1285,149055],["Clayton","2021-05-18",304838,1426,150481],["Clayton","2021-05-19",304838,1176,151657],["Clayton","2021-05-20",304838,1213,152870],["Clayton","2021-05-21",304838,1206,154076],["Clayton","2021-05-22",304838,959,155035],["Clayton","2021-05-23",304838,505,155540],["Clayton","2021-05-24",304838,886,156426],["Clayton","2021-05-25",304838,1101,157527],["Clayton","2021-05-26",304838,916,158443],["Clayton","2021-05-27",304838,845,159288],["Clayton","2021-05-28",304838,811,160099],["Clayton","2021-05-29",304838,571,160670],["Clayton","2021-05-30",304838,430,161100],["Clayton","2021-05-31",304838,186,161286],["Clayton","2021-06-01",304838,1161,162447],["Clayton","2021-06-02",304838,877,163324],["Clayton","2021-06-03",304838,803,164127],["Clayton","2021-06-04",304838,933,165060],["Clayton","2021-06-05",304838,883,165943],["Clayton","2021-06-06",304838,629,166572],["Clayton","2021-06-07",304838,950,167522],["Clayton","2021-06-08",304838,920,168442],["Clayton","2021-06-09",304838,731,169173],["Clayton","2021-06-10",304838,767,169940],["Clayton","2021-06-11",304838,829,170769],["Clayton","2021-06-12",304838,691,171460],["Clayton","2021-06-13",304838,309,171769],["Clayton","2021-06-14",304838,761,172530],["Clayton","2021-06-15",304838,690,173220],["Clayton","2021-06-16",304838,653,173873],["Clayton","2021-06-17",304838,597,174470],["Clayton","2021-06-18",304838,698,175168],["Clayton","2021-06-19",304838,474,175642],["Clayton","2021-06-20",304838,368,176010],["Clayton","2021-06-21",304838,477,176487],["Clayton","2021-06-22",304838,670,177157],["Clayton","2021-06-23",304838,660,177817],["Clayton","2021-06-24",304838,563,178380],["Clayton","2021-06-25",304838,611,178991],["Clayton","2021-06-26",304838,447,179438],["Clayton","2021-06-27",304838,345,179783],["Clayton","2021-06-28",304838,533,180316],["Clayton","2021-06-29",304838,485,180801],["Clayton","2021-06-30",304838,489,181290],["Clayton","2021-07-01",304838,489,181779],["Clayton","2021-07-02",304838,515,182294],["Clayton","2021-07-03",304838,337,182631],["Clayton","2021-07-04",304838,46,182677],["Clayton","2021-07-05",304838,439,183116],["Clayton","2021-07-06",304838,500,183616],["Clayton","2021-07-07",304838,467,184083],["Clayton","2021-07-08",304838,506,184589],["Clayton","2021-07-09",304838,551,185140],["Clayton","2021-07-10",304838,459,185599],["Clayton","2021-07-11",304838,342,185941],["Clayton","2021-07-12",304838,437,186378],["Clayton","2021-07-13",304838,509,186887],["Clayton","2021-07-14",304838,485,187372],["Clayton","2021-07-15",304838,475,187847],["Clayton","2021-07-16",304838,544,188391],["Clayton","2021-07-17",304838,380,188771],["Clayton","2021-07-18",304838,260,189031],["Clayton","2021-07-19",304838,545,189576],["Clayton","2021-07-20",304838,555,190131],["Clayton","2021-07-21",304838,554,190685],["Clayton","2021-07-22",304838,581,191266],["Clayton","2021-07-23",304838,597,191863],["Clayton","2021-07-24",304838,473,192336],["Clayton","2021-07-25",304838,320,192656],["Clayton","2021-07-26",304838,647,193303],["Clayton","2021-07-27",304838,644,193947],["Clayton","2021-07-28",304838,739,194686],["Clayton","2021-07-29",304838,665,195351],["Clayton","2021-07-30",304838,747,196098],["Clayton","2021-07-31",304838,617,196715],["Clayton","2021-08-01",304838,502,197217],["Clayton","2021-08-02",304838,637,197854],["Clayton","2021-08-03",304838,646,198500],["Clayton","2021-08-04",304838,716,199216],["Clayton","2021-08-05",304838,687,199903],["Clayton","2021-08-06",304838,797,200700],["Clayton","2021-08-07",304838,667,201367],["Clayton","2021-08-08",304838,410,201777],["Clayton","2021-08-09",304838,777,202554],["Clayton","2021-08-10",304838,860,203414],["Clayton","2021-08-11",304838,777,204191],["Clayton","2021-08-12",304838,785,204976],["Clayton","2021-08-13",304838,802,205778],["Clayton","2021-08-14",304838,668,206446],["Clayton","2021-08-15",304838,456,206902],["Clayton","2021-08-16",304838,670,207572],["Clayton","2021-08-17",304838,687,208259],["Clayton","2021-08-18",304838,717,208976],["Clayton","2021-08-19",304838,693,209669],["Clayton","2021-08-20",304838,748,210417],["Clayton","2021-08-21",304838,765,211182],["Clayton","2021-08-22",304838,373,211555],["Clayton","2021-08-23",304838,781,212336],["Clayton","2021-08-24",304838,766,213102],["Clayton","2021-08-25",304838,780,213882],["Clayton","2021-08-26",304838,836,214718],["Clayton","2021-08-27",304838,878,215596],["Clayton","2021-08-28",304838,934,216530],["Clayton","2021-08-29",304838,521,217051],["Clayton","2021-08-30",304838,774,217825],["Clayton","2021-08-31",304838,725,218550],["Clayton","2021-09-01",304838,789,219339],["Clayton","2021-09-02",304838,712,220051],["Clayton","2021-09-03",304838,1044,221095],["Clayton","2021-09-04",304838,497,221592],["Clayton","2021-09-05",304838,399,221991],["Clayton","2021-09-06",304838,136,222127],["Clayton","2021-09-07",304838,808,222935],["Clayton","2021-09-08",304838,694,223629],["Clayton","2021-09-09",304838,755,224384],["Clayton","2021-09-10",304838,746,225130],["Clayton","2021-09-11",304838,740,225870],["Clayton","2021-09-12",304838,347,226217],["Clayton","2021-09-13",304838,688,226905],["Clayton","2021-09-14",304838,632,227537],["Clayton","2021-09-15",304838,646,228183],["Clayton","2021-09-16",304838,577,228760],["Clayton","2021-09-17",304838,725,229485],["Clayton","2021-09-18",304838,540,230025],["Clayton","2021-09-19",304838,313,230338],["Clayton","2021-09-20",304838,603,230941],["Clayton","2021-09-21",304838,529,231470],["Clayton","2021-09-22",304838,490,231960],["Clayton","2021-09-23",304838,481,232441],["Clayton","2021-09-24",304838,674,233115],["Clayton","2021-09-25",304838,450,233565],["Clayton","2021-09-26",304838,297,233862],["Clayton","2021-09-27",304838,511,234373],["Clayton","2021-09-28",304838,688,235061],["Clayton","2021-09-29",304838,587,235648],["Clayton","2021-09-30",304838,735,236383],["Clayton","2021-10-01",304838,670,237053],["Clayton","2021-10-02",304838,491,237544],["Clayton","2021-10-03",304838,254,237798],["Clayton","2021-10-04",304838,566,238364],["Clayton","2021-10-05",304838,582,238946],["Clayton","2021-10-06",304838,558,239504],["Clayton","2021-10-07",304838,549,240053],["Clayton","2021-10-08",304838,605,240658],["Clayton","2021-10-09",304838,461,241119],["Clayton","2021-10-10",304838,239,241358],["Clayton","2021-10-11",304838,497,241855],["Clayton","2021-10-12",304838,513,242368],["Clayton","2021-10-13",304838,471,242839],["Clayton","2021-10-14",304838,503,243342],["Clayton","2021-10-15",304838,549,243891],["Clayton","2021-10-16",304838,394,244285],["Clayton","2021-10-17",304838,179,244464],["Clayton","2021-10-18",304838,482,244946],["Clayton","2021-10-19",304838,484,245430],["Clayton","2021-10-20",304838,453,245883],["Clayton","2021-10-21",304838,472,246355],["Clayton","2021-10-22",304838,708,247063],["Clayton","2021-10-23",304838,592,247655],["Clayton","2021-10-24",304838,284,247939],["Clayton","2021-10-25",304838,774,248713],["Clayton","2021-10-26",304838,768,249481],["Clayton","2021-10-27",304838,716,250197],["Clayton","2021-10-28",304838,706,250903],["Clayton","2021-10-29",304838,733,251636],["Clayton","2021-10-30",304838,504,252140],["Clayton","2021-10-31",304838,203,252343],["Clayton","2021-11-01",304838,689,253032],["Clayton","2021-11-02",304838,710,253742],["Clayton","2021-11-03",304838,688,254430],["Clayton","2021-11-04",304838,603,255033],["Clayton","2021-11-05",304838,674,255707],["Clayton","2021-11-06",304838,439,256146],["Clayton","2021-11-07",304838,276,256422],["Clayton","2021-11-08",304838,569,256991],["Clayton","2021-11-09",304838,677,257668],["Clayton","2021-11-10",304838,654,258322],["Clayton","2021-11-11",304838,618,258940],["Clayton","2021-11-12",304838,718,259658],["Clayton","2021-11-13",304838,444,260102],["Clayton","2021-11-14",304838,263,260365],["Clayton","2021-11-15",304838,679,261044],["Clayton","2021-11-16",304838,697,261741],["Clayton","2021-11-17",304838,690,262431],["Clayton","2021-11-18",304838,679,263110],["Clayton","2021-11-19",304838,773,263883],["Clayton","2021-11-20",304838,554,264437],["Clayton","2021-11-21",304838,320,264757],["Clayton","2021-11-22",304838,837,265594],["Clayton","2021-11-23",304838,721,266315],["Clayton","2021-11-24",304838,525,266840],["Clayton","2021-11-25",304838,7,266847],["Clayton","2021-11-26",304838,623,267470],["Clayton","2021-11-27",304838,447,267917],["Clayton","2021-11-28",304838,279,268196],["Clayton","2021-11-29",304838,727,268923],["Clayton","2021-11-30",304838,861,269784],["Clayton","2021-12-01",304838,949,270733],["Clayton","2021-12-02",304838,959,271692],["Clayton","2021-12-03",304838,1078,272770],["Clayton","2021-12-04",304838,852,273622],["Clayton","2021-12-05",304838,352,273974],["Clayton","2021-12-06",304838,892,274866],["Clayton","2021-12-07",304838,892,275758],["Clayton","2021-12-08",304838,820,276578],["Clayton","2021-12-09",304838,827,277405],["Clayton","2021-12-10",304838,899,278304],["Clayton","2021-12-11",304838,643,278947],["Clayton","2021-12-12",304838,322,279269],["Clayton","2021-12-13",304838,749,280018],["Clayton","2021-12-14",304838,701,280719],["Clayton","2021-12-15",304838,627,281346],["Clayton","2021-12-16",304838,690,282036],["Clayton","2021-12-17",304838,720,282756],["Clayton","2021-12-18",304838,698,283454],["Clayton","2021-12-19",304838,335,283789],["Clayton","2021-12-20",304838,803,284592],["Clayton","2021-12-21",304838,848,285440],["Clayton","2021-12-22",304838,910,286350],["Clayton","2021-12-23",304838,818,287168],["Clayton","2021-12-24",304838,247,287415],["Clayton","2021-12-26",304838,245,287660],["Clayton","2021-12-27",304838,793,288453],["Clayton","2021-12-28",304838,876,289329],["Clayton","2021-12-29",304838,892,290221],["Clayton","2021-12-30",304838,680,290901],["Clayton","2021-12-31",304838,354,291255],["Clayton","2022-01-01",304838,51,291306],["Clayton","2022-01-02",304838,204,291510],["Clayton","2022-01-03",304838,301,291811],["Clayton","2022-01-04",304838,1,291812],["Clinch","2020-12-22",6656,5,5],["Clinch","2020-12-23",6656,5,10],["Clinch","2020-12-24",6656,2,12],["Clinch","2020-12-26",6656,1,13],["Clinch","2020-12-28",6656,6,19],["Clinch","2020-12-29",6656,4,23],["Clinch","2020-12-30",6656,16,39],["Clinch","2020-12-31",6656,16,55],["Clinch","2021-01-04",6656,4,59],["Clinch","2021-01-05",6656,6,65],["Clinch","2021-01-06",6656,4,69],["Clinch","2021-01-07",6656,16,85],["Clinch","2021-01-08",6656,5,90],["Clinch","2021-01-09",6656,1,91],["Clinch","2021-01-10",6656,1,92],["Clinch","2021-01-11",6656,18,110],["Clinch","2021-01-12",6656,101,211],["Clinch","2021-01-13",6656,70,281],["Clinch","2021-01-14",6656,53,334],["Clinch","2021-01-15",6656,7,341],["Clinch","2021-01-16",6656,3,344],["Clinch","2021-01-18",6656,2,346],["Clinch","2021-01-19",6656,48,394],["Clinch","2021-01-20",6656,100,494],["Clinch","2021-01-21",6656,8,502],["Clinch","2021-01-22",6656,12,514],["Clinch","2021-01-23",6656,1,515],["Clinch","2021-01-25",6656,12,527],["Clinch","2021-01-26",6656,7,534],["Clinch","2021-01-27",6656,26,560],["Clinch","2021-01-28",6656,10,570],["Clinch","2021-01-29",6656,40,610],["Clinch","2021-01-30",6656,1,611],["Clinch","2021-01-31",6656,1,612],["Clinch","2021-02-01",6656,17,629],["Clinch","2021-02-02",6656,69,698],["Clinch","2021-02-03",6656,19,717],["Clinch","2021-02-04",6656,10,727],["Clinch","2021-02-05",6656,34,761],["Clinch","2021-02-06",6656,1,762],["Clinch","2021-02-07",6656,1,763],["Clinch","2021-02-08",6656,14,777],["Clinch","2021-02-09",6656,6,783],["Clinch","2021-02-10",6656,112,895],["Clinch","2021-02-11",6656,55,950],["Clinch","2021-02-12",6656,12,962],["Clinch","2021-02-13",6656,3,965],["Clinch","2021-02-15",6656,6,971],["Clinch","2021-02-16",6656,56,1027],["Clinch","2021-02-17",6656,39,1066],["Clinch","2021-02-18",6656,86,1152],["Clinch","2021-02-19",6656,13,1165],["Clinch","2021-02-22",6656,12,1177],["Clinch","2021-02-23",6656,9,1186],["Clinch","2021-02-24",6656,55,1241],["Clinch","2021-02-25",6656,7,1248],["Clinch","2021-02-26",6656,96,1344],["Clinch","2021-02-27",6656,1,1345],["Clinch","2021-02-28",6656,1,1346],["Clinch","2021-03-01",6656,7,1353],["Clinch","2021-03-02",6656,2,1355],["Clinch","2021-03-03",6656,27,1382],["Clinch","2021-03-04",6656,11,1393],["Clinch","2021-03-05",6656,46,1439],["Clinch","2021-03-06",6656,2,1441],["Clinch","2021-03-07",6656,1,1442],["Clinch","2021-03-08",6656,8,1450],["Clinch","2021-03-09",6656,7,1457],["Clinch","2021-03-10",6656,40,1497],["Clinch","2021-03-11",6656,77,1574],["Clinch","2021-03-12",6656,9,1583],["Clinch","2021-03-13",6656,1,1584],["Clinch","2021-03-15",6656,4,1588],["Clinch","2021-03-16",6656,10,1598],["Clinch","2021-03-17",6656,39,1637],["Clinch","2021-03-18",6656,27,1664],["Clinch","2021-03-19",6656,113,1777],["Clinch","2021-03-20",6656,5,1782],["Clinch","2021-03-22",6656,8,1790],["Clinch","2021-03-23",6656,10,1800],["Clinch","2021-03-24",6656,58,1858],["Clinch","2021-03-25",6656,13,1871],["Clinch","2021-03-26",6656,135,2006],["Clinch","2021-03-27",6656,7,2013],["Clinch","2021-03-28",6656,10,2023],["Clinch","2021-03-29",6656,7,2030],["Clinch","2021-03-30",6656,8,2038],["Clinch","2021-03-31",6656,90,2128],["Clinch","2021-04-01",6656,14,2142],["Clinch","2021-04-02",6656,88,2230],["Clinch","2021-04-03",6656,7,2237],["Clinch","2021-04-04",6656,1,2238],["Clinch","2021-04-05",6656,11,2249],["Clinch","2021-04-06",6656,13,2262],["Clinch","2021-04-07",6656,58,2320],["Clinch","2021-04-08",6656,12,2332],["Clinch","2021-04-09",6656,97,2429],["Clinch","2021-04-10",6656,6,2435],["Clinch","2021-04-11",6656,1,2436],["Clinch","2021-04-12",6656,9,2445],["Clinch","2021-04-13",6656,12,2457],["Clinch","2021-04-14",6656,66,2523],["Clinch","2021-04-15",6656,33,2556],["Clinch","2021-04-16",6656,99,2655],["Clinch","2021-04-17",6656,7,2662],["Clinch","2021-04-18",6656,1,2663],["Clinch","2021-04-19",6656,3,2666],["Clinch","2021-04-20",6656,16,2682],["Clinch","2021-04-21",6656,31,2713],["Clinch","2021-04-22",6656,31,2744],["Clinch","2021-04-23",6656,101,2845],["Clinch","2021-04-24",6656,6,2851],["Clinch","2021-04-25",6656,8,2859],["Clinch","2021-04-26",6656,8,2867],["Clinch","2021-04-27",6656,15,2882],["Clinch","2021-04-28",6656,34,2916],["Clinch","2021-04-29",6656,18,2934],["Clinch","2021-04-30",6656,62,2996],["Clinch","2021-05-01",6656,6,3002],["Clinch","2021-05-02",6656,3,3005],["Clinch","2021-05-03",6656,7,3012],["Clinch","2021-05-04",6656,4,3016],["Clinch","2021-05-05",6656,32,3048],["Clinch","2021-05-06",6656,32,3080],["Clinch","2021-05-07",6656,86,3166],["Clinch","2021-05-08",6656,1,3167],["Clinch","2021-05-10",6656,1,3168],["Clinch","2021-05-11",6656,9,3177],["Clinch","2021-05-12",6656,21,3198],["Clinch","2021-05-13",6656,26,3224],["Clinch","2021-05-14",6656,8,3232],["Clinch","2021-05-15",6656,6,3238],["Clinch","2021-05-16",6656,1,3239],["Clinch","2021-05-17",6656,9,3248],["Clinch","2021-05-18",6656,6,3254],["Clinch","2021-05-19",6656,27,3281],["Clinch","2021-05-20",6656,6,3287],["Clinch","2021-05-21",6656,36,3323],["Clinch","2021-05-22",6656,3,3326],["Clinch","2021-05-24",6656,8,3334],["Clinch","2021-05-25",6656,9,3343],["Clinch","2021-05-26",6656,21,3364],["Clinch","2021-05-27",6656,11,3375],["Clinch","2021-05-28",6656,9,3384],["Clinch","2021-05-29",6656,4,3388],["Clinch","2021-05-30",6656,1,3389],["Clinch","2021-06-01",6656,10,3399],["Clinch","2021-06-02",6656,21,3420],["Clinch","2021-06-03",6656,7,3427],["Clinch","2021-06-04",6656,15,3442],["Clinch","2021-06-05",6656,4,3446],["Clinch","2021-06-06",6656,1,3447],["Clinch","2021-06-07",6656,10,3457],["Clinch","2021-06-08",6656,3,3460],["Clinch","2021-06-09",6656,8,3468],["Clinch","2021-06-10",6656,9,3477],["Clinch","2021-06-11",6656,18,3495],["Clinch","2021-06-12",6656,7,3502],["Clinch","2021-06-14",6656,6,3508],["Clinch","2021-06-15",6656,3,3511],["Clinch","2021-06-16",6656,20,3531],["Clinch","2021-06-17",6656,5,3536],["Clinch","2021-06-18",6656,8,3544],["Clinch","2021-06-19",6656,9,3553],["Clinch","2021-06-21",6656,6,3559],["Clinch","2021-06-22",6656,5,3564],["Clinch","2021-06-23",6656,9,3573],["Clinch","2021-06-24",6656,11,3584],["Clinch","2021-06-25",6656,16,3600],["Clinch","2021-06-26",6656,1,3601],["Clinch","2021-06-27",6656,2,3603],["Clinch","2021-06-28",6656,10,3613],["Clinch","2021-06-29",6656,2,3615],["Clinch","2021-06-30",6656,9,3624],["Clinch","2021-07-01",6656,8,3632],["Clinch","2021-07-02",6656,7,3639],["Clinch","2021-07-03",6656,1,3640],["Clinch","2021-07-05",6656,5,3645],["Clinch","2021-07-06",6656,3,3648],["Clinch","2021-07-07",6656,7,3655],["Clinch","2021-07-08",6656,5,3660],["Clinch","2021-07-09",6656,12,3672],["Clinch","2021-07-10",6656,7,3679],["Clinch","2021-07-12",6656,5,3684],["Clinch","2021-07-13",6656,6,3690],["Clinch","2021-07-14",6656,12,3702],["Clinch","2021-07-15",6656,8,3710],["Clinch","2021-07-16",6656,11,3721],["Clinch","2021-07-17",6656,1,3722],["Clinch","2021-07-19",6656,10,3732],["Clinch","2021-07-20",6656,4,3736],["Clinch","2021-07-21",6656,13,3749],["Clinch","2021-07-22",6656,12,3761],["Clinch","2021-07-23",6656,14,3775],["Clinch","2021-07-24",6656,6,3781],["Clinch","2021-07-25",6656,4,3785],["Clinch","2021-07-26",6656,17,3802],["Clinch","2021-07-27",6656,26,3828],["Clinch","2021-07-28",6656,44,3872],["Clinch","2021-07-29",6656,32,3904],["Clinch","2021-07-30",6656,42,3946],["Clinch","2021-07-31",6656,7,3953],["Clinch","2021-08-01",6656,2,3955],["Clinch","2021-08-02",6656,29,3984],["Clinch","2021-08-03",6656,24,4008],["Clinch","2021-08-04",6656,26,4034],["Clinch","2021-08-05",6656,32,4066],["Clinch","2021-08-06",6656,47,4113],["Clinch","2021-08-07",6656,11,4124],["Clinch","2021-08-08",6656,1,4125],["Clinch","2021-08-09",6656,45,4170],["Clinch","2021-08-10",6656,21,4191],["Clinch","2021-08-11",6656,47,4238],["Clinch","2021-08-12",6656,35,4273],["Clinch","2021-08-13",6656,45,4318],["Clinch","2021-08-14",6656,7,4325],["Clinch","2021-08-15",6656,5,4330],["Clinch","2021-08-16",6656,30,4360],["Clinch","2021-08-17",6656,22,4382],["Clinch","2021-08-18",6656,42,4424],["Clinch","2021-08-19",6656,30,4454],["Clinch","2021-08-20",6656,31,4485],["Clinch","2021-08-21",6656,9,4494],["Clinch","2021-08-22",6656,5,4499],["Clinch","2021-08-23",6656,26,4525],["Clinch","2021-08-24",6656,28,4553],["Clinch","2021-08-25",6656,56,4609],["Clinch","2021-08-26",6656,36,4645],["Clinch","2021-08-27",6656,49,4694],["Clinch","2021-08-28",6656,14,4708],["Clinch","2021-08-29",6656,6,4714],["Clinch","2021-08-30",6656,26,4740],["Clinch","2021-08-31",6656,27,4767],["Clinch","2021-09-01",6656,27,4794],["Clinch","2021-09-02",6656,40,4834],["Clinch","2021-09-03",6656,36,4870],["Clinch","2021-09-04",6656,2,4872],["Clinch","2021-09-05",6656,1,4873],["Clinch","2021-09-06",6656,10,4883],["Clinch","2021-09-07",6656,38,4921],["Clinch","2021-09-08",6656,22,4943],["Clinch","2021-09-09",6656,27,4970],["Clinch","2021-09-10",6656,38,5008],["Clinch","2021-09-11",6656,2,5010],["Clinch","2021-09-13",6656,18,5028],["Clinch","2021-09-14",6656,11,5039],["Clinch","2021-09-15",6656,19,5058],["Clinch","2021-09-16",6656,24,5082],["Clinch","2021-09-17",6656,22,5104],["Clinch","2021-09-18",6656,3,5107],["Clinch","2021-09-19",6656,2,5109],["Clinch","2021-09-20",6656,18,5127],["Clinch","2021-09-21",6656,6,5133],["Clinch","2021-09-22",6656,35,5168],["Clinch","2021-09-23",6656,8,5176],["Clinch","2021-09-24",6656,6,5182],["Clinch","2021-09-25",6656,2,5184],["Clinch","2021-09-26",6656,1,5185],["Clinch","2021-09-27",6656,5,5190],["Clinch","2021-09-28",6656,13,5203],["Clinch","2021-09-29",6656,5,5208],["Clinch","2021-09-30",6656,7,5215],["Clinch","2021-10-01",6656,2,5217],["Clinch","2021-10-02",6656,2,5219],["Clinch","2021-10-03",6656,1,5220],["Clinch","2021-10-04",6656,9,5229],["Clinch","2021-10-05",6656,4,5233],["Clinch","2021-10-06",6656,6,5239],["Clinch","2021-10-07",6656,11,5250],["Clinch","2021-10-08",6656,6,5256],["Clinch","2021-10-10",6656,1,5257],["Clinch","2021-10-11",6656,3,5260],["Clinch","2021-10-12",6656,4,5264],["Clinch","2021-10-13",6656,5,5269],["Clinch","2021-10-14",6656,5,5274],["Clinch","2021-10-15",6656,11,5285],["Clinch","2021-10-18",6656,4,5289],["Clinch","2021-10-19",6656,6,5295],["Clinch","2021-10-20",6656,2,5297],["Clinch","2021-10-21",6656,3,5300],["Clinch","2021-10-22",6656,6,5306],["Clinch","2021-10-23",6656,3,5309],["Clinch","2021-10-25",6656,4,5313],["Clinch","2021-10-26",6656,17,5330],["Clinch","2021-10-27",6656,17,5347],["Clinch","2021-10-28",6656,11,5358],["Clinch","2021-10-29",6656,12,5370],["Clinch","2021-10-30",6656,4,5374],["Clinch","2021-10-31",6656,1,5375],["Clinch","2021-11-01",6656,18,5393],["Clinch","2021-11-02",6656,15,5408],["Clinch","2021-11-03",6656,11,5419],["Clinch","2021-11-04",6656,18,5437],["Clinch","2021-11-05",6656,22,5459],["Clinch","2021-11-06",6656,3,5462],["Clinch","2021-11-07",6656,2,5464],["Clinch","2021-11-08",6656,15,5479],["Clinch","2021-11-09",6656,14,5493],["Clinch","2021-11-10",6656,22,5515],["Clinch","2021-11-11",6656,15,5530],["Clinch","2021-11-12",6656,10,5540],["Clinch","2021-11-13",6656,1,5541],["Clinch","2021-11-15",6656,10,5551],["Clinch","2021-11-16",6656,15,5566],["Clinch","2021-11-17",6656,12,5578],["Clinch","2021-11-18",6656,7,5585],["Clinch","2021-11-19",6656,16,5601],["Clinch","2021-11-20",6656,2,5603],["Clinch","2021-11-22",6656,14,5617],["Clinch","2021-11-23",6656,17,5634],["Clinch","2021-11-24",6656,11,5645],["Clinch","2021-11-25",6656,1,5646],["Clinch","2021-11-26",6656,1,5647],["Clinch","2021-11-27",6656,5,5652],["Clinch","2021-11-28",6656,1,5653],["Clinch","2021-11-29",6656,22,5675],["Clinch","2021-11-30",6656,22,5697],["Clinch","2021-12-01",6656,30,5727],["Clinch","2021-12-02",6656,24,5751],["Clinch","2021-12-03",6656,35,5786],["Clinch","2021-12-04",6656,7,5793],["Clinch","2021-12-05",6656,2,5795],["Clinch","2021-12-06",6656,17,5812],["Clinch","2021-12-07",6656,9,5821],["Clinch","2021-12-08",6656,10,5831],["Clinch","2021-12-09",6656,17,5848],["Clinch","2021-12-10",6656,10,5858],["Clinch","2021-12-11",6656,1,5859],["Clinch","2021-12-13",6656,11,5870],["Clinch","2021-12-14",6656,10,5880],["Clinch","2021-12-15",6656,13,5893],["Clinch","2021-12-16",6656,10,5903],["Clinch","2021-12-17",6656,9,5912],["Clinch","2021-12-18",6656,2,5914],["Clinch","2021-12-19",6656,2,5916],["Clinch","2021-12-20",6656,11,5927],["Clinch","2021-12-21",6656,22,5949],["Clinch","2021-12-22",6656,22,5971],["Clinch","2021-12-23",6656,8,5979],["Clinch","2021-12-24",6656,2,5981],["Clinch","2021-12-26",6656,1,5982],["Clinch","2021-12-27",6656,15,5997],["Clinch","2021-12-28",6656,15,6012],["Clinch","2021-12-29",6656,22,6034],["Clinch","2021-12-30",6656,29,6063],["Clinch","2021-12-31",6656,9,6072],["Clinch","2022-01-01",6656,1,6073],["Clinch","2022-01-02",6656,2,6075],["Clinch","2022-01-03",6656,2,6077],["Cobb","2020-12-12",790588,1,1],["Cobb","2020-12-15",790588,1,2],["Cobb","2020-12-16",790588,6,8],["Cobb","2020-12-17",790588,122,130],["Cobb","2020-12-18",790588,407,537],["Cobb","2020-12-19",790588,254,791],["Cobb","2020-12-20",790588,267,1058],["Cobb","2020-12-21",790588,585,1643],["Cobb","2020-12-22",790588,937,2580],["Cobb","2020-12-23",790588,1018,3598],["Cobb","2020-12-24",790588,390,3988],["Cobb","2020-12-25",790588,14,4002],["Cobb","2020-12-26",790588,159,4161],["Cobb","2020-12-27",790588,173,4334],["Cobb","2020-12-28",790588,1406,5740],["Cobb","2020-12-29",790588,1166,6906],["Cobb","2020-12-30",790588,1440,8346],["Cobb","2020-12-31",790588,562,8908],["Cobb","2021-01-01",790588,268,9176],["Cobb","2021-01-02",790588,165,9341],["Cobb","2021-01-03",790588,194,9535],["Cobb","2021-01-04",790588,1194,10729],["Cobb","2021-01-05",790588,1385,12114],["Cobb","2021-01-06",790588,1046,13160],["Cobb","2021-01-07",790588,1263,14423],["Cobb","2021-01-08",790588,1616,16039],["Cobb","2021-01-09",790588,757,16796],["Cobb","2021-01-10",790588,400,17196],["Cobb","2021-01-11",790588,2786,19982],["Cobb","2021-01-12",790588,3065,23047],["Cobb","2021-01-13",790588,3612,26659],["Cobb","2021-01-14",790588,3374,30033],["Cobb","2021-01-15",790588,3372,33405],["Cobb","2021-01-16",790588,2138,35543],["Cobb","2021-01-17",790588,702,36245],["Cobb","2021-01-18",790588,3348,39593],["Cobb","2021-01-19",790588,3796,43389],["Cobb","2021-01-20",790588,4054,47443],["Cobb","2021-01-21",790588,3788,51231],["Cobb","2021-01-22",790588,3168,54399],["Cobb","2021-01-23",790588,954,55353],["Cobb","2021-01-24",790588,538,55891],["Cobb","2021-01-25",790588,4068,59959],["Cobb","2021-01-26",790588,3618,63577],["Cobb","2021-01-27",790588,3772,67349],["Cobb","2021-01-28",790588,3817,71166],["Cobb","2021-01-29",790588,3580,74746],["Cobb","2021-01-30",790588,991,75737],["Cobb","2021-01-31",790588,265,76002],["Cobb","2021-02-01",790588,3639,79641],["Cobb","2021-02-02",790588,3147,82788],["Cobb","2021-02-03",790588,3280,86068],["Cobb","2021-02-04",790588,3632,89700],["Cobb","2021-02-05",790588,3205,92905],["Cobb","2021-02-06",790588,1154,94059],["Cobb","2021-02-07",790588,362,94421],["Cobb","2021-02-08",790588,2913,97334],["Cobb","2021-02-09",790588,3760,101094],["Cobb","2021-02-10",790588,3772,104866],["Cobb","2021-02-11",790588,4076,108942],["Cobb","2021-02-12",790588,3350,112292],["Cobb","2021-02-13",790588,2412,114704],["Cobb","2021-02-14",790588,885,115589],["Cobb","2021-02-15",790588,4348,119937],["Cobb","2021-02-16",790588,3359,123296],["Cobb","2021-02-17",790588,4577,127873],["Cobb","2021-02-18",790588,4417,132290],["Cobb","2021-02-19",790588,4102,136392],["Cobb","2021-02-20",790588,1130,137522],["Cobb","2021-02-21",790588,387,137909],["Cobb","2021-02-22",790588,2283,140192],["Cobb","2021-02-23",790588,3323,143515],["Cobb","2021-02-24",790588,3829,147344],["Cobb","2021-02-25",790588,5010,152354],["Cobb","2021-02-26",790588,4546,156900],["Cobb","2021-02-27",790588,1388,158288],["Cobb","2021-02-28",790588,1015,159303],["Cobb","2021-03-01",790588,3984,163287],["Cobb","2021-03-02",790588,4187,167474],["Cobb","2021-03-03",790588,4222,171696],["Cobb","2021-03-04",790588,4538,176234],["Cobb","2021-03-05",790588,4405,180639],["Cobb","2021-03-06",790588,1370,182009],["Cobb","2021-03-07",790588,1068,183077],["Cobb","2021-03-08",790588,5097,188174],["Cobb","2021-03-09",790588,5270,193444],["Cobb","2021-03-10",790588,5289,198733],["Cobb","2021-03-11",790588,5763,204496],["Cobb","2021-03-12",790588,5181,209677],["Cobb","2021-03-13",790588,1791,211468],["Cobb","2021-03-14",790588,1416,212884],["Cobb","2021-03-15",790588,5231,218115],["Cobb","2021-03-16",790588,6549,224664],["Cobb","2021-03-17",790588,7071,231735],["Cobb","2021-03-18",790588,7504,239239],["Cobb","2021-03-19",790588,8873,248112],["Cobb","2021-03-20",790588,2783,250895],["Cobb","2021-03-21",790588,1751,252646],["Cobb","2021-03-22",790588,6607,259253],["Cobb","2021-03-23",790588,7162,266415],["Cobb","2021-03-24",790588,8337,274752],["Cobb","2021-03-25",790588,8972,283724],["Cobb","2021-03-26",790588,8712,292436],["Cobb","2021-03-27",790588,3577,296013],["Cobb","2021-03-28",790588,2632,298645],["Cobb","2021-03-29",790588,7986,306631],["Cobb","2021-03-30",790588,10298,316929],["Cobb","2021-03-31",790588,10499,327428],["Cobb","2021-04-01",790588,10730,338158],["Cobb","2021-04-02",790588,7396,345554],["Cobb","2021-04-03",790588,3501,349055],["Cobb","2021-04-04",790588,2214,351269],["Cobb","2021-04-05",790588,8724,359993],["Cobb","2021-04-06",790588,10907,370900],["Cobb","2021-04-07",790588,10244,381144],["Cobb","2021-04-08",790588,9966,391110],["Cobb","2021-04-09",790588,10981,402091],["Cobb","2021-04-10",790588,5189,407280],["Cobb","2021-04-11",790588,2575,409855],["Cobb","2021-04-12",790588,9382,419237],["Cobb","2021-04-13",790588,9914,429151],["Cobb","2021-04-14",790588,9962,439113],["Cobb","2021-04-15",790588,9962,449075],["Cobb","2021-04-16",790588,11267,460342],["Cobb","2021-04-17",790588,3143,463485],["Cobb","2021-04-18",790588,3620,467105],["Cobb","2021-04-19",790588,8957,476062],["Cobb","2021-04-20",790588,9075,485137],["Cobb","2021-04-21",790588,9370,494507],["Cobb","2021-04-22",790588,8945,503452],["Cobb","2021-04-23",790588,9600,513052],["Cobb","2021-04-24",790588,3842,516894],["Cobb","2021-04-25",790588,1774,518668],["Cobb","2021-04-26",790588,7050,525718],["Cobb","2021-04-27",790588,6788,532506],["Cobb","2021-04-28",790588,8942,541448],["Cobb","2021-04-29",790588,7550,548998],["Cobb","2021-04-30",790588,8587,557585],["Cobb","2021-05-01",790588,5127,562712],["Cobb","2021-05-02",790588,1668,564380],["Cobb","2021-05-03",790588,5385,569765],["Cobb","2021-05-04",790588,6137,575902],["Cobb","2021-05-05",790588,6250,582152],["Cobb","2021-05-06",790588,5324,587476],["Cobb","2021-05-07",790588,6709,594185],["Cobb","2021-05-08",790588,2572,596757],["Cobb","2021-05-09",790588,1052,597809],["Cobb","2021-05-10",790588,3940,601749],["Cobb","2021-05-11",790588,4696,606445],["Cobb","2021-05-12",790588,4755,611200],["Cobb","2021-05-13",790588,4144,615344],["Cobb","2021-05-14",790588,4968,620312],["Cobb","2021-05-15",790588,3218,623530],["Cobb","2021-05-16",790588,1875,625405],["Cobb","2021-05-17",790588,3819,629224],["Cobb","2021-05-18",790588,4008,633232],["Cobb","2021-05-19",790588,4678,637910],["Cobb","2021-05-20",790588,3490,641400],["Cobb","2021-05-21",790588,4024,645424],["Cobb","2021-05-22",790588,2790,648214],["Cobb","2021-05-23",790588,1397,649611],["Cobb","2021-05-24",790588,2166,651777],["Cobb","2021-05-25",790588,2617,654394],["Cobb","2021-05-26",790588,3283,657677],["Cobb","2021-05-27",790588,2631,660308],["Cobb","2021-05-28",790588,2704,663012],["Cobb","2021-05-29",790588,1272,664284],["Cobb","2021-05-30",790588,912,665196],["Cobb","2021-05-31",790588,276,665472],["Cobb","2021-06-01",790588,2741,668213],["Cobb","2021-06-02",790588,2801,671014],["Cobb","2021-06-03",790588,2873,673887],["Cobb","2021-06-04",790588,3039,676926],["Cobb","2021-06-05",790588,2239,679165],["Cobb","2021-06-06",790588,1360,680525],["Cobb","2021-06-07",790588,2349,682874],["Cobb","2021-06-08",790588,2470,685344],["Cobb","2021-06-09",790588,2510,687854],["Cobb","2021-06-10",790588,2292,690146],["Cobb","2021-06-11",790588,2525,692671],["Cobb","2021-06-12",790588,1747,694418],["Cobb","2021-06-13",790588,845,695263],["Cobb","2021-06-14",790588,1871,697134],["Cobb","2021-06-15",790588,1905,699039],["Cobb","2021-06-16",790588,1862,700901],["Cobb","2021-06-17",790588,1772,702673],["Cobb","2021-06-18",790588,1949,704622],["Cobb","2021-06-19",790588,1234,705856],["Cobb","2021-06-20",790588,765,706621],["Cobb","2021-06-21",790588,1156,707777],["Cobb","2021-06-22",790588,1463,709240],["Cobb","2021-06-23",790588,1487,710727],["Cobb","2021-06-24",790588,1425,712152],["Cobb","2021-06-25",790588,1589,713741],["Cobb","2021-06-26",790588,1124,714865],["Cobb","2021-06-27",790588,725,715590],["Cobb","2021-06-28",790588,1269,716859],["Cobb","2021-06-29",790588,1359,718218],["Cobb","2021-06-30",790588,1263,719481],["Cobb","2021-07-01",790588,1169,720650],["Cobb","2021-07-02",790588,1289,721939],["Cobb","2021-07-03",790588,977,722916],["Cobb","2021-07-04",790588,89,723005],["Cobb","2021-07-05",790588,948,723953],["Cobb","2021-07-06",790588,1192,725145],["Cobb","2021-07-07",790588,1125,726270],["Cobb","2021-07-08",790588,1101,727371],["Cobb","2021-07-09",790588,1291,728662],["Cobb","2021-07-10",790588,984,729646],["Cobb","2021-07-11",790588,616,730262],["Cobb","2021-07-12",790588,1175,731437],["Cobb","2021-07-13",790588,1042,732479],["Cobb","2021-07-14",790588,1040,733519],["Cobb","2021-07-15",790588,992,734511],["Cobb","2021-07-16",790588,1272,735783],["Cobb","2021-07-17",790588,1056,736839],["Cobb","2021-07-18",790588,688,737527],["Cobb","2021-07-19",790588,1293,738820],["Cobb","2021-07-20",790588,1328,740148],["Cobb","2021-07-21",790588,1306,741454],["Cobb","2021-07-22",790588,1397,742851],["Cobb","2021-07-23",790588,1703,744554],["Cobb","2021-07-24",790588,1318,745872],["Cobb","2021-07-25",790588,785,746657],["Cobb","2021-07-26",790588,1473,748130],["Cobb","2021-07-27",790588,1528,749658],["Cobb","2021-07-28",790588,1697,751355],["Cobb","2021-07-29",790588,1597,752952],["Cobb","2021-07-30",790588,1964,754916],["Cobb","2021-07-31",790588,1464,756380],["Cobb","2021-08-01",790588,1029,757409],["Cobb","2021-08-02",790588,1648,759057],["Cobb","2021-08-03",790588,1652,760709],["Cobb","2021-08-04",790588,1556,762265],["Cobb","2021-08-05",790588,1661,763926],["Cobb","2021-08-06",790588,2007,765933],["Cobb","2021-08-07",790588,1622,767555],["Cobb","2021-08-08",790588,1135,768690],["Cobb","2021-08-09",790588,1803,770493],["Cobb","2021-08-10",790588,1886,772379],["Cobb","2021-08-11",790588,1641,774020],["Cobb","2021-08-12",790588,1697,775717],["Cobb","2021-08-13",790588,2069,777786],["Cobb","2021-08-14",790588,1744,779530],["Cobb","2021-08-15",790588,1160,780690],["Cobb","2021-08-16",790588,1818,782508],["Cobb","2021-08-17",790588,1832,784340],["Cobb","2021-08-18",790588,1911,786251],["Cobb","2021-08-19",790588,1836,788087],["Cobb","2021-08-20",790588,2344,790431],["Cobb","2021-08-21",790588,1796,792227],["Cobb","2021-08-22",790588,1142,793369],["Cobb","2021-08-23",790588,2060,795429],["Cobb","2021-08-24",790588,1873,797302],["Cobb","2021-08-25",790588,1904,799206],["Cobb","2021-08-26",790588,1917,801123],["Cobb","2021-08-27",790588,2432,803555],["Cobb","2021-08-28",790588,1725,805280],["Cobb","2021-08-29",790588,1095,806375],["Cobb","2021-08-30",790588,1971,808346],["Cobb","2021-08-31",790588,1819,810165],["Cobb","2021-09-01",790588,1924,812089],["Cobb","2021-09-02",790588,1750,813839],["Cobb","2021-09-03",790588,2178,816017],["Cobb","2021-09-04",790588,1468,817485],["Cobb","2021-09-05",790588,978,818463],["Cobb","2021-09-06",790588,289,818752],["Cobb","2021-09-07",790588,1868,820620],["Cobb","2021-09-08",790588,1730,822350],["Cobb","2021-09-09",790588,1630,823980],["Cobb","2021-09-10",790588,2032,826012],["Cobb","2021-09-11",790588,1371,827383],["Cobb","2021-09-12",790588,890,828273],["Cobb","2021-09-13",790588,1502,829775],["Cobb","2021-09-14",790588,1367,831142],["Cobb","2021-09-15",790588,1296,832438],["Cobb","2021-09-16",790588,1218,833656],["Cobb","2021-09-17",790588,1628,835284],["Cobb","2021-09-18",790588,1089,836373],["Cobb","2021-09-19",790588,675,837048],["Cobb","2021-09-20",790588,1329,838377],["Cobb","2021-09-21",790588,1189,839566],["Cobb","2021-09-22",790588,1033,840599],["Cobb","2021-09-23",790588,1035,841634],["Cobb","2021-09-24",790588,1664,843298],["Cobb","2021-09-25",790588,1222,844520],["Cobb","2021-09-26",790588,850,845370],["Cobb","2021-09-27",790588,1808,847178],["Cobb","2021-09-28",790588,1818,848996],["Cobb","2021-09-29",790588,1745,850741],["Cobb","2021-09-30",790588,1729,852470],["Cobb","2021-10-01",790588,2072,854542],["Cobb","2021-10-02",790588,1141,855683],["Cobb","2021-10-03",790588,772,856455],["Cobb","2021-10-04",790588,1603,858058],["Cobb","2021-10-05",790588,1560,859618],["Cobb","2021-10-06",790588,1446,861064],["Cobb","2021-10-07",790588,1547,862611],["Cobb","2021-10-08",790588,1850,864461],["Cobb","2021-10-09",790588,992,865453],["Cobb","2021-10-10",790588,752,866205],["Cobb","2021-10-11",790588,1397,867602],["Cobb","2021-10-12",790588,1368,868970],["Cobb","2021-10-13",790588,1210,870180],["Cobb","2021-10-14",790588,1401,871581],["Cobb","2021-10-15",790588,1513,873094],["Cobb","2021-10-16",790588,951,874045],["Cobb","2021-10-17",790588,594,874639],["Cobb","2021-10-18",790588,1362,876001],["Cobb","2021-10-19",790588,1288,877289],["Cobb","2021-10-20",790588,1161,878450],["Cobb","2021-10-21",790588,1277,879727],["Cobb","2021-10-22",790588,2496,882223],["Cobb","2021-10-23",790588,1850,884073],["Cobb","2021-10-24",790588,1078,885151],["Cobb","2021-10-25",790588,2766,887917],["Cobb","2021-10-26",790588,2411,890328],["Cobb","2021-10-27",790588,2501,892829],["Cobb","2021-10-28",790588,2257,895086],["Cobb","2021-10-29",790588,2898,897984],["Cobb","2021-10-30",790588,1782,899766],["Cobb","2021-10-31",790588,995,900761],["Cobb","2021-11-01",790588,2428,903189],["Cobb","2021-11-02",790588,2350,905539],["Cobb","2021-11-03",790588,2483,908022],["Cobb","2021-11-04",790588,2344,910366],["Cobb","2021-11-05",790588,3374,913740],["Cobb","2021-11-06",790588,2099,915839],["Cobb","2021-11-07",790588,1253,917092],["Cobb","2021-11-08",790588,2408,919500],["Cobb","2021-11-09",790588,2427,921927],["Cobb","2021-11-10",790588,2409,924336],["Cobb","2021-11-11",790588,2391,926727],["Cobb","2021-11-12",790588,3441,930168],["Cobb","2021-11-13",790588,2544,932712],["Cobb","2021-11-14",790588,1190,933902],["Cobb","2021-11-15",790588,2560,936462],["Cobb","2021-11-16",790588,2539,939001],["Cobb","2021-11-17",790588,2473,941474],["Cobb","2021-11-18",790588,2621,944095],["Cobb","2021-11-19",790588,3604,947699],["Cobb","2021-11-20",790588,2548,950247],["Cobb","2021-11-21",790588,1564,951811],["Cobb","2021-11-22",790588,3403,955214],["Cobb","2021-11-23",790588,3021,958235],["Cobb","2021-11-24",790588,2277,960512],["Cobb","2021-11-25",790588,6,960518],["Cobb","2021-11-26",790588,2851,963369],["Cobb","2021-11-27",790588,2162,965531],["Cobb","2021-11-28",790588,1466,966997],["Cobb","2021-11-29",790588,3184,970181],["Cobb","2021-11-30",790588,3274,973455],["Cobb","2021-12-01",790588,3649,977104],["Cobb","2021-12-02",790588,3711,980815],["Cobb","2021-12-03",790588,4431,985246],["Cobb","2021-12-04",790588,3382,988628],["Cobb","2021-12-05",790588,1609,990237],["Cobb","2021-12-06",790588,3399,993636],["Cobb","2021-12-07",790588,3332,996968],["Cobb","2021-12-08",790588,3230,1000198],["Cobb","2021-12-09",790588,3442,1003640],["Cobb","2021-12-10",790588,3990,1007630],["Cobb","2021-12-11",790588,2680,1010310],["Cobb","2021-12-12",790588,1470,1011780],["Cobb","2021-12-13",790588,2922,1014702],["Cobb","2021-12-14",790588,2945,1017647],["Cobb","2021-12-15",790588,2772,1020419],["Cobb","2021-12-16",790588,2760,1023179],["Cobb","2021-12-17",790588,3382,1026561],["Cobb","2021-12-18",790588,2556,1029117],["Cobb","2021-12-19",790588,1496,1030613],["Cobb","2021-12-20",790588,3498,1034111],["Cobb","2021-12-21",790588,3654,1037765],["Cobb","2021-12-22",790588,3357,1041122],["Cobb","2021-12-23",790588,2923,1044045],["Cobb","2021-12-24",790588,1077,1045122],["Cobb","2021-12-25",790588,3,1045125],["Cobb","2021-12-26",790588,1055,1046180],["Cobb","2021-12-27",790588,3156,1049336],["Cobb","2021-12-28",790588,3076,1052412],["Cobb","2021-12-29",790588,2899,1055311],["Cobb","2021-12-30",790588,2349,1057660],["Cobb","2021-12-31",790588,1209,1058869],["Cobb","2022-01-01",790588,181,1059050],["Cobb","2022-01-02",790588,763,1059813],["Cobb","2022-01-03",790588,765,1060578],["Coffee","2020-12-18",43042,1,1],["Coffee","2020-12-19",43042,2,3],["Coffee","2020-12-21",43042,3,6],["Coffee","2020-12-22",43042,9,15],["Coffee","2020-12-23",43042,67,82],["Coffee","2020-12-24",43042,40,122],["Coffee","2020-12-26",43042,1,123],["Coffee","2020-12-27",43042,2,125],["Coffee","2020-12-28",43042,49,174],["Coffee","2020-12-29",43042,19,193],["Coffee","2020-12-30",43042,93,286],["Coffee","2020-12-31",43042,26,312],["Coffee","2021-01-01",43042,41,353],["Coffee","2021-01-03",43042,2,355],["Coffee","2021-01-04",43042,64,419],["Coffee","2021-01-05",43042,48,467],["Coffee","2021-01-06",43042,78,545],["Coffee","2021-01-07",43042,114,659],["Coffee","2021-01-08",43042,180,839],["Coffee","2021-01-09",43042,20,859],["Coffee","2021-01-10",43042,92,951],["Coffee","2021-01-11",43042,197,1148],["Coffee","2021-01-12",43042,263,1411],["Coffee","2021-01-13",43042,261,1672],["Coffee","2021-01-14",43042,301,1973],["Coffee","2021-01-15",43042,129,2102],["Coffee","2021-01-16",43042,4,2106],["Coffee","2021-01-17",43042,7,2113],["Coffee","2021-01-18",43042,167,2280],["Coffee","2021-01-19",43042,261,2541],["Coffee","2021-01-20",43042,234,2775],["Coffee","2021-01-21",43042,241,3016],["Coffee","2021-01-22",43042,192,3208],["Coffee","2021-01-23",43042,48,3256],["Coffee","2021-01-24",43042,9,3265],["Coffee","2021-01-25",43042,207,3472],["Coffee","2021-01-26",43042,207,3679],["Coffee","2021-01-27",43042,235,3914],["Coffee","2021-01-28",43042,228,4142],["Coffee","2021-01-29",43042,108,4250],["Coffee","2021-01-30",43042,5,4255],["Coffee","2021-01-31",43042,77,4332],["Coffee","2021-02-01",43042,188,4520],["Coffee","2021-02-02",43042,55,4575],["Coffee","2021-02-03",43042,99,4674],["Coffee","2021-02-04",43042,248,4922],["Coffee","2021-02-05",43042,111,5033],["Coffee","2021-02-06",43042,7,5040],["Coffee","2021-02-07",43042,15,5055],["Coffee","2021-02-08",43042,223,5278],["Coffee","2021-02-09",43042,246,5524],["Coffee","2021-02-10",43042,314,5838],["Coffee","2021-02-11",43042,357,6195],["Coffee","2021-02-12",43042,201,6396],["Coffee","2021-02-13",43042,20,6416],["Coffee","2021-02-14",43042,13,6429],["Coffee","2021-02-15",43042,193,6622],["Coffee","2021-02-16",43042,345,6967],["Coffee","2021-02-17",43042,309,7276],["Coffee","2021-02-18",43042,48,7324],["Coffee","2021-02-19",43042,218,7542],["Coffee","2021-02-20",43042,74,7616],["Coffee","2021-02-21",43042,2,7618],["Coffee","2021-02-22",43042,214,7832],["Coffee","2021-02-23",43042,46,7878],["Coffee","2021-02-24",43042,353,8231],["Coffee","2021-02-25",43042,230,8461],["Coffee","2021-02-26",43042,93,8554],["Coffee","2021-02-27",43042,14,8568],["Coffee","2021-02-28",43042,3,8571],["Coffee","2021-03-01",43042,236,8807],["Coffee","2021-03-02",43042,38,8845],["Coffee","2021-03-03",43042,391,9236],["Coffee","2021-03-04",43042,26,9262],["Coffee","2021-03-05",43042,115,9377],["Coffee","2021-03-06",43042,14,9391],["Coffee","2021-03-07",43042,1,9392],["Coffee","2021-03-08",43042,113,9505],["Coffee","2021-03-09",43042,69,9574],["Coffee","2021-03-10",43042,278,9852],["Coffee","2021-03-11",43042,131,9983],["Coffee","2021-03-12",43042,303,10286],["Coffee","2021-03-13",43042,18,10304],["Coffee","2021-03-14",43042,19,10323],["Coffee","2021-03-15",43042,179,10502],["Coffee","2021-03-16",43042,189,10691],["Coffee","2021-03-17",43042,337,11028],["Coffee","2021-03-18",43042,60,11088],["Coffee","2021-03-19",43042,217,11305],["Coffee","2021-03-20",43042,29,11334],["Coffee","2021-03-21",43042,7,11341],["Coffee","2021-03-22",43042,158,11499],["Coffee","2021-03-23",43042,166,11665],["Coffee","2021-03-24",43042,282,11947],["Coffee","2021-03-25",43042,123,12070],["Coffee","2021-03-26",43042,326,12396],["Coffee","2021-03-27",43042,21,12417],["Coffee","2021-03-28",43042,7,12424],["Coffee","2021-03-29",43042,152,12576],["Coffee","2021-03-30",43042,188,12764],["Coffee","2021-03-31",43042,479,13243],["Coffee","2021-04-01",43042,268,13511],["Coffee","2021-04-02",43042,316,13827],["Coffee","2021-04-03",43042,68,13895],["Coffee","2021-04-04",43042,11,13906],["Coffee","2021-04-05",43042,136,14042],["Coffee","2021-04-06",43042,229,14271],["Coffee","2021-04-07",43042,361,14632],["Coffee","2021-04-08",43042,218,14850],["Coffee","2021-04-09",43042,192,15042],["Coffee","2021-04-10",43042,17,15059],["Coffee","2021-04-11",43042,19,15078],["Coffee","2021-04-12",43042,151,15229],["Coffee","2021-04-13",43042,205,15434],["Coffee","2021-04-14",43042,276,15710],["Coffee","2021-04-15",43042,85,15795],["Coffee","2021-04-16",43042,339,16134],["Coffee","2021-04-17",43042,47,16181],["Coffee","2021-04-18",43042,4,16185],["Coffee","2021-04-19",43042,132,16317],["Coffee","2021-04-20",43042,190,16507],["Coffee","2021-04-21",43042,281,16788],["Coffee","2021-04-22",43042,101,16889],["Coffee","2021-04-23",43042,182,17071],["Coffee","2021-04-24",43042,31,17102],["Coffee","2021-04-25",43042,3,17105],["Coffee","2021-04-26",43042,98,17203],["Coffee","2021-04-27",43042,182,17385],["Coffee","2021-04-28",43042,268,17653],["Coffee","2021-04-29",43042,111,17764],["Coffee","2021-04-30",43042,171,17935],["Coffee","2021-05-01",43042,55,17990],["Coffee","2021-05-02",43042,1,17991],["Coffee","2021-05-03",43042,53,18044],["Coffee","2021-05-04",43042,141,18185],["Coffee","2021-05-05",43042,196,18381],["Coffee","2021-05-06",43042,72,18453],["Coffee","2021-05-07",43042,160,18613],["Coffee","2021-05-08",43042,30,18643],["Coffee","2021-05-09",43042,12,18655],["Coffee","2021-05-10",43042,32,18687],["Coffee","2021-05-11",43042,116,18803],["Coffee","2021-05-12",43042,209,19012],["Coffee","2021-05-13",43042,87,19099],["Coffee","2021-05-14",43042,111,19210],["Coffee","2021-05-15",43042,39,19249],["Coffee","2021-05-16",43042,8,19257],["Coffee","2021-05-17",43042,43,19300],["Coffee","2021-05-18",43042,96,19396],["Coffee","2021-05-19",43042,160,19556],["Coffee","2021-05-20",43042,89,19645],["Coffee","2021-05-21",43042,71,19716],["Coffee","2021-05-22",43042,46,19762],["Coffee","2021-05-24",43042,19,19781],["Coffee","2021-05-25",43042,78,19859],["Coffee","2021-05-26",43042,153,20012],["Coffee","2021-05-27",43042,103,20115],["Coffee","2021-05-28",43042,82,20197],["Coffee","2021-05-29",43042,38,20235],["Coffee","2021-05-30",43042,6,20241],["Coffee","2021-05-31",43042,8,20249],["Coffee","2021-06-01",43042,72,20321],["Coffee","2021-06-02",43042,124,20445],["Coffee","2021-06-03",43042,67,20512],["Coffee","2021-06-04",43042,70,20582],["Coffee","2021-06-05",43042,22,20604],["Coffee","2021-06-06",43042,12,20616],["Coffee","2021-06-07",43042,34,20650],["Coffee","2021-06-08",43042,62,20712],["Coffee","2021-06-09",43042,68,20780],["Coffee","2021-06-10",43042,68,20848],["Coffee","2021-06-11",43042,77,20925],["Coffee","2021-06-12",43042,21,20946],["Coffee","2021-06-13",43042,8,20954],["Coffee","2021-06-14",43042,27,20981],["Coffee","2021-06-15",43042,193,21174],["Coffee","2021-06-16",43042,75,21249],["Coffee","2021-06-17",43042,42,21291],["Coffee","2021-06-18",43042,58,21349],["Coffee","2021-06-19",43042,46,21395],["Coffee","2021-06-20",43042,3,21398],["Coffee","2021-06-21",43042,17,21415],["Coffee","2021-06-22",43042,55,21470],["Coffee","2021-06-23",43042,72,21542],["Coffee","2021-06-24",43042,42,21584],["Coffee","2021-06-25",43042,46,21630],["Coffee","2021-06-26",43042,30,21660],["Coffee","2021-06-27",43042,9,21669],["Coffee","2021-06-28",43042,25,21694],["Coffee","2021-06-29",43042,155,21849],["Coffee","2021-06-30",43042,85,21934],["Coffee","2021-07-01",43042,44,21978],["Coffee","2021-07-02",43042,36,22014],["Coffee","2021-07-03",43042,22,22036],["Coffee","2021-07-04",43042,2,22038],["Coffee","2021-07-05",43042,26,22064],["Coffee","2021-07-06",43042,57,22121],["Coffee","2021-07-07",43042,68,22189],["Coffee","2021-07-08",43042,32,22221],["Coffee","2021-07-09",43042,56,22277],["Coffee","2021-07-10",43042,11,22288],["Coffee","2021-07-11",43042,3,22291],["Coffee","2021-07-12",43042,26,22317],["Coffee","2021-07-13",43042,82,22399],["Coffee","2021-07-14",43042,89,22488],["Coffee","2021-07-15",43042,47,22535],["Coffee","2021-07-16",43042,82,22617],["Coffee","2021-07-17",43042,36,22653],["Coffee","2021-07-18",43042,8,22661],["Coffee","2021-07-19",43042,73,22734],["Coffee","2021-07-20",43042,139,22873],["Coffee","2021-07-21",43042,88,22961],["Coffee","2021-07-22",43042,59,23020],["Coffee","2021-07-23",43042,91,23111],["Coffee","2021-07-24",43042,49,23160],["Coffee","2021-07-25",43042,15,23175],["Coffee","2021-07-26",43042,84,23259],["Coffee","2021-07-27",43042,157,23416],["Coffee","2021-07-28",43042,161,23577],["Coffee","2021-07-29",43042,104,23681],["Coffee","2021-07-30",43042,224,23905],["Coffee","2021-07-31",43042,33,23938],["Coffee","2021-08-01",43042,101,24039],["Coffee","2021-08-02",43042,111,24150],["Coffee","2021-08-03",43042,250,24400],["Coffee","2021-08-04",43042,192,24592],["Coffee","2021-08-05",43042,143,24735],["Coffee","2021-08-06",43042,195,24930],["Coffee","2021-08-07",43042,78,25008],["Coffee","2021-08-08",43042,23,25031],["Coffee","2021-08-09",43042,127,25158],["Coffee","2021-08-10",43042,256,25414],["Coffee","2021-08-11",43042,236,25650],["Coffee","2021-08-12",43042,141,25791],["Coffee","2021-08-13",43042,322,26113],["Coffee","2021-08-14",43042,86,26199],["Coffee","2021-08-15",43042,28,26227],["Coffee","2021-08-16",43042,176,26403],["Coffee","2021-08-17",43042,253,26656],["Coffee","2021-08-18",43042,231,26887],["Coffee","2021-08-19",43042,150,27037],["Coffee","2021-08-20",43042,219,27256],["Coffee","2021-08-21",43042,74,27330],["Coffee","2021-08-22",43042,25,27355],["Coffee","2021-08-23",43042,150,27505],["Coffee","2021-08-24",43042,233,27738],["Coffee","2021-08-25",43042,168,27906],["Coffee","2021-08-26",43042,128,28034],["Coffee","2021-08-27",43042,197,28231],["Coffee","2021-08-28",43042,78,28309],["Coffee","2021-08-29",43042,121,28430],["Coffee","2021-08-30",43042,132,28562],["Coffee","2021-08-31",43042,210,28772],["Coffee","2021-09-01",43042,168,28940],["Coffee","2021-09-02",43042,165,29105],["Coffee","2021-09-03",43042,221,29326],["Coffee","2021-09-04",43042,46,29372],["Coffee","2021-09-05",43042,27,29399],["Coffee","2021-09-06",43042,27,29426],["Coffee","2021-09-07",43042,155,29581],["Coffee","2021-09-08",43042,168,29749],["Coffee","2021-09-09",43042,108,29857],["Coffee","2021-09-10",43042,243,30100],["Coffee","2021-09-11",43042,77,30177],["Coffee","2021-09-12",43042,27,30204],["Coffee","2021-09-13",43042,121,30325],["Coffee","2021-09-14",43042,139,30464],["Coffee","2021-09-15",43042,134,30598],["Coffee","2021-09-16",43042,98,30696],["Coffee","2021-09-17",43042,185,30881],["Coffee","2021-09-18",43042,46,30927],["Coffee","2021-09-19",43042,14,30941],["Coffee","2021-09-20",43042,72,31013],["Coffee","2021-09-21",43042,101,31114],["Coffee","2021-09-22",43042,92,31206],["Coffee","2021-09-23",43042,51,31257],["Coffee","2021-09-24",43042,107,31364],["Coffee","2021-09-25",43042,38,31402],["Coffee","2021-09-26",43042,43,31445],["Coffee","2021-09-27",43042,73,31518],["Coffee","2021-09-28",43042,87,31605],["Coffee","2021-09-29",43042,69,31674],["Coffee","2021-09-30",43042,57,31731],["Coffee","2021-10-01",43042,87,31818],["Coffee","2021-10-02",43042,27,31845],["Coffee","2021-10-03",43042,6,31851],["Coffee","2021-10-04",43042,72,31923],["Coffee","2021-10-05",43042,51,31974],["Coffee","2021-10-06",43042,51,32025],["Coffee","2021-10-07",43042,35,32060],["Coffee","2021-10-08",43042,66,32126],["Coffee","2021-10-09",43042,13,32139],["Coffee","2021-10-10",43042,7,32146],["Coffee","2021-10-11",43042,34,32180],["Coffee","2021-10-12",43042,34,32214],["Coffee","2021-10-13",43042,45,32259],["Coffee","2021-10-14",43042,51,32310],["Coffee","2021-10-15",43042,37,32347],["Coffee","2021-10-16",43042,20,32367],["Coffee","2021-10-17",43042,7,32374],["Coffee","2021-10-18",43042,30,32404],["Coffee","2021-10-19",43042,37,32441],["Coffee","2021-10-20",43042,25,32466],["Coffee","2021-10-21",43042,22,32488],["Coffee","2021-10-22",43042,107,32595],["Coffee","2021-10-23",43042,30,32625],["Coffee","2021-10-24",43042,8,32633],["Coffee","2021-10-25",43042,59,32692],["Coffee","2021-10-26",43042,104,32796],["Coffee","2021-10-27",43042,190,32986],["Coffee","2021-10-28",43042,65,33051],["Coffee","2021-10-29",43042,142,33193],["Coffee","2021-10-30",43042,23,33216],["Coffee","2021-10-31",43042,10,33226],["Coffee","2021-11-01",43042,62,33288],["Coffee","2021-11-02",43042,100,33388],["Coffee","2021-11-03",43042,186,33574],["Coffee","2021-11-04",43042,76,33650],["Coffee","2021-11-05",43042,106,33756],["Coffee","2021-11-06",43042,18,33774],["Coffee","2021-11-07",43042,5,33779],["Coffee","2021-11-08",43042,96,33875],["Coffee","2021-11-09",43042,89,33964],["Coffee","2021-11-10",43042,142,34106],["Coffee","2021-11-11",43042,34,34140],["Coffee","2021-11-12",43042,111,34251],["Coffee","2021-11-13",43042,31,34282],["Coffee","2021-11-14",43042,7,34289],["Coffee","2021-11-15",43042,72,34361],["Coffee","2021-11-16",43042,97,34458],["Coffee","2021-11-17",43042,158,34616],["Coffee","2021-11-18",43042,53,34669],["Coffee","2021-11-19",43042,112,34781],["Coffee","2021-11-20",43042,15,34796],["Coffee","2021-11-21",43042,17,34813],["Coffee","2021-11-22",43042,106,34919],["Coffee","2021-11-23",43042,106,35025],["Coffee","2021-11-24",43042,88,35113],["Coffee","2021-11-26",43042,21,35134],["Coffee","2021-11-27",43042,24,35158],["Coffee","2021-11-28",43042,12,35170],["Coffee","2021-11-29",43042,104,35274],["Coffee","2021-11-30",43042,152,35426],["Coffee","2021-12-01",43042,163,35589],["Coffee","2021-12-02",43042,91,35680],["Coffee","2021-12-03",43042,163,35843],["Coffee","2021-12-04",43042,35,35878],["Coffee","2021-12-05",43042,18,35896],["Coffee","2021-12-06",43042,101,35997],["Coffee","2021-12-07",43042,126,36123],["Coffee","2021-12-08",43042,161,36284],["Coffee","2021-12-09",43042,48,36332],["Coffee","2021-12-10",43042,69,36401],["Coffee","2021-12-11",43042,22,36423],["Coffee","2021-12-12",43042,9,36432],["Coffee","2021-12-13",43042,43,36475],["Coffee","2021-12-14",43042,81,36556],["Coffee","2021-12-15",43042,120,36676],["Coffee","2021-12-16",43042,51,36727],["Coffee","2021-12-17",43042,102,36829],["Coffee","2021-12-18",43042,22,36851],["Coffee","2021-12-19",43042,11,36862],["Coffee","2021-12-20",43042,90,36952],["Coffee","2021-12-21",43042,120,37072],["Coffee","2021-12-22",43042,129,37201],["Coffee","2021-12-23",43042,26,37227],["Coffee","2021-12-24",43042,14,37241],["Coffee","2021-12-26",43042,7,37248],["Coffee","2021-12-27",43042,89,37337],["Coffee","2021-12-28",43042,86,37423],["Coffee","2021-12-29",43042,143,37566],["Coffee","2021-12-30",43042,82,37648],["Coffee","2021-12-31",43042,65,37713],["Coffee","2022-01-01",43042,6,37719],["Coffee","2022-01-02",43042,10,37729],["Coffee","2022-01-03",43042,38,37767],["Colquitt","2020-12-16",45393,1,1],["Colquitt","2020-12-17",45393,61,62],["Colquitt","2020-12-18",45393,99,161],["Colquitt","2020-12-19",45393,4,165],["Colquitt","2020-12-20",45393,1,166],["Colquitt","2020-12-21",45393,41,207],["Colquitt","2020-12-22",45393,47,254],["Colquitt","2020-12-23",45393,58,312],["Colquitt","2020-12-24",45393,6,318],["Colquitt","2020-12-26",45393,1,319],["Colquitt","2020-12-27",45393,1,320],["Colquitt","2020-12-28",45393,30,350],["Colquitt","2020-12-29",45393,86,436],["Colquitt","2020-12-30",45393,89,525],["Colquitt","2020-12-31",45393,35,560],["Colquitt","2021-01-01",45393,15,575],["Colquitt","2021-01-02",45393,3,578],["Colquitt","2021-01-03",45393,1,579],["Colquitt","2021-01-04",45393,83,662],["Colquitt","2021-01-05",45393,88,750],["Colquitt","2021-01-06",45393,124,874],["Colquitt","2021-01-07",45393,144,1018],["Colquitt","2021-01-08",45393,280,1298],["Colquitt","2021-01-09",45393,6,1304],["Colquitt","2021-01-10",45393,7,1311],["Colquitt","2021-01-11",45393,129,1440],["Colquitt","2021-01-12",45393,167,1607],["Colquitt","2021-01-13",45393,385,1992],["Colquitt","2021-01-14",45393,115,2107],["Colquitt","2021-01-15",45393,349,2456],["Colquitt","2021-01-16",45393,92,2548],["Colquitt","2021-01-17",45393,1,2549],["Colquitt","2021-01-18",45393,112,2661],["Colquitt","2021-01-19",45393,183,2844],["Colquitt","2021-01-20",45393,763,3607],["Colquitt","2021-01-21",45393,229,3836],["Colquitt","2021-01-22",45393,371,4207],["Colquitt","2021-01-23",45393,19,4226],["Colquitt","2021-01-24",45393,1,4227],["Colquitt","2021-01-25",45393,135,4362],["Colquitt","2021-01-26",45393,160,4522],["Colquitt","2021-01-27",45393,177,4699],["Colquitt","2021-01-28",45393,108,4807],["Colquitt","2021-01-29",45393,112,4919],["Colquitt","2021-01-30",45393,8,4927],["Colquitt","2021-01-31",45393,7,4934],["Colquitt","2021-02-01",45393,120,5054],["Colquitt","2021-02-02",45393,121,5175],["Colquitt","2021-02-03",45393,380,5555],["Colquitt","2021-02-04",45393,162,5717],["Colquitt","2021-02-05",45393,426,6143],["Colquitt","2021-02-06",45393,5,6148],["Colquitt","2021-02-07",45393,2,6150],["Colquitt","2021-02-08",45393,134,6284],["Colquitt","2021-02-09",45393,183,6467],["Colquitt","2021-02-10",45393,393,6860],["Colquitt","2021-02-11",45393,130,6990],["Colquitt","2021-02-12",45393,609,7599],["Colquitt","2021-02-13",45393,53,7652],["Colquitt","2021-02-14",45393,11,7663],["Colquitt","2021-02-15",45393,140,7803],["Colquitt","2021-02-16",45393,175,7978],["Colquitt","2021-02-17",45393,572,8550],["Colquitt","2021-02-18",45393,182,8732],["Colquitt","2021-02-19",45393,150,8882],["Colquitt","2021-02-20",45393,22,8904],["Colquitt","2021-02-21",45393,6,8910],["Colquitt","2021-02-22",45393,106,9016],["Colquitt","2021-02-23",45393,153,9169],["Colquitt","2021-02-24",45393,181,9350],["Colquitt","2021-02-25",45393,124,9474],["Colquitt","2021-02-26",45393,261,9735],["Colquitt","2021-02-27",45393,8,9743],["Colquitt","2021-02-28",45393,4,9747],["Colquitt","2021-03-01",45393,145,9892],["Colquitt","2021-03-02",45393,134,10026],["Colquitt","2021-03-03",45393,262,10288],["Colquitt","2021-03-04",45393,109,10397],["Colquitt","2021-03-05",45393,211,10608],["Colquitt","2021-03-06",45393,13,10621],["Colquitt","2021-03-07",45393,12,10633],["Colquitt","2021-03-08",45393,134,10767],["Colquitt","2021-03-09",45393,138,10905],["Colquitt","2021-03-10",45393,120,11025],["Colquitt","2021-03-11",45393,112,11137],["Colquitt","2021-03-12",45393,255,11392],["Colquitt","2021-03-13",45393,138,11530],["Colquitt","2021-03-14",45393,26,11556],["Colquitt","2021-03-15",45393,124,11680],["Colquitt","2021-03-16",45393,130,11810],["Colquitt","2021-03-17",45393,168,11978],["Colquitt","2021-03-18",45393,126,12104],["Colquitt","2021-03-19",45393,526,12630],["Colquitt","2021-03-20",45393,106,12736],["Colquitt","2021-03-21",45393,17,12753],["Colquitt","2021-03-22",45393,107,12860],["Colquitt","2021-03-23",45393,131,12991],["Colquitt","2021-03-24",45393,140,13131],["Colquitt","2021-03-25",45393,281,13412],["Colquitt","2021-03-26",45393,470,13882],["Colquitt","2021-03-27",45393,11,13893],["Colquitt","2021-03-28",45393,22,13915],["Colquitt","2021-03-29",45393,103,14018],["Colquitt","2021-03-30",45393,196,14214],["Colquitt","2021-03-31",45393,688,14902],["Colquitt","2021-04-01",45393,172,15074],["Colquitt","2021-04-02",45393,488,15562],["Colquitt","2021-04-03",45393,17,15579],["Colquitt","2021-04-04",45393,26,15605],["Colquitt","2021-04-05",45393,197,15802],["Colquitt","2021-04-06",45393,268,16070],["Colquitt","2021-04-07",45393,173,16243],["Colquitt","2021-04-08",45393,283,16526],["Colquitt","2021-04-09",45393,430,16956],["Colquitt","2021-04-10",45393,113,17069],["Colquitt","2021-04-11",45393,26,17095],["Colquitt","2021-04-12",45393,139,17234],["Colquitt","2021-04-13",45393,249,17483],["Colquitt","2021-04-14",45393,180,17663],["Colquitt","2021-04-15",45393,245,17908],["Colquitt","2021-04-16",45393,462,18370],["Colquitt","2021-04-17",45393,96,18466],["Colquitt","2021-04-18",45393,12,18478],["Colquitt","2021-04-19",45393,95,18573],["Colquitt","2021-04-20",45393,275,18848],["Colquitt","2021-04-21",45393,145,18993],["Colquitt","2021-04-22",45393,205,19198],["Colquitt","2021-04-23",45393,537,19735],["Colquitt","2021-04-24",45393,22,19757],["Colquitt","2021-04-25",45393,21,19778],["Colquitt","2021-04-26",45393,59,19837],["Colquitt","2021-04-27",45393,705,20542],["Colquitt","2021-04-28",45393,167,20709],["Colquitt","2021-04-29",45393,194,20903],["Colquitt","2021-04-30",45393,231,21134],["Colquitt","2021-05-01",45393,127,21261],["Colquitt","2021-05-02",45393,17,21278],["Colquitt","2021-05-03",45393,83,21361],["Colquitt","2021-05-04",45393,156,21517],["Colquitt","2021-05-05",45393,108,21625],["Colquitt","2021-05-06",45393,124,21749],["Colquitt","2021-05-07",45393,159,21908],["Colquitt","2021-05-08",45393,27,21935],["Colquitt","2021-05-09",45393,12,21947],["Colquitt","2021-05-10",45393,137,22084],["Colquitt","2021-05-11",45393,168,22252],["Colquitt","2021-05-12",45393,146,22398],["Colquitt","2021-05-13",45393,317,22715],["Colquitt","2021-05-14",45393,169,22884],["Colquitt","2021-05-15",45393,34,22918],["Colquitt","2021-05-16",45393,12,22930],["Colquitt","2021-05-17",45393,54,22984],["Colquitt","2021-05-18",45393,249,23233],["Colquitt","2021-05-19",45393,136,23369],["Colquitt","2021-05-20",45393,193,23562],["Colquitt","2021-05-21",45393,88,23650],["Colquitt","2021-05-22",45393,33,23683],["Colquitt","2021-05-23",45393,10,23693],["Colquitt","2021-05-24",45393,85,23778],["Colquitt","2021-05-25",45393,144,23922],["Colquitt","2021-05-26",45393,86,24008],["Colquitt","2021-05-27",45393,77,24085],["Colquitt","2021-05-28",45393,64,24149],["Colquitt","2021-05-29",45393,11,24160],["Colquitt","2021-05-30",45393,11,24171],["Colquitt","2021-05-31",45393,4,24175],["Colquitt","2021-06-01",45393,123,24298],["Colquitt","2021-06-02",45393,63,24361],["Colquitt","2021-06-03",45393,285,24646],["Colquitt","2021-06-04",45393,60,24706],["Colquitt","2021-06-05",45393,27,24733],["Colquitt","2021-06-06",45393,14,24747],["Colquitt","2021-06-07",45393,69,24816],["Colquitt","2021-06-08",45393,112,24928],["Colquitt","2021-06-09",45393,107,25035],["Colquitt","2021-06-10",45393,168,25203],["Colquitt","2021-06-11",45393,63,25266],["Colquitt","2021-06-12",45393,41,25307],["Colquitt","2021-06-13",45393,6,25313],["Colquitt","2021-06-14",45393,67,25380],["Colquitt","2021-06-15",45393,133,25513],["Colquitt","2021-06-16",45393,65,25578],["Colquitt","2021-06-17",45393,70,25648],["Colquitt","2021-06-18",45393,56,25704],["Colquitt","2021-06-19",45393,21,25725],["Colquitt","2021-06-20",45393,5,25730],["Colquitt","2021-06-21",45393,36,25766],["Colquitt","2021-06-22",45393,82,25848],["Colquitt","2021-06-23",45393,45,25893],["Colquitt","2021-06-24",45393,58,25951],["Colquitt","2021-06-25",45393,64,26015],["Colquitt","2021-06-26",45393,23,26038],["Colquitt","2021-06-27",45393,5,26043],["Colquitt","2021-06-28",45393,38,26081],["Colquitt","2021-06-29",45393,75,26156],["Colquitt","2021-06-30",45393,47,26203],["Colquitt","2021-07-01",45393,69,26272],["Colquitt","2021-07-02",45393,75,26347],["Colquitt","2021-07-03",45393,23,26370],["Colquitt","2021-07-04",45393,5,26375],["Colquitt","2021-07-05",45393,25,26400],["Colquitt","2021-07-06",45393,85,26485],["Colquitt","2021-07-07",45393,46,26531],["Colquitt","2021-07-08",45393,109,26640],["Colquitt","2021-07-09",45393,55,26695],["Colquitt","2021-07-10",45393,22,26717],["Colquitt","2021-07-11",45393,6,26723],["Colquitt","2021-07-12",45393,36,26759],["Colquitt","2021-07-13",45393,69,26828],["Colquitt","2021-07-14",45393,56,26884],["Colquitt","2021-07-15",45393,82,26966],["Colquitt","2021-07-16",45393,58,27024],["Colquitt","2021-07-17",45393,36,27060],["Colquitt","2021-07-18",45393,7,27067],["Colquitt","2021-07-19",45393,74,27141],["Colquitt","2021-07-20",45393,121,27262],["Colquitt","2021-07-21",45393,79,27341],["Colquitt","2021-07-22",45393,103,27444],["Colquitt","2021-07-23",45393,107,27551],["Colquitt","2021-07-24",45393,52,27603],["Colquitt","2021-07-25",45393,17,27620],["Colquitt","2021-07-26",45393,74,27694],["Colquitt","2021-07-27",45393,190,27884],["Colquitt","2021-07-28",45393,128,28012],["Colquitt","2021-07-29",45393,198,28210],["Colquitt","2021-07-30",45393,126,28336],["Colquitt","2021-07-31",45393,110,28446],["Colquitt","2021-08-01",45393,20,28466],["Colquitt","2021-08-02",45393,115,28581],["Colquitt","2021-08-03",45393,189,28770],["Colquitt","2021-08-04",45393,176,28946],["Colquitt","2021-08-05",45393,199,29145],["Colquitt","2021-08-06",45393,183,29328],["Colquitt","2021-08-07",45393,107,29435],["Colquitt","2021-08-08",45393,20,29455],["Colquitt","2021-08-09",45393,111,29566],["Colquitt","2021-08-10",45393,215,29781],["Colquitt","2021-08-11",45393,123,29904],["Colquitt","2021-08-12",45393,224,30128],["Colquitt","2021-08-13",45393,172,30300],["Colquitt","2021-08-14",45393,122,30422],["Colquitt","2021-08-15",45393,22,30444],["Colquitt","2021-08-16",45393,114,30558],["Colquitt","2021-08-17",45393,215,30773],["Colquitt","2021-08-18",45393,252,31025],["Colquitt","2021-08-19",45393,249,31274],["Colquitt","2021-08-20",45393,172,31446],["Colquitt","2021-08-21",45393,138,31584],["Colquitt","2021-08-22",45393,27,31611],["Colquitt","2021-08-23",45393,130,31741],["Colquitt","2021-08-24",45393,236,31977],["Colquitt","2021-08-25",45393,236,32213],["Colquitt","2021-08-26",45393,240,32453],["Colquitt","2021-08-27",45393,168,32621],["Colquitt","2021-08-28",45393,157,32778],["Colquitt","2021-08-29",45393,33,32811],["Colquitt","2021-08-30",45393,129,32940],["Colquitt","2021-08-31",45393,202,33142],["Colquitt","2021-09-01",45393,161,33303],["Colquitt","2021-09-02",45393,286,33589],["Colquitt","2021-09-03",45393,187,33776],["Colquitt","2021-09-04",45393,44,33820],["Colquitt","2021-09-05",45393,13,33833],["Colquitt","2021-09-06",45393,11,33844],["Colquitt","2021-09-07",45393,169,34013],["Colquitt","2021-09-08",45393,164,34177],["Colquitt","2021-09-09",45393,185,34362],["Colquitt","2021-09-10",45393,141,34503],["Colquitt","2021-09-11",45393,113,34616],["Colquitt","2021-09-12",45393,14,34630],["Colquitt","2021-09-13",45393,105,34735],["Colquitt","2021-09-14",45393,127,34862],["Colquitt","2021-09-15",45393,100,34962],["Colquitt","2021-09-16",45393,212,35174],["Colquitt","2021-09-17",45393,127,35301],["Colquitt","2021-09-18",45393,47,35348],["Colquitt","2021-09-19",45393,15,35363],["Colquitt","2021-09-20",45393,97,35460],["Colquitt","2021-09-21",45393,87,35547],["Colquitt","2021-09-22",45393,111,35658],["Colquitt","2021-09-23",45393,168,35826],["Colquitt","2021-09-24",45393,68,35894],["Colquitt","2021-09-25",45393,32,35926],["Colquitt","2021-09-26",45393,21,35947],["Colquitt","2021-09-27",45393,53,36000],["Colquitt","2021-09-28",45393,71,36071],["Colquitt","2021-09-29",45393,64,36135],["Colquitt","2021-09-30",45393,123,36258],["Colquitt","2021-10-01",45393,102,36360],["Colquitt","2021-10-02",45393,23,36383],["Colquitt","2021-10-03",45393,8,36391],["Colquitt","2021-10-04",45393,57,36448],["Colquitt","2021-10-05",45393,86,36534],["Colquitt","2021-10-06",45393,71,36605],["Colquitt","2021-10-07",45393,114,36719],["Colquitt","2021-10-08",45393,55,36774],["Colquitt","2021-10-09",45393,20,36794],["Colquitt","2021-10-10",45393,9,36803],["Colquitt","2021-10-11",45393,40,36843],["Colquitt","2021-10-12",45393,77,36920],["Colquitt","2021-10-13",45393,55,36975],["Colquitt","2021-10-14",45393,114,37089],["Colquitt","2021-10-15",45393,45,37134],["Colquitt","2021-10-16",45393,15,37149],["Colquitt","2021-10-17",45393,3,37152],["Colquitt","2021-10-18",45393,41,37193],["Colquitt","2021-10-19",45393,88,37281],["Colquitt","2021-10-20",45393,45,37326],["Colquitt","2021-10-21",45393,92,37418],["Colquitt","2021-10-22",45393,48,37466],["Colquitt","2021-10-23",45393,21,37487],["Colquitt","2021-10-24",45393,17,37504],["Colquitt","2021-10-25",45393,93,37597],["Colquitt","2021-10-26",45393,82,37679],["Colquitt","2021-10-27",45393,65,37744],["Colquitt","2021-10-28",45393,208,37952],["Colquitt","2021-10-29",45393,81,38033],["Colquitt","2021-10-30",45393,24,38057],["Colquitt","2021-10-31",45393,10,38067],["Colquitt","2021-11-01",45393,63,38130],["Colquitt","2021-11-02",45393,66,38196],["Colquitt","2021-11-03",45393,64,38260],["Colquitt","2021-11-04",45393,123,38383],["Colquitt","2021-11-05",45393,49,38432],["Colquitt","2021-11-06",45393,22,38454],["Colquitt","2021-11-07",45393,9,38463],["Colquitt","2021-11-08",45393,76,38539],["Colquitt","2021-11-09",45393,123,38662],["Colquitt","2021-11-10",45393,86,38748],["Colquitt","2021-11-11",45393,56,38804],["Colquitt","2021-11-12",45393,67,38871],["Colquitt","2021-11-13",45393,27,38898],["Colquitt","2021-11-14",45393,14,38912],["Colquitt","2021-11-15",45393,75,38987],["Colquitt","2021-11-16",45393,138,39125],["Colquitt","2021-11-17",45393,79,39204],["Colquitt","2021-11-18",45393,125,39329],["Colquitt","2021-11-19",45393,113,39442],["Colquitt","2021-11-20",45393,32,39474],["Colquitt","2021-11-21",45393,17,39491],["Colquitt","2021-11-22",45393,83,39574],["Colquitt","2021-11-23",45393,122,39696],["Colquitt","2021-11-24",45393,42,39738],["Colquitt","2021-11-26",45393,45,39783],["Colquitt","2021-11-27",45393,37,39820],["Colquitt","2021-11-28",45393,19,39839],["Colquitt","2021-11-29",45393,122,39961],["Colquitt","2021-11-30",45393,182,40143],["Colquitt","2021-12-01",45393,136,40279],["Colquitt","2021-12-02",45393,125,40404],["Colquitt","2021-12-03",45393,117,40521],["Colquitt","2021-12-04",45393,64,40585],["Colquitt","2021-12-05",45393,16,40601],["Colquitt","2021-12-06",45393,83,40684],["Colquitt","2021-12-07",45393,461,41145],["Colquitt","2021-12-08",45393,78,41223],["Colquitt","2021-12-09",45393,88,41311],["Colquitt","2021-12-10",45393,104,41415],["Colquitt","2021-12-11",45393,39,41454],["Colquitt","2021-12-12",45393,12,41466],["Colquitt","2021-12-13",45393,80,41546],["Colquitt","2021-12-14",45393,99,41645],["Colquitt","2021-12-15",45393,96,41741],["Colquitt","2021-12-16",45393,92,41833],["Colquitt","2021-12-17",45393,84,41917],["Colquitt","2021-12-18",45393,31,41948],["Colquitt","2021-12-19",45393,24,41972],["Colquitt","2021-12-20",45393,118,42090],["Colquitt","2021-12-21",45393,144,42234],["Colquitt","2021-12-22",45393,107,42341],["Colquitt","2021-12-23",45393,71,42412],["Colquitt","2021-12-24",45393,24,42436],["Colquitt","2021-12-26",45393,18,42454],["Colquitt","2021-12-27",45393,100,42554],["Colquitt","2021-12-28",45393,133,42687],["Colquitt","2021-12-29",45393,91,42778],["Colquitt","2021-12-30",45393,121,42899],["Colquitt","2021-12-31",45393,46,42945],["Colquitt","2022-01-01",45393,7,42952],["Colquitt","2022-01-02",45393,14,42966],["Colquitt","2022-01-03",45393,19,42985],["Columbia","2020-12-14",158631,1,1],["Columbia","2020-12-15",158631,1,2],["Columbia","2020-12-16",158631,5,7],["Columbia","2020-12-17",158631,125,132],["Columbia","2020-12-18",158631,291,423],["Columbia","2020-12-19",158631,101,524],["Columbia","2020-12-20",158631,7,531],["Columbia","2020-12-21",158631,59,590],["Columbia","2020-12-22",158631,752,1342],["Columbia","2020-12-23",158631,721,2063],["Columbia","2020-12-24",158631,149,2212],["Columbia","2020-12-26",158631,69,2281],["Columbia","2020-12-27",158631,28,2309],["Columbia","2020-12-28",158631,196,2505],["Columbia","2020-12-29",158631,427,2932],["Columbia","2020-12-30",158631,458,3390],["Columbia","2020-12-31",158631,261,3651],["Columbia","2021-01-01",158631,57,3708],["Columbia","2021-01-02",158631,87,3795],["Columbia","2021-01-03",158631,3,3798],["Columbia","2021-01-04",158631,503,4301],["Columbia","2021-01-05",158631,579,4880],["Columbia","2021-01-06",158631,288,5168],["Columbia","2021-01-07",158631,405,5573],["Columbia","2021-01-08",158631,483,6056],["Columbia","2021-01-09",158631,600,6656],["Columbia","2021-01-10",158631,113,6769],["Columbia","2021-01-11",158631,431,7200],["Columbia","2021-01-12",158631,1055,8255],["Columbia","2021-01-13",158631,840,9095],["Columbia","2021-01-14",158631,747,9842],["Columbia","2021-01-15",158631,849,10691],["Columbia","2021-01-16",158631,308,10999],["Columbia","2021-01-17",158631,57,11056],["Columbia","2021-01-18",158631,368,11424],["Columbia","2021-01-19",158631,602,12026],["Columbia","2021-01-20",158631,771,12797],["Columbia","2021-01-21",158631,1239,14036],["Columbia","2021-01-22",158631,709,14745],["Columbia","2021-01-23",158631,101,14846],["Columbia","2021-01-24",158631,36,14882],["Columbia","2021-01-25",158631,733,15615],["Columbia","2021-01-26",158631,771,16386],["Columbia","2021-01-27",158631,730,17116],["Columbia","2021-01-28",158631,1199,18315],["Columbia","2021-01-29",158631,465,18780],["Columbia","2021-01-30",158631,553,19333],["Columbia","2021-01-31",158631,13,19346],["Columbia","2021-02-01",158631,523,19869],["Columbia","2021-02-02",158631,947,20816],["Columbia","2021-02-03",158631,504,21320],["Columbia","2021-02-04",158631,1029,22349],["Columbia","2021-02-05",158631,477,22826],["Columbia","2021-02-06",158631,334,23160],["Columbia","2021-02-07",158631,10,23170],["Columbia","2021-02-08",158631,399,23569],["Columbia","2021-02-09",158631,518,24087],["Columbia","2021-02-10",158631,954,25041],["Columbia","2021-02-11",158631,1041,26082],["Columbia","2021-02-12",158631,740,26822],["Columbia","2021-02-13",158631,1253,28075],["Columbia","2021-02-14",158631,101,28176],["Columbia","2021-02-15",158631,461,28637],["Columbia","2021-02-16",158631,699,29336],["Columbia","2021-02-17",158631,919,30255],["Columbia","2021-02-18",158631,1038,31293],["Columbia","2021-02-19",158631,841,32134],["Columbia","2021-02-20",158631,559,32693],["Columbia","2021-02-21",158631,61,32754],["Columbia","2021-02-22",158631,344,33098],["Columbia","2021-02-23",158631,845,33943],["Columbia","2021-02-24",158631,289,34232],["Columbia","2021-02-25",158631,1763,35995],["Columbia","2021-02-26",158631,888,36883],["Columbia","2021-02-27",158631,167,37050],["Columbia","2021-02-28",158631,65,37115],["Columbia","2021-03-01",158631,425,37540],["Columbia","2021-03-02",158631,555,38095],["Columbia","2021-03-03",158631,848,38943],["Columbia","2021-03-04",158631,1039,39982],["Columbia","2021-03-05",158631,430,40412],["Columbia","2021-03-06",158631,692,41104],["Columbia","2021-03-07",158631,130,41234],["Columbia","2021-03-08",158631,572,41806],["Columbia","2021-03-09",158631,588,42394],["Columbia","2021-03-10",158631,1168,43562],["Columbia","2021-03-11",158631,2071,45633],["Columbia","2021-03-12",158631,1400,47033],["Columbia","2021-03-13",158631,693,47726],["Columbia","2021-03-14",158631,124,47850],["Columbia","2021-03-15",158631,552,48402],["Columbia","2021-03-16",158631,1036,49438],["Columbia","2021-03-17",158631,1100,50538],["Columbia","2021-03-18",158631,817,51355],["Columbia","2021-03-19",158631,537,51892],["Columbia","2021-03-20",158631,527,52419],["Columbia","2021-03-21",158631,170,52589],["Columbia","2021-03-22",158631,1104,53693],["Columbia","2021-03-23",158631,961,54654],["Columbia","2021-03-24",158631,634,55288],["Columbia","2021-03-25",158631,1901,57189],["Columbia","2021-03-26",158631,527,57716],["Columbia","2021-03-27",158631,1040,58756],["Columbia","2021-03-28",158631,295,59051],["Columbia","2021-03-29",158631,709,59760],["Columbia","2021-03-30",158631,1630,61390],["Columbia","2021-03-31",158631,962,62352],["Columbia","2021-04-01",158631,2538,64890],["Columbia","2021-04-02",158631,1560,66450],["Columbia","2021-04-03",158631,722,67172],["Columbia","2021-04-04",158631,271,67443],["Columbia","2021-04-05",158631,898,68341],["Columbia","2021-04-06",158631,970,69311],["Columbia","2021-04-07",158631,1260,70571],["Columbia","2021-04-08",158631,989,71560],["Columbia","2021-04-09",158631,638,72198],["Columbia","2021-04-10",158631,358,72556],["Columbia","2021-04-11",158631,268,72824],["Columbia","2021-04-12",158631,1298,74122],["Columbia","2021-04-13",158631,1765,75887],["Columbia","2021-04-14",158631,711,76598],["Columbia","2021-04-15",158631,1878,78476],["Columbia","2021-04-16",158631,752,79228],["Columbia","2021-04-17",158631,834,80062],["Columbia","2021-04-18",158631,197,80259],["Columbia","2021-04-19",158631,758,81017],["Columbia","2021-04-20",158631,1398,82415],["Columbia","2021-04-21",158631,874,83289],["Columbia","2021-04-22",158631,1526,84815],["Columbia","2021-04-23",158631,842,85657],["Columbia","2021-04-24",158631,540,86197],["Columbia","2021-04-25",158631,240,86437],["Columbia","2021-04-26",158631,655,87092],["Columbia","2021-04-27",158631,1423,88515],["Columbia","2021-04-28",158631,834,89349],["Columbia","2021-04-29",158631,1246,90595],["Columbia","2021-04-30",158631,712,91307],["Columbia","2021-05-01",158631,426,91733],["Columbia","2021-05-02",158631,157,91890],["Columbia","2021-05-03",158631,415,92305],["Columbia","2021-05-04",158631,913,93218],["Columbia","2021-05-05",158631,548,93766],["Columbia","2021-05-06",158631,966,94732],["Columbia","2021-05-07",158631,560,95292],["Columbia","2021-05-08",158631,273,95565],["Columbia","2021-05-09",158631,148,95713],["Columbia","2021-05-10",158631,256,95969],["Columbia","2021-05-11",158631,640,96609],["Columbia","2021-05-12",158631,376,96985],["Columbia","2021-05-13",158631,640,97625],["Columbia","2021-05-14",158631,506,98131],["Columbia","2021-05-15",158631,319,98450],["Columbia","2021-05-16",158631,233,98683],["Columbia","2021-05-17",158631,479,99162],["Columbia","2021-05-18",158631,713,99875],["Columbia","2021-05-19",158631,533,100408],["Columbia","2021-05-20",158631,715,101123],["Columbia","2021-05-21",158631,447,101570],["Columbia","2021-05-22",158631,445,102015],["Columbia","2021-05-23",158631,153,102168],["Columbia","2021-05-24",158631,321,102489],["Columbia","2021-05-25",158631,419,102908],["Columbia","2021-05-26",158631,440,103348],["Columbia","2021-05-27",158631,427,103775],["Columbia","2021-05-28",158631,366,104141],["Columbia","2021-05-29",158631,175,104316],["Columbia","2021-05-30",158631,123,104439],["Columbia","2021-05-31",158631,50,104489],["Columbia","2021-06-01",158631,374,104863],["Columbia","2021-06-02",158631,364,105227],["Columbia","2021-06-03",158631,347,105574],["Columbia","2021-06-04",158631,377,105951],["Columbia","2021-06-05",158631,248,106199],["Columbia","2021-06-06",158631,148,106347],["Columbia","2021-06-07",158631,364,106711],["Columbia","2021-06-08",158631,366,107077],["Columbia","2021-06-09",158631,339,107416],["Columbia","2021-06-10",158631,390,107806],["Columbia","2021-06-11",158631,360,108166],["Columbia","2021-06-12",158631,318,108484],["Columbia","2021-06-13",158631,102,108586],["Columbia","2021-06-14",158631,285,108871],["Columbia","2021-06-15",158631,280,109151],["Columbia","2021-06-16",158631,326,109477],["Columbia","2021-06-17",158631,313,109790],["Columbia","2021-06-18",158631,303,110093],["Columbia","2021-06-19",158631,134,110227],["Columbia","2021-06-20",158631,99,110326],["Columbia","2021-06-21",158631,168,110494],["Columbia","2021-06-22",158631,219,110713],["Columbia","2021-06-23",158631,274,110987],["Columbia","2021-06-24",158631,270,111257],["Columbia","2021-06-25",158631,227,111484],["Columbia","2021-06-26",158631,171,111655],["Columbia","2021-06-27",158631,84,111739],["Columbia","2021-06-28",158631,154,111893],["Columbia","2021-06-29",158631,181,112074],["Columbia","2021-06-30",158631,201,112275],["Columbia","2021-07-01",158631,227,112502],["Columbia","2021-07-02",158631,173,112675],["Columbia","2021-07-03",158631,138,112813],["Columbia","2021-07-04",158631,8,112821],["Columbia","2021-07-05",158631,146,112967],["Columbia","2021-07-06",158631,208,113175],["Columbia","2021-07-07",158631,176,113351],["Columbia","2021-07-08",158631,166,113517],["Columbia","2021-07-09",158631,191,113708],["Columbia","2021-07-10",158631,107,113815],["Columbia","2021-07-11",158631,86,113901],["Columbia","2021-07-12",158631,184,114085],["Columbia","2021-07-13",158631,173,114258],["Columbia","2021-07-14",158631,181,114439],["Columbia","2021-07-15",158631,184,114623],["Columbia","2021-07-16",158631,158,114781],["Columbia","2021-07-17",158631,138,114919],["Columbia","2021-07-18",158631,90,115009],["Columbia","2021-07-19",158631,166,115175],["Columbia","2021-07-20",158631,210,115385],["Columbia","2021-07-21",158631,216,115601],["Columbia","2021-07-22",158631,216,115817],["Columbia","2021-07-23",158631,263,116080],["Columbia","2021-07-24",158631,214,116294],["Columbia","2021-07-25",158631,117,116411],["Columbia","2021-07-26",158631,241,116652],["Columbia","2021-07-27",158631,275,116927],["Columbia","2021-07-28",158631,328,117255],["Columbia","2021-07-29",158631,307,117562],["Columbia","2021-07-30",158631,358,117920],["Columbia","2021-07-31",158631,214,118134],["Columbia","2021-08-01",158631,161,118295],["Columbia","2021-08-02",158631,325,118620],["Columbia","2021-08-03",158631,320,118940],["Columbia","2021-08-04",158631,328,119268],["Columbia","2021-08-05",158631,336,119604],["Columbia","2021-08-06",158631,382,119986],["Columbia","2021-08-07",158631,277,120263],["Columbia","2021-08-08",158631,159,120422],["Columbia","2021-08-09",158631,338,120760],["Columbia","2021-08-10",158631,370,121130],["Columbia","2021-08-11",158631,345,121475],["Columbia","2021-08-12",158631,339,121814],["Columbia","2021-08-13",158631,375,122189],["Columbia","2021-08-14",158631,306,122495],["Columbia","2021-08-15",158631,218,122713],["Columbia","2021-08-16",158631,349,123062],["Columbia","2021-08-17",158631,330,123392],["Columbia","2021-08-18",158631,350,123742],["Columbia","2021-08-19",158631,364,124106],["Columbia","2021-08-20",158631,400,124506],["Columbia","2021-08-21",158631,264,124770],["Columbia","2021-08-22",158631,122,124892],["Columbia","2021-08-23",158631,321,125213],["Columbia","2021-08-24",158631,353,125566],["Columbia","2021-08-25",158631,397,125963],["Columbia","2021-08-26",158631,397,126360],["Columbia","2021-08-27",158631,446,126806],["Columbia","2021-08-28",158631,287,127093],["Columbia","2021-08-29",158631,173,127266],["Columbia","2021-08-30",158631,363,127629],["Columbia","2021-08-31",158631,383,128012],["Columbia","2021-09-01",158631,415,128427],["Columbia","2021-09-02",158631,417,128844],["Columbia","2021-09-03",158631,431,129275],["Columbia","2021-09-04",158631,287,129562],["Columbia","2021-09-05",158631,173,129735],["Columbia","2021-09-06",158631,56,129791],["Columbia","2021-09-07",158631,373,130164],["Columbia","2021-09-08",158631,356,130520],["Columbia","2021-09-09",158631,342,130862],["Columbia","2021-09-10",158631,438,131300],["Columbia","2021-09-11",158631,232,131532],["Columbia","2021-09-12",158631,167,131699],["Columbia","2021-09-13",158631,295,131994],["Columbia","2021-09-14",158631,276,132270],["Columbia","2021-09-15",158631,329,132599],["Columbia","2021-09-16",158631,299,132898],["Columbia","2021-09-17",158631,310,133208],["Columbia","2021-09-18",158631,174,133382],["Columbia","2021-09-19",158631,105,133487],["Columbia","2021-09-20",158631,217,133704],["Columbia","2021-09-21",158631,242,133946],["Columbia","2021-09-22",158631,256,134202],["Columbia","2021-09-23",158631,239,134441],["Columbia","2021-09-24",158631,293,134734],["Columbia","2021-09-25",158631,186,134920],["Columbia","2021-09-26",158631,132,135052],["Columbia","2021-09-27",158631,250,135302],["Columbia","2021-09-28",158631,349,135651],["Columbia","2021-09-29",158631,327,135978],["Columbia","2021-09-30",158631,488,136466],["Columbia","2021-10-01",158631,460,136926],["Columbia","2021-10-02",158631,157,137083],["Columbia","2021-10-03",158631,106,137189],["Columbia","2021-10-04",158631,275,137464],["Columbia","2021-10-05",158631,279,137743],["Columbia","2021-10-06",158631,249,137992],["Columbia","2021-10-07",158631,279,138271],["Columbia","2021-10-08",158631,362,138633],["Columbia","2021-10-09",158631,141,138774],["Columbia","2021-10-10",158631,78,138852],["Columbia","2021-10-11",158631,207,139059],["Columbia","2021-10-12",158631,235,139294],["Columbia","2021-10-13",158631,226,139520],["Columbia","2021-10-14",158631,184,139704],["Columbia","2021-10-15",158631,273,139977],["Columbia","2021-10-16",158631,123,140100],["Columbia","2021-10-17",158631,67,140167],["Columbia","2021-10-18",158631,179,140346],["Columbia","2021-10-19",158631,170,140516],["Columbia","2021-10-20",158631,170,140686],["Columbia","2021-10-21",158631,176,140862],["Columbia","2021-10-22",158631,430,141292],["Columbia","2021-10-23",158631,298,141590],["Columbia","2021-10-24",158631,193,141783],["Columbia","2021-10-25",158631,510,142293],["Columbia","2021-10-26",158631,442,142735],["Columbia","2021-10-27",158631,618,143353],["Columbia","2021-10-28",158631,502,143855],["Columbia","2021-10-29",158631,638,144493],["Columbia","2021-10-30",158631,253,144746],["Columbia","2021-10-31",158631,129,144875],["Columbia","2021-11-01",158631,519,145394],["Columbia","2021-11-02",158631,444,145838],["Columbia","2021-11-03",158631,475,146313],["Columbia","2021-11-04",158631,331,146644],["Columbia","2021-11-05",158631,472,147116],["Columbia","2021-11-06",158631,248,147364],["Columbia","2021-11-07",158631,149,147513],["Columbia","2021-11-08",158631,389,147902],["Columbia","2021-11-09",158631,399,148301],["Columbia","2021-11-10",158631,387,148688],["Columbia","2021-11-11",158631,388,149076],["Columbia","2021-11-12",158631,493,149569],["Columbia","2021-11-13",158631,225,149794],["Columbia","2021-11-14",158631,121,149915],["Columbia","2021-11-15",158631,355,150270],["Columbia","2021-11-16",158631,359,150629],["Columbia","2021-11-17",158631,404,151033],["Columbia","2021-11-18",158631,400,151433],["Columbia","2021-11-19",158631,511,151944],["Columbia","2021-11-20",158631,288,152232],["Columbia","2021-11-21",158631,217,152449],["Columbia","2021-11-22",158631,548,152997],["Columbia","2021-11-23",158631,404,153401],["Columbia","2021-11-24",158631,318,153719],["Columbia","2021-11-25",158631,2,153721],["Columbia","2021-11-26",158631,357,154078],["Columbia","2021-11-27",158631,268,154346],["Columbia","2021-11-28",158631,201,154547],["Columbia","2021-11-29",158631,457,155004],["Columbia","2021-11-30",158631,460,155464],["Columbia","2021-12-01",158631,621,156085],["Columbia","2021-12-02",158631,605,156690],["Columbia","2021-12-03",158631,706,157396],["Columbia","2021-12-04",158631,343,157739],["Columbia","2021-12-05",158631,166,157905],["Columbia","2021-12-06",158631,525,158430],["Columbia","2021-12-07",158631,454,158884],["Columbia","2021-12-08",158631,517,159401],["Columbia","2021-12-09",158631,436,159837],["Columbia","2021-12-10",158631,538,160375],["Columbia","2021-12-11",158631,283,160658],["Columbia","2021-12-12",158631,149,160807],["Columbia","2021-12-13",158631,436,161243],["Columbia","2021-12-14",158631,331,161574],["Columbia","2021-12-15",158631,379,161953],["Columbia","2021-12-16",158631,376,162329],["Columbia","2021-12-17",158631,498,162827],["Columbia","2021-12-18",158631,274,163101],["Columbia","2021-12-19",158631,177,163278],["Columbia","2021-12-20",158631,484,163762],["Columbia","2021-12-21",158631,503,164265],["Columbia","2021-12-22",158631,455,164720],["Columbia","2021-12-23",158631,375,165095],["Columbia","2021-12-24",158631,108,165203],["Columbia","2021-12-26",158631,171,165374],["Columbia","2021-12-27",158631,442,165816],["Columbia","2021-12-28",158631,438,166254],["Columbia","2021-12-29",158631,572,166826],["Columbia","2021-12-30",158631,413,167239],["Columbia","2021-12-31",158631,249,167488],["Columbia","2022-01-01",158631,42,167530],["Columbia","2022-01-02",158631,147,167677],["Columbia","2022-01-03",158631,92,167769],["Cook","2020-12-16",17437,1,1],["Cook","2020-12-17",17437,1,2],["Cook","2020-12-18",17437,7,9],["Cook","2020-12-19",17437,1,10],["Cook","2020-12-21",17437,14,24],["Cook","2020-12-22",17437,4,28],["Cook","2020-12-23",17437,22,50],["Cook","2020-12-24",17437,3,53],["Cook","2020-12-26",17437,1,54],["Cook","2020-12-28",17437,22,76],["Cook","2020-12-29",17437,36,112],["Cook","2020-12-30",17437,30,142],["Cook","2020-12-31",17437,16,158],["Cook","2021-01-01",17437,5,163],["Cook","2021-01-03",17437,6,169],["Cook","2021-01-04",17437,25,194],["Cook","2021-01-05",17437,25,219],["Cook","2021-01-06",17437,47,266],["Cook","2021-01-07",17437,60,326],["Cook","2021-01-08",17437,34,360],["Cook","2021-01-09",17437,1,361],["Cook","2021-01-11",17437,61,422],["Cook","2021-01-12",17437,46,468],["Cook","2021-01-13",17437,139,607],["Cook","2021-01-14",17437,107,714],["Cook","2021-01-15",17437,102,816],["Cook","2021-01-16",17437,2,818],["Cook","2021-01-17",17437,1,819],["Cook","2021-01-18",17437,67,886],["Cook","2021-01-19",17437,87,973],["Cook","2021-01-20",17437,218,1191],["Cook","2021-01-21",17437,116,1307],["Cook","2021-01-22",17437,79,1386],["Cook","2021-01-24",17437,6,1392],["Cook","2021-01-25",17437,81,1473],["Cook","2021-01-26",17437,61,1534],["Cook","2021-01-27",17437,225,1759],["Cook","2021-01-28",17437,53,1812],["Cook","2021-01-29",17437,62,1874],["Cook","2021-01-30",17437,6,1880],["Cook","2021-01-31",17437,5,1885],["Cook","2021-02-01",17437,114,1999],["Cook","2021-02-02",17437,90,2089],["Cook","2021-02-03",17437,242,2331],["Cook","2021-02-04",17437,54,2385],["Cook","2021-02-05",17437,86,2471],["Cook","2021-02-06",17437,1,2472],["Cook","2021-02-07",17437,1,2473],["Cook","2021-02-08",17437,61,2534],["Cook","2021-02-09",17437,97,2631],["Cook","2021-02-10",17437,165,2796],["Cook","2021-02-11",17437,107,2903],["Cook","2021-02-12",17437,118,3021],["Cook","2021-02-13",17437,2,3023],["Cook","2021-02-14",17437,4,3027],["Cook","2021-02-15",17437,104,3131],["Cook","2021-02-16",17437,99,3230],["Cook","2021-02-17",17437,222,3452],["Cook","2021-02-18",17437,124,3576],["Cook","2021-02-19",17437,94,3670],["Cook","2021-02-20",17437,3,3673],["Cook","2021-02-22",17437,68,3741],["Cook","2021-02-23",17437,70,3811],["Cook","2021-02-24",17437,279,4090],["Cook","2021-02-25",17437,63,4153],["Cook","2021-02-26",17437,63,4216],["Cook","2021-02-27",17437,9,4225],["Cook","2021-02-28",17437,11,4236],["Cook","2021-03-01",17437,89,4325],["Cook","2021-03-02",17437,68,4393],["Cook","2021-03-03",17437,241,4634],["Cook","2021-03-04",17437,47,4681],["Cook","2021-03-05",17437,79,4760],["Cook","2021-03-06",17437,10,4770],["Cook","2021-03-07",17437,10,4780],["Cook","2021-03-08",17437,76,4856],["Cook","2021-03-09",17437,74,4930],["Cook","2021-03-10",17437,139,5069],["Cook","2021-03-11",17437,140,5209],["Cook","2021-03-12",17437,55,5264],["Cook","2021-03-13",17437,22,5286],["Cook","2021-03-14",17437,10,5296],["Cook","2021-03-15",17437,76,5372],["Cook","2021-03-16",17437,69,5441],["Cook","2021-03-17",17437,144,5585],["Cook","2021-03-18",17437,87,5672],["Cook","2021-03-19",17437,72,5744],["Cook","2021-03-20",17437,21,5765],["Cook","2021-03-21",17437,11,5776],["Cook","2021-03-22",17437,92,5868],["Cook","2021-03-23",17437,55,5923],["Cook","2021-03-24",17437,132,6055],["Cook","2021-03-25",17437,104,6159],["Cook","2021-03-26",17437,69,6228],["Cook","2021-03-27",17437,10,6238],["Cook","2021-03-28",17437,15,6253],["Cook","2021-03-29",17437,91,6344],["Cook","2021-03-30",17437,85,6429],["Cook","2021-03-31",17437,176,6605],["Cook","2021-04-01",17437,73,6678],["Cook","2021-04-02",17437,67,6745],["Cook","2021-04-03",17437,16,6761],["Cook","2021-04-04",17437,13,6774],["Cook","2021-04-05",17437,100,6874],["Cook","2021-04-06",17437,74,6948],["Cook","2021-04-07",17437,105,7053],["Cook","2021-04-08",17437,54,7107],["Cook","2021-04-09",17437,68,7175],["Cook","2021-04-10",17437,11,7186],["Cook","2021-04-11",17437,14,7200],["Cook","2021-04-12",17437,83,7283],["Cook","2021-04-13",17437,57,7340],["Cook","2021-04-14",17437,138,7478],["Cook","2021-04-15",17437,82,7560],["Cook","2021-04-16",17437,127,7687],["Cook","2021-04-17",17437,12,7699],["Cook","2021-04-18",17437,3,7702],["Cook","2021-04-19",17437,80,7782],["Cook","2021-04-20",17437,52,7834],["Cook","2021-04-21",17437,150,7984],["Cook","2021-04-22",17437,71,8055],["Cook","2021-04-23",17437,90,8145],["Cook","2021-04-24",17437,10,8155],["Cook","2021-04-25",17437,2,8157],["Cook","2021-04-26",17437,69,8226],["Cook","2021-04-27",17437,43,8269],["Cook","2021-04-28",17437,88,8357],["Cook","2021-04-29",17437,51,8408],["Cook","2021-04-30",17437,71,8479],["Cook","2021-05-01",17437,12,8491],["Cook","2021-05-02",17437,1,8492],["Cook","2021-05-03",17437,37,8529],["Cook","2021-05-04",17437,20,8549],["Cook","2021-05-05",17437,53,8602],["Cook","2021-05-06",17437,54,8656],["Cook","2021-05-07",17437,60,8716],["Cook","2021-05-08",17437,15,8731],["Cook","2021-05-09",17437,7,8738],["Cook","2021-05-10",17437,48,8786],["Cook","2021-05-11",17437,30,8816],["Cook","2021-05-12",17437,58,8874],["Cook","2021-05-13",17437,33,8907],["Cook","2021-05-14",17437,45,8952],["Cook","2021-05-15",17437,19,8971],["Cook","2021-05-16",17437,2,8973],["Cook","2021-05-17",17437,41,9014],["Cook","2021-05-18",17437,44,9058],["Cook","2021-05-19",17437,59,9117],["Cook","2021-05-20",17437,45,9162],["Cook","2021-05-21",17437,41,9203],["Cook","2021-05-22",17437,26,9229],["Cook","2021-05-23",17437,7,9236],["Cook","2021-05-24",17437,30,9266],["Cook","2021-05-25",17437,17,9283],["Cook","2021-05-26",17437,49,9332],["Cook","2021-05-27",17437,28,9360],["Cook","2021-05-28",17437,44,9404],["Cook","2021-05-29",17437,11,9415],["Cook","2021-05-30",17437,5,9420],["Cook","2021-05-31",17437,4,9424],["Cook","2021-06-01",17437,29,9453],["Cook","2021-06-02",17437,35,9488],["Cook","2021-06-03",17437,22,9510],["Cook","2021-06-04",17437,21,9531],["Cook","2021-06-05",17437,13,9544],["Cook","2021-06-06",17437,8,9552],["Cook","2021-06-07",17437,38,9590],["Cook","2021-06-08",17437,17,9607],["Cook","2021-06-09",17437,15,9622],["Cook","2021-06-10",17437,35,9657],["Cook","2021-06-11",17437,43,9700],["Cook","2021-06-12",17437,11,9711],["Cook","2021-06-13",17437,14,9725],["Cook","2021-06-14",17437,26,9751],["Cook","2021-06-15",17437,30,9781],["Cook","2021-06-16",17437,23,9804],["Cook","2021-06-17",17437,26,9830],["Cook","2021-06-18",17437,29,9859],["Cook","2021-06-19",17437,8,9867],["Cook","2021-06-20",17437,3,9870],["Cook","2021-06-21",17437,32,9902],["Cook","2021-06-22",17437,23,9925],["Cook","2021-06-23",17437,18,9943],["Cook","2021-06-24",17437,22,9965],["Cook","2021-06-25",17437,27,9992],["Cook","2021-06-26",17437,12,10004],["Cook","2021-06-27",17437,5,10009],["Cook","2021-06-28",17437,11,10020],["Cook","2021-06-29",17437,17,10037],["Cook","2021-06-30",17437,24,10061],["Cook","2021-07-01",17437,22,10083],["Cook","2021-07-02",17437,19,10102],["Cook","2021-07-03",17437,4,10106],["Cook","2021-07-04",17437,3,10109],["Cook","2021-07-05",17437,17,10126],["Cook","2021-07-06",17437,24,10150],["Cook","2021-07-07",17437,16,10166],["Cook","2021-07-08",17437,22,10188],["Cook","2021-07-09",17437,23,10211],["Cook","2021-07-10",17437,7,10218],["Cook","2021-07-11",17437,3,10221],["Cook","2021-07-12",17437,18,10239],["Cook","2021-07-13",17437,17,10256],["Cook","2021-07-14",17437,14,10270],["Cook","2021-07-15",17437,19,10289],["Cook","2021-07-16",17437,26,10315],["Cook","2021-07-17",17437,3,10318],["Cook","2021-07-18",17437,4,10322],["Cook","2021-07-19",17437,18,10340],["Cook","2021-07-20",17437,21,10361],["Cook","2021-07-21",17437,36,10397],["Cook","2021-07-22",17437,21,10418],["Cook","2021-07-23",17437,38,10456],["Cook","2021-07-24",17437,13,10469],["Cook","2021-07-25",17437,19,10488],["Cook","2021-07-26",17437,36,10524],["Cook","2021-07-27",17437,44,10568],["Cook","2021-07-28",17437,39,10607],["Cook","2021-07-29",17437,45,10652],["Cook","2021-07-30",17437,75,10727],["Cook","2021-07-31",17437,24,10751],["Cook","2021-08-01",17437,15,10766],["Cook","2021-08-02",17437,47,10813],["Cook","2021-08-03",17437,45,10858],["Cook","2021-08-04",17437,48,10906],["Cook","2021-08-05",17437,47,10953],["Cook","2021-08-06",17437,89,11042],["Cook","2021-08-07",17437,35,11077],["Cook","2021-08-08",17437,20,11097],["Cook","2021-08-09",17437,52,11149],["Cook","2021-08-10",17437,50,11199],["Cook","2021-08-11",17437,48,11247],["Cook","2021-08-12",17437,57,11304],["Cook","2021-08-13",17437,76,11380],["Cook","2021-08-14",17437,33,11413],["Cook","2021-08-15",17437,16,11429],["Cook","2021-08-16",17437,70,11499],["Cook","2021-08-17",17437,46,11545],["Cook","2021-08-18",17437,46,11591],["Cook","2021-08-19",17437,50,11641],["Cook","2021-08-20",17437,92,11733],["Cook","2021-08-21",17437,28,11761],["Cook","2021-08-22",17437,25,11786],["Cook","2021-08-23",17437,65,11851],["Cook","2021-08-24",17437,57,11908],["Cook","2021-08-25",17437,60,11968],["Cook","2021-08-26",17437,77,12045],["Cook","2021-08-27",17437,76,12121],["Cook","2021-08-28",17437,47,12168],["Cook","2021-08-29",17437,25,12193],["Cook","2021-08-30",17437,71,12264],["Cook","2021-08-31",17437,58,12322],["Cook","2021-09-01",17437,40,12362],["Cook","2021-09-02",17437,49,12411],["Cook","2021-09-03",17437,79,12490],["Cook","2021-09-04",17437,30,12520],["Cook","2021-09-05",17437,14,12534],["Cook","2021-09-06",17437,3,12537],["Cook","2021-09-07",17437,79,12616],["Cook","2021-09-08",17437,48,12664],["Cook","2021-09-09",17437,42,12706],["Cook","2021-09-10",17437,76,12782],["Cook","2021-09-11",17437,21,12803],["Cook","2021-09-12",17437,11,12814],["Cook","2021-09-13",17437,56,12870],["Cook","2021-09-14",17437,38,12908],["Cook","2021-09-15",17437,43,12951],["Cook","2021-09-16",17437,33,12984],["Cook","2021-09-17",17437,67,13051],["Cook","2021-09-18",17437,20,13071],["Cook","2021-09-19",17437,8,13079],["Cook","2021-09-20",17437,29,13108],["Cook","2021-09-21",17437,39,13147],["Cook","2021-09-22",17437,34,13181],["Cook","2021-09-23",17437,31,13212],["Cook","2021-09-24",17437,43,13255],["Cook","2021-09-25",17437,9,13264],["Cook","2021-09-26",17437,1,13265],["Cook","2021-09-27",17437,29,13294],["Cook","2021-09-28",17437,29,13323],["Cook","2021-09-29",17437,24,13347],["Cook","2021-09-30",17437,26,13373],["Cook","2021-10-01",17437,21,13394],["Cook","2021-10-02",17437,8,13402],["Cook","2021-10-03",17437,7,13409],["Cook","2021-10-04",17437,7,13416],["Cook","2021-10-05",17437,25,13441],["Cook","2021-10-06",17437,34,13475],["Cook","2021-10-07",17437,24,13499],["Cook","2021-10-08",17437,30,13529],["Cook","2021-10-09",17437,7,13536],["Cook","2021-10-10",17437,4,13540],["Cook","2021-10-11",17437,19,13559],["Cook","2021-10-12",17437,18,13577],["Cook","2021-10-13",17437,14,13591],["Cook","2021-10-14",17437,11,13602],["Cook","2021-10-15",17437,15,13617],["Cook","2021-10-16",17437,6,13623],["Cook","2021-10-17",17437,2,13625],["Cook","2021-10-18",17437,18,13643],["Cook","2021-10-19",17437,18,13661],["Cook","2021-10-20",17437,8,13669],["Cook","2021-10-21",17437,11,13680],["Cook","2021-10-22",17437,30,13710],["Cook","2021-10-23",17437,7,13717],["Cook","2021-10-24",17437,3,13720],["Cook","2021-10-25",17437,35,13755],["Cook","2021-10-26",17437,63,13818],["Cook","2021-10-27",17437,52,13870],["Cook","2021-10-28",17437,76,13946],["Cook","2021-10-29",17437,37,13983],["Cook","2021-10-30",17437,8,13991],["Cook","2021-10-31",17437,3,13994],["Cook","2021-11-01",17437,31,14025],["Cook","2021-11-02",17437,46,14071],["Cook","2021-11-03",17437,40,14111],["Cook","2021-11-04",17437,40,14151],["Cook","2021-11-05",17437,31,14182],["Cook","2021-11-06",17437,8,14190],["Cook","2021-11-07",17437,4,14194],["Cook","2021-11-08",17437,35,14229],["Cook","2021-11-09",17437,29,14258],["Cook","2021-11-10",17437,39,14297],["Cook","2021-11-11",17437,39,14336],["Cook","2021-11-12",17437,60,14396],["Cook","2021-11-13",17437,12,14408],["Cook","2021-11-14",17437,7,14415],["Cook","2021-11-15",17437,35,14450],["Cook","2021-11-16",17437,45,14495],["Cook","2021-11-17",17437,59,14554],["Cook","2021-11-18",17437,48,14602],["Cook","2021-11-19",17437,29,14631],["Cook","2021-11-20",17437,7,14638],["Cook","2021-11-21",17437,5,14643],["Cook","2021-11-22",17437,34,14677],["Cook","2021-11-23",17437,52,14729],["Cook","2021-11-24",17437,23,14752],["Cook","2021-11-26",17437,20,14772],["Cook","2021-11-27",17437,12,14784],["Cook","2021-11-28",17437,3,14787],["Cook","2021-11-29",17437,30,14817],["Cook","2021-11-30",17437,73,14890],["Cook","2021-12-01",17437,59,14949],["Cook","2021-12-02",17437,88,15037],["Cook","2021-12-03",17437,50,15087],["Cook","2021-12-04",17437,11,15098],["Cook","2021-12-05",17437,3,15101],["Cook","2021-12-06",17437,54,15155],["Cook","2021-12-07",17437,41,15196],["Cook","2021-12-08",17437,20,15216],["Cook","2021-12-09",17437,70,15286],["Cook","2021-12-10",17437,67,15353],["Cook","2021-12-11",17437,15,15368],["Cook","2021-12-12",17437,5,15373],["Cook","2021-12-13",17437,36,15409],["Cook","2021-12-14",17437,26,15435],["Cook","2021-12-15",17437,20,15455],["Cook","2021-12-16",17437,44,15499],["Cook","2021-12-17",17437,27,15526],["Cook","2021-12-18",17437,8,15534],["Cook","2021-12-19",17437,5,15539],["Cook","2021-12-20",17437,32,15571],["Cook","2021-12-21",17437,44,15615],["Cook","2021-12-22",17437,32,15647],["Cook","2021-12-23",17437,40,15687],["Cook","2021-12-24",17437,6,15693],["Cook","2021-12-26",17437,3,15696],["Cook","2021-12-27",17437,38,15734],["Cook","2021-12-28",17437,56,15790],["Cook","2021-12-29",17437,35,15825],["Cook","2021-12-30",17437,47,15872],["Cook","2021-12-31",17437,21,15893],["Cook","2022-01-01",17437,4,15897],["Cook","2022-01-02",17437,11,15908],["Cook","2022-01-03",17437,18,15926],["Coweta","2020-12-14",152001,1,1],["Coweta","2020-12-16",152001,1,2],["Coweta","2020-12-17",152001,5,7],["Coweta","2020-12-18",152001,19,26],["Coweta","2020-12-19",152001,11,37],["Coweta","2020-12-20",152001,9,46],["Coweta","2020-12-21",152001,47,93],["Coweta","2020-12-22",152001,75,168],["Coweta","2020-12-23",152001,107,275],["Coweta","2020-12-24",152001,14,289],["Coweta","2020-12-26",152001,4,293],["Coweta","2020-12-27",152001,10,303],["Coweta","2020-12-28",152001,271,574],["Coweta","2020-12-29",152001,286,860],["Coweta","2020-12-30",152001,372,1232],["Coweta","2020-12-31",152001,113,1345],["Coweta","2021-01-01",152001,36,1381],["Coweta","2021-01-02",152001,8,1389],["Coweta","2021-01-03",152001,11,1400],["Coweta","2021-01-04",152001,221,1621],["Coweta","2021-01-05",152001,74,1695],["Coweta","2021-01-06",152001,121,1816],["Coweta","2021-01-07",152001,126,1942],["Coweta","2021-01-08",152001,183,2125],["Coweta","2021-01-09",152001,123,2248],["Coweta","2021-01-10",152001,40,2288],["Coweta","2021-01-11",152001,995,3283],["Coweta","2021-01-12",152001,365,3648],["Coweta","2021-01-13",152001,402,4050],["Coweta","2021-01-14",152001,966,5016],["Coweta","2021-01-15",152001,364,5380],["Coweta","2021-01-16",152001,252,5632],["Coweta","2021-01-17",152001,67,5699],["Coweta","2021-01-18",152001,345,6044],["Coweta","2021-01-19",152001,453,6497],["Coweta","2021-01-20",152001,386,6883],["Coweta","2021-01-21",152001,336,7219],["Coweta","2021-01-22",152001,406,7625],["Coweta","2021-01-23",152001,131,7756],["Coweta","2021-01-24",152001,41,7797],["Coweta","2021-01-25",152001,407,8204],["Coweta","2021-01-26",152001,266,8470],["Coweta","2021-01-27",152001,505,8975],["Coweta","2021-01-28",152001,528,9503],["Coweta","2021-01-29",152001,693,10196],["Coweta","2021-01-30",152001,100,10296],["Coweta","2021-01-31",152001,58,10354],["Coweta","2021-02-01",152001,320,10674],["Coweta","2021-02-02",152001,348,11022],["Coweta","2021-02-03",152001,244,11266],["Coweta","2021-02-04",152001,495,11761],["Coweta","2021-02-05",152001,418,12179],["Coweta","2021-02-06",152001,71,12250],["Coweta","2021-02-07",152001,42,12292],["Coweta","2021-02-08",152001,1113,13405],["Coweta","2021-02-09",152001,570,13975],["Coweta","2021-02-10",152001,399,14374],["Coweta","2021-02-11",152001,484,14858],["Coweta","2021-02-12",152001,1126,15984],["Coweta","2021-02-13",152001,207,16191],["Coweta","2021-02-14",152001,85,16276],["Coweta","2021-02-15",152001,435,16711],["Coweta","2021-02-16",152001,486,17197],["Coweta","2021-02-17",152001,1086,18283],["Coweta","2021-02-18",152001,378,18661],["Coweta","2021-02-19",152001,410,19071],["Coweta","2021-02-20",152001,212,19283],["Coweta","2021-02-21",152001,33,19316],["Coweta","2021-02-22",152001,346,19662],["Coweta","2021-02-23",152001,630,20292],["Coweta","2021-02-24",152001,1008,21300],["Coweta","2021-02-25",152001,622,21922],["Coweta","2021-02-26",152001,686,22608],["Coweta","2021-02-27",152001,145,22753],["Coweta","2021-02-28",152001,111,22864],["Coweta","2021-03-01",152001,510,23374],["Coweta","2021-03-02",152001,717,24091],["Coweta","2021-03-03",152001,900,24991],["Coweta","2021-03-04",152001,719,25710],["Coweta","2021-03-05",152001,549,26259],["Coweta","2021-03-06",152001,124,26383],["Coweta","2021-03-07",152001,141,26524],["Coweta","2021-03-08",152001,651,27175],["Coweta","2021-03-09",152001,704,27879],["Coweta","2021-03-10",152001,843,28722],["Coweta","2021-03-11",152001,940,29662],["Coweta","2021-03-12",152001,1229,30891],["Coweta","2021-03-13",152001,200,31091],["Coweta","2021-03-14",152001,190,31281],["Coweta","2021-03-15",152001,1176,32457],["Coweta","2021-03-16",152001,1033,33490],["Coweta","2021-03-17",152001,1441,34931],["Coweta","2021-03-18",152001,849,35780],["Coweta","2021-03-19",152001,1353,37133],["Coweta","2021-03-20",152001,261,37394],["Coweta","2021-03-21",152001,292,37686],["Coweta","2021-03-22",152001,982,38668],["Coweta","2021-03-23",152001,939,39607],["Coweta","2021-03-24",152001,1382,40989],["Coweta","2021-03-25",152001,1153,42142],["Coweta","2021-03-26",152001,1169,43311],["Coweta","2021-03-27",152001,624,43935],["Coweta","2021-03-28",152001,295,44230],["Coweta","2021-03-29",152001,867,45097],["Coweta","2021-03-30",152001,1435,46532],["Coweta","2021-03-31",152001,1484,48016],["Coweta","2021-04-01",152001,1716,49732],["Coweta","2021-04-02",152001,1070,50802],["Coweta","2021-04-03",152001,497,51299],["Coweta","2021-04-04",152001,282,51581],["Coweta","2021-04-05",152001,1497,53078],["Coweta","2021-04-06",152001,1386,54464],["Coweta","2021-04-07",152001,1701,56165],["Coweta","2021-04-08",152001,1266,57431],["Coweta","2021-04-09",152001,1217,58648],["Coweta","2021-04-10",152001,808,59456],["Coweta","2021-04-11",152001,388,59844],["Coweta","2021-04-12",152001,1570,61414],["Coweta","2021-04-13",152001,1209,62623],["Coweta","2021-04-14",152001,1218,63841],["Coweta","2021-04-15",152001,1129,64970],["Coweta","2021-04-16",152001,1135,66105],["Coweta","2021-04-17",152001,542,66647],["Coweta","2021-04-18",152001,278,66925],["Coweta","2021-04-19",152001,1111,68036],["Coweta","2021-04-20",152001,1182,69218],["Coweta","2021-04-21",152001,1231,70449],["Coweta","2021-04-22",152001,1094,71543],["Coweta","2021-04-23",152001,1296,72839],["Coweta","2021-04-24",152001,505,73344],["Coweta","2021-04-25",152001,230,73574],["Coweta","2021-04-26",152001,769,74343],["Coweta","2021-04-27",152001,940,75283],["Coweta","2021-04-28",152001,1148,76431],["Coweta","2021-04-29",152001,795,77226],["Coweta","2021-04-30",152001,1028,78254],["Coweta","2021-05-01",152001,633,78887],["Coweta","2021-05-02",152001,182,79069],["Coweta","2021-05-03",152001,604,79673],["Coweta","2021-05-04",152001,772,80445],["Coweta","2021-05-05",152001,1063,81508],["Coweta","2021-05-06",152001,763,82271],["Coweta","2021-05-07",152001,836,83107],["Coweta","2021-05-08",152001,297,83404],["Coweta","2021-05-09",152001,130,83534],["Coweta","2021-05-10",152001,534,84068],["Coweta","2021-05-11",152001,648,84716],["Coweta","2021-05-12",152001,456,85172],["Coweta","2021-05-13",152001,576,85748],["Coweta","2021-05-14",152001,715,86463],["Coweta","2021-05-15",152001,370,86833],["Coweta","2021-05-16",152001,246,87079],["Coweta","2021-05-17",152001,574,87653],["Coweta","2021-05-18",152001,664,88317],["Coweta","2021-05-19",152001,523,88840],["Coweta","2021-05-20",152001,435,89275],["Coweta","2021-05-21",152001,773,90048],["Coweta","2021-05-22",152001,286,90334],["Coweta","2021-05-23",152001,150,90484],["Coweta","2021-05-24",152001,348,90832],["Coweta","2021-05-25",152001,344,91176],["Coweta","2021-05-26",152001,367,91543],["Coweta","2021-05-27",152001,377,91920],["Coweta","2021-05-28",152001,400,92320],["Coweta","2021-05-29",152001,190,92510],["Coweta","2021-05-30",152001,83,92593],["Coweta","2021-05-31",152001,51,92644],["Coweta","2021-06-01",152001,427,93071],["Coweta","2021-06-02",152001,377,93448],["Coweta","2021-06-03",152001,360,93808],["Coweta","2021-06-04",152001,441,94249],["Coweta","2021-06-05",152001,252,94501],["Coweta","2021-06-06",152001,166,94667],["Coweta","2021-06-07",152001,424,95091],["Coweta","2021-06-08",152001,369,95460],["Coweta","2021-06-09",152001,320,95780],["Coweta","2021-06-10",152001,289,96069],["Coweta","2021-06-11",152001,416,96485],["Coweta","2021-06-12",152001,229,96714],["Coweta","2021-06-13",152001,95,96809],["Coweta","2021-06-14",152001,290,97099],["Coweta","2021-06-15",152001,259,97358],["Coweta","2021-06-16",152001,255,97613],["Coweta","2021-06-17",152001,207,97820],["Coweta","2021-06-18",152001,262,98082],["Coweta","2021-06-19",152001,151,98233],["Coweta","2021-06-20",152001,66,98299],["Coweta","2021-06-21",152001,220,98519],["Coweta","2021-06-22",152001,195,98714],["Coweta","2021-06-23",152001,206,98920],["Coweta","2021-06-24",152001,172,99092],["Coweta","2021-06-25",152001,243,99335],["Coweta","2021-06-26",152001,132,99467],["Coweta","2021-06-27",152001,74,99541],["Coweta","2021-06-28",152001,199,99740],["Coweta","2021-06-29",152001,171,99911],["Coweta","2021-06-30",152001,172,100083],["Coweta","2021-07-01",152001,185,100268],["Coweta","2021-07-02",152001,217,100485],["Coweta","2021-07-03",152001,97,100582],["Coweta","2021-07-04",152001,7,100589],["Coweta","2021-07-05",152001,143,100732],["Coweta","2021-07-06",152001,141,100873],["Coweta","2021-07-07",152001,132,101005],["Coweta","2021-07-08",152001,130,101135],["Coweta","2021-07-09",152001,189,101324],["Coweta","2021-07-10",152001,111,101435],["Coweta","2021-07-11",152001,53,101488],["Coweta","2021-07-12",152001,132,101620],["Coweta","2021-07-13",152001,158,101778],["Coweta","2021-07-14",152001,153,101931],["Coweta","2021-07-15",152001,173,102104],["Coweta","2021-07-16",152001,219,102323],["Coweta","2021-07-17",152001,110,102433],["Coweta","2021-07-18",152001,75,102508],["Coweta","2021-07-19",152001,203,102711],["Coweta","2021-07-20",152001,170,102881],["Coweta","2021-07-21",152001,204,103085],["Coweta","2021-07-22",152001,203,103288],["Coweta","2021-07-23",152001,281,103569],["Coweta","2021-07-24",152001,183,103752],["Coweta","2021-07-25",152001,88,103840],["Coweta","2021-07-26",152001,247,104087],["Coweta","2021-07-27",152001,210,104297],["Coweta","2021-07-28",152001,235,104532],["Coweta","2021-07-29",152001,225,104757],["Coweta","2021-07-30",152001,352,105109],["Coweta","2021-07-31",152001,219,105328],["Coweta","2021-08-01",152001,130,105458],["Coweta","2021-08-02",152001,284,105742],["Coweta","2021-08-03",152001,252,105994],["Coweta","2021-08-04",152001,299,106293],["Coweta","2021-08-05",152001,271,106564],["Coweta","2021-08-06",152001,377,106941],["Coweta","2021-08-07",152001,237,107178],["Coweta","2021-08-08",152001,143,107321],["Coweta","2021-08-09",152001,311,107632],["Coweta","2021-08-10",152001,320,107952],["Coweta","2021-08-11",152001,316,108268],["Coweta","2021-08-12",152001,315,108583],["Coweta","2021-08-13",152001,386,108969],["Coweta","2021-08-14",152001,249,109218],["Coweta","2021-08-15",152001,135,109353],["Coweta","2021-08-16",152001,341,109694],["Coweta","2021-08-17",152001,313,110007],["Coweta","2021-08-18",152001,406,110413],["Coweta","2021-08-19",152001,317,110730],["Coweta","2021-08-20",152001,496,111226],["Coweta","2021-08-21",152001,328,111554],["Coweta","2021-08-22",152001,141,111695],["Coweta","2021-08-23",152001,396,112091],["Coweta","2021-08-24",152001,344,112435],["Coweta","2021-08-25",152001,422,112857],["Coweta","2021-08-26",152001,388,113245],["Coweta","2021-08-27",152001,551,113796],["Coweta","2021-08-28",152001,305,114101],["Coweta","2021-08-29",152001,172,114273],["Coweta","2021-08-30",152001,475,114748],["Coweta","2021-08-31",152001,348,115096],["Coweta","2021-09-01",152001,408,115504],["Coweta","2021-09-02",152001,369,115873],["Coweta","2021-09-03",152001,526,116399],["Coweta","2021-09-04",152001,280,116679],["Coweta","2021-09-05",152001,137,116816],["Coweta","2021-09-06",152001,47,116863],["Coweta","2021-09-07",152001,370,117233],["Coweta","2021-09-08",152001,419,117652],["Coweta","2021-09-09",152001,376,118028],["Coweta","2021-09-10",152001,572,118600],["Coweta","2021-09-11",152001,258,118858],["Coweta","2021-09-12",152001,131,118989],["Coweta","2021-09-13",152001,472,119461],["Coweta","2021-09-14",152001,363,119824],["Coweta","2021-09-15",152001,401,120225],["Coweta","2021-09-16",152001,318,120543],["Coweta","2021-09-17",152001,464,121007],["Coweta","2021-09-18",152001,303,121310],["Coweta","2021-09-19",152001,122,121432],["Coweta","2021-09-20",152001,405,121837],["Coweta","2021-09-21",152001,296,122133],["Coweta","2021-09-22",152001,317,122450],["Coweta","2021-09-23",152001,272,122722],["Coweta","2021-09-24",152001,411,123133],["Coweta","2021-09-25",152001,247,123380],["Coweta","2021-09-26",152001,105,123485],["Coweta","2021-09-27",152001,376,123861],["Coweta","2021-09-28",152001,302,124163],["Coweta","2021-09-29",152001,352,124515],["Coweta","2021-09-30",152001,331,124846],["Coweta","2021-10-01",152001,402,125248],["Coweta","2021-10-02",152001,219,125467],["Coweta","2021-10-03",152001,131,125598],["Coweta","2021-10-04",152001,289,125887],["Coweta","2021-10-05",152001,283,126170],["Coweta","2021-10-06",152001,323,126493],["Coweta","2021-10-07",152001,278,126771],["Coweta","2021-10-08",152001,369,127140],["Coweta","2021-10-09",152001,192,127332],["Coweta","2021-10-10",152001,71,127403],["Coweta","2021-10-11",152001,302,127705],["Coweta","2021-10-12",152001,209,127914],["Coweta","2021-10-13",152001,223,128137],["Coweta","2021-10-14",152001,206,128343],["Coweta","2021-10-15",152001,321,128664],["Coweta","2021-10-16",152001,178,128842],["Coweta","2021-10-17",152001,68,128910],["Coweta","2021-10-18",152001,260,129170],["Coweta","2021-10-19",152001,185,129355],["Coweta","2021-10-20",152001,179,129534],["Coweta","2021-10-21",152001,174,129708],["Coweta","2021-10-22",152001,522,130230],["Coweta","2021-10-23",152001,317,130547],["Coweta","2021-10-24",152001,166,130713],["Coweta","2021-10-25",152001,625,131338],["Coweta","2021-10-26",152001,477,131815],["Coweta","2021-10-27",152001,501,132316],["Coweta","2021-10-28",152001,517,132833],["Coweta","2021-10-29",152001,527,133360],["Coweta","2021-10-30",152001,248,133608],["Coweta","2021-10-31",152001,118,133726],["Coweta","2021-11-01",152001,422,134148],["Coweta","2021-11-02",152001,352,134500],["Coweta","2021-11-03",152001,349,134849],["Coweta","2021-11-04",152001,416,135265],["Coweta","2021-11-05",152001,472,135737],["Coweta","2021-11-06",152001,298,136035],["Coweta","2021-11-07",152001,117,136152],["Coweta","2021-11-08",152001,345,136497],["Coweta","2021-11-09",152001,410,136907],["Coweta","2021-11-10",152001,356,137263],["Coweta","2021-11-11",152001,384,137647],["Coweta","2021-11-12",152001,513,138160],["Coweta","2021-11-13",152001,313,138473],["Coweta","2021-11-14",152001,117,138590],["Coweta","2021-11-15",152001,409,138999],["Coweta","2021-11-16",152001,351,139350],["Coweta","2021-11-17",152001,328,139678],["Coweta","2021-11-18",152001,316,139994],["Coweta","2021-11-19",152001,576,140570],["Coweta","2021-11-20",152001,260,140830],["Coweta","2021-11-21",152001,154,140984],["Coweta","2021-11-22",152001,502,141486],["Coweta","2021-11-23",152001,392,141878],["Coweta","2021-11-24",152001,256,142134],["Coweta","2021-11-25",152001,4,142138],["Coweta","2021-11-26",152001,358,142496],["Coweta","2021-11-27",152001,237,142733],["Coweta","2021-11-28",152001,148,142881],["Coweta","2021-11-29",152001,473,143354],["Coweta","2021-11-30",152001,460,143814],["Coweta","2021-12-01",152001,562,144376],["Coweta","2021-12-02",152001,586,144962],["Coweta","2021-12-03",152001,625,145587],["Coweta","2021-12-04",152001,392,145979],["Coweta","2021-12-05",152001,176,146155],["Coweta","2021-12-06",152001,455,146610],["Coweta","2021-12-07",152001,379,146989],["Coweta","2021-12-08",152001,412,147401],["Coweta","2021-12-09",152001,409,147810],["Coweta","2021-12-10",152001,544,148354],["Coweta","2021-12-11",152001,285,148639],["Coweta","2021-12-12",152001,166,148805],["Coweta","2021-12-13",152001,390,149195],["Coweta","2021-12-14",152001,309,149504],["Coweta","2021-12-15",152001,319,149823],["Coweta","2021-12-16",152001,309,150132],["Coweta","2021-12-17",152001,452,150584],["Coweta","2021-12-18",152001,310,150894],["Coweta","2021-12-19",152001,146,151040],["Coweta","2021-12-20",152001,444,151484],["Coweta","2021-12-21",152001,474,151958],["Coweta","2021-12-22",152001,434,152392],["Coweta","2021-12-23",152001,385,152777],["Coweta","2021-12-24",152001,98,152875],["Coweta","2021-12-26",152001,102,152977],["Coweta","2021-12-27",152001,450,153427],["Coweta","2021-12-28",152001,405,153832],["Coweta","2021-12-29",152001,430,154262],["Coweta","2021-12-30",152001,289,154551],["Coweta","2021-12-31",152001,181,154732],["Coweta","2022-01-01",152001,9,154741],["Coweta","2022-01-02",152001,112,154853],["Coweta","2022-01-03",152001,158,155011],["Crawford","2020-12-17",12228,1,1],["Crawford","2020-12-22",12228,2,3],["Crawford","2020-12-23",12228,5,8],["Crawford","2020-12-24",12228,3,11],["Crawford","2020-12-26",12228,2,13],["Crawford","2020-12-27",12228,1,14],["Crawford","2020-12-28",12228,14,28],["Crawford","2020-12-29",12228,9,37],["Crawford","2020-12-30",12228,8,45],["Crawford","2020-12-31",12228,6,51],["Crawford","2021-01-01",12228,3,54],["Crawford","2021-01-02",12228,2,56],["Crawford","2021-01-03",12228,7,63],["Crawford","2021-01-04",12228,8,71],["Crawford","2021-01-05",12228,59,130],["Crawford","2021-01-06",12228,11,141],["Crawford","2021-01-07",12228,13,154],["Crawford","2021-01-08",12228,3,157],["Crawford","2021-01-09",12228,3,160],["Crawford","2021-01-10",12228,4,164],["Crawford","2021-01-11",12228,59,223],["Crawford","2021-01-12",12228,19,242],["Crawford","2021-01-13",12228,63,305],["Crawford","2021-01-14",12228,28,333],["Crawford","2021-01-15",12228,17,350],["Crawford","2021-01-16",12228,29,379],["Crawford","2021-01-17",12228,5,384],["Crawford","2021-01-18",12228,103,487],["Crawford","2021-01-19",12228,25,512],["Crawford","2021-01-20",12228,106,618],["Crawford","2021-01-21",12228,20,638],["Crawford","2021-01-22",12228,41,679],["Crawford","2021-01-23",12228,7,686],["Crawford","2021-01-24",12228,8,694],["Crawford","2021-01-25",12228,112,806],["Crawford","2021-01-26",12228,109,915],["Crawford","2021-01-27",12228,58,973],["Crawford","2021-01-28",12228,25,998],["Crawford","2021-01-29",12228,30,1028],["Crawford","2021-01-30",12228,43,1071],["Crawford","2021-01-31",12228,4,1075],["Crawford","2021-02-01",12228,60,1135],["Crawford","2021-02-02",12228,12,1147],["Crawford","2021-02-03",12228,52,1199],["Crawford","2021-02-04",12228,25,1224],["Crawford","2021-02-05",12228,30,1254],["Crawford","2021-02-06",12228,2,1256],["Crawford","2021-02-07",12228,3,1259],["Crawford","2021-02-08",12228,81,1340],["Crawford","2021-02-09",12228,24,1364],["Crawford","2021-02-10",12228,90,1454],["Crawford","2021-02-11",12228,38,1492],["Crawford","2021-02-12",12228,29,1521],["Crawford","2021-02-13",12228,29,1550],["Crawford","2021-02-14",12228,4,1554],["Crawford","2021-02-15",12228,118,1672],["Crawford","2021-02-16",12228,31,1703],["Crawford","2021-02-17",12228,102,1805],["Crawford","2021-02-18",12228,24,1829],["Crawford","2021-02-19",12228,35,1864],["Crawford","2021-02-20",12228,5,1869],["Crawford","2021-02-21",12228,1,1870],["Crawford","2021-02-22",12228,105,1975],["Crawford","2021-02-23",12228,70,2045],["Crawford","2021-02-24",12228,42,2087],["Crawford","2021-02-25",12228,42,2129],["Crawford","2021-02-26",12228,55,2184],["Crawford","2021-02-27",12228,44,2228],["Crawford","2021-02-28",12228,6,2234],["Crawford","2021-03-01",12228,96,2330],["Crawford","2021-03-02",12228,57,2387],["Crawford","2021-03-03",12228,87,2474],["Crawford","2021-03-04",12228,39,2513],["Crawford","2021-03-05",12228,48,2561],["Crawford","2021-03-06",12228,10,2571],["Crawford","2021-03-07",12228,2,2573],["Crawford","2021-03-08",12228,89,2662],["Crawford","2021-03-09",12228,31,2693],["Crawford","2021-03-10",12228,107,2800],["Crawford","2021-03-11",12228,37,2837],["Crawford","2021-03-12",12228,56,2893],["Crawford","2021-03-13",12228,74,2967],["Crawford","2021-03-14",12228,8,2975],["Crawford","2021-03-15",12228,128,3103],["Crawford","2021-03-16",12228,76,3179],["Crawford","2021-03-17",12228,112,3291],["Crawford","2021-03-18",12228,37,3328],["Crawford","2021-03-19",12228,72,3400],["Crawford","2021-03-20",12228,7,3407],["Crawford","2021-03-21",12228,6,3413],["Crawford","2021-03-22",12228,65,3478],["Crawford","2021-03-23",12228,31,3509],["Crawford","2021-03-24",12228,69,3578],["Crawford","2021-03-25",12228,59,3637],["Crawford","2021-03-26",12228,57,3694],["Crawford","2021-03-27",12228,11,3705],["Crawford","2021-03-28",12228,3,3708],["Crawford","2021-03-29",12228,96,3804],["Crawford","2021-03-30",12228,78,3882],["Crawford","2021-03-31",12228,187,4069],["Crawford","2021-04-01",12228,51,4120],["Crawford","2021-04-02",12228,60,4180],["Crawford","2021-04-03",12228,22,4202],["Crawford","2021-04-04",12228,2,4204],["Crawford","2021-04-05",12228,112,4316],["Crawford","2021-04-06",12228,48,4364],["Crawford","2021-04-07",12228,91,4455],["Crawford","2021-04-08",12228,60,4515],["Crawford","2021-04-09",12228,72,4587],["Crawford","2021-04-10",12228,16,4603],["Crawford","2021-04-11",12228,8,4611],["Crawford","2021-04-12",12228,178,4789],["Crawford","2021-04-13",12228,75,4864],["Crawford","2021-04-14",12228,132,4996],["Crawford","2021-04-15",12228,50,5046],["Crawford","2021-04-16",12228,67,5113],["Crawford","2021-04-17",12228,43,5156],["Crawford","2021-04-18",12228,7,5163],["Crawford","2021-04-19",12228,74,5237],["Crawford","2021-04-20",12228,36,5273],["Crawford","2021-04-21",12228,65,5338],["Crawford","2021-04-22",12228,103,5441],["Crawford","2021-04-23",12228,91,5532],["Crawford","2021-04-24",12228,3,5535],["Crawford","2021-04-25",12228,3,5538],["Crawford","2021-04-26",12228,67,5605],["Crawford","2021-04-27",12228,42,5647],["Crawford","2021-04-28",12228,165,5812],["Crawford","2021-04-29",12228,39,5851],["Crawford","2021-04-30",12228,39,5890],["Crawford","2021-05-01",12228,13,5903],["Crawford","2021-05-02",12228,5,5908],["Crawford","2021-05-03",12228,53,5961],["Crawford","2021-05-04",12228,24,5985],["Crawford","2021-05-05",12228,54,6039],["Crawford","2021-05-06",12228,32,6071],["Crawford","2021-05-07",12228,54,6125],["Crawford","2021-05-08",12228,12,6137],["Crawford","2021-05-09",12228,2,6139],["Crawford","2021-05-10",12228,27,6166],["Crawford","2021-05-11",12228,26,6192],["Crawford","2021-05-12",12228,43,6235],["Crawford","2021-05-13",12228,31,6266],["Crawford","2021-05-14",12228,40,6306],["Crawford","2021-05-15",12228,37,6343],["Crawford","2021-05-16",12228,12,6355],["Crawford","2021-05-17",12228,16,6371],["Crawford","2021-05-18",12228,25,6396],["Crawford","2021-05-19",12228,38,6434],["Crawford","2021-05-20",12228,95,6529],["Crawford","2021-05-21",12228,69,6598],["Crawford","2021-05-22",12228,18,6616],["Crawford","2021-05-23",12228,6,6622],["Crawford","2021-05-24",12228,16,6638],["Crawford","2021-05-25",12228,17,6655],["Crawford","2021-05-26",12228,41,6696],["Crawford","2021-05-27",12228,13,6709],["Crawford","2021-05-28",12228,22,6731],["Crawford","2021-05-29",12228,6,6737],["Crawford","2021-05-30",12228,1,6738],["Crawford","2021-05-31",12228,3,6741],["Crawford","2021-06-01",12228,12,6753],["Crawford","2021-06-02",12228,33,6786],["Crawford","2021-06-03",12228,10,6796],["Crawford","2021-06-04",12228,25,6821],["Crawford","2021-06-05",12228,10,6831],["Crawford","2021-06-06",12228,1,6832],["Crawford","2021-06-07",12228,11,6843],["Crawford","2021-06-08",12228,11,6854],["Crawford","2021-06-09",12228,19,6873],["Crawford","2021-06-10",12228,18,6891],["Crawford","2021-06-11",12228,21,6912],["Crawford","2021-06-12",12228,15,6927],["Crawford","2021-06-13",12228,3,6930],["Crawford","2021-06-14",12228,15,6945],["Crawford","2021-06-15",12228,13,6958],["Crawford","2021-06-16",12228,28,6986],["Crawford","2021-06-17",12228,19,7005],["Crawford","2021-06-18",12228,15,7020],["Crawford","2021-06-19",12228,17,7037],["Crawford","2021-06-20",12228,2,7039],["Crawford","2021-06-21",12228,10,7049],["Crawford","2021-06-22",12228,5,7054],["Crawford","2021-06-23",12228,29,7083],["Crawford","2021-06-24",12228,6,7089],["Crawford","2021-06-25",12228,15,7104],["Crawford","2021-06-26",12228,4,7108],["Crawford","2021-06-28",12228,6,7114],["Crawford","2021-06-29",12228,8,7122],["Crawford","2021-06-30",12228,21,7143],["Crawford","2021-07-01",12228,14,7157],["Crawford","2021-07-02",12228,10,7167],["Crawford","2021-07-03",12228,7,7174],["Crawford","2021-07-04",12228,3,7177],["Crawford","2021-07-05",12228,7,7184],["Crawford","2021-07-06",12228,14,7198],["Crawford","2021-07-07",12228,11,7209],["Crawford","2021-07-08",12228,8,7217],["Crawford","2021-07-09",12228,8,7225],["Crawford","2021-07-10",12228,6,7231],["Crawford","2021-07-11",12228,2,7233],["Crawford","2021-07-12",12228,11,7244],["Crawford","2021-07-13",12228,14,7258],["Crawford","2021-07-14",12228,12,7270],["Crawford","2021-07-15",12228,18,7288],["Crawford","2021-07-16",12228,17,7305],["Crawford","2021-07-17",12228,9,7314],["Crawford","2021-07-18",12228,3,7317],["Crawford","2021-07-19",12228,7,7324],["Crawford","2021-07-20",12228,8,7332],["Crawford","2021-07-21",12228,21,7353],["Crawford","2021-07-22",12228,19,7372],["Crawford","2021-07-23",12228,23,7395],["Crawford","2021-07-24",12228,16,7411],["Crawford","2021-07-25",12228,2,7413],["Crawford","2021-07-26",12228,8,7421],["Crawford","2021-07-27",12228,12,7433],["Crawford","2021-07-28",12228,31,7464],["Crawford","2021-07-29",12228,28,7492],["Crawford","2021-07-30",12228,33,7525],["Crawford","2021-07-31",12228,16,7541],["Crawford","2021-08-01",12228,9,7550],["Crawford","2021-08-02",12228,18,7568],["Crawford","2021-08-03",12228,20,7588],["Crawford","2021-08-04",12228,34,7622],["Crawford","2021-08-05",12228,25,7647],["Crawford","2021-08-06",12228,47,7694],["Crawford","2021-08-07",12228,23,7717],["Crawford","2021-08-08",12228,15,7732],["Crawford","2021-08-09",12228,33,7765],["Crawford","2021-08-10",12228,35,7800],["Crawford","2021-08-11",12228,33,7833],["Crawford","2021-08-12",12228,37,7870],["Crawford","2021-08-13",12228,44,7914],["Crawford","2021-08-14",12228,24,7938],["Crawford","2021-08-15",12228,8,7946],["Crawford","2021-08-16",12228,25,7971],["Crawford","2021-08-17",12228,26,7997],["Crawford","2021-08-18",12228,41,8038],["Crawford","2021-08-19",12228,37,8075],["Crawford","2021-08-20",12228,38,8113],["Crawford","2021-08-21",12228,30,8143],["Crawford","2021-08-22",12228,8,8151],["Crawford","2021-08-23",12228,21,8172],["Crawford","2021-08-24",12228,31,8203],["Crawford","2021-08-25",12228,48,8251],["Crawford","2021-08-26",12228,38,8289],["Crawford","2021-08-27",12228,49,8338],["Crawford","2021-08-28",12228,21,8359],["Crawford","2021-08-29",12228,14,8373],["Crawford","2021-08-30",12228,31,8404],["Crawford","2021-08-31",12228,24,8428],["Crawford","2021-09-01",12228,32,8460],["Crawford","2021-09-02",12228,30,8490],["Crawford","2021-09-03",12228,44,8534],["Crawford","2021-09-04",12228,32,8566],["Crawford","2021-09-05",12228,15,8581],["Crawford","2021-09-07",12228,37,8618],["Crawford","2021-09-08",12228,35,8653],["Crawford","2021-09-09",12228,20,8673],["Crawford","2021-09-10",12228,56,8729],["Crawford","2021-09-11",12228,32,8761],["Crawford","2021-09-12",12228,8,8769],["Crawford","2021-09-13",12228,23,8792],["Crawford","2021-09-14",12228,23,8815],["Crawford","2021-09-15",12228,31,8846],["Crawford","2021-09-16",12228,23,8869],["Crawford","2021-09-17",12228,40,8909],["Crawford","2021-09-18",12228,14,8923],["Crawford","2021-09-19",12228,10,8933],["Crawford","2021-09-20",12228,28,8961],["Crawford","2021-09-21",12228,10,8971],["Crawford","2021-09-22",12228,25,8996],["Crawford","2021-09-23",12228,16,9012],["Crawford","2021-09-24",12228,19,9031],["Crawford","2021-09-25",12228,7,9038],["Crawford","2021-09-26",12228,4,9042],["Crawford","2021-09-27",12228,11,9053],["Crawford","2021-09-28",12228,28,9081],["Crawford","2021-09-29",12228,19,9100],["Crawford","2021-09-30",12228,17,9117],["Crawford","2021-10-01",12228,32,9149],["Crawford","2021-10-02",12228,10,9159],["Crawford","2021-10-03",12228,3,9162],["Crawford","2021-10-04",12228,10,9172],["Crawford","2021-10-05",12228,18,9190],["Crawford","2021-10-06",12228,20,9210],["Crawford","2021-10-07",12228,14,9224],["Crawford","2021-10-08",12228,24,9248],["Crawford","2021-10-09",12228,6,9254],["Crawford","2021-10-10",12228,4,9258],["Crawford","2021-10-11",12228,20,9278],["Crawford","2021-10-12",12228,18,9296],["Crawford","2021-10-13",12228,29,9325],["Crawford","2021-10-14",12228,18,9343],["Crawford","2021-10-15",12228,28,9371],["Crawford","2021-10-16",12228,7,9378],["Crawford","2021-10-17",12228,4,9382],["Crawford","2021-10-18",12228,6,9388],["Crawford","2021-10-19",12228,7,9395],["Crawford","2021-10-20",12228,5,9400],["Crawford","2021-10-21",12228,8,9408],["Crawford","2021-10-22",12228,15,9423],["Crawford","2021-10-23",12228,10,9433],["Crawford","2021-10-24",12228,6,9439],["Crawford","2021-10-25",12228,39,9478],["Crawford","2021-10-26",12228,57,9535],["Crawford","2021-10-27",12228,101,9636],["Crawford","2021-10-28",12228,21,9657],["Crawford","2021-10-29",12228,47,9704],["Crawford","2021-10-30",12228,9,9713],["Crawford","2021-10-31",12228,2,9715],["Crawford","2021-11-01",12228,26,9741],["Crawford","2021-11-02",12228,35,9776],["Crawford","2021-11-03",12228,59,9835],["Crawford","2021-11-04",12228,22,9857],["Crawford","2021-11-05",12228,24,9881],["Crawford","2021-11-06",12228,5,9886],["Crawford","2021-11-07",12228,3,9889],["Crawford","2021-11-08",12228,22,9911],["Crawford","2021-11-09",12228,21,9932],["Crawford","2021-11-10",12228,60,9992],["Crawford","2021-11-11",12228,19,10011],["Crawford","2021-11-12",12228,32,10043],["Crawford","2021-11-13",12228,6,10049],["Crawford","2021-11-14",12228,2,10051],["Crawford","2021-11-15",12228,28,10079],["Crawford","2021-11-16",12228,20,10099],["Crawford","2021-11-17",12228,59,10158],["Crawford","2021-11-18",12228,21,10179],["Crawford","2021-11-19",12228,25,10204],["Crawford","2021-11-20",12228,7,10211],["Crawford","2021-11-21",12228,2,10213],["Crawford","2021-11-22",12228,29,10242],["Crawford","2021-11-23",12228,15,10257],["Crawford","2021-11-24",12228,16,10273],["Crawford","2021-11-26",12228,29,10302],["Crawford","2021-11-27",12228,12,10314],["Crawford","2021-11-28",12228,5,10319],["Crawford","2021-11-29",12228,34,10353],["Crawford","2021-11-30",12228,38,10391],["Crawford","2021-12-01",12228,89,10480],["Crawford","2021-12-02",12228,31,10511],["Crawford","2021-12-03",12228,41,10552],["Crawford","2021-12-04",12228,13,10565],["Crawford","2021-12-05",12228,2,10567],["Crawford","2021-12-06",12228,36,10603],["Crawford","2021-12-07",12228,24,10627],["Crawford","2021-12-08",12228,55,10682],["Crawford","2021-12-09",12228,22,10704],["Crawford","2021-12-10",12228,27,10731],["Crawford","2021-12-11",12228,5,10736],["Crawford","2021-12-12",12228,2,10738],["Crawford","2021-12-13",12228,29,10767],["Crawford","2021-12-14",12228,15,10782],["Crawford","2021-12-15",12228,48,10830],["Crawford","2021-12-16",12228,16,10846],["Crawford","2021-12-17",12228,29,10875],["Crawford","2021-12-18",12228,11,10886],["Crawford","2021-12-19",12228,8,10894],["Crawford","2021-12-20",12228,36,10930],["Crawford","2021-12-21",12228,25,10955],["Crawford","2021-12-22",12228,45,11000],["Crawford","2021-12-23",12228,12,11012],["Crawford","2021-12-24",12228,6,11018],["Crawford","2021-12-26",12228,3,11021],["Crawford","2021-12-27",12228,20,11041],["Crawford","2021-12-28",12228,28,11069],["Crawford","2021-12-29",12228,41,11110],["Crawford","2021-12-30",12228,26,11136],["Crawford","2021-12-31",12228,18,11154],["Crawford","2022-01-01",12228,2,11156],["Crawford","2022-01-02",12228,5,11161],["Crawford","2022-01-03",12228,11,11172],["Crisp","2020-12-16",22289,1,1],["Crisp","2020-12-17",22289,1,2],["Crisp","2020-12-18",22289,5,7],["Crisp","2020-12-21",22289,4,11],["Crisp","2020-12-22",22289,8,19],["Crisp","2020-12-23",22289,60,79],["Crisp","2020-12-24",22289,44,123],["Crisp","2020-12-26",22289,4,127],["Crisp","2020-12-27",22289,4,131],["Crisp","2020-12-28",22289,72,203],["Crisp","2020-12-29",22289,68,271],["Crisp","2020-12-30",22289,30,301],["Crisp","2020-12-31",22289,41,342],["Crisp","2021-01-01",22289,6,348],["Crisp","2021-01-02",22289,2,350],["Crisp","2021-01-03",22289,3,353],["Crisp","2021-01-04",22289,70,423],["Crisp","2021-01-05",22289,57,480],["Crisp","2021-01-06",22289,49,529],["Crisp","2021-01-07",22289,60,589],["Crisp","2021-01-08",22289,79,668],["Crisp","2021-01-09",22289,1,669],["Crisp","2021-01-10",22289,3,672],["Crisp","2021-01-11",22289,205,877],["Crisp","2021-01-12",22289,97,974],["Crisp","2021-01-13",22289,96,1070],["Crisp","2021-01-14",22289,117,1187],["Crisp","2021-01-15",22289,130,1317],["Crisp","2021-01-16",22289,46,1363],["Crisp","2021-01-17",22289,6,1369],["Crisp","2021-01-18",22289,154,1523],["Crisp","2021-01-19",22289,150,1673],["Crisp","2021-01-20",22289,110,1783],["Crisp","2021-01-21",22289,447,2230],["Crisp","2021-01-22",22289,88,2318],["Crisp","2021-01-23",22289,10,2328],["Crisp","2021-01-24",22289,10,2338],["Crisp","2021-01-25",22289,60,2398],["Crisp","2021-01-26",22289,121,2519],["Crisp","2021-01-27",22289,91,2610],["Crisp","2021-01-28",22289,87,2697],["Crisp","2021-01-29",22289,91,2788],["Crisp","2021-01-30",22289,2,2790],["Crisp","2021-01-31",22289,4,2794],["Crisp","2021-02-01",22289,87,2881],["Crisp","2021-02-02",22289,90,2971],["Crisp","2021-02-03",22289,153,3124],["Crisp","2021-02-04",22289,265,3389],["Crisp","2021-02-05",22289,177,3566],["Crisp","2021-02-06",22289,24,3590],["Crisp","2021-02-07",22289,5,3595],["Crisp","2021-02-08",22289,101,3696],["Crisp","2021-02-09",22289,118,3814],["Crisp","2021-02-10",22289,127,3941],["Crisp","2021-02-11",22289,123,4064],["Crisp","2021-02-12",22289,118,4182],["Crisp","2021-02-13",22289,14,4196],["Crisp","2021-02-14",22289,11,4207],["Crisp","2021-02-15",22289,83,4290],["Crisp","2021-02-16",22289,173,4463],["Crisp","2021-02-17",22289,99,4562],["Crisp","2021-02-18",22289,622,5184],["Crisp","2021-02-19",22289,87,5271],["Crisp","2021-02-20",22289,8,5279],["Crisp","2021-02-21",22289,5,5284],["Crisp","2021-02-22",22289,89,5373],["Crisp","2021-02-23",22289,122,5495],["Crisp","2021-02-24",22289,94,5589],["Crisp","2021-02-25",22289,89,5678],["Crisp","2021-02-26",22289,67,5745],["Crisp","2021-02-27",22289,53,5798],["Crisp","2021-02-28",22289,13,5811],["Crisp","2021-03-01",22289,114,5925],["Crisp","2021-03-02",22289,133,6058],["Crisp","2021-03-03",22289,89,6147],["Crisp","2021-03-04",22289,90,6237],["Crisp","2021-03-05",22289,234,6471],["Crisp","2021-03-06",22289,8,6479],["Crisp","2021-03-07",22289,20,6499],["Crisp","2021-03-08",22289,81,6580],["Crisp","2021-03-09",22289,107,6687],["Crisp","2021-03-10",22289,246,6933],["Crisp","2021-03-11",22289,60,6993],["Crisp","2021-03-12",22289,93,7086],["Crisp","2021-03-13",22289,18,7104],["Crisp","2021-03-14",22289,23,7127],["Crisp","2021-03-15",22289,192,7319],["Crisp","2021-03-16",22289,130,7449],["Crisp","2021-03-17",22289,106,7555],["Crisp","2021-03-18",22289,99,7654],["Crisp","2021-03-19",22289,294,7948],["Crisp","2021-03-20",22289,25,7973],["Crisp","2021-03-21",22289,17,7990],["Crisp","2021-03-22",22289,166,8156],["Crisp","2021-03-23",22289,105,8261],["Crisp","2021-03-24",22289,124,8385],["Crisp","2021-03-25",22289,139,8524],["Crisp","2021-03-26",22289,148,8672],["Crisp","2021-03-27",22289,16,8688],["Crisp","2021-03-28",22289,12,8700],["Crisp","2021-03-29",22289,131,8831],["Crisp","2021-03-30",22289,200,9031],["Crisp","2021-03-31",22289,135,9166],["Crisp","2021-04-01",22289,150,9316],["Crisp","2021-04-02",22289,113,9429],["Crisp","2021-04-03",22289,48,9477],["Crisp","2021-04-04",22289,21,9498],["Crisp","2021-04-05",22289,176,9674],["Crisp","2021-04-06",22289,103,9777],["Crisp","2021-04-07",22289,155,9932],["Crisp","2021-04-08",22289,153,10085],["Crisp","2021-04-09",22289,84,10169],["Crisp","2021-04-10",22289,23,10192],["Crisp","2021-04-11",22289,18,10210],["Crisp","2021-04-12",22289,136,10346],["Crisp","2021-04-13",22289,141,10487],["Crisp","2021-04-14",22289,105,10592],["Crisp","2021-04-15",22289,251,10843],["Crisp","2021-04-16",22289,166,11009],["Crisp","2021-04-17",22289,11,11020],["Crisp","2021-04-18",22289,12,11032],["Crisp","2021-04-19",22289,166,11198],["Crisp","2021-04-20",22289,95,11293],["Crisp","2021-04-21",22289,169,11462],["Crisp","2021-04-22",22289,123,11585],["Crisp","2021-04-23",22289,95,11680],["Crisp","2021-04-24",22289,37,11717],["Crisp","2021-04-25",22289,8,11725],["Crisp","2021-04-26",22289,92,11817],["Crisp","2021-04-27",22289,120,11937],["Crisp","2021-04-28",22289,73,12010],["Crisp","2021-04-29",22289,121,12131],["Crisp","2021-04-30",22289,100,12231],["Crisp","2021-05-01",22289,11,12242],["Crisp","2021-05-02",22289,14,12256],["Crisp","2021-05-03",22289,57,12313],["Crisp","2021-05-04",22289,74,12387],["Crisp","2021-05-05",22289,53,12440],["Crisp","2021-05-06",22289,117,12557],["Crisp","2021-05-07",22289,109,12666],["Crisp","2021-05-08",22289,15,12681],["Crisp","2021-05-09",22289,6,12687],["Crisp","2021-05-10",22289,74,12761],["Crisp","2021-05-11",22289,74,12835],["Crisp","2021-05-12",22289,61,12896],["Crisp","2021-05-13",22289,77,12973],["Crisp","2021-05-14",22289,45,13018],["Crisp","2021-05-15",22289,19,13037],["Crisp","2021-05-16",22289,13,13050],["Crisp","2021-05-17",22289,83,13133],["Crisp","2021-05-18",22289,74,13207],["Crisp","2021-05-19",22289,71,13278],["Crisp","2021-05-20",22289,102,13380],["Crisp","2021-05-21",22289,100,13480],["Crisp","2021-05-22",22289,25,13505],["Crisp","2021-05-23",22289,11,13516],["Crisp","2021-05-24",22289,41,13557],["Crisp","2021-05-25",22289,57,13614],["Crisp","2021-05-26",22289,39,13653],["Crisp","2021-05-27",22289,54,13707],["Crisp","2021-05-28",22289,32,13739],["Crisp","2021-05-29",22289,9,13748],["Crisp","2021-05-30",22289,14,13762],["Crisp","2021-05-31",22289,4,13766],["Crisp","2021-06-01",22289,58,13824],["Crisp","2021-06-02",22289,35,13859],["Crisp","2021-06-03",22289,59,13918],["Crisp","2021-06-04",22289,49,13967],["Crisp","2021-06-05",22289,14,13981],["Crisp","2021-06-06",22289,13,13994],["Crisp","2021-06-07",22289,35,14029],["Crisp","2021-06-08",22289,54,14083],["Crisp","2021-06-09",22289,55,14138],["Crisp","2021-06-10",22289,55,14193],["Crisp","2021-06-11",22289,49,14242],["Crisp","2021-06-12",22289,31,14273],["Crisp","2021-06-13",22289,10,14283],["Crisp","2021-06-14",22289,83,14366],["Crisp","2021-06-15",22289,33,14399],["Crisp","2021-06-16",22289,44,14443],["Crisp","2021-06-17",22289,36,14479],["Crisp","2021-06-18",22289,33,14512],["Crisp","2021-06-19",22289,17,14529],["Crisp","2021-06-20",22289,5,14534],["Crisp","2021-06-21",22289,30,14564],["Crisp","2021-06-22",22289,36,14600],["Crisp","2021-06-23",22289,36,14636],["Crisp","2021-06-24",22289,28,14664],["Crisp","2021-06-25",22289,37,14701],["Crisp","2021-06-26",22289,15,14716],["Crisp","2021-06-27",22289,3,14719],["Crisp","2021-06-28",22289,25,14744],["Crisp","2021-06-29",22289,26,14770],["Crisp","2021-06-30",22289,27,14797],["Crisp","2021-07-01",22289,19,14816],["Crisp","2021-07-02",22289,20,14836],["Crisp","2021-07-03",22289,1,14837],["Crisp","2021-07-04",22289,1,14838],["Crisp","2021-07-05",22289,9,14847],["Crisp","2021-07-06",22289,18,14865],["Crisp","2021-07-07",22289,34,14899],["Crisp","2021-07-08",22289,32,14931],["Crisp","2021-07-09",22289,31,14962],["Crisp","2021-07-10",22289,8,14970],["Crisp","2021-07-11",22289,8,14978],["Crisp","2021-07-12",22289,23,15001],["Crisp","2021-07-13",22289,43,15044],["Crisp","2021-07-14",22289,35,15079],["Crisp","2021-07-15",22289,28,15107],["Crisp","2021-07-16",22289,34,15141],["Crisp","2021-07-17",22289,11,15152],["Crisp","2021-07-18",22289,2,15154],["Crisp","2021-07-19",22289,31,15185],["Crisp","2021-07-20",22289,33,15218],["Crisp","2021-07-21",22289,44,15262],["Crisp","2021-07-22",22289,33,15295],["Crisp","2021-07-23",22289,31,15326],["Crisp","2021-07-24",22289,23,15349],["Crisp","2021-07-25",22289,3,15352],["Crisp","2021-07-26",22289,40,15392],["Crisp","2021-07-27",22289,60,15452],["Crisp","2021-07-28",22289,41,15493],["Crisp","2021-07-29",22289,46,15539],["Crisp","2021-07-30",22289,54,15593],["Crisp","2021-07-31",22289,25,15618],["Crisp","2021-08-01",22289,19,15637],["Crisp","2021-08-02",22289,64,15701],["Crisp","2021-08-03",22289,45,15746],["Crisp","2021-08-04",22289,40,15786],["Crisp","2021-08-05",22289,58,15844],["Crisp","2021-08-06",22289,88,15932],["Crisp","2021-08-07",22289,28,15960],["Crisp","2021-08-08",22289,8,15968],["Crisp","2021-08-09",22289,51,16019],["Crisp","2021-08-10",22289,61,16080],["Crisp","2021-08-11",22289,72,16152],["Crisp","2021-08-12",22289,79,16231],["Crisp","2021-08-13",22289,83,16314],["Crisp","2021-08-14",22289,22,16336],["Crisp","2021-08-15",22289,23,16359],["Crisp","2021-08-16",22289,70,16429],["Crisp","2021-08-17",22289,66,16495],["Crisp","2021-08-18",22289,69,16564],["Crisp","2021-08-19",22289,57,16621],["Crisp","2021-08-20",22289,166,16787],["Crisp","2021-08-21",22289,30,16817],["Crisp","2021-08-22",22289,21,16838],["Crisp","2021-08-23",22289,70,16908],["Crisp","2021-08-24",22289,85,16993],["Crisp","2021-08-25",22289,74,17067],["Crisp","2021-08-26",22289,72,17139],["Crisp","2021-08-27",22289,90,17229],["Crisp","2021-08-28",22289,44,17273],["Crisp","2021-08-29",22289,16,17289],["Crisp","2021-08-30",22289,66,17355],["Crisp","2021-08-31",22289,77,17432],["Crisp","2021-09-01",22289,63,17495],["Crisp","2021-09-02",22289,70,17565],["Crisp","2021-09-03",22289,124,17689],["Crisp","2021-09-04",22289,25,17714],["Crisp","2021-09-05",22289,16,17730],["Crisp","2021-09-06",22289,20,17750],["Crisp","2021-09-07",22289,71,17821],["Crisp","2021-09-08",22289,89,17910],["Crisp","2021-09-09",22289,68,17978],["Crisp","2021-09-10",22289,89,18067],["Crisp","2021-09-11",22289,33,18100],["Crisp","2021-09-12",22289,29,18129],["Crisp","2021-09-13",22289,58,18187],["Crisp","2021-09-14",22289,90,18277],["Crisp","2021-09-15",22289,67,18344],["Crisp","2021-09-16",22289,50,18394],["Crisp","2021-09-17",22289,83,18477],["Crisp","2021-09-18",22289,22,18499],["Crisp","2021-09-19",22289,11,18510],["Crisp","2021-09-20",22289,60,18570],["Crisp","2021-09-21",22289,59,18629],["Crisp","2021-09-22",22289,38,18667],["Crisp","2021-09-23",22289,38,18705],["Crisp","2021-09-24",22289,57,18762],["Crisp","2021-09-25",22289,18,18780],["Crisp","2021-09-26",22289,10,18790],["Crisp","2021-09-27",22289,45,18835],["Crisp","2021-09-28",22289,43,18878],["Crisp","2021-09-29",22289,42,18920],["Crisp","2021-09-30",22289,56,18976],["Crisp","2021-10-01",22289,58,19034],["Crisp","2021-10-02",22289,21,19055],["Crisp","2021-10-03",22289,12,19067],["Crisp","2021-10-04",22289,35,19102],["Crisp","2021-10-05",22289,40,19142],["Crisp","2021-10-06",22289,38,19180],["Crisp","2021-10-07",22289,35,19215],["Crisp","2021-10-08",22289,60,19275],["Crisp","2021-10-09",22289,16,19291],["Crisp","2021-10-10",22289,6,19297],["Crisp","2021-10-11",22289,27,19324],["Crisp","2021-10-12",22289,36,19360],["Crisp","2021-10-13",22289,34,19394],["Crisp","2021-10-14",22289,34,19428],["Crisp","2021-10-15",22289,39,19467],["Crisp","2021-10-16",22289,18,19485],["Crisp","2021-10-17",22289,1,19486],["Crisp","2021-10-18",22289,27,19513],["Crisp","2021-10-19",22289,22,19535],["Crisp","2021-10-20",22289,21,19556],["Crisp","2021-10-21",22289,23,19579],["Crisp","2021-10-22",22289,47,19626],["Crisp","2021-10-23",22289,16,19642],["Crisp","2021-10-24",22289,12,19654],["Crisp","2021-10-25",22289,38,19692],["Crisp","2021-10-26",22289,193,19885],["Crisp","2021-10-27",22289,218,20103],["Crisp","2021-10-28",22289,88,20191],["Crisp","2021-10-29",22289,130,20321],["Crisp","2021-10-30",22289,24,20345],["Crisp","2021-10-31",22289,9,20354],["Crisp","2021-11-01",22289,111,20465],["Crisp","2021-11-02",22289,110,20575],["Crisp","2021-11-03",22289,58,20633],["Crisp","2021-11-04",22289,59,20692],["Crisp","2021-11-05",22289,83,20775],["Crisp","2021-11-06",22289,17,20792],["Crisp","2021-11-07",22289,7,20799],["Crisp","2021-11-08",22289,78,20877],["Crisp","2021-11-09",22289,40,20917],["Crisp","2021-11-10",22289,40,20957],["Crisp","2021-11-11",22289,39,20996],["Crisp","2021-11-12",22289,81,21077],["Crisp","2021-11-13",22289,19,21096],["Crisp","2021-11-14",22289,14,21110],["Crisp","2021-11-15",22289,36,21146],["Crisp","2021-11-16",22289,59,21205],["Crisp","2021-11-17",22289,69,21274],["Crisp","2021-11-18",22289,103,21377],["Crisp","2021-11-19",22289,131,21508],["Crisp","2021-11-20",22289,22,21530],["Crisp","2021-11-21",22289,9,21539],["Crisp","2021-11-22",22289,40,21579],["Crisp","2021-11-23",22289,58,21637],["Crisp","2021-11-24",22289,29,21666],["Crisp","2021-11-25",22289,2,21668],["Crisp","2021-11-26",22289,24,21692],["Crisp","2021-11-27",22289,12,21704],["Crisp","2021-11-28",22289,5,21709],["Crisp","2021-11-29",22289,56,21765],["Crisp","2021-11-30",22289,56,21821],["Crisp","2021-12-01",22289,61,21882],["Crisp","2021-12-02",22289,60,21942],["Crisp","2021-12-03",22289,127,22069],["Crisp","2021-12-04",22289,43,22112],["Crisp","2021-12-05",22289,5,22117],["Crisp","2021-12-06",22289,34,22151],["Crisp","2021-12-07",22289,74,22225],["Crisp","2021-12-08",22289,31,22256],["Crisp","2021-12-09",22289,55,22311],["Crisp","2021-12-10",22289,100,22411],["Crisp","2021-12-11",22289,13,22424],["Crisp","2021-12-12",22289,10,22434],["Crisp","2021-12-13",22289,80,22514],["Crisp","2021-12-14",22289,81,22595],["Crisp","2021-12-15",22289,30,22625],["Crisp","2021-12-16",22289,27,22652],["Crisp","2021-12-17",22289,79,22731],["Crisp","2021-12-18",22289,20,22751],["Crisp","2021-12-19",22289,7,22758],["Crisp","2021-12-20",22289,55,22813],["Crisp","2021-12-21",22289,79,22892],["Crisp","2021-12-22",22289,45,22937],["Crisp","2021-12-23",22289,25,22962],["Crisp","2021-12-24",22289,9,22971],["Crisp","2021-12-26",22289,11,22982],["Crisp","2021-12-27",22289,50,23032],["Crisp","2021-12-28",22289,51,23083],["Crisp","2021-12-29",22289,73,23156],["Crisp","2021-12-30",22289,69,23225],["Crisp","2021-12-31",22289,38,23263],["Crisp","2022-01-01",22289,8,23271],["Crisp","2022-01-02",22289,12,23283],["Crisp","2022-01-03",22289,14,23297],["Dade","2020-12-14",16162,1,1],["Dade","2020-12-19",16162,1,2],["Dade","2020-12-21",16162,5,7],["Dade","2020-12-22",16162,5,12],["Dade","2020-12-23",16162,8,20],["Dade","2020-12-24",16162,1,21],["Dade","2020-12-27",16162,2,23],["Dade","2020-12-28",16162,2,25],["Dade","2020-12-29",16162,3,28],["Dade","2020-12-30",16162,9,37],["Dade","2020-12-31",16162,9,46],["Dade","2021-01-01",16162,1,47],["Dade","2021-01-03",16162,3,50],["Dade","2021-01-04",16162,14,64],["Dade","2021-01-05",16162,33,97],["Dade","2021-01-06",16162,7,104],["Dade","2021-01-07",16162,21,125],["Dade","2021-01-08",16162,11,136],["Dade","2021-01-09",16162,6,142],["Dade","2021-01-10",16162,1,143],["Dade","2021-01-11",16162,106,249],["Dade","2021-01-12",16162,108,357],["Dade","2021-01-13",16162,6,363],["Dade","2021-01-14",16162,136,499],["Dade","2021-01-15",16162,82,581],["Dade","2021-01-16",16162,13,594],["Dade","2021-01-17",16162,63,657],["Dade","2021-01-18",16162,10,667],["Dade","2021-01-19",16162,134,801],["Dade","2021-01-20",16162,17,818],["Dade","2021-01-21",16162,164,982],["Dade","2021-01-22",16162,78,1060],["Dade","2021-01-23",16162,1,1061],["Dade","2021-01-24",16162,4,1065],["Dade","2021-01-25",16162,176,1241],["Dade","2021-01-26",16162,152,1393],["Dade","2021-01-27",16162,97,1490],["Dade","2021-01-28",16162,138,1628],["Dade","2021-01-29",16162,77,1705],["Dade","2021-01-30",16162,1,1706],["Dade","2021-02-01",16162,93,1799],["Dade","2021-02-02",16162,92,1891],["Dade","2021-02-03",16162,7,1898],["Dade","2021-02-04",16162,139,2037],["Dade","2021-02-05",16162,50,2087],["Dade","2021-02-06",16162,3,2090],["Dade","2021-02-07",16162,46,2136],["Dade","2021-02-08",16162,91,2227],["Dade","2021-02-09",16162,98,2325],["Dade","2021-02-10",16162,45,2370],["Dade","2021-02-11",16162,139,2509],["Dade","2021-02-12",16162,85,2594],["Dade","2021-02-13",16162,1,2595],["Dade","2021-02-15",16162,62,2657],["Dade","2021-02-16",16162,1,2658],["Dade","2021-02-17",16162,117,2775],["Dade","2021-02-18",16162,169,2944],["Dade","2021-02-19",16162,92,3036],["Dade","2021-02-22",16162,63,3099],["Dade","2021-02-23",16162,18,3117],["Dade","2021-02-24",16162,111,3228],["Dade","2021-02-25",16162,157,3385],["Dade","2021-02-26",16162,93,3478],["Dade","2021-02-27",16162,2,3480],["Dade","2021-02-28",16162,2,3482],["Dade","2021-03-01",16162,133,3615],["Dade","2021-03-02",16162,132,3747],["Dade","2021-03-03",16162,160,3907],["Dade","2021-03-04",16162,128,4035],["Dade","2021-03-05",16162,58,4093],["Dade","2021-03-06",16162,3,4096],["Dade","2021-03-07",16162,2,4098],["Dade","2021-03-08",16162,74,4172],["Dade","2021-03-09",16162,69,4241],["Dade","2021-03-10",16162,66,4307],["Dade","2021-03-11",16162,76,4383],["Dade","2021-03-12",16162,79,4462],["Dade","2021-03-13",16162,1,4463],["Dade","2021-03-14",16162,1,4464],["Dade","2021-03-15",16162,115,4579],["Dade","2021-03-16",16162,133,4712],["Dade","2021-03-17",16162,124,4836],["Dade","2021-03-18",16162,107,4943],["Dade","2021-03-19",16162,90,5033],["Dade","2021-03-20",16162,4,5037],["Dade","2021-03-21",16162,1,5038],["Dade","2021-03-22",16162,24,5062],["Dade","2021-03-23",16162,82,5144],["Dade","2021-03-24",16162,60,5204],["Dade","2021-03-25",16162,80,5284],["Dade","2021-03-26",16162,90,5374],["Dade","2021-03-27",16162,3,5377],["Dade","2021-03-28",16162,3,5380],["Dade","2021-03-29",16162,105,5485],["Dade","2021-03-30",16162,41,5526],["Dade","2021-03-31",16162,127,5653],["Dade","2021-04-01",16162,64,5717],["Dade","2021-04-02",16162,91,5808],["Dade","2021-04-03",16162,2,5810],["Dade","2021-04-04",16162,1,5811],["Dade","2021-04-05",16162,74,5885],["Dade","2021-04-06",16162,31,5916],["Dade","2021-04-07",16162,127,6043],["Dade","2021-04-08",16162,50,6093],["Dade","2021-04-09",16162,83,6176],["Dade","2021-04-10",16162,7,6183],["Dade","2021-04-11",16162,2,6185],["Dade","2021-04-12",16162,128,6313],["Dade","2021-04-13",16162,30,6343],["Dade","2021-04-14",16162,160,6503],["Dade","2021-04-15",16162,34,6537],["Dade","2021-04-16",16162,92,6629],["Dade","2021-04-17",16162,3,6632],["Dade","2021-04-18",16162,1,6633],["Dade","2021-04-19",16162,119,6752],["Dade","2021-04-20",16162,46,6798],["Dade","2021-04-21",16162,105,6903],["Dade","2021-04-22",16162,59,6962],["Dade","2021-04-23",16162,68,7030],["Dade","2021-04-24",16162,7,7037],["Dade","2021-04-26",16162,91,7128],["Dade","2021-04-27",16162,20,7148],["Dade","2021-04-28",16162,116,7264],["Dade","2021-04-29",16162,33,7297],["Dade","2021-04-30",16162,88,7385],["Dade","2021-05-01",16162,4,7389],["Dade","2021-05-02",16162,2,7391],["Dade","2021-05-03",16162,55,7446],["Dade","2021-05-04",16162,20,7466],["Dade","2021-05-05",16162,50,7516],["Dade","2021-05-06",16162,44,7560],["Dade","2021-05-07",16162,62,7622],["Dade","2021-05-08",16162,3,7625],["Dade","2021-05-09",16162,2,7627],["Dade","2021-05-10",16162,36,7663],["Dade","2021-05-11",16162,20,7683],["Dade","2021-05-12",16162,35,7718],["Dade","2021-05-13",16162,16,7734],["Dade","2021-05-14",16162,37,7771],["Dade","2021-05-15",16162,4,7775],["Dade","2021-05-16",16162,8,7783],["Dade","2021-05-17",16162,33,7816],["Dade","2021-05-18",16162,14,7830],["Dade","2021-05-19",16162,33,7863],["Dade","2021-05-20",16162,22,7885],["Dade","2021-05-21",16162,24,7909],["Dade","2021-05-22",16162,11,7920],["Dade","2021-05-23",16162,2,7922],["Dade","2021-05-24",16162,24,7946],["Dade","2021-05-25",16162,18,7964],["Dade","2021-05-26",16162,25,7989],["Dade","2021-05-27",16162,8,7997],["Dade","2021-05-28",16162,17,8014],["Dade","2021-05-29",16162,2,8016],["Dade","2021-05-30",16162,1,8017],["Dade","2021-05-31",16162,1,8018],["Dade","2021-06-01",16162,20,8038],["Dade","2021-06-02",16162,28,8066],["Dade","2021-06-03",16162,20,8086],["Dade","2021-06-04",16162,18,8104],["Dade","2021-06-05",16162,3,8107],["Dade","2021-06-06",16162,2,8109],["Dade","2021-06-07",16162,21,8130],["Dade","2021-06-08",16162,13,8143],["Dade","2021-06-09",16162,12,8155],["Dade","2021-06-10",16162,9,8164],["Dade","2021-06-11",16162,19,8183],["Dade","2021-06-12",16162,3,8186],["Dade","2021-06-13",16162,3,8189],["Dade","2021-06-14",16162,16,8205],["Dade","2021-06-15",16162,2,8207],["Dade","2021-06-16",16162,15,8222],["Dade","2021-06-17",16162,26,8248],["Dade","2021-06-18",16162,8,8256],["Dade","2021-06-19",16162,1,8257],["Dade","2021-06-21",16162,7,8264],["Dade","2021-06-22",16162,6,8270],["Dade","2021-06-23",16162,20,8290],["Dade","2021-06-24",16162,8,8298],["Dade","2021-06-25",16162,14,8312],["Dade","2021-06-26",16162,2,8314],["Dade","2021-06-27",16162,3,8317],["Dade","2021-06-28",16162,8,8325],["Dade","2021-06-29",16162,5,8330],["Dade","2021-06-30",16162,6,8336],["Dade","2021-07-01",16162,13,8349],["Dade","2021-07-02",16162,15,8364],["Dade","2021-07-03",16162,3,8367],["Dade","2021-07-05",16162,3,8370],["Dade","2021-07-06",16162,7,8377],["Dade","2021-07-07",16162,24,8401],["Dade","2021-07-08",16162,8,8409],["Dade","2021-07-09",16162,18,8427],["Dade","2021-07-10",16162,2,8429],["Dade","2021-07-11",16162,2,8431],["Dade","2021-07-12",16162,6,8437],["Dade","2021-07-13",16162,3,8440],["Dade","2021-07-14",16162,5,8445],["Dade","2021-07-15",16162,13,8458],["Dade","2021-07-16",16162,24,8482],["Dade","2021-07-17",16162,4,8486],["Dade","2021-07-18",16162,4,8490],["Dade","2021-07-19",16162,15,8505],["Dade","2021-07-20",16162,9,8514],["Dade","2021-07-21",16162,15,8529],["Dade","2021-07-22",16162,15,8544],["Dade","2021-07-23",16162,21,8565],["Dade","2021-07-24",16162,12,8577],["Dade","2021-07-25",16162,5,8582],["Dade","2021-07-26",16162,18,8600],["Dade","2021-07-27",16162,17,8617],["Dade","2021-07-28",16162,21,8638],["Dade","2021-07-29",16162,30,8668],["Dade","2021-07-30",16162,41,8709],["Dade","2021-08-01",16162,3,8712],["Dade","2021-08-02",16162,20,8732],["Dade","2021-08-03",16162,25,8757],["Dade","2021-08-04",16162,20,8777],["Dade","2021-08-05",16162,21,8798],["Dade","2021-08-06",16162,24,8822],["Dade","2021-08-07",16162,14,8836],["Dade","2021-08-08",16162,9,8845],["Dade","2021-08-09",16162,23,8868],["Dade","2021-08-10",16162,11,8879],["Dade","2021-08-11",16162,25,8904],["Dade","2021-08-12",16162,49,8953],["Dade","2021-08-13",16162,22,8975],["Dade","2021-08-14",16162,16,8991],["Dade","2021-08-15",16162,3,8994],["Dade","2021-08-16",16162,39,9033],["Dade","2021-08-17",16162,29,9062],["Dade","2021-08-18",16162,36,9098],["Dade","2021-08-19",16162,50,9148],["Dade","2021-08-20",16162,31,9179],["Dade","2021-08-21",16162,7,9186],["Dade","2021-08-22",16162,4,9190],["Dade","2021-08-23",16162,38,9228],["Dade","2021-08-24",16162,36,9264],["Dade","2021-08-25",16162,53,9317],["Dade","2021-08-26",16162,40,9357],["Dade","2021-08-27",16162,45,9402],["Dade","2021-08-28",16162,14,9416],["Dade","2021-08-29",16162,9,9425],["Dade","2021-08-30",16162,35,9460],["Dade","2021-08-31",16162,25,9485],["Dade","2021-09-01",16162,25,9510],["Dade","2021-09-02",16162,54,9564],["Dade","2021-09-03",16162,35,9599],["Dade","2021-09-04",16162,12,9611],["Dade","2021-09-05",16162,5,9616],["Dade","2021-09-06",16162,3,9619],["Dade","2021-09-07",16162,40,9659],["Dade","2021-09-08",16162,25,9684],["Dade","2021-09-09",16162,33,9717],["Dade","2021-09-10",16162,30,9747],["Dade","2021-09-11",16162,14,9761],["Dade","2021-09-12",16162,5,9766],["Dade","2021-09-13",16162,33,9799],["Dade","2021-09-14",16162,14,9813],["Dade","2021-09-15",16162,28,9841],["Dade","2021-09-16",16162,28,9869],["Dade","2021-09-17",16162,33,9902],["Dade","2021-09-18",16162,10,9912],["Dade","2021-09-19",16162,4,9916],["Dade","2021-09-20",16162,19,9935],["Dade","2021-09-21",16162,18,9953],["Dade","2021-09-22",16162,17,9970],["Dade","2021-09-23",16162,26,9996],["Dade","2021-09-24",16162,16,10012],["Dade","2021-09-25",16162,5,10017],["Dade","2021-09-26",16162,3,10020],["Dade","2021-09-27",16162,13,10033],["Dade","2021-09-28",16162,14,10047],["Dade","2021-09-29",16162,19,10066],["Dade","2021-09-30",16162,26,10092],["Dade","2021-10-01",16162,25,10117],["Dade","2021-10-02",16162,8,10125],["Dade","2021-10-03",16162,3,10128],["Dade","2021-10-04",16162,16,10144],["Dade","2021-10-05",16162,9,10153],["Dade","2021-10-06",16162,10,10163],["Dade","2021-10-07",16162,13,10176],["Dade","2021-10-08",16162,16,10192],["Dade","2021-10-09",16162,1,10193],["Dade","2021-10-10",16162,4,10197],["Dade","2021-10-11",16162,9,10206],["Dade","2021-10-12",16162,10,10216],["Dade","2021-10-13",16162,6,10222],["Dade","2021-10-14",16162,4,10226],["Dade","2021-10-15",16162,13,10239],["Dade","2021-10-16",16162,1,10240],["Dade","2021-10-17",16162,1,10241],["Dade","2021-10-19",16162,7,10248],["Dade","2021-10-20",16162,3,10251],["Dade","2021-10-21",16162,9,10260],["Dade","2021-10-22",16162,6,10266],["Dade","2021-10-23",16162,3,10269],["Dade","2021-10-24",16162,3,10272],["Dade","2021-10-25",16162,10,10282],["Dade","2021-10-26",16162,12,10294],["Dade","2021-10-27",16162,94,10388],["Dade","2021-10-28",16162,108,10496],["Dade","2021-10-29",16162,44,10540],["Dade","2021-10-30",16162,6,10546],["Dade","2021-10-31",16162,3,10549],["Dade","2021-11-01",16162,92,10641],["Dade","2021-11-02",16162,98,10739],["Dade","2021-11-03",16162,85,10824],["Dade","2021-11-04",16162,50,10874],["Dade","2021-11-05",16162,47,10921],["Dade","2021-11-06",16162,3,10924],["Dade","2021-11-07",16162,3,10927],["Dade","2021-11-08",16162,45,10972],["Dade","2021-11-09",16162,55,11027],["Dade","2021-11-10",16162,60,11087],["Dade","2021-11-11",16162,7,11094],["Dade","2021-11-12",16162,43,11137],["Dade","2021-11-13",16162,4,11141],["Dade","2021-11-14",16162,1,11142],["Dade","2021-11-15",16162,44,11186],["Dade","2021-11-16",16162,31,11217],["Dade","2021-11-17",16162,27,11244],["Dade","2021-11-18",16162,48,11292],["Dade","2021-11-19",16162,34,11326],["Dade","2021-11-20",16162,5,11331],["Dade","2021-11-21",16162,6,11337],["Dade","2021-11-22",16162,57,11394],["Dade","2021-11-23",16162,40,11434],["Dade","2021-11-24",16162,26,11460],["Dade","2021-11-26",16162,6,11466],["Dade","2021-11-27",16162,5,11471],["Dade","2021-11-28",16162,2,11473],["Dade","2021-11-29",16162,54,11527],["Dade","2021-11-30",16162,69,11596],["Dade","2021-12-01",16162,72,11668],["Dade","2021-12-02",16162,64,11732],["Dade","2021-12-03",16162,59,11791],["Dade","2021-12-04",16162,18,11809],["Dade","2021-12-05",16162,2,11811],["Dade","2021-12-06",16162,43,11854],["Dade","2021-12-07",16162,40,11894],["Dade","2021-12-08",16162,24,11918],["Dade","2021-12-09",16162,32,11950],["Dade","2021-12-10",16162,37,11987],["Dade","2021-12-11",16162,7,11994],["Dade","2021-12-12",16162,1,11995],["Dade","2021-12-13",16162,36,12031],["Dade","2021-12-14",16162,6,12037],["Dade","2021-12-15",16162,8,12045],["Dade","2021-12-16",16162,40,12085],["Dade","2021-12-17",16162,48,12133],["Dade","2021-12-18",16162,3,12136],["Dade","2021-12-19",16162,7,12143],["Dade","2021-12-20",16162,42,12185],["Dade","2021-12-21",16162,54,12239],["Dade","2021-12-22",16162,5,12244],["Dade","2021-12-23",16162,6,12250],["Dade","2021-12-24",16162,1,12251],["Dade","2021-12-27",16162,39,12290],["Dade","2021-12-28",16162,48,12338],["Dade","2021-12-29",16162,29,12367],["Dade","2021-12-30",16162,37,12404],["Dade","2021-12-31",16162,2,12406],["Dade","2022-01-01",16162,1,12407],["Dade","2022-01-02",16162,3,12410],["Dade","2022-01-03",16162,3,12413],["Dawson","2020-12-17",27021,1,1],["Dawson","2020-12-18",27021,6,7],["Dawson","2020-12-19",27021,6,13],["Dawson","2020-12-20",27021,7,20],["Dawson","2020-12-21",27021,10,30],["Dawson","2020-12-22",27021,13,43],["Dawson","2020-12-23",27021,11,54],["Dawson","2020-12-24",27021,3,57],["Dawson","2020-12-26",27021,3,60],["Dawson","2020-12-27",27021,6,66],["Dawson","2020-12-28",27021,30,96],["Dawson","2020-12-29",27021,36,132],["Dawson","2020-12-30",27021,27,159],["Dawson","2020-12-31",27021,9,168],["Dawson","2021-01-01",27021,31,199],["Dawson","2021-01-02",27021,3,202],["Dawson","2021-01-03",27021,4,206],["Dawson","2021-01-04",27021,45,251],["Dawson","2021-01-05",27021,34,285],["Dawson","2021-01-06",27021,56,341],["Dawson","2021-01-07",27021,48,389],["Dawson","2021-01-08",27021,32,421],["Dawson","2021-01-09",27021,8,429],["Dawson","2021-01-10",27021,12,441],["Dawson","2021-01-11",27021,79,520],["Dawson","2021-01-12",27021,77,597],["Dawson","2021-01-13",27021,75,672],["Dawson","2021-01-14",27021,100,772],["Dawson","2021-01-15",27021,62,834],["Dawson","2021-01-16",27021,48,882],["Dawson","2021-01-17",27021,24,906],["Dawson","2021-01-18",27021,134,1040],["Dawson","2021-01-19",27021,94,1134],["Dawson","2021-01-20",27021,111,1245],["Dawson","2021-01-21",27021,639,1884],["Dawson","2021-01-22",27021,120,2004],["Dawson","2021-01-23",27021,36,2040],["Dawson","2021-01-24",27021,17,2057],["Dawson","2021-01-25",27021,81,2138],["Dawson","2021-01-26",27021,97,2235],["Dawson","2021-01-27",27021,140,2375],["Dawson","2021-01-28",27021,78,2453],["Dawson","2021-01-29",27021,85,2538],["Dawson","2021-01-30",27021,41,2579],["Dawson","2021-01-31",27021,10,2589],["Dawson","2021-02-01",27021,110,2699],["Dawson","2021-02-02",27021,84,2783],["Dawson","2021-02-03",27021,74,2857],["Dawson","2021-02-04",27021,139,2996],["Dawson","2021-02-05",27021,61,3057],["Dawson","2021-02-06",27021,19,3076],["Dawson","2021-02-07",27021,6,3082],["Dawson","2021-02-08",27021,112,3194],["Dawson","2021-02-09",27021,119,3313],["Dawson","2021-02-10",27021,109,3422],["Dawson","2021-02-11",27021,87,3509],["Dawson","2021-02-12",27021,77,3586],["Dawson","2021-02-13",27021,62,3648],["Dawson","2021-02-14",27021,12,3660],["Dawson","2021-02-15",27021,121,3781],["Dawson","2021-02-16",27021,96,3877],["Dawson","2021-02-17",27021,138,4015],["Dawson","2021-02-18",27021,651,4666],["Dawson","2021-02-19",27021,49,4715],["Dawson","2021-02-20",27021,39,4754],["Dawson","2021-02-21",27021,18,4772],["Dawson","2021-02-22",27021,87,4859],["Dawson","2021-02-23",27021,112,4971],["Dawson","2021-02-24",27021,132,5103],["Dawson","2021-02-25",27021,179,5282],["Dawson","2021-02-26",27021,161,5443],["Dawson","2021-02-27",27021,48,5491],["Dawson","2021-02-28",27021,31,5522],["Dawson","2021-03-01",27021,162,5684],["Dawson","2021-03-02",27021,109,5793],["Dawson","2021-03-03",27021,229,6022],["Dawson","2021-03-04",27021,175,6197],["Dawson","2021-03-05",27021,114,6311],["Dawson","2021-03-06",27021,15,6326],["Dawson","2021-03-07",27021,21,6347],["Dawson","2021-03-08",27021,164,6511],["Dawson","2021-03-09",27021,157,6668],["Dawson","2021-03-10",27021,179,6847],["Dawson","2021-03-11",27021,130,6977],["Dawson","2021-03-12",27021,154,7131],["Dawson","2021-03-13",27021,101,7232],["Dawson","2021-03-14",27021,21,7253],["Dawson","2021-03-15",27021,193,7446],["Dawson","2021-03-16",27021,165,7611],["Dawson","2021-03-17",27021,163,7774],["Dawson","2021-03-18",27021,168,7942],["Dawson","2021-03-19",27021,229,8171],["Dawson","2021-03-20",27021,35,8206],["Dawson","2021-03-21",27021,20,8226],["Dawson","2021-03-22",27021,124,8350],["Dawson","2021-03-23",27021,170,8520],["Dawson","2021-03-24",27021,137,8657],["Dawson","2021-03-25",27021,191,8848],["Dawson","2021-03-26",27021,165,9013],["Dawson","2021-03-27",27021,29,9042],["Dawson","2021-03-28",27021,42,9084],["Dawson","2021-03-29",27021,125,9209],["Dawson","2021-03-30",27021,168,9377],["Dawson","2021-03-31",27021,211,9588],["Dawson","2021-04-01",27021,269,9857],["Dawson","2021-04-02",27021,114,9971],["Dawson","2021-04-03",27021,36,10007],["Dawson","2021-04-04",27021,24,10031],["Dawson","2021-04-05",27021,209,10240],["Dawson","2021-04-06",27021,209,10449],["Dawson","2021-04-07",27021,192,10641],["Dawson","2021-04-08",27021,194,10835],["Dawson","2021-04-09",27021,173,11008],["Dawson","2021-04-10",27021,45,11053],["Dawson","2021-04-11",27021,43,11096],["Dawson","2021-04-12",27021,195,11291],["Dawson","2021-04-13",27021,176,11467],["Dawson","2021-04-14",27021,184,11651],["Dawson","2021-04-15",27021,196,11847],["Dawson","2021-04-16",27021,125,11972],["Dawson","2021-04-17",27021,34,12006],["Dawson","2021-04-18",27021,15,12021],["Dawson","2021-04-19",27021,129,12150],["Dawson","2021-04-20",27021,166,12316],["Dawson","2021-04-21",27021,144,12460],["Dawson","2021-04-22",27021,196,12656],["Dawson","2021-04-23",27021,179,12835],["Dawson","2021-04-24",27021,46,12881],["Dawson","2021-04-25",27021,22,12903],["Dawson","2021-04-26",27021,104,13007],["Dawson","2021-04-27",27021,171,13178],["Dawson","2021-04-28",27021,159,13337],["Dawson","2021-04-29",27021,156,13493],["Dawson","2021-04-30",27021,105,13598],["Dawson","2021-05-01",27021,44,13642],["Dawson","2021-05-02",27021,25,13667],["Dawson","2021-05-03",27021,122,13789],["Dawson","2021-05-04",27021,125,13914],["Dawson","2021-05-05",27021,131,14045],["Dawson","2021-05-06",27021,141,14186],["Dawson","2021-05-07",27021,129,14315],["Dawson","2021-05-08",27021,26,14341],["Dawson","2021-05-09",27021,15,14356],["Dawson","2021-05-10",27021,61,14417],["Dawson","2021-05-11",27021,76,14493],["Dawson","2021-05-12",27021,51,14544],["Dawson","2021-05-13",27021,99,14643],["Dawson","2021-05-14",27021,72,14715],["Dawson","2021-05-15",27021,39,14754],["Dawson","2021-05-16",27021,22,14776],["Dawson","2021-05-17",27021,70,14846],["Dawson","2021-05-18",27021,92,14938],["Dawson","2021-05-19",27021,89,15027],["Dawson","2021-05-20",27021,88,15115],["Dawson","2021-05-21",27021,69,15184],["Dawson","2021-05-22",27021,31,15215],["Dawson","2021-05-23",27021,22,15237],["Dawson","2021-05-24",27021,54,15291],["Dawson","2021-05-25",27021,73,15364],["Dawson","2021-05-26",27021,62,15426],["Dawson","2021-05-27",27021,74,15500],["Dawson","2021-05-28",27021,58,15558],["Dawson","2021-05-29",27021,30,15588],["Dawson","2021-05-30",27021,18,15606],["Dawson","2021-05-31",27021,16,15622],["Dawson","2021-06-01",27021,74,15696],["Dawson","2021-06-02",27021,49,15745],["Dawson","2021-06-03",27021,60,15805],["Dawson","2021-06-04",27021,69,15874],["Dawson","2021-06-05",27021,21,15895],["Dawson","2021-06-06",27021,17,15912],["Dawson","2021-06-07",27021,58,15970],["Dawson","2021-06-08",27021,54,16024],["Dawson","2021-06-09",27021,47,16071],["Dawson","2021-06-10",27021,46,16117],["Dawson","2021-06-11",27021,58,16175],["Dawson","2021-06-12",27021,19,16194],["Dawson","2021-06-13",27021,17,16211],["Dawson","2021-06-14",27021,37,16248],["Dawson","2021-06-15",27021,31,16279],["Dawson","2021-06-16",27021,32,16311],["Dawson","2021-06-17",27021,54,16365],["Dawson","2021-06-18",27021,32,16397],["Dawson","2021-06-19",27021,19,16416],["Dawson","2021-06-20",27021,7,16423],["Dawson","2021-06-21",27021,30,16453],["Dawson","2021-06-22",27021,36,16489],["Dawson","2021-06-23",27021,37,16526],["Dawson","2021-06-24",27021,25,16551],["Dawson","2021-06-25",27021,30,16581],["Dawson","2021-06-26",27021,16,16597],["Dawson","2021-06-27",27021,15,16612],["Dawson","2021-06-28",27021,22,16634],["Dawson","2021-06-29",27021,26,16660],["Dawson","2021-06-30",27021,23,16683],["Dawson","2021-07-01",27021,27,16710],["Dawson","2021-07-02",27021,38,16748],["Dawson","2021-07-03",27021,16,16764],["Dawson","2021-07-05",27021,19,16783],["Dawson","2021-07-06",27021,19,16802],["Dawson","2021-07-07",27021,26,16828],["Dawson","2021-07-08",27021,23,16851],["Dawson","2021-07-09",27021,46,16897],["Dawson","2021-07-10",27021,16,16913],["Dawson","2021-07-11",27021,9,16922],["Dawson","2021-07-12",27021,21,16943],["Dawson","2021-07-13",27021,23,16966],["Dawson","2021-07-14",27021,24,16990],["Dawson","2021-07-15",27021,15,17005],["Dawson","2021-07-16",27021,26,17031],["Dawson","2021-07-17",27021,11,17042],["Dawson","2021-07-18",27021,9,17051],["Dawson","2021-07-19",27021,22,17073],["Dawson","2021-07-20",27021,29,17102],["Dawson","2021-07-21",27021,23,17125],["Dawson","2021-07-22",27021,28,17153],["Dawson","2021-07-23",27021,38,17191],["Dawson","2021-07-24",27021,33,17224],["Dawson","2021-07-25",27021,13,17237],["Dawson","2021-07-26",27021,23,17260],["Dawson","2021-07-27",27021,28,17288],["Dawson","2021-07-28",27021,31,17319],["Dawson","2021-07-29",27021,33,17352],["Dawson","2021-07-30",27021,39,17391],["Dawson","2021-07-31",27021,32,17423],["Dawson","2021-08-01",27021,27,17450],["Dawson","2021-08-02",27021,42,17492],["Dawson","2021-08-03",27021,41,17533],["Dawson","2021-08-04",27021,45,17578],["Dawson","2021-08-05",27021,40,17618],["Dawson","2021-08-06",27021,65,17683],["Dawson","2021-08-07",27021,37,17720],["Dawson","2021-08-08",27021,19,17739],["Dawson","2021-08-09",27021,46,17785],["Dawson","2021-08-10",27021,44,17829],["Dawson","2021-08-11",27021,48,17877],["Dawson","2021-08-12",27021,51,17928],["Dawson","2021-08-13",27021,75,18003],["Dawson","2021-08-14",27021,41,18044],["Dawson","2021-08-15",27021,21,18065],["Dawson","2021-08-16",27021,46,18111],["Dawson","2021-08-17",27021,43,18154],["Dawson","2021-08-18",27021,62,18216],["Dawson","2021-08-19",27021,47,18263],["Dawson","2021-08-20",27021,79,18342],["Dawson","2021-08-21",27021,46,18388],["Dawson","2021-08-22",27021,26,18414],["Dawson","2021-08-23",27021,57,18471],["Dawson","2021-08-24",27021,58,18529],["Dawson","2021-08-25",27021,50,18579],["Dawson","2021-08-26",27021,75,18654],["Dawson","2021-08-27",27021,76,18730],["Dawson","2021-08-28",27021,41,18771],["Dawson","2021-08-29",27021,29,18800],["Dawson","2021-08-30",27021,64,18864],["Dawson","2021-08-31",27021,71,18935],["Dawson","2021-09-01",27021,73,19008],["Dawson","2021-09-02",27021,76,19084],["Dawson","2021-09-03",27021,82,19166],["Dawson","2021-09-04",27021,28,19194],["Dawson","2021-09-05",27021,20,19214],["Dawson","2021-09-06",27021,18,19232],["Dawson","2021-09-07",27021,45,19277],["Dawson","2021-09-08",27021,63,19340],["Dawson","2021-09-09",27021,71,19411],["Dawson","2021-09-10",27021,76,19487],["Dawson","2021-09-11",27021,31,19518],["Dawson","2021-09-12",27021,28,19546],["Dawson","2021-09-13",27021,51,19597],["Dawson","2021-09-14",27021,40,19637],["Dawson","2021-09-15",27021,44,19681],["Dawson","2021-09-16",27021,45,19726],["Dawson","2021-09-17",27021,70,19796],["Dawson","2021-09-18",27021,28,19824],["Dawson","2021-09-19",27021,24,19848],["Dawson","2021-09-20",27021,43,19891],["Dawson","2021-09-21",27021,38,19929],["Dawson","2021-09-22",27021,56,19985],["Dawson","2021-09-23",27021,44,20029],["Dawson","2021-09-24",27021,50,20079],["Dawson","2021-09-25",27021,23,20102],["Dawson","2021-09-26",27021,15,20117],["Dawson","2021-09-27",27021,49,20166],["Dawson","2021-09-28",27021,56,20222],["Dawson","2021-09-29",27021,50,20272],["Dawson","2021-09-30",27021,61,20333],["Dawson","2021-10-01",27021,68,20401],["Dawson","2021-10-02",27021,20,20421],["Dawson","2021-10-03",27021,18,20439],["Dawson","2021-10-04",27021,28,20467],["Dawson","2021-10-05",27021,56,20523],["Dawson","2021-10-06",27021,52,20575],["Dawson","2021-10-07",27021,49,20624],["Dawson","2021-10-08",27021,27,20651],["Dawson","2021-10-09",27021,11,20662],["Dawson","2021-10-10",27021,11,20673],["Dawson","2021-10-11",27021,18,20691],["Dawson","2021-10-12",27021,32,20723],["Dawson","2021-10-13",27021,32,20755],["Dawson","2021-10-14",27021,28,20783],["Dawson","2021-10-15",27021,41,20824],["Dawson","2021-10-16",27021,14,20838],["Dawson","2021-10-17",27021,4,20842],["Dawson","2021-10-18",27021,19,20861],["Dawson","2021-10-19",27021,13,20874],["Dawson","2021-10-20",27021,43,20917],["Dawson","2021-10-21",27021,33,20950],["Dawson","2021-10-22",27021,68,21018],["Dawson","2021-10-23",27021,42,21060],["Dawson","2021-10-24",27021,12,21072],["Dawson","2021-10-25",27021,70,21142],["Dawson","2021-10-26",27021,115,21257],["Dawson","2021-10-27",27021,107,21364],["Dawson","2021-10-28",27021,98,21462],["Dawson","2021-10-29",27021,86,21548],["Dawson","2021-10-30",27021,31,21579],["Dawson","2021-10-31",27021,13,21592],["Dawson","2021-11-01",27021,72,21664],["Dawson","2021-11-02",27021,83,21747],["Dawson","2021-11-03",27021,73,21820],["Dawson","2021-11-04",27021,74,21894],["Dawson","2021-11-05",27021,59,21953],["Dawson","2021-11-06",27021,22,21975],["Dawson","2021-11-07",27021,16,21991],["Dawson","2021-11-08",27021,52,22043],["Dawson","2021-11-09",27021,48,22091],["Dawson","2021-11-10",27021,51,22142],["Dawson","2021-11-11",27021,39,22181],["Dawson","2021-11-12",27021,54,22235],["Dawson","2021-11-13",27021,39,22274],["Dawson","2021-11-14",27021,13,22287],["Dawson","2021-11-15",27021,67,22354],["Dawson","2021-11-16",27021,71,22425],["Dawson","2021-11-17",27021,56,22481],["Dawson","2021-11-18",27021,78,22559],["Dawson","2021-11-19",27021,73,22632],["Dawson","2021-11-20",27021,29,22661],["Dawson","2021-11-21",27021,24,22685],["Dawson","2021-11-22",27021,49,22734],["Dawson","2021-11-23",27021,52,22786],["Dawson","2021-11-24",27021,33,22819],["Dawson","2021-11-25",27021,2,22821],["Dawson","2021-11-26",27021,30,22851],["Dawson","2021-11-27",27021,23,22874],["Dawson","2021-11-28",27021,24,22898],["Dawson","2021-11-29",27021,53,22951],["Dawson","2021-11-30",27021,86,23037],["Dawson","2021-12-01",27021,69,23106],["Dawson","2021-12-02",27021,92,23198],["Dawson","2021-12-03",27021,60,23258],["Dawson","2021-12-04",27021,23,23281],["Dawson","2021-12-05",27021,15,23296],["Dawson","2021-12-06",27021,68,23364],["Dawson","2021-12-07",27021,65,23429],["Dawson","2021-12-08",27021,57,23486],["Dawson","2021-12-09",27021,62,23548],["Dawson","2021-12-10",27021,72,23620],["Dawson","2021-12-11",27021,20,23640],["Dawson","2021-12-12",27021,13,23653],["Dawson","2021-12-13",27021,46,23699],["Dawson","2021-12-14",27021,39,23738],["Dawson","2021-12-15",27021,36,23774],["Dawson","2021-12-16",27021,53,23827],["Dawson","2021-12-17",27021,59,23886],["Dawson","2021-12-18",27021,28,23914],["Dawson","2021-12-19",27021,15,23929],["Dawson","2021-12-20",27021,77,24006],["Dawson","2021-12-21",27021,53,24059],["Dawson","2021-12-22",27021,56,24115],["Dawson","2021-12-23",27021,33,24148],["Dawson","2021-12-24",27021,15,24163],["Dawson","2021-12-25",27021,1,24164],["Dawson","2021-12-26",27021,11,24175],["Dawson","2021-12-27",27021,68,24243],["Dawson","2021-12-28",27021,54,24297],["Dawson","2021-12-29",27021,59,24356],["Dawson","2021-12-30",27021,56,24412],["Dawson","2021-12-31",27021,23,24435],["Dawson","2022-01-01",27021,2,24437],["Dawson","2022-01-02",27021,12,24449],["Dawson","2022-01-03",27021,12,24461],["Decatur","2020-12-18",26322,2,2],["Decatur","2020-12-19",26322,3,5],["Decatur","2020-12-20",26322,1,6],["Decatur","2020-12-21",26322,6,12],["Decatur","2020-12-22",26322,2,14],["Decatur","2020-12-23",26322,46,60],["Decatur","2020-12-24",26322,4,64],["Decatur","2020-12-26",26322,1,65],["Decatur","2020-12-27",26322,3,68],["Decatur","2020-12-28",26322,37,105],["Decatur","2020-12-29",26322,39,144],["Decatur","2020-12-30",26322,43,187],["Decatur","2020-12-31",26322,15,202],["Decatur","2021-01-01",26322,2,204],["Decatur","2021-01-03",26322,1,205],["Decatur","2021-01-04",26322,43,248],["Decatur","2021-01-05",26322,53,301],["Decatur","2021-01-06",26322,65,366],["Decatur","2021-01-07",26322,112,478],["Decatur","2021-01-08",26322,30,508],["Decatur","2021-01-09",26322,3,511],["Decatur","2021-01-10",26322,1,512],["Decatur","2021-01-11",26322,115,627],["Decatur","2021-01-12",26322,162,789],["Decatur","2021-01-13",26322,134,923],["Decatur","2021-01-14",26322,233,1156],["Decatur","2021-01-15",26322,129,1285],["Decatur","2021-01-16",26322,11,1296],["Decatur","2021-01-17",26322,3,1299],["Decatur","2021-01-18",26322,154,1453],["Decatur","2021-01-19",26322,129,1582],["Decatur","2021-01-20",26322,161,1743],["Decatur","2021-01-21",26322,173,1916],["Decatur","2021-01-22",26322,133,2049],["Decatur","2021-01-23",26322,6,2055],["Decatur","2021-01-25",26322,139,2194],["Decatur","2021-01-26",26322,154,2348],["Decatur","2021-01-27",26322,164,2512],["Decatur","2021-01-28",26322,231,2743],["Decatur","2021-01-29",26322,83,2826],["Decatur","2021-01-30",26322,3,2829],["Decatur","2021-01-31",26322,1,2830],["Decatur","2021-02-01",26322,151,2981],["Decatur","2021-02-02",26322,170,3151],["Decatur","2021-02-03",26322,150,3301],["Decatur","2021-02-04",26322,187,3488],["Decatur","2021-02-05",26322,116,3604],["Decatur","2021-02-06",26322,7,3611],["Decatur","2021-02-07",26322,2,3613],["Decatur","2021-02-08",26322,101,3714],["Decatur","2021-02-09",26322,246,3960],["Decatur","2021-02-10",26322,189,4149],["Decatur","2021-02-11",26322,213,4362],["Decatur","2021-02-12",26322,150,4512],["Decatur","2021-02-13",26322,36,4548],["Decatur","2021-02-14",26322,11,4559],["Decatur","2021-02-15",26322,192,4751],["Decatur","2021-02-16",26322,187,4938],["Decatur","2021-02-17",26322,143,5081],["Decatur","2021-02-18",26322,197,5278],["Decatur","2021-02-19",26322,45,5323],["Decatur","2021-02-20",26322,5,5328],["Decatur","2021-02-22",26322,96,5424],["Decatur","2021-02-23",26322,129,5553],["Decatur","2021-02-24",26322,149,5702],["Decatur","2021-02-25",26322,196,5898],["Decatur","2021-02-26",26322,134,6032],["Decatur","2021-02-27",26322,29,6061],["Decatur","2021-02-28",26322,14,6075],["Decatur","2021-03-01",26322,201,6276],["Decatur","2021-03-02",26322,214,6490],["Decatur","2021-03-03",26322,225,6715],["Decatur","2021-03-04",26322,208,6923],["Decatur","2021-03-05",26322,97,7020],["Decatur","2021-03-06",26322,13,7033],["Decatur","2021-03-07",26322,7,7040],["Decatur","2021-03-08",26322,186,7226],["Decatur","2021-03-09",26322,158,7384],["Decatur","2021-03-10",26322,172,7556],["Decatur","2021-03-11",26322,163,7719],["Decatur","2021-03-12",26322,236,7955],["Decatur","2021-03-13",26322,30,7985],["Decatur","2021-03-14",26322,16,8001],["Decatur","2021-03-15",26322,253,8254],["Decatur","2021-03-16",26322,160,8414],["Decatur","2021-03-17",26322,177,8591],["Decatur","2021-03-18",26322,161,8752],["Decatur","2021-03-19",26322,70,8822],["Decatur","2021-03-20",26322,19,8841],["Decatur","2021-03-21",26322,15,8856],["Decatur","2021-03-22",26322,204,9060],["Decatur","2021-03-23",26322,97,9157],["Decatur","2021-03-24",26322,86,9243],["Decatur","2021-03-25",26322,264,9507],["Decatur","2021-03-26",26322,74,9581],["Decatur","2021-03-27",26322,46,9627],["Decatur","2021-03-28",26322,21,9648],["Decatur","2021-03-29",26322,194,9842],["Decatur","2021-03-30",26322,224,10066],["Decatur","2021-03-31",26322,160,10226],["Decatur","2021-04-01",26322,252,10478],["Decatur","2021-04-02",26322,92,10570],["Decatur","2021-04-03",26322,28,10598],["Decatur","2021-04-04",26322,15,10613],["Decatur","2021-04-05",26322,139,10752],["Decatur","2021-04-06",26322,162,10914],["Decatur","2021-04-07",26322,176,11090],["Decatur","2021-04-08",26322,218,11308],["Decatur","2021-04-09",26322,199,11507],["Decatur","2021-04-10",26322,31,11538],["Decatur","2021-04-11",26322,29,11567],["Decatur","2021-04-12",26322,214,11781],["Decatur","2021-04-13",26322,215,11996],["Decatur","2021-04-14",26322,191,12187],["Decatur","2021-04-15",26322,181,12368],["Decatur","2021-04-16",26322,68,12436],["Decatur","2021-04-17",26322,20,12456],["Decatur","2021-04-18",26322,8,12464],["Decatur","2021-04-19",26322,175,12639],["Decatur","2021-04-20",26322,124,12763],["Decatur","2021-04-21",26322,96,12859],["Decatur","2021-04-22",26322,268,13127],["Decatur","2021-04-23",26322,83,13210],["Decatur","2021-04-24",26322,11,13221],["Decatur","2021-04-25",26322,16,13237],["Decatur","2021-04-26",26322,142,13379],["Decatur","2021-04-27",26322,147,13526],["Decatur","2021-04-28",26322,155,13681],["Decatur","2021-04-29",26322,215,13896],["Decatur","2021-04-30",26322,66,13962],["Decatur","2021-05-01",26322,32,13994],["Decatur","2021-05-02",26322,12,14006],["Decatur","2021-05-03",26322,129,14135],["Decatur","2021-05-04",26322,116,14251],["Decatur","2021-05-05",26322,108,14359],["Decatur","2021-05-06",26322,137,14496],["Decatur","2021-05-07",26322,84,14580],["Decatur","2021-05-08",26322,29,14609],["Decatur","2021-05-09",26322,5,14614],["Decatur","2021-05-10",26322,71,14685],["Decatur","2021-05-11",26322,83,14768],["Decatur","2021-05-12",26322,160,14928],["Decatur","2021-05-13",26322,96,15024],["Decatur","2021-05-14",26322,111,15135],["Decatur","2021-05-15",26322,31,15166],["Decatur","2021-05-16",26322,9,15175],["Decatur","2021-05-17",26322,73,15248],["Decatur","2021-05-18",26322,80,15328],["Decatur","2021-05-19",26322,97,15425],["Decatur","2021-05-20",26322,104,15529],["Decatur","2021-05-21",26322,53,15582],["Decatur","2021-05-22",26322,21,15603],["Decatur","2021-05-23",26322,13,15616],["Decatur","2021-05-24",26322,55,15671],["Decatur","2021-05-25",26322,57,15728],["Decatur","2021-05-26",26322,53,15781],["Decatur","2021-05-27",26322,97,15878],["Decatur","2021-05-28",26322,26,15904],["Decatur","2021-05-29",26322,35,15939],["Decatur","2021-05-30",26322,9,15948],["Decatur","2021-05-31",26322,5,15953],["Decatur","2021-06-01",26322,65,16018],["Decatur","2021-06-02",26322,172,16190],["Decatur","2021-06-03",26322,96,16286],["Decatur","2021-06-04",26322,50,16336],["Decatur","2021-06-05",26322,20,16356],["Decatur","2021-06-06",26322,12,16368],["Decatur","2021-06-07",26322,56,16424],["Decatur","2021-06-08",26322,56,16480],["Decatur","2021-06-09",26322,49,16529],["Decatur","2021-06-10",26322,103,16632],["Decatur","2021-06-11",26322,41,16673],["Decatur","2021-06-12",26322,18,16691],["Decatur","2021-06-13",26322,5,16696],["Decatur","2021-06-14",26322,43,16739],["Decatur","2021-06-15",26322,56,16795],["Decatur","2021-06-16",26322,36,16831],["Decatur","2021-06-17",26322,50,16881],["Decatur","2021-06-18",26322,30,16911],["Decatur","2021-06-19",26322,19,16930],["Decatur","2021-06-20",26322,5,16935],["Decatur","2021-06-21",26322,46,16981],["Decatur","2021-06-22",26322,56,17037],["Decatur","2021-06-23",26322,46,17083],["Decatur","2021-06-24",26322,56,17139],["Decatur","2021-06-25",26322,29,17168],["Decatur","2021-06-26",26322,13,17181],["Decatur","2021-06-27",26322,6,17187],["Decatur","2021-06-28",26322,34,17221],["Decatur","2021-06-29",26322,31,17252],["Decatur","2021-06-30",26322,100,17352],["Decatur","2021-07-01",26322,57,17409],["Decatur","2021-07-02",26322,24,17433],["Decatur","2021-07-03",26322,20,17453],["Decatur","2021-07-04",26322,3,17456],["Decatur","2021-07-05",26322,13,17469],["Decatur","2021-07-06",26322,43,17512],["Decatur","2021-07-07",26322,69,17581],["Decatur","2021-07-08",26322,50,17631],["Decatur","2021-07-09",26322,27,17658],["Decatur","2021-07-10",26322,17,17675],["Decatur","2021-07-11",26322,4,17679],["Decatur","2021-07-12",26322,27,17706],["Decatur","2021-07-13",26322,39,17745],["Decatur","2021-07-14",26322,45,17790],["Decatur","2021-07-15",26322,43,17833],["Decatur","2021-07-16",26322,26,17859],["Decatur","2021-07-17",26322,17,17876],["Decatur","2021-07-18",26322,8,17884],["Decatur","2021-07-19",26322,57,17941],["Decatur","2021-07-20",26322,66,18007],["Decatur","2021-07-21",26322,65,18072],["Decatur","2021-07-22",26322,67,18139],["Decatur","2021-07-23",26322,48,18187],["Decatur","2021-07-24",26322,33,18220],["Decatur","2021-07-25",26322,13,18233],["Decatur","2021-07-26",26322,76,18309],["Decatur","2021-07-27",26322,61,18370],["Decatur","2021-07-28",26322,83,18453],["Decatur","2021-07-29",26322,123,18576],["Decatur","2021-07-30",26322,73,18649],["Decatur","2021-07-31",26322,38,18687],["Decatur","2021-08-01",26322,14,18701],["Decatur","2021-08-02",26322,140,18841],["Decatur","2021-08-03",26322,106,18947],["Decatur","2021-08-04",26322,125,19072],["Decatur","2021-08-05",26322,96,19168],["Decatur","2021-08-06",26322,58,19226],["Decatur","2021-08-07",26322,75,19301],["Decatur","2021-08-08",26322,22,19323],["Decatur","2021-08-09",26322,119,19442],["Decatur","2021-08-10",26322,143,19585],["Decatur","2021-08-11",26322,114,19699],["Decatur","2021-08-12",26322,193,19892],["Decatur","2021-08-13",26322,126,20018],["Decatur","2021-08-14",26322,69,20087],["Decatur","2021-08-15",26322,35,20122],["Decatur","2021-08-16",26322,165,20287],["Decatur","2021-08-17",26322,149,20436],["Decatur","2021-08-18",26322,163,20599],["Decatur","2021-08-19",26322,155,20754],["Decatur","2021-08-20",26322,98,20852],["Decatur","2021-08-21",26322,73,20925],["Decatur","2021-08-22",26322,18,20943],["Decatur","2021-08-23",26322,145,21088],["Decatur","2021-08-24",26322,142,21230],["Decatur","2021-08-25",26322,147,21377],["Decatur","2021-08-26",26322,153,21530],["Decatur","2021-08-27",26322,103,21633],["Decatur","2021-08-28",26322,60,21693],["Decatur","2021-08-29",26322,22,21715],["Decatur","2021-08-30",26322,153,21868],["Decatur","2021-08-31",26322,113,21981],["Decatur","2021-09-01",26322,122,22103],["Decatur","2021-09-02",26322,158,22261],["Decatur","2021-09-03",26322,137,22398],["Decatur","2021-09-04",26322,52,22450],["Decatur","2021-09-05",26322,15,22465],["Decatur","2021-09-06",26322,34,22499],["Decatur","2021-09-07",26322,143,22642],["Decatur","2021-09-08",26322,121,22763],["Decatur","2021-09-09",26322,167,22930],["Decatur","2021-09-10",26322,120,23050],["Decatur","2021-09-11",26322,53,23103],["Decatur","2021-09-12",26322,21,23124],["Decatur","2021-09-13",26322,149,23273],["Decatur","2021-09-14",26322,109,23382],["Decatur","2021-09-15",26322,152,23534],["Decatur","2021-09-16",26322,104,23638],["Decatur","2021-09-17",26322,73,23711],["Decatur","2021-09-18",26322,51,23762],["Decatur","2021-09-19",26322,9,23771],["Decatur","2021-09-20",26322,90,23861],["Decatur","2021-09-21",26322,67,23928],["Decatur","2021-09-22",26322,80,24008],["Decatur","2021-09-23",26322,76,24084],["Decatur","2021-09-24",26322,75,24159],["Decatur","2021-09-25",26322,16,24175],["Decatur","2021-09-26",26322,7,24182],["Decatur","2021-09-27",26322,77,24259],["Decatur","2021-09-28",26322,64,24323],["Decatur","2021-09-29",26322,61,24384],["Decatur","2021-09-30",26322,51,24435],["Decatur","2021-10-01",26322,64,24499],["Decatur","2021-10-02",26322,24,24523],["Decatur","2021-10-03",26322,12,24535],["Decatur","2021-10-04",26322,39,24574],["Decatur","2021-10-05",26322,58,24632],["Decatur","2021-10-06",26322,68,24700],["Decatur","2021-10-07",26322,70,24770],["Decatur","2021-10-08",26322,40,24810],["Decatur","2021-10-09",26322,17,24827],["Decatur","2021-10-10",26322,4,24831],["Decatur","2021-10-11",26322,29,24860],["Decatur","2021-10-12",26322,38,24898],["Decatur","2021-10-13",26322,41,24939],["Decatur","2021-10-14",26322,32,24971],["Decatur","2021-10-15",26322,28,24999],["Decatur","2021-10-16",26322,7,25006],["Decatur","2021-10-17",26322,6,25012],["Decatur","2021-10-18",26322,22,25034],["Decatur","2021-10-19",26322,50,25084],["Decatur","2021-10-20",26322,36,25120],["Decatur","2021-10-21",26322,33,25153],["Decatur","2021-10-22",26322,28,25181],["Decatur","2021-10-23",26322,31,25212],["Decatur","2021-10-24",26322,15,25227],["Decatur","2021-10-25",26322,84,25311],["Decatur","2021-10-26",26322,83,25394],["Decatur","2021-10-27",26322,102,25496],["Decatur","2021-10-28",26322,134,25630],["Decatur","2021-10-29",26322,30,25660],["Decatur","2021-10-30",26322,19,25679],["Decatur","2021-10-31",26322,5,25684],["Decatur","2021-11-01",26322,69,25753],["Decatur","2021-11-02",26322,130,25883],["Decatur","2021-11-03",26322,90,25973],["Decatur","2021-11-04",26322,143,26116],["Decatur","2021-11-05",26322,59,26175],["Decatur","2021-11-06",26322,13,26188],["Decatur","2021-11-07",26322,8,26196],["Decatur","2021-11-08",26322,46,26242],["Decatur","2021-11-09",26322,145,26387],["Decatur","2021-11-10",26322,160,26547],["Decatur","2021-11-11",26322,82,26629],["Decatur","2021-11-12",26322,86,26715],["Decatur","2021-11-13",26322,13,26728],["Decatur","2021-11-14",26322,11,26739],["Decatur","2021-11-15",26322,56,26795],["Decatur","2021-11-16",26322,130,26925],["Decatur","2021-11-17",26322,74,26999],["Decatur","2021-11-18",26322,88,27087],["Decatur","2021-11-19",26322,75,27162],["Decatur","2021-11-20",26322,38,27200],["Decatur","2021-11-21",26322,16,27216],["Decatur","2021-11-22",26322,118,27334],["Decatur","2021-11-23",26322,91,27425],["Decatur","2021-11-24",26322,37,27462],["Decatur","2021-11-25",26322,1,27463],["Decatur","2021-11-26",26322,37,27500],["Decatur","2021-11-27",26322,22,27522],["Decatur","2021-11-28",26322,11,27533],["Decatur","2021-11-29",26322,84,27617],["Decatur","2021-11-30",26322,108,27725],["Decatur","2021-12-01",26322,114,27839],["Decatur","2021-12-02",26322,191,28030],["Decatur","2021-12-03",26322,85,28115],["Decatur","2021-12-04",26322,36,28151],["Decatur","2021-12-05",26322,16,28167],["Decatur","2021-12-06",26322,50,28217],["Decatur","2021-12-07",26322,107,28324],["Decatur","2021-12-08",26322,71,28395],["Decatur","2021-12-09",26322,80,28475],["Decatur","2021-12-10",26322,45,28520],["Decatur","2021-12-11",26322,15,28535],["Decatur","2021-12-12",26322,4,28539],["Decatur","2021-12-13",26322,39,28578],["Decatur","2021-12-14",26322,82,28660],["Decatur","2021-12-15",26322,68,28728],["Decatur","2021-12-16",26322,78,28806],["Decatur","2021-12-17",26322,53,28859],["Decatur","2021-12-18",26322,22,28881],["Decatur","2021-12-19",26322,17,28898],["Decatur","2021-12-20",26322,35,28933],["Decatur","2021-12-21",26322,112,29045],["Decatur","2021-12-22",26322,69,29114],["Decatur","2021-12-23",26322,36,29150],["Decatur","2021-12-24",26322,17,29167],["Decatur","2021-12-26",26322,6,29173],["Decatur","2021-12-27",26322,38,29211],["Decatur","2021-12-28",26322,104,29315],["Decatur","2021-12-29",26322,62,29377],["Decatur","2021-12-30",26322,57,29434],["Decatur","2021-12-31",26322,26,29460],["Decatur","2022-01-01",26322,5,29465],["Decatur","2022-01-02",26322,14,29479],["Decatur","2022-01-03",26322,22,29501],["DeKalb","2020-12-12",793154,3,3],["DeKalb","2020-12-13",793154,1,4],["DeKalb","2020-12-15",793154,5,9],["DeKalb","2020-12-16",793154,15,24],["DeKalb","2020-12-17",793154,223,247],["DeKalb","2020-12-18",793154,531,778],["DeKalb","2020-12-19",793154,1061,1839],["DeKalb","2020-12-20",793154,800,2639],["DeKalb","2020-12-21",793154,637,3276],["DeKalb","2020-12-22",793154,747,4023],["DeKalb","2020-12-23",793154,1041,5064],["DeKalb","2020-12-24",793154,244,5308],["DeKalb","2020-12-25",793154,13,5321],["DeKalb","2020-12-26",793154,146,5467],["DeKalb","2020-12-27",793154,94,5561],["DeKalb","2020-12-28",793154,1108,6669],["DeKalb","2020-12-29",793154,1024,7693],["DeKalb","2020-12-30",793154,1038,8731],["DeKalb","2020-12-31",793154,554,9285],["DeKalb","2021-01-01",793154,260,9545],["DeKalb","2021-01-02",793154,173,9718],["DeKalb","2021-01-03",793154,248,9966],["DeKalb","2021-01-04",793154,1097,11063],["DeKalb","2021-01-05",793154,1073,12136],["DeKalb","2021-01-06",793154,1601,13737],["DeKalb","2021-01-07",793154,1696,15433],["DeKalb","2021-01-08",793154,2121,17554],["DeKalb","2021-01-09",793154,1527,19081],["DeKalb","2021-01-10",793154,967,20048],["DeKalb","2021-01-11",793154,2222,22270],["DeKalb","2021-01-12",793154,2093,24363],["DeKalb","2021-01-13",793154,3071,27434],["DeKalb","2021-01-14",793154,2672,30106],["DeKalb","2021-01-15",793154,2715,32821],["DeKalb","2021-01-16",793154,1531,34352],["DeKalb","2021-01-17",793154,652,35004],["DeKalb","2021-01-18",793154,2146,37150],["DeKalb","2021-01-19",793154,3088,40238],["DeKalb","2021-01-20",793154,3102,43340],["DeKalb","2021-01-21",793154,2873,46213],["DeKalb","2021-01-22",793154,2712,48925],["DeKalb","2021-01-23",793154,884,49809],["DeKalb","2021-01-24",793154,545,50354],["DeKalb","2021-01-25",793154,2767,53121],["DeKalb","2021-01-26",793154,2561,55682],["DeKalb","2021-01-27",793154,3013,58695],["DeKalb","2021-01-28",793154,3059,61754],["DeKalb","2021-01-29",793154,3271,65025],["DeKalb","2021-01-30",793154,983,66008],["DeKalb","2021-01-31",793154,560,66568],["DeKalb","2021-02-01",793154,2638,69206],["DeKalb","2021-02-02",793154,2280,71486],["DeKalb","2021-02-03",793154,3023,74509],["DeKalb","2021-02-04",793154,3249,77758],["DeKalb","2021-02-05",793154,3066,80824],["DeKalb","2021-02-06",793154,1208,82032],["DeKalb","2021-02-07",793154,473,82505],["DeKalb","2021-02-08",793154,2834,85339],["DeKalb","2021-02-09",793154,2775,88114],["DeKalb","2021-02-10",793154,3633,91747],["DeKalb","2021-02-11",793154,3651,95398],["DeKalb","2021-02-12",793154,3598,98996],["DeKalb","2021-02-13",793154,1983,100979],["DeKalb","2021-02-14",793154,946,101925],["DeKalb","2021-02-15",793154,3853,105778],["DeKalb","2021-02-16",793154,3822,109600],["DeKalb","2021-02-17",793154,4184,113784],["DeKalb","2021-02-18",793154,3760,117544],["DeKalb","2021-02-19",793154,3570,121114],["DeKalb","2021-02-20",793154,1224,122338],["DeKalb","2021-02-21",793154,645,122983],["DeKalb","2021-02-22",793154,2142,125125],["DeKalb","2021-02-23",793154,2746,127871],["DeKalb","2021-02-24",793154,3715,131586],["DeKalb","2021-02-25",793154,4830,136416],["DeKalb","2021-02-26",793154,4983,141399],["DeKalb","2021-02-27",793154,2032,143431],["DeKalb","2021-02-28",793154,736,144167],["DeKalb","2021-03-01",793154,3391,147558],["DeKalb","2021-03-02",793154,3738,151296],["DeKalb","2021-03-03",793154,4044,155340],["DeKalb","2021-03-04",793154,4802,160142],["DeKalb","2021-03-05",793154,4636,164778],["DeKalb","2021-03-06",793154,1851,166629],["DeKalb","2021-03-07",793154,1147,167776],["DeKalb","2021-03-08",793154,4919,172695],["DeKalb","2021-03-09",793154,5345,178040],["DeKalb","2021-03-10",793154,5935,183975],["DeKalb","2021-03-11",793154,6265,190240],["DeKalb","2021-03-12",793154,6193,196433],["DeKalb","2021-03-13",793154,2632,199065],["DeKalb","2021-03-14",793154,1932,200997],["DeKalb","2021-03-15",793154,6026,207023],["DeKalb","2021-03-16",793154,7426,214449],["DeKalb","2021-03-17",793154,7206,221655],["DeKalb","2021-03-18",793154,7671,229326],["DeKalb","2021-03-19",793154,7393,236719],["DeKalb","2021-03-20",793154,3863,240582],["DeKalb","2021-03-21",793154,1736,242318],["DeKalb","2021-03-22",793154,6310,248628],["DeKalb","2021-03-23",793154,7259,255887],["DeKalb","2021-03-24",793154,7659,263546],["DeKalb","2021-03-25",793154,8709,272255],["DeKalb","2021-03-26",793154,8272,280527],["DeKalb","2021-03-27",793154,4986,285513],["DeKalb","2021-03-28",793154,2284,287797],["DeKalb","2021-03-29",793154,7892,295689],["DeKalb","2021-03-30",793154,10013,305702],["DeKalb","2021-03-31",793154,10646,316348],["DeKalb","2021-04-01",793154,10082,326430],["DeKalb","2021-04-02",793154,8038,334468],["DeKalb","2021-04-03",793154,3776,338244],["DeKalb","2021-04-04",793154,1770,340014],["DeKalb","2021-04-05",793154,7404,347418],["DeKalb","2021-04-06",793154,10199,357617],["DeKalb","2021-04-07",793154,9954,367571],["DeKalb","2021-04-08",793154,9559,377130],["DeKalb","2021-04-09",793154,10259,387389],["DeKalb","2021-04-10",793154,5940,393329],["DeKalb","2021-04-11",793154,2071,395400],["DeKalb","2021-04-12",793154,8542,403942],["DeKalb","2021-04-13",793154,8926,412868],["DeKalb","2021-04-14",793154,9482,422350],["DeKalb","2021-04-15",793154,9248,431598],["DeKalb","2021-04-16",793154,7493,439091],["DeKalb","2021-04-17",793154,4422,443513],["DeKalb","2021-04-18",793154,4082,447595],["DeKalb","2021-04-19",793154,7891,455486],["DeKalb","2021-04-20",793154,8645,464131],["DeKalb","2021-04-21",793154,8946,473077],["DeKalb","2021-04-22",793154,8397,481474],["DeKalb","2021-04-23",793154,7923,489397],["DeKalb","2021-04-24",793154,3879,493276],["DeKalb","2021-04-25",793154,1847,495123],["DeKalb","2021-04-26",793154,6290,501413],["DeKalb","2021-04-27",793154,5798,507211],["DeKalb","2021-04-28",793154,8663,515874],["DeKalb","2021-04-29",793154,7203,523077],["DeKalb","2021-04-30",793154,7978,531055],["DeKalb","2021-05-01",793154,5071,536126],["DeKalb","2021-05-02",793154,1358,537484],["DeKalb","2021-05-03",793154,4188,541672],["DeKalb","2021-05-04",793154,5419,547091],["DeKalb","2021-05-05",793154,5102,552193],["DeKalb","2021-05-06",793154,4445,556638],["DeKalb","2021-05-07",793154,4870,561508],["DeKalb","2021-05-08",793154,2347,563855],["DeKalb","2021-05-09",793154,962,564817],["DeKalb","2021-05-10",793154,3551,568368],["DeKalb","2021-05-11",793154,4283,572651],["DeKalb","2021-05-12",793154,4642,577293],["DeKalb","2021-05-13",793154,3906,581199],["DeKalb","2021-05-14",793154,4572,585771],["DeKalb","2021-05-15",793154,3554,589325],["DeKalb","2021-05-16",793154,1763,591088],["DeKalb","2021-05-17",793154,3631,594719],["DeKalb","2021-05-18",793154,3537,598256],["DeKalb","2021-05-19",793154,4208,602464],["DeKalb","2021-05-20",793154,3266,605730],["DeKalb","2021-05-21",793154,3812,609542],["DeKalb","2021-05-22",793154,2731,612273],["DeKalb","2021-05-23",793154,1335,613608],["DeKalb","2021-05-24",793154,2337,615945],["DeKalb","2021-05-25",793154,2488,618433],["DeKalb","2021-05-26",793154,2866,621299],["DeKalb","2021-05-27",793154,2243,623542],["DeKalb","2021-05-28",793154,2742,626284],["DeKalb","2021-05-29",793154,1379,627663],["DeKalb","2021-05-30",793154,824,628487],["DeKalb","2021-05-31",793154,390,628877],["DeKalb","2021-06-01",793154,3024,631901],["DeKalb","2021-06-02",793154,3358,635259],["DeKalb","2021-06-03",793154,2722,637981],["DeKalb","2021-06-04",793154,3230,641211],["DeKalb","2021-06-05",793154,2388,643599],["DeKalb","2021-06-06",793154,1637,645236],["DeKalb","2021-06-07",793154,2444,647680],["DeKalb","2021-06-08",793154,2273,649953],["DeKalb","2021-06-09",793154,2527,652480],["DeKalb","2021-06-10",793154,2254,654734],["DeKalb","2021-06-11",793154,2513,657247],["DeKalb","2021-06-12",793154,1801,659048],["DeKalb","2021-06-13",793154,969,660017],["DeKalb","2021-06-14",793154,1845,661862],["DeKalb","2021-06-15",793154,1809,663671],["DeKalb","2021-06-16",793154,1940,665611],["DeKalb","2021-06-17",793154,1720,667331],["DeKalb","2021-06-18",793154,1989,669320],["DeKalb","2021-06-19",793154,1166,670486],["DeKalb","2021-06-20",793154,657,671143],["DeKalb","2021-06-21",793154,1126,672269],["DeKalb","2021-06-22",793154,1555,673824],["DeKalb","2021-06-23",793154,1694,675518],["DeKalb","2021-06-24",793154,1333,676851],["DeKalb","2021-06-25",793154,1754,678605],["DeKalb","2021-06-26",793154,1198,679803],["DeKalb","2021-06-27",793154,834,680637],["DeKalb","2021-06-28",793154,1281,681918],["DeKalb","2021-06-29",793154,1378,683296],["DeKalb","2021-06-30",793154,1390,684686],["DeKalb","2021-07-01",793154,1228,685914],["DeKalb","2021-07-02",793154,1429,687343],["DeKalb","2021-07-03",793154,927,688270],["DeKalb","2021-07-04",793154,93,688363],["DeKalb","2021-07-05",793154,996,689359],["DeKalb","2021-07-06",793154,1196,690555],["DeKalb","2021-07-07",793154,1295,691850],["DeKalb","2021-07-08",793154,1123,692973],["DeKalb","2021-07-09",793154,1457,694430],["DeKalb","2021-07-10",793154,983,695413],["DeKalb","2021-07-11",793154,657,696070],["DeKalb","2021-07-12",793154,1057,697127],["DeKalb","2021-07-13",793154,1073,698200],["DeKalb","2021-07-14",793154,1239,699439],["DeKalb","2021-07-15",793154,1206,700645],["DeKalb","2021-07-16",793154,1336,701981],["DeKalb","2021-07-17",793154,912,702893],["DeKalb","2021-07-18",793154,631,703524],["DeKalb","2021-07-19",793154,1358,704882],["DeKalb","2021-07-20",793154,1330,706212],["DeKalb","2021-07-21",793154,1453,707665],["DeKalb","2021-07-22",793154,1371,709036],["DeKalb","2021-07-23",793154,1753,710789],["DeKalb","2021-07-24",793154,1327,712116],["DeKalb","2021-07-25",793154,695,712811],["DeKalb","2021-07-26",793154,1461,714272],["DeKalb","2021-07-27",793154,1491,715763],["DeKalb","2021-07-28",793154,1644,717407],["DeKalb","2021-07-29",793154,1538,718945],["DeKalb","2021-07-30",793154,1800,720745],["DeKalb","2021-07-31",793154,1562,722307],["DeKalb","2021-08-01",793154,982,723289],["DeKalb","2021-08-02",793154,1553,724842],["DeKalb","2021-08-03",793154,1489,726331],["DeKalb","2021-08-04",793154,1664,727995],["DeKalb","2021-08-05",793154,1598,729593],["DeKalb","2021-08-06",793154,1993,731586],["DeKalb","2021-08-07",793154,1495,733081],["DeKalb","2021-08-08",793154,1106,734187],["DeKalb","2021-08-09",793154,1686,735873],["DeKalb","2021-08-10",793154,1794,737667],["DeKalb","2021-08-11",793154,1625,739292],["DeKalb","2021-08-12",793154,1797,741089],["DeKalb","2021-08-13",793154,1838,742927],["DeKalb","2021-08-14",793154,2182,745109],["DeKalb","2021-08-15",793154,1184,746293],["DeKalb","2021-08-16",793154,1754,748047],["DeKalb","2021-08-17",793154,1772,749819],["DeKalb","2021-08-18",793154,1912,751731],["DeKalb","2021-08-19",793154,1783,753514],["DeKalb","2021-08-20",793154,2274,755788],["DeKalb","2021-08-21",793154,2148,757936],["DeKalb","2021-08-22",793154,1112,759048],["DeKalb","2021-08-23",793154,1819,760867],["DeKalb","2021-08-24",793154,1757,762624],["DeKalb","2021-08-25",793154,1824,764448],["DeKalb","2021-08-26",793154,1957,766405],["DeKalb","2021-08-27",793154,2095,768500],["DeKalb","2021-08-28",793154,2520,771020],["DeKalb","2021-08-29",793154,1080,772100],["DeKalb","2021-08-30",793154,1885,773985],["DeKalb","2021-08-31",793154,1704,775689],["DeKalb","2021-09-01",793154,1765,777454],["DeKalb","2021-09-02",793154,1791,779245],["DeKalb","2021-09-03",793154,1957,781202],["DeKalb","2021-09-04",793154,1400,782602],["DeKalb","2021-09-05",793154,1008,783610],["DeKalb","2021-09-06",793154,243,783853],["DeKalb","2021-09-07",793154,1782,785635],["DeKalb","2021-09-08",793154,1663,787298],["DeKalb","2021-09-09",793154,1675,788973],["DeKalb","2021-09-10",793154,1897,790870],["DeKalb","2021-09-11",793154,1447,792317],["DeKalb","2021-09-12",793154,931,793248],["DeKalb","2021-09-13",793154,1397,794645],["DeKalb","2021-09-14",793154,1393,796038],["DeKalb","2021-09-15",793154,1313,797351],["DeKalb","2021-09-16",793154,1279,798630],["DeKalb","2021-09-17",793154,1487,800117],["DeKalb","2021-09-18",793154,1176,801293],["DeKalb","2021-09-19",793154,783,802076],["DeKalb","2021-09-20",793154,1297,803373],["DeKalb","2021-09-21",793154,1229,804602],["DeKalb","2021-09-22",793154,1070,805672],["DeKalb","2021-09-23",793154,1167,806839],["DeKalb","2021-09-24",793154,1578,808417],["DeKalb","2021-09-25",793154,1269,809686],["DeKalb","2021-09-26",793154,900,810586],["DeKalb","2021-09-27",793154,1768,812354],["DeKalb","2021-09-28",793154,1985,814339],["DeKalb","2021-09-29",793154,1748,816087],["DeKalb","2021-09-30",793154,1827,817914],["DeKalb","2021-10-01",793154,2164,820078],["DeKalb","2021-10-02",793154,2062,822140],["DeKalb","2021-10-03",793154,828,822968],["DeKalb","2021-10-04",793154,1680,824648],["DeKalb","2021-10-05",793154,1589,826237],["DeKalb","2021-10-06",793154,1511,827748],["DeKalb","2021-10-07",793154,1770,829518],["DeKalb","2021-10-08",793154,1829,831347],["DeKalb","2021-10-09",793154,1252,832599],["DeKalb","2021-10-10",793154,821,833420],["DeKalb","2021-10-11",793154,1516,834936],["DeKalb","2021-10-12",793154,1525,836461],["DeKalb","2021-10-13",793154,1543,838004],["DeKalb","2021-10-14",793154,1663,839667],["DeKalb","2021-10-15",793154,1864,841531],["DeKalb","2021-10-16",793154,1105,842636],["DeKalb","2021-10-17",793154,692,843328],["DeKalb","2021-10-18",793154,1629,844957],["DeKalb","2021-10-19",793154,1571,846528],["DeKalb","2021-10-20",793154,1306,847834],["DeKalb","2021-10-21",793154,1495,849329],["DeKalb","2021-10-22",793154,2266,851595],["DeKalb","2021-10-23",793154,1894,853489],["DeKalb","2021-10-24",793154,1035,854524],["DeKalb","2021-10-25",793154,2908,857432],["DeKalb","2021-10-26",793154,2345,859777],["DeKalb","2021-10-27",793154,2547,862324],["DeKalb","2021-10-28",793154,2707,865031],["DeKalb","2021-10-29",793154,2808,867839],["DeKalb","2021-10-30",793154,1834,869673],["DeKalb","2021-10-31",793154,891,870564],["DeKalb","2021-11-01",793154,2310,872874],["DeKalb","2021-11-02",793154,2522,875396],["DeKalb","2021-11-03",793154,2838,878234],["DeKalb","2021-11-04",793154,3169,881403],["DeKalb","2021-11-05",793154,3868,885271],["DeKalb","2021-11-06",793154,2058,887329],["DeKalb","2021-11-07",793154,1511,888840],["DeKalb","2021-11-08",793154,2491,891331],["DeKalb","2021-11-09",793154,2990,894321],["DeKalb","2021-11-10",793154,2838,897159],["DeKalb","2021-11-11",793154,2761,899920],["DeKalb","2021-11-12",793154,3127,903047],["DeKalb","2021-11-13",793154,2188,905235],["DeKalb","2021-11-14",793154,1226,906461],["DeKalb","2021-11-15",793154,2557,909018],["DeKalb","2021-11-16",793154,2881,911899],["DeKalb","2021-11-17",793154,2685,914584],["DeKalb","2021-11-18",793154,2843,917427],["DeKalb","2021-11-19",793154,3382,920809],["DeKalb","2021-11-20",793154,2618,923427],["DeKalb","2021-11-21",793154,1398,924825],["DeKalb","2021-11-22",793154,3282,928107],["DeKalb","2021-11-23",793154,3194,931301],["DeKalb","2021-11-24",793154,2654,933955],["DeKalb","2021-11-25",793154,15,933970],["DeKalb","2021-11-26",793154,3273,937243],["DeKalb","2021-11-27",793154,1952,939195],["DeKalb","2021-11-28",793154,1519,940714],["DeKalb","2021-11-29",793154,2933,943647],["DeKalb","2021-11-30",793154,3560,947207],["DeKalb","2021-12-01",793154,3804,951011],["DeKalb","2021-12-02",793154,4015,955026],["DeKalb","2021-12-03",793154,4430,959456],["DeKalb","2021-12-04",793154,3529,962985],["DeKalb","2021-12-05",793154,1490,964475],["DeKalb","2021-12-06",793154,3150,967625],["DeKalb","2021-12-07",793154,3571,971196],["DeKalb","2021-12-08",793154,3175,974371],["DeKalb","2021-12-09",793154,3171,977542],["DeKalb","2021-12-10",793154,3525,981067],["DeKalb","2021-12-11",793154,2262,983329],["DeKalb","2021-12-12",793154,1338,984667],["DeKalb","2021-12-13",793154,2699,987366],["DeKalb","2021-12-14",793154,2891,990257],["DeKalb","2021-12-15",793154,2701,992958],["DeKalb","2021-12-16",793154,2812,995770],["DeKalb","2021-12-17",793154,3198,998968],["DeKalb","2021-12-18",793154,2447,1001415],["DeKalb","2021-12-19",793154,1409,1002824],["DeKalb","2021-12-20",793154,3408,1006232],["DeKalb","2021-12-21",793154,3280,1009512],["DeKalb","2021-12-22",793154,3359,1012871],["DeKalb","2021-12-23",793154,2851,1015722],["DeKalb","2021-12-24",793154,838,1016560],["DeKalb","2021-12-25",793154,24,1016584],["DeKalb","2021-12-26",793154,921,1017505],["DeKalb","2021-12-27",793154,2631,1020136],["DeKalb","2021-12-28",793154,2909,1023045],["DeKalb","2021-12-29",793154,2810,1025855],["DeKalb","2021-12-30",793154,2275,1028130],["DeKalb","2021-12-31",793154,1117,1029247],["DeKalb","2022-01-01",793154,214,1029461],["DeKalb","2022-01-02",793154,739,1030200],["DeKalb","2022-01-03",793154,920,1031120],["Dodge","2020-12-13",20385,1,1],["Dodge","2020-12-16",20385,1,2],["Dodge","2020-12-18",20385,4,6],["Dodge","2020-12-19",20385,1,7],["Dodge","2020-12-20",20385,2,9],["Dodge","2020-12-21",20385,3,12],["Dodge","2020-12-22",20385,4,16],["Dodge","2020-12-23",20385,8,24],["Dodge","2020-12-24",20385,5,29],["Dodge","2020-12-26",20385,1,30],["Dodge","2020-12-28",20385,7,37],["Dodge","2020-12-29",20385,34,71],["Dodge","2020-12-30",20385,17,88],["Dodge","2020-12-31",20385,10,98],["Dodge","2021-01-01",20385,3,101],["Dodge","2021-01-02",20385,2,103],["Dodge","2021-01-03",20385,33,136],["Dodge","2021-01-04",20385,37,173],["Dodge","2021-01-05",20385,60,233],["Dodge","2021-01-06",20385,48,281],["Dodge","2021-01-07",20385,30,311],["Dodge","2021-01-08",20385,65,376],["Dodge","2021-01-09",20385,12,388],["Dodge","2021-01-10",20385,1,389],["Dodge","2021-01-11",20385,87,476],["Dodge","2021-01-12",20385,115,591],["Dodge","2021-01-13",20385,300,891],["Dodge","2021-01-14",20385,50,941],["Dodge","2021-01-15",20385,27,968],["Dodge","2021-01-16",20385,1,969],["Dodge","2021-01-17",20385,5,974],["Dodge","2021-01-18",20385,39,1013],["Dodge","2021-01-19",20385,172,1185],["Dodge","2021-01-20",20385,450,1635],["Dodge","2021-01-21",20385,83,1718],["Dodge","2021-01-22",20385,36,1754],["Dodge","2021-01-23",20385,4,1758],["Dodge","2021-01-24",20385,40,1798],["Dodge","2021-01-25",20385,51,1849],["Dodge","2021-01-26",20385,42,1891],["Dodge","2021-01-27",20385,71,1962],["Dodge","2021-01-28",20385,62,2024],["Dodge","2021-01-29",20385,26,2050],["Dodge","2021-01-30",20385,36,2086],["Dodge","2021-01-31",20385,1,2087],["Dodge","2021-02-01",20385,31,2118],["Dodge","2021-02-02",20385,131,2249],["Dodge","2021-02-03",20385,297,2546],["Dodge","2021-02-04",20385,54,2600],["Dodge","2021-02-05",20385,44,2644],["Dodge","2021-02-06",20385,17,2661],["Dodge","2021-02-07",20385,1,2662],["Dodge","2021-02-08",20385,82,2744],["Dodge","2021-02-09",20385,56,2800],["Dodge","2021-02-10",20385,239,3039],["Dodge","2021-02-11",20385,79,3118],["Dodge","2021-02-12",20385,56,3174],["Dodge","2021-02-13",20385,6,3180],["Dodge","2021-02-14",20385,4,3184],["Dodge","2021-02-15",20385,70,3254],["Dodge","2021-02-16",20385,215,3469],["Dodge","2021-02-17",20385,392,3861],["Dodge","2021-02-18",20385,68,3929],["Dodge","2021-02-19",20385,26,3955],["Dodge","2021-02-21",20385,2,3957],["Dodge","2021-02-22",20385,41,3998],["Dodge","2021-02-23",20385,45,4043],["Dodge","2021-02-24",20385,427,4470],["Dodge","2021-02-25",20385,85,4555],["Dodge","2021-02-26",20385,38,4593],["Dodge","2021-02-27",20385,44,4637],["Dodge","2021-02-28",20385,2,4639],["Dodge","2021-03-01",20385,40,4679],["Dodge","2021-03-02",20385,62,4741],["Dodge","2021-03-03",20385,290,5031],["Dodge","2021-03-04",20385,44,5075],["Dodge","2021-03-05",20385,23,5098],["Dodge","2021-03-06",20385,3,5101],["Dodge","2021-03-07",20385,4,5105],["Dodge","2021-03-08",20385,39,5144],["Dodge","2021-03-09",20385,57,5201],["Dodge","2021-03-10",20385,201,5402],["Dodge","2021-03-11",20385,80,5482],["Dodge","2021-03-12",20385,134,5616],["Dodge","2021-03-13",20385,19,5635],["Dodge","2021-03-14",20385,7,5642],["Dodge","2021-03-15",20385,222,5864],["Dodge","2021-03-16",20385,57,5921],["Dodge","2021-03-17",20385,254,6175],["Dodge","2021-03-18",20385,88,6263],["Dodge","2021-03-19",20385,32,6295],["Dodge","2021-03-20",20385,11,6306],["Dodge","2021-03-21",20385,2,6308],["Dodge","2021-03-22",20385,34,6342],["Dodge","2021-03-23",20385,35,6377],["Dodge","2021-03-24",20385,217,6594],["Dodge","2021-03-25",20385,87,6681],["Dodge","2021-03-26",20385,53,6734],["Dodge","2021-03-27",20385,19,6753],["Dodge","2021-03-28",20385,10,6763],["Dodge","2021-03-29",20385,42,6805],["Dodge","2021-03-30",20385,73,6878],["Dodge","2021-03-31",20385,116,6994],["Dodge","2021-04-01",20385,85,7079],["Dodge","2021-04-02",20385,43,7122],["Dodge","2021-04-03",20385,19,7141],["Dodge","2021-04-04",20385,11,7152],["Dodge","2021-04-05",20385,44,7196],["Dodge","2021-04-06",20385,48,7244],["Dodge","2021-04-07",20385,183,7427],["Dodge","2021-04-08",20385,102,7529],["Dodge","2021-04-09",20385,32,7561],["Dodge","2021-04-10",20385,30,7591],["Dodge","2021-04-11",20385,11,7602],["Dodge","2021-04-12",20385,46,7648],["Dodge","2021-04-13",20385,45,7693],["Dodge","2021-04-14",20385,178,7871],["Dodge","2021-04-15",20385,106,7977],["Dodge","2021-04-16",20385,36,8013],["Dodge","2021-04-17",20385,18,8031],["Dodge","2021-04-18",20385,2,8033],["Dodge","2021-04-19",20385,24,8057],["Dodge","2021-04-20",20385,51,8108],["Dodge","2021-04-21",20385,231,8339],["Dodge","2021-04-22",20385,64,8403],["Dodge","2021-04-23",20385,46,8449],["Dodge","2021-04-24",20385,18,8467],["Dodge","2021-04-25",20385,8,8475],["Dodge","2021-04-26",20385,25,8500],["Dodge","2021-04-27",20385,61,8561],["Dodge","2021-04-28",20385,155,8716],["Dodge","2021-04-29",20385,73,8789],["Dodge","2021-04-30",20385,47,8836],["Dodge","2021-05-01",20385,24,8860],["Dodge","2021-05-02",20385,5,8865],["Dodge","2021-05-03",20385,28,8893],["Dodge","2021-05-04",20385,24,8917],["Dodge","2021-05-05",20385,105,9022],["Dodge","2021-05-06",20385,54,9076],["Dodge","2021-05-07",20385,33,9109],["Dodge","2021-05-08",20385,12,9121],["Dodge","2021-05-09",20385,5,9126],["Dodge","2021-05-10",20385,29,9155],["Dodge","2021-05-11",20385,25,9180],["Dodge","2021-05-12",20385,78,9258],["Dodge","2021-05-13",20385,60,9318],["Dodge","2021-05-14",20385,35,9353],["Dodge","2021-05-15",20385,23,9376],["Dodge","2021-05-16",20385,6,9382],["Dodge","2021-05-17",20385,35,9417],["Dodge","2021-05-18",20385,39,9456],["Dodge","2021-05-19",20385,86,9542],["Dodge","2021-05-20",20385,50,9592],["Dodge","2021-05-21",20385,32,9624],["Dodge","2021-05-22",20385,20,9644],["Dodge","2021-05-23",20385,10,9654],["Dodge","2021-05-24",20385,12,9666],["Dodge","2021-05-25",20385,22,9688],["Dodge","2021-05-26",20385,43,9731],["Dodge","2021-05-27",20385,35,9766],["Dodge","2021-05-28",20385,24,9790],["Dodge","2021-05-29",20385,5,9795],["Dodge","2021-05-30",20385,3,9798],["Dodge","2021-05-31",20385,5,9803],["Dodge","2021-06-01",20385,27,9830],["Dodge","2021-06-02",20385,48,9878],["Dodge","2021-06-03",20385,22,9900],["Dodge","2021-06-04",20385,40,9940],["Dodge","2021-06-05",20385,11,9951],["Dodge","2021-06-06",20385,7,9958],["Dodge","2021-06-07",20385,31,9989],["Dodge","2021-06-08",20385,19,10008],["Dodge","2021-06-09",20385,31,10039],["Dodge","2021-06-10",20385,25,10064],["Dodge","2021-06-11",20385,26,10090],["Dodge","2021-06-12",20385,13,10103],["Dodge","2021-06-13",20385,8,10111],["Dodge","2021-06-14",20385,23,10134],["Dodge","2021-06-15",20385,22,10156],["Dodge","2021-06-16",20385,36,10192],["Dodge","2021-06-17",20385,28,10220],["Dodge","2021-06-18",20385,17,10237],["Dodge","2021-06-19",20385,12,10249],["Dodge","2021-06-20",20385,8,10257],["Dodge","2021-06-21",20385,18,10275],["Dodge","2021-06-22",20385,20,10295],["Dodge","2021-06-23",20385,17,10312],["Dodge","2021-06-24",20385,17,10329],["Dodge","2021-06-25",20385,28,10357],["Dodge","2021-06-26",20385,9,10366],["Dodge","2021-06-27",20385,2,10368],["Dodge","2021-06-28",20385,16,10384],["Dodge","2021-06-29",20385,13,10397],["Dodge","2021-06-30",20385,25,10422],["Dodge","2021-07-01",20385,19,10441],["Dodge","2021-07-02",20385,17,10458],["Dodge","2021-07-03",20385,11,10469],["Dodge","2021-07-04",20385,2,10471],["Dodge","2021-07-05",20385,11,10482],["Dodge","2021-07-06",20385,20,10502],["Dodge","2021-07-07",20385,19,10521],["Dodge","2021-07-08",20385,30,10551],["Dodge","2021-07-09",20385,17,10568],["Dodge","2021-07-10",20385,7,10575],["Dodge","2021-07-11",20385,8,10583],["Dodge","2021-07-12",20385,24,10607],["Dodge","2021-07-13",20385,19,10626],["Dodge","2021-07-14",20385,14,10640],["Dodge","2021-07-15",20385,27,10667],["Dodge","2021-07-16",20385,19,10686],["Dodge","2021-07-17",20385,8,10694],["Dodge","2021-07-19",20385,27,10721],["Dodge","2021-07-20",20385,36,10757],["Dodge","2021-07-21",20385,28,10785],["Dodge","2021-07-22",20385,21,10806],["Dodge","2021-07-23",20385,30,10836],["Dodge","2021-07-24",20385,18,10854],["Dodge","2021-07-25",20385,9,10863],["Dodge","2021-07-26",20385,42,10905],["Dodge","2021-07-27",20385,52,10957],["Dodge","2021-07-28",20385,49,11006],["Dodge","2021-07-29",20385,39,11045],["Dodge","2021-07-30",20385,50,11095],["Dodge","2021-07-31",20385,12,11107],["Dodge","2021-08-01",20385,11,11118],["Dodge","2021-08-02",20385,46,11164],["Dodge","2021-08-03",20385,45,11209],["Dodge","2021-08-04",20385,44,11253],["Dodge","2021-08-05",20385,37,11290],["Dodge","2021-08-06",20385,52,11342],["Dodge","2021-08-07",20385,12,11354],["Dodge","2021-08-08",20385,18,11372],["Dodge","2021-08-09",20385,68,11440],["Dodge","2021-08-10",20385,88,11528],["Dodge","2021-08-11",20385,54,11582],["Dodge","2021-08-12",20385,53,11635],["Dodge","2021-08-13",20385,69,11704],["Dodge","2021-08-14",20385,40,11744],["Dodge","2021-08-15",20385,24,11768],["Dodge","2021-08-16",20385,64,11832],["Dodge","2021-08-17",20385,51,11883],["Dodge","2021-08-18",20385,55,11938],["Dodge","2021-08-19",20385,54,11992],["Dodge","2021-08-20",20385,79,12071],["Dodge","2021-08-21",20385,30,12101],["Dodge","2021-08-22",20385,16,12117],["Dodge","2021-08-23",20385,62,12179],["Dodge","2021-08-24",20385,54,12233],["Dodge","2021-08-25",20385,71,12304],["Dodge","2021-08-26",20385,83,12387],["Dodge","2021-08-27",20385,74,12461],["Dodge","2021-08-28",20385,30,12491],["Dodge","2021-08-29",20385,17,12508],["Dodge","2021-08-30",20385,57,12565],["Dodge","2021-08-31",20385,65,12630],["Dodge","2021-09-01",20385,66,12696],["Dodge","2021-09-02",20385,65,12761],["Dodge","2021-09-03",20385,65,12826],["Dodge","2021-09-04",20385,34,12860],["Dodge","2021-09-05",20385,18,12878],["Dodge","2021-09-06",20385,16,12894],["Dodge","2021-09-07",20385,87,12981],["Dodge","2021-09-08",20385,59,13040],["Dodge","2021-09-09",20385,48,13088],["Dodge","2021-09-10",20385,78,13166],["Dodge","2021-09-11",20385,34,13200],["Dodge","2021-09-12",20385,15,13215],["Dodge","2021-09-13",20385,39,13254],["Dodge","2021-09-14",20385,45,13299],["Dodge","2021-09-15",20385,43,13342],["Dodge","2021-09-16",20385,44,13386],["Dodge","2021-09-17",20385,62,13448],["Dodge","2021-09-18",20385,20,13468],["Dodge","2021-09-19",20385,12,13480],["Dodge","2021-09-20",20385,40,13520],["Dodge","2021-09-21",20385,31,13551],["Dodge","2021-09-22",20385,34,13585],["Dodge","2021-09-23",20385,45,13630],["Dodge","2021-09-24",20385,42,13672],["Dodge","2021-09-25",20385,16,13688],["Dodge","2021-09-26",20385,9,13697],["Dodge","2021-09-27",20385,28,13725],["Dodge","2021-09-28",20385,37,13762],["Dodge","2021-09-29",20385,37,13799],["Dodge","2021-09-30",20385,39,13838],["Dodge","2021-10-01",20385,43,13881],["Dodge","2021-10-02",20385,22,13903],["Dodge","2021-10-03",20385,10,13913],["Dodge","2021-10-04",20385,19,13932],["Dodge","2021-10-05",20385,30,13962],["Dodge","2021-10-06",20385,23,13985],["Dodge","2021-10-07",20385,21,14006],["Dodge","2021-10-08",20385,42,14048],["Dodge","2021-10-09",20385,7,14055],["Dodge","2021-10-10",20385,6,14061],["Dodge","2021-10-11",20385,13,14074],["Dodge","2021-10-12",20385,22,14096],["Dodge","2021-10-13",20385,30,14126],["Dodge","2021-10-14",20385,17,14143],["Dodge","2021-10-15",20385,23,14166],["Dodge","2021-10-16",20385,8,14174],["Dodge","2021-10-17",20385,1,14175],["Dodge","2021-10-18",20385,20,14195],["Dodge","2021-10-19",20385,8,14203],["Dodge","2021-10-20",20385,28,14231],["Dodge","2021-10-21",20385,15,14246],["Dodge","2021-10-22",20385,30,14276],["Dodge","2021-10-23",20385,23,14299],["Dodge","2021-10-24",20385,6,14305],["Dodge","2021-10-25",20385,39,14344],["Dodge","2021-10-26",20385,50,14394],["Dodge","2021-10-27",20385,84,14478],["Dodge","2021-10-28",20385,99,14577],["Dodge","2021-10-29",20385,55,14632],["Dodge","2021-10-30",20385,15,14647],["Dodge","2021-10-31",20385,7,14654],["Dodge","2021-11-01",20385,49,14703],["Dodge","2021-11-02",20385,61,14764],["Dodge","2021-11-03",20385,109,14873],["Dodge","2021-11-04",20385,83,14956],["Dodge","2021-11-05",20385,59,15015],["Dodge","2021-11-06",20385,16,15031],["Dodge","2021-11-07",20385,8,15039],["Dodge","2021-11-08",20385,49,15088],["Dodge","2021-11-09",20385,74,15162],["Dodge","2021-11-10",20385,101,15263],["Dodge","2021-11-11",20385,27,15290],["Dodge","2021-11-12",20385,42,15332],["Dodge","2021-11-13",20385,14,15346],["Dodge","2021-11-14",20385,5,15351],["Dodge","2021-11-15",20385,42,15393],["Dodge","2021-11-16",20385,44,15437],["Dodge","2021-11-17",20385,155,15592],["Dodge","2021-11-18",20385,86,15678],["Dodge","2021-11-19",20385,60,15738],["Dodge","2021-11-20",20385,17,15755],["Dodge","2021-11-21",20385,8,15763],["Dodge","2021-11-22",20385,42,15805],["Dodge","2021-11-23",20385,52,15857],["Dodge","2021-11-24",20385,26,15883],["Dodge","2021-11-26",20385,24,15907],["Dodge","2021-11-27",20385,14,15921],["Dodge","2021-11-28",20385,5,15926],["Dodge","2021-11-29",20385,55,15981],["Dodge","2021-11-30",20385,48,16029],["Dodge","2021-12-01",20385,95,16124],["Dodge","2021-12-02",20385,86,16210],["Dodge","2021-12-03",20385,72,16282],["Dodge","2021-12-04",20385,15,16297],["Dodge","2021-12-05",20385,4,16301],["Dodge","2021-12-06",20385,38,16339],["Dodge","2021-12-07",20385,50,16389],["Dodge","2021-12-08",20385,51,16440],["Dodge","2021-12-09",20385,45,16485],["Dodge","2021-12-10",20385,47,16532],["Dodge","2021-12-11",20385,11,16543],["Dodge","2021-12-12",20385,1,16544],["Dodge","2021-12-13",20385,27,16571],["Dodge","2021-12-14",20385,32,16603],["Dodge","2021-12-15",20385,49,16652],["Dodge","2021-12-16",20385,37,16689],["Dodge","2021-12-17",20385,46,16735],["Dodge","2021-12-18",20385,15,16750],["Dodge","2021-12-19",20385,11,16761],["Dodge","2021-12-20",20385,46,16807],["Dodge","2021-12-21",20385,45,16852],["Dodge","2021-12-22",20385,56,16908],["Dodge","2021-12-23",20385,21,16929],["Dodge","2021-12-24",20385,2,16931],["Dodge","2021-12-26",20385,2,16933],["Dodge","2021-12-27",20385,39,16972],["Dodge","2021-12-28",20385,65,17037],["Dodge","2021-12-29",20385,43,17080],["Dodge","2021-12-30",20385,100,17180],["Dodge","2021-12-31",20385,15,17195],["Dodge","2022-01-01",20385,5,17200],["Dodge","2022-01-02",20385,5,17205],["Dodge","2022-01-03",20385,22,17227],["Dooly","2020-12-18",13400,1,1],["Dooly","2020-12-21",13400,3,4],["Dooly","2020-12-22",13400,6,10],["Dooly","2020-12-23",13400,12,22],["Dooly","2020-12-24",13400,7,29],["Dooly","2020-12-26",13400,3,32],["Dooly","2020-12-27",13400,2,34],["Dooly","2020-12-28",13400,19,53],["Dooly","2020-12-29",13400,17,70],["Dooly","2020-12-30",13400,32,102],["Dooly","2020-12-31",13400,8,110],["Dooly","2021-01-01",13400,35,145],["Dooly","2021-01-03",13400,2,147],["Dooly","2021-01-04",13400,37,184],["Dooly","2021-01-05",13400,79,263],["Dooly","2021-01-06",13400,10,273],["Dooly","2021-01-07",13400,7,280],["Dooly","2021-01-08",13400,10,290],["Dooly","2021-01-10",13400,3,293],["Dooly","2021-01-11",13400,47,340],["Dooly","2021-01-12",13400,54,394],["Dooly","2021-01-13",13400,63,457],["Dooly","2021-01-14",13400,218,675],["Dooly","2021-01-15",13400,46,721],["Dooly","2021-01-16",13400,1,722],["Dooly","2021-01-17",13400,3,725],["Dooly","2021-01-18",13400,188,913],["Dooly","2021-01-19",13400,85,998],["Dooly","2021-01-20",13400,121,1119],["Dooly","2021-01-21",13400,56,1175],["Dooly","2021-01-22",13400,58,1233],["Dooly","2021-01-24",13400,2,1235],["Dooly","2021-01-25",13400,16,1251],["Dooly","2021-01-26",13400,26,1277],["Dooly","2021-01-27",13400,57,1334],["Dooly","2021-01-28",13400,38,1372],["Dooly","2021-01-29",13400,32,1404],["Dooly","2021-01-30",13400,2,1406],["Dooly","2021-02-01",13400,19,1425],["Dooly","2021-02-02",13400,119,1544],["Dooly","2021-02-03",13400,124,1668],["Dooly","2021-02-04",13400,51,1719],["Dooly","2021-02-05",13400,30,1749],["Dooly","2021-02-06",13400,3,1752],["Dooly","2021-02-07",13400,2,1754],["Dooly","2021-02-08",13400,42,1796],["Dooly","2021-02-09",13400,44,1840],["Dooly","2021-02-10",13400,36,1876],["Dooly","2021-02-11",13400,74,1950],["Dooly","2021-02-12",13400,62,2012],["Dooly","2021-02-13",13400,19,2031],["Dooly","2021-02-14",13400,2,2033],["Dooly","2021-02-15",13400,37,2070],["Dooly","2021-02-16",13400,48,2118],["Dooly","2021-02-17",13400,45,2163],["Dooly","2021-02-18",13400,471,2634],["Dooly","2021-02-19",13400,54,2688],["Dooly","2021-02-22",13400,74,2762],["Dooly","2021-02-23",13400,52,2814],["Dooly","2021-02-24",13400,54,2868],["Dooly","2021-02-25",13400,68,2936],["Dooly","2021-02-26",13400,53,2989],["Dooly","2021-02-27",13400,4,2993],["Dooly","2021-02-28",13400,3,2996],["Dooly","2021-03-01",13400,56,3052],["Dooly","2021-03-02",13400,39,3091],["Dooly","2021-03-03",13400,41,3132],["Dooly","2021-03-04",13400,41,3173],["Dooly","2021-03-05",13400,177,3350],["Dooly","2021-03-06",13400,7,3357],["Dooly","2021-03-07",13400,6,3363],["Dooly","2021-03-08",13400,76,3439],["Dooly","2021-03-09",13400,29,3468],["Dooly","2021-03-10",13400,55,3523],["Dooly","2021-03-11",13400,58,3581],["Dooly","2021-03-12",13400,71,3652],["Dooly","2021-03-13",13400,6,3658],["Dooly","2021-03-14",13400,5,3663],["Dooly","2021-03-15",13400,48,3711],["Dooly","2021-03-16",13400,103,3814],["Dooly","2021-03-17",13400,21,3835],["Dooly","2021-03-18",13400,33,3868],["Dooly","2021-03-19",13400,148,4016],["Dooly","2021-03-20",13400,7,4023],["Dooly","2021-03-21",13400,6,4029],["Dooly","2021-03-22",13400,143,4172],["Dooly","2021-03-23",13400,46,4218],["Dooly","2021-03-24",13400,55,4273],["Dooly","2021-03-25",13400,92,4365],["Dooly","2021-03-26",13400,89,4454],["Dooly","2021-03-27",13400,10,4464],["Dooly","2021-03-28",13400,8,4472],["Dooly","2021-03-29",13400,67,4539],["Dooly","2021-03-30",13400,81,4620],["Dooly","2021-03-31",13400,45,4665],["Dooly","2021-04-01",13400,97,4762],["Dooly","2021-04-02",13400,38,4800],["Dooly","2021-04-03",13400,19,4819],["Dooly","2021-04-04",13400,5,4824],["Dooly","2021-04-05",13400,111,4935],["Dooly","2021-04-06",13400,60,4995],["Dooly","2021-04-07",13400,28,5023],["Dooly","2021-04-08",13400,103,5126],["Dooly","2021-04-09",13400,89,5215],["Dooly","2021-04-10",13400,11,5226],["Dooly","2021-04-11",13400,5,5231],["Dooly","2021-04-12",13400,70,5301],["Dooly","2021-04-13",13400,83,5384],["Dooly","2021-04-14",13400,30,5414],["Dooly","2021-04-15",13400,111,5525],["Dooly","2021-04-16",13400,56,5581],["Dooly","2021-04-17",13400,4,5585],["Dooly","2021-04-18",13400,5,5590],["Dooly","2021-04-19",13400,81,5671],["Dooly","2021-04-20",13400,35,5706],["Dooly","2021-04-21",13400,58,5764],["Dooly","2021-04-22",13400,71,5835],["Dooly","2021-04-23",13400,76,5911],["Dooly","2021-04-24",13400,16,5927],["Dooly","2021-04-25",13400,4,5931],["Dooly","2021-04-26",13400,43,5974],["Dooly","2021-04-27",13400,58,6032],["Dooly","2021-04-28",13400,41,6073],["Dooly","2021-04-29",13400,69,6142],["Dooly","2021-04-30",13400,29,6171],["Dooly","2021-05-01",13400,8,6179],["Dooly","2021-05-02",13400,5,6184],["Dooly","2021-05-03",13400,33,6217],["Dooly","2021-05-04",13400,33,6250],["Dooly","2021-05-05",13400,23,6273],["Dooly","2021-05-06",13400,52,6325],["Dooly","2021-05-07",13400,76,6401],["Dooly","2021-05-08",13400,6,6407],["Dooly","2021-05-09",13400,7,6414],["Dooly","2021-05-10",13400,46,6460],["Dooly","2021-05-11",13400,20,6480],["Dooly","2021-05-12",13400,26,6506],["Dooly","2021-05-13",13400,23,6529],["Dooly","2021-05-14",13400,13,6542],["Dooly","2021-05-15",13400,14,6556],["Dooly","2021-05-16",13400,4,6560],["Dooly","2021-05-17",13400,28,6588],["Dooly","2021-05-18",13400,27,6615],["Dooly","2021-05-19",13400,28,6643],["Dooly","2021-05-20",13400,52,6695],["Dooly","2021-05-21",13400,29,6724],["Dooly","2021-05-22",13400,10,6734],["Dooly","2021-05-23",13400,2,6736],["Dooly","2021-05-24",13400,18,6754],["Dooly","2021-05-25",13400,33,6787],["Dooly","2021-05-26",13400,26,6813],["Dooly","2021-05-27",13400,17,6830],["Dooly","2021-05-28",13400,10,6840],["Dooly","2021-05-29",13400,3,6843],["Dooly","2021-05-30",13400,4,6847],["Dooly","2021-06-01",13400,33,6880],["Dooly","2021-06-02",13400,22,6902],["Dooly","2021-06-03",13400,30,6932],["Dooly","2021-06-04",13400,11,6943],["Dooly","2021-06-05",13400,6,6949],["Dooly","2021-06-06",13400,7,6956],["Dooly","2021-06-07",13400,20,6976],["Dooly","2021-06-08",13400,10,6986],["Dooly","2021-06-09",13400,25,7011],["Dooly","2021-06-10",13400,29,7040],["Dooly","2021-06-11",13400,28,7068],["Dooly","2021-06-12",13400,11,7079],["Dooly","2021-06-13",13400,3,7082],["Dooly","2021-06-14",13400,13,7095],["Dooly","2021-06-15",13400,20,7115],["Dooly","2021-06-16",13400,32,7147],["Dooly","2021-06-17",13400,8,7155],["Dooly","2021-06-18",13400,19,7174],["Dooly","2021-06-19",13400,5,7179],["Dooly","2021-06-21",13400,9,7188],["Dooly","2021-06-22",13400,11,7199],["Dooly","2021-06-23",13400,16,7215],["Dooly","2021-06-24",13400,12,7227],["Dooly","2021-06-25",13400,18,7245],["Dooly","2021-06-26",13400,5,7250],["Dooly","2021-06-27",13400,2,7252],["Dooly","2021-06-28",13400,6,7258],["Dooly","2021-06-29",13400,9,7267],["Dooly","2021-06-30",13400,22,7289],["Dooly","2021-07-01",13400,16,7305],["Dooly","2021-07-02",13400,10,7315],["Dooly","2021-07-03",13400,4,7319],["Dooly","2021-07-04",13400,3,7322],["Dooly","2021-07-05",13400,6,7328],["Dooly","2021-07-06",13400,10,7338],["Dooly","2021-07-07",13400,29,7367],["Dooly","2021-07-08",13400,22,7389],["Dooly","2021-07-09",13400,10,7399],["Dooly","2021-07-10",13400,7,7406],["Dooly","2021-07-11",13400,2,7408],["Dooly","2021-07-12",13400,16,7424],["Dooly","2021-07-13",13400,11,7435],["Dooly","2021-07-14",13400,16,7451],["Dooly","2021-07-15",13400,12,7463],["Dooly","2021-07-16",13400,17,7480],["Dooly","2021-07-17",13400,4,7484],["Dooly","2021-07-18",13400,1,7485],["Dooly","2021-07-19",13400,17,7502],["Dooly","2021-07-20",13400,11,7513],["Dooly","2021-07-21",13400,25,7538],["Dooly","2021-07-22",13400,24,7562],["Dooly","2021-07-23",13400,27,7589],["Dooly","2021-07-24",13400,12,7601],["Dooly","2021-07-25",13400,6,7607],["Dooly","2021-07-26",13400,17,7624],["Dooly","2021-07-27",13400,14,7638],["Dooly","2021-07-28",13400,24,7662],["Dooly","2021-07-29",13400,21,7683],["Dooly","2021-07-30",13400,21,7704],["Dooly","2021-07-31",13400,6,7710],["Dooly","2021-08-01",13400,5,7715],["Dooly","2021-08-02",13400,19,7734],["Dooly","2021-08-03",13400,23,7757],["Dooly","2021-08-04",13400,25,7782],["Dooly","2021-08-05",13400,30,7812],["Dooly","2021-08-06",13400,45,7857],["Dooly","2021-08-07",13400,12,7869],["Dooly","2021-08-08",13400,2,7871],["Dooly","2021-08-09",13400,32,7903],["Dooly","2021-08-10",13400,37,7940],["Dooly","2021-08-11",13400,38,7978],["Dooly","2021-08-12",13400,41,8019],["Dooly","2021-08-13",13400,41,8060],["Dooly","2021-08-14",13400,15,8075],["Dooly","2021-08-15",13400,6,8081],["Dooly","2021-08-16",13400,42,8123],["Dooly","2021-08-17",13400,41,8164],["Dooly","2021-08-18",13400,54,8218],["Dooly","2021-08-19",13400,24,8242],["Dooly","2021-08-20",13400,46,8288],["Dooly","2021-08-21",13400,16,8304],["Dooly","2021-08-22",13400,9,8313],["Dooly","2021-08-23",13400,32,8345],["Dooly","2021-08-24",13400,33,8378],["Dooly","2021-08-25",13400,20,8398],["Dooly","2021-08-26",13400,50,8448],["Dooly","2021-08-27",13400,54,8502],["Dooly","2021-08-28",13400,13,8515],["Dooly","2021-08-29",13400,9,8524],["Dooly","2021-08-30",13400,37,8561],["Dooly","2021-08-31",13400,36,8597],["Dooly","2021-09-01",13400,42,8639],["Dooly","2021-09-02",13400,58,8697],["Dooly","2021-09-03",13400,52,8749],["Dooly","2021-09-04",13400,17,8766],["Dooly","2021-09-05",13400,10,8776],["Dooly","2021-09-06",13400,4,8780],["Dooly","2021-09-07",13400,60,8840],["Dooly","2021-09-08",13400,62,8902],["Dooly","2021-09-09",13400,53,8955],["Dooly","2021-09-10",13400,51,9006],["Dooly","2021-09-11",13400,29,9035],["Dooly","2021-09-12",13400,10,9045],["Dooly","2021-09-13",13400,44,9089],["Dooly","2021-09-14",13400,37,9126],["Dooly","2021-09-15",13400,34,9160],["Dooly","2021-09-16",13400,45,9205],["Dooly","2021-09-17",13400,50,9255],["Dooly","2021-09-18",13400,13,9268],["Dooly","2021-09-19",13400,9,9277],["Dooly","2021-09-20",13400,29,9306],["Dooly","2021-09-21",13400,24,9330],["Dooly","2021-09-22",13400,27,9357],["Dooly","2021-09-23",13400,30,9387],["Dooly","2021-09-24",13400,36,9423],["Dooly","2021-09-25",13400,19,9442],["Dooly","2021-09-26",13400,14,9456],["Dooly","2021-09-27",13400,19,9475],["Dooly","2021-09-28",13400,34,9509],["Dooly","2021-09-29",13400,30,9539],["Dooly","2021-09-30",13400,14,9553],["Dooly","2021-10-01",13400,30,9583],["Dooly","2021-10-02",13400,8,9591],["Dooly","2021-10-03",13400,6,9597],["Dooly","2021-10-04",13400,18,9615],["Dooly","2021-10-05",13400,19,9634],["Dooly","2021-10-06",13400,22,9656],["Dooly","2021-10-07",13400,26,9682],["Dooly","2021-10-08",13400,36,9718],["Dooly","2021-10-09",13400,6,9724],["Dooly","2021-10-10",13400,6,9730],["Dooly","2021-10-11",13400,18,9748],["Dooly","2021-10-12",13400,25,9773],["Dooly","2021-10-13",13400,29,9802],["Dooly","2021-10-14",13400,21,9823],["Dooly","2021-10-15",13400,29,9852],["Dooly","2021-10-16",13400,11,9863],["Dooly","2021-10-17",13400,1,9864],["Dooly","2021-10-18",13400,25,9889],["Dooly","2021-10-19",13400,11,9900],["Dooly","2021-10-20",13400,16,9916],["Dooly","2021-10-21",13400,14,9930],["Dooly","2021-10-22",13400,23,9953],["Dooly","2021-10-23",13400,12,9965],["Dooly","2021-10-24",13400,4,9969],["Dooly","2021-10-25",13400,42,10011],["Dooly","2021-10-26",13400,99,10110],["Dooly","2021-10-27",13400,114,10224],["Dooly","2021-10-28",13400,45,10269],["Dooly","2021-10-29",13400,55,10324],["Dooly","2021-10-30",13400,19,10343],["Dooly","2021-10-31",13400,8,10351],["Dooly","2021-11-01",13400,62,10413],["Dooly","2021-11-02",13400,67,10480],["Dooly","2021-11-03",13400,50,10530],["Dooly","2021-11-04",13400,43,10573],["Dooly","2021-11-05",13400,45,10618],["Dooly","2021-11-06",13400,5,10623],["Dooly","2021-11-07",13400,3,10626],["Dooly","2021-11-08",13400,65,10691],["Dooly","2021-11-09",13400,41,10732],["Dooly","2021-11-10",13400,36,10768],["Dooly","2021-11-11",13400,26,10794],["Dooly","2021-11-12",13400,43,10837],["Dooly","2021-11-13",13400,8,10845],["Dooly","2021-11-14",13400,6,10851],["Dooly","2021-11-15",13400,31,10882],["Dooly","2021-11-16",13400,55,10937],["Dooly","2021-11-17",13400,44,10981],["Dooly","2021-11-18",13400,29,11010],["Dooly","2021-11-19",13400,24,11034],["Dooly","2021-11-20",13400,16,11050],["Dooly","2021-11-21",13400,7,11057],["Dooly","2021-11-22",13400,38,11095],["Dooly","2021-11-23",13400,27,11122],["Dooly","2021-11-24",13400,16,11138],["Dooly","2021-11-26",13400,15,11153],["Dooly","2021-11-27",13400,9,11162],["Dooly","2021-11-28",13400,4,11166],["Dooly","2021-11-29",13400,37,11203],["Dooly","2021-11-30",13400,35,11238],["Dooly","2021-12-01",13400,49,11287],["Dooly","2021-12-02",13400,60,11347],["Dooly","2021-12-03",13400,45,11392],["Dooly","2021-12-04",13400,13,11405],["Dooly","2021-12-05",13400,4,11409],["Dooly","2021-12-06",13400,26,11435],["Dooly","2021-12-07",13400,38,11473],["Dooly","2021-12-08",13400,19,11492],["Dooly","2021-12-09",13400,30,11522],["Dooly","2021-12-10",13400,42,11564],["Dooly","2021-12-11",13400,10,11574],["Dooly","2021-12-12",13400,3,11577],["Dooly","2021-12-13",13400,27,11604],["Dooly","2021-12-14",13400,29,11633],["Dooly","2021-12-15",13400,19,11652],["Dooly","2021-12-16",13400,35,11687],["Dooly","2021-12-17",13400,30,11717],["Dooly","2021-12-18",13400,6,11723],["Dooly","2021-12-19",13400,4,11727],["Dooly","2021-12-20",13400,22,11749],["Dooly","2021-12-21",13400,29,11778],["Dooly","2021-12-22",13400,23,11801],["Dooly","2021-12-23",13400,12,11813],["Dooly","2021-12-24",13400,2,11815],["Dooly","2021-12-26",13400,4,11819],["Dooly","2021-12-27",13400,38,11857],["Dooly","2021-12-28",13400,53,11910],["Dooly","2021-12-29",13400,46,11956],["Dooly","2021-12-30",13400,32,11988],["Dooly","2021-12-31",13400,7,11995],["Dooly","2022-01-01",13400,3,11998],["Dooly","2022-01-02",13400,6,12004],["Dooly","2022-01-03",13400,8,12012],["Dougherty","2020-12-12",89905,1,1],["Dougherty","2020-12-16",89905,2,3],["Dougherty","2020-12-17",89905,63,66],["Dougherty","2020-12-18",89905,158,224],["Dougherty","2020-12-19",89905,56,280],["Dougherty","2020-12-20",89905,34,314],["Dougherty","2020-12-21",89905,94,408],["Dougherty","2020-12-22",89905,129,537],["Dougherty","2020-12-23",89905,117,654],["Dougherty","2020-12-24",89905,23,677],["Dougherty","2020-12-26",89905,42,719],["Dougherty","2020-12-27",89905,5,724],["Dougherty","2020-12-28",89905,92,816],["Dougherty","2020-12-29",89905,90,906],["Dougherty","2020-12-30",89905,122,1028],["Dougherty","2020-12-31",89905,65,1093],["Dougherty","2021-01-01",89905,27,1120],["Dougherty","2021-01-02",89905,6,1126],["Dougherty","2021-01-03",89905,7,1133],["Dougherty","2021-01-04",89905,87,1220],["Dougherty","2021-01-05",89905,90,1310],["Dougherty","2021-01-06",89905,126,1436],["Dougherty","2021-01-07",89905,203,1639],["Dougherty","2021-01-08",89905,218,1857],["Dougherty","2021-01-09",89905,40,1897],["Dougherty","2021-01-10",89905,83,1980],["Dougherty","2021-01-11",89905,592,2572],["Dougherty","2021-01-12",89905,737,3309],["Dougherty","2021-01-13",89905,767,4076],["Dougherty","2021-01-14",89905,763,4839],["Dougherty","2021-01-15",89905,738,5577],["Dougherty","2021-01-16",89905,551,6128],["Dougherty","2021-01-17",89905,40,6168],["Dougherty","2021-01-18",89905,864,7032],["Dougherty","2021-01-19",89905,794,7826],["Dougherty","2021-01-20",89905,712,8538],["Dougherty","2021-01-21",89905,713,9251],["Dougherty","2021-01-22",89905,611,9862],["Dougherty","2021-01-23",89905,164,10026],["Dougherty","2021-01-24",89905,13,10039],["Dougherty","2021-01-25",89905,455,10494],["Dougherty","2021-01-26",89905,488,10982],["Dougherty","2021-01-27",89905,425,11407],["Dougherty","2021-01-28",89905,380,11787],["Dougherty","2021-01-29",89905,475,12262],["Dougherty","2021-01-30",89905,42,12304],["Dougherty","2021-01-31",89905,121,12425],["Dougherty","2021-02-01",89905,425,12850],["Dougherty","2021-02-02",89905,519,13369],["Dougherty","2021-02-03",89905,616,13985],["Dougherty","2021-02-04",89905,712,14697],["Dougherty","2021-02-05",89905,760,15457],["Dougherty","2021-02-06",89905,423,15880],["Dougherty","2021-02-07",89905,42,15922],["Dougherty","2021-02-08",89905,808,16730],["Dougherty","2021-02-09",89905,859,17589],["Dougherty","2021-02-10",89905,858,18447],["Dougherty","2021-02-11",89905,763,19210],["Dougherty","2021-02-12",89905,784,19994],["Dougherty","2021-02-13",89905,314,20308],["Dougherty","2021-02-14",89905,12,20320],["Dougherty","2021-02-15",89905,506,20826],["Dougherty","2021-02-16",89905,577,21403],["Dougherty","2021-02-17",89905,519,21922],["Dougherty","2021-02-18",89905,647,22569],["Dougherty","2021-02-19",89905,564,23133],["Dougherty","2021-02-20",89905,141,23274],["Dougherty","2021-02-21",89905,15,23289],["Dougherty","2021-02-22",89905,360,23649],["Dougherty","2021-02-23",89905,671,24320],["Dougherty","2021-02-24",89905,499,24819],["Dougherty","2021-02-25",89905,586,25405],["Dougherty","2021-02-26",89905,552,25957],["Dougherty","2021-02-27",89905,113,26070],["Dougherty","2021-02-28",89905,31,26101],["Dougherty","2021-03-01",89905,461,26562],["Dougherty","2021-03-02",89905,572,27134],["Dougherty","2021-03-03",89905,382,27516],["Dougherty","2021-03-04",89905,435,27951],["Dougherty","2021-03-05",89905,239,28190],["Dougherty","2021-03-06",89905,38,28228],["Dougherty","2021-03-07",89905,34,28262],["Dougherty","2021-03-08",89905,339,28601],["Dougherty","2021-03-09",89905,686,29287],["Dougherty","2021-03-10",89905,462,29749],["Dougherty","2021-03-11",89905,395,30144],["Dougherty","2021-03-12",89905,731,30875],["Dougherty","2021-03-13",89905,210,31085],["Dougherty","2021-03-14",89905,32,31117],["Dougherty","2021-03-15",89905,462,31579],["Dougherty","2021-03-16",89905,909,32488],["Dougherty","2021-03-17",89905,603,33091],["Dougherty","2021-03-18",89905,469,33560],["Dougherty","2021-03-19",89905,678,34238],["Dougherty","2021-03-20",89905,425,34663],["Dougherty","2021-03-21",89905,58,34721],["Dougherty","2021-03-22",89905,281,35002],["Dougherty","2021-03-23",89905,631,35633],["Dougherty","2021-03-24",89905,439,36072],["Dougherty","2021-03-25",89905,618,36690],["Dougherty","2021-03-26",89905,347,37037],["Dougherty","2021-03-27",89905,154,37191],["Dougherty","2021-03-28",89905,76,37267],["Dougherty","2021-03-29",89905,314,37581],["Dougherty","2021-03-30",89905,905,38486],["Dougherty","2021-03-31",89905,608,39094],["Dougherty","2021-04-01",89905,582,39676],["Dougherty","2021-04-02",89905,272,39948],["Dougherty","2021-04-03",89905,74,40022],["Dougherty","2021-04-04",89905,64,40086],["Dougherty","2021-04-05",89905,346,40432],["Dougherty","2021-04-06",89905,1016,41448],["Dougherty","2021-04-07",89905,717,42165],["Dougherty","2021-04-08",89905,755,42920],["Dougherty","2021-04-09",89905,571,43491],["Dougherty","2021-04-10",89905,361,43852],["Dougherty","2021-04-11",89905,56,43908],["Dougherty","2021-04-12",89905,309,44217],["Dougherty","2021-04-13",89905,923,45140],["Dougherty","2021-04-14",89905,351,45491],["Dougherty","2021-04-15",89905,502,45993],["Dougherty","2021-04-16",89905,461,46454],["Dougherty","2021-04-17",89905,58,46512],["Dougherty","2021-04-18",89905,78,46590],["Dougherty","2021-04-19",89905,286,46876],["Dougherty","2021-04-20",89905,869,47745],["Dougherty","2021-04-21",89905,268,48013],["Dougherty","2021-04-22",89905,454,48467],["Dougherty","2021-04-23",89905,447,48914],["Dougherty","2021-04-24",89905,72,48986],["Dougherty","2021-04-25",89905,49,49035],["Dougherty","2021-04-26",89905,223,49258],["Dougherty","2021-04-27",89905,773,50031],["Dougherty","2021-04-28",89905,406,50437],["Dougherty","2021-04-29",89905,530,50967],["Dougherty","2021-04-30",89905,297,51264],["Dougherty","2021-05-01",89905,114,51378],["Dougherty","2021-05-02",89905,73,51451],["Dougherty","2021-05-03",89905,177,51628],["Dougherty","2021-05-04",89905,715,52343],["Dougherty","2021-05-05",89905,267,52610],["Dougherty","2021-05-06",89905,209,52819],["Dougherty","2021-05-07",89905,247,53066],["Dougherty","2021-05-08",89905,113,53179],["Dougherty","2021-05-09",89905,23,53202],["Dougherty","2021-05-10",89905,144,53346],["Dougherty","2021-05-11",89905,372,53718],["Dougherty","2021-05-12",89905,202,53920],["Dougherty","2021-05-13",89905,438,54358],["Dougherty","2021-05-14",89905,207,54565],["Dougherty","2021-05-15",89905,88,54653],["Dougherty","2021-05-16",89905,72,54725],["Dougherty","2021-05-17",89905,216,54941],["Dougherty","2021-05-18",89905,349,55290],["Dougherty","2021-05-19",89905,266,55556],["Dougherty","2021-05-20",89905,550,56106],["Dougherty","2021-05-21",89905,217,56323],["Dougherty","2021-05-22",89905,106,56429],["Dougherty","2021-05-23",89905,76,56505],["Dougherty","2021-05-24",89905,140,56645],["Dougherty","2021-05-25",89905,269,56914],["Dougherty","2021-05-26",89905,187,57101],["Dougherty","2021-05-27",89905,217,57318],["Dougherty","2021-05-28",89905,134,57452],["Dougherty","2021-05-29",89905,81,57533],["Dougherty","2021-05-30",89905,36,57569],["Dougherty","2021-05-31",89905,18,57587],["Dougherty","2021-06-01",89905,284,57871],["Dougherty","2021-06-02",89905,160,58031],["Dougherty","2021-06-03",89905,219,58250],["Dougherty","2021-06-04",89905,144,58394],["Dougherty","2021-06-05",89905,97,58491],["Dougherty","2021-06-06",89905,78,58569],["Dougherty","2021-06-07",89905,163,58732],["Dougherty","2021-06-08",89905,200,58932],["Dougherty","2021-06-09",89905,157,59089],["Dougherty","2021-06-10",89905,236,59325],["Dougherty","2021-06-11",89905,136,59461],["Dougherty","2021-06-12",89905,153,59614],["Dougherty","2021-06-13",89905,39,59653],["Dougherty","2021-06-14",89905,176,59829],["Dougherty","2021-06-15",89905,198,60027],["Dougherty","2021-06-16",89905,146,60173],["Dougherty","2021-06-17",89905,165,60338],["Dougherty","2021-06-18",89905,153,60491],["Dougherty","2021-06-19",89905,92,60583],["Dougherty","2021-06-20",89905,60,60643],["Dougherty","2021-06-21",89905,110,60753],["Dougherty","2021-06-22",89905,188,60941],["Dougherty","2021-06-23",89905,153,61094],["Dougherty","2021-06-24",89905,164,61258],["Dougherty","2021-06-25",89905,131,61389],["Dougherty","2021-06-26",89905,129,61518],["Dougherty","2021-06-27",89905,33,61551],["Dougherty","2021-06-28",89905,126,61677],["Dougherty","2021-06-29",89905,155,61832],["Dougherty","2021-06-30",89905,121,61953],["Dougherty","2021-07-01",89905,156,62109],["Dougherty","2021-07-02",89905,107,62216],["Dougherty","2021-07-03",89905,45,62261],["Dougherty","2021-07-04",89905,10,62271],["Dougherty","2021-07-05",89905,80,62351],["Dougherty","2021-07-06",89905,127,62478],["Dougherty","2021-07-07",89905,124,62602],["Dougherty","2021-07-08",89905,146,62748],["Dougherty","2021-07-09",89905,118,62866],["Dougherty","2021-07-10",89905,95,62961],["Dougherty","2021-07-11",89905,28,62989],["Dougherty","2021-07-12",89905,124,63113],["Dougherty","2021-07-13",89905,132,63245],["Dougherty","2021-07-14",89905,87,63332],["Dougherty","2021-07-15",89905,148,63480],["Dougherty","2021-07-16",89905,156,63636],["Dougherty","2021-07-17",89905,126,63762],["Dougherty","2021-07-18",89905,42,63804],["Dougherty","2021-07-19",89905,122,63926],["Dougherty","2021-07-20",89905,169,64095],["Dougherty","2021-07-21",89905,132,64227],["Dougherty","2021-07-22",89905,208,64435],["Dougherty","2021-07-23",89905,202,64637],["Dougherty","2021-07-24",89905,86,64723],["Dougherty","2021-07-25",89905,50,64773],["Dougherty","2021-07-26",89905,180,64953],["Dougherty","2021-07-27",89905,267,65220],["Dougherty","2021-07-28",89905,251,65471],["Dougherty","2021-07-29",89905,295,65766],["Dougherty","2021-07-30",89905,270,66036],["Dougherty","2021-07-31",89905,148,66184],["Dougherty","2021-08-01",89905,93,66277],["Dougherty","2021-08-02",89905,202,66479],["Dougherty","2021-08-03",89905,241,66720],["Dougherty","2021-08-04",89905,269,66989],["Dougherty","2021-08-05",89905,294,67283],["Dougherty","2021-08-06",89905,318,67601],["Dougherty","2021-08-07",89905,246,67847],["Dougherty","2021-08-08",89905,191,68038],["Dougherty","2021-08-09",89905,274,68312],["Dougherty","2021-08-10",89905,348,68660],["Dougherty","2021-08-11",89905,291,68951],["Dougherty","2021-08-12",89905,346,69297],["Dougherty","2021-08-13",89905,382,69679],["Dougherty","2021-08-14",89905,212,69891],["Dougherty","2021-08-15",89905,153,70044],["Dougherty","2021-08-16",89905,278,70322],["Dougherty","2021-08-17",89905,372,70694],["Dougherty","2021-08-18",89905,374,71068],["Dougherty","2021-08-19",89905,413,71481],["Dougherty","2021-08-20",89905,397,71878],["Dougherty","2021-08-21",89905,191,72069],["Dougherty","2021-08-22",89905,114,72183],["Dougherty","2021-08-23",89905,271,72454],["Dougherty","2021-08-24",89905,345,72799],["Dougherty","2021-08-25",89905,288,73087],["Dougherty","2021-08-26",89905,355,73442],["Dougherty","2021-08-27",89905,358,73800],["Dougherty","2021-08-28",89905,207,74007],["Dougherty","2021-08-29",89905,243,74250],["Dougherty","2021-08-30",89905,313,74563],["Dougherty","2021-08-31",89905,394,74957],["Dougherty","2021-09-01",89905,340,75297],["Dougherty","2021-09-02",89905,323,75620],["Dougherty","2021-09-03",89905,405,76025],["Dougherty","2021-09-04",89905,227,76252],["Dougherty","2021-09-05",89905,139,76391],["Dougherty","2021-09-06",89905,62,76453],["Dougherty","2021-09-07",89905,342,76795],["Dougherty","2021-09-08",89905,314,77109],["Dougherty","2021-09-09",89905,360,77469],["Dougherty","2021-09-10",89905,339,77808],["Dougherty","2021-09-11",89905,170,77978],["Dougherty","2021-09-12",89905,119,78097],["Dougherty","2021-09-13",89905,236,78333],["Dougherty","2021-09-14",89905,324,78657],["Dougherty","2021-09-15",89905,234,78891],["Dougherty","2021-09-16",89905,230,79121],["Dougherty","2021-09-17",89905,282,79403],["Dougherty","2021-09-18",89905,453,79856],["Dougherty","2021-09-19",89905,87,79943],["Dougherty","2021-09-20",89905,175,80118],["Dougherty","2021-09-21",89905,242,80360],["Dougherty","2021-09-22",89905,203,80563],["Dougherty","2021-09-23",89905,252,80815],["Dougherty","2021-09-24",89905,266,81081],["Dougherty","2021-09-25",89905,152,81233],["Dougherty","2021-09-26",89905,72,81305],["Dougherty","2021-09-27",89905,173,81478],["Dougherty","2021-09-28",89905,379,81857],["Dougherty","2021-09-29",89905,367,82224],["Dougherty","2021-09-30",89905,594,82818],["Dougherty","2021-10-01",89905,568,83386],["Dougherty","2021-10-02",89905,289,83675],["Dougherty","2021-10-03",89905,49,83724],["Dougherty","2021-10-04",89905,145,83869],["Dougherty","2021-10-05",89905,532,84401],["Dougherty","2021-10-06",89905,323,84724],["Dougherty","2021-10-07",89905,386,85110],["Dougherty","2021-10-08",89905,405,85515],["Dougherty","2021-10-09",89905,176,85691],["Dougherty","2021-10-10",89905,44,85735],["Dougherty","2021-10-11",89905,124,85859],["Dougherty","2021-10-12",89905,340,86199],["Dougherty","2021-10-13",89905,259,86458],["Dougherty","2021-10-14",89905,242,86700],["Dougherty","2021-10-15",89905,273,86973],["Dougherty","2021-10-16",89905,637,87610],["Dougherty","2021-10-17",89905,34,87644],["Dougherty","2021-10-18",89905,164,87808],["Dougherty","2021-10-19",89905,178,87986],["Dougherty","2021-10-20",89905,118,88104],["Dougherty","2021-10-21",89905,144,88248],["Dougherty","2021-10-22",89905,179,88427],["Dougherty","2021-10-23",89905,100,88527],["Dougherty","2021-10-24",89905,57,88584],["Dougherty","2021-10-25",89905,182,88766],["Dougherty","2021-10-26",89905,263,89029],["Dougherty","2021-10-27",89905,236,89265],["Dougherty","2021-10-28",89905,282,89547],["Dougherty","2021-10-29",89905,230,89777],["Dougherty","2021-10-30",89905,69,89846],["Dougherty","2021-10-31",89905,54,89900],["Dougherty","2021-11-01",89905,210,90110],["Dougherty","2021-11-02",89905,276,90386],["Dougherty","2021-11-03",89905,330,90716],["Dougherty","2021-11-04",89905,259,90975],["Dougherty","2021-11-05",89905,286,91261],["Dougherty","2021-11-06",89905,1004,92265],["Dougherty","2021-11-07",89905,47,92312],["Dougherty","2021-11-08",89905,158,92470],["Dougherty","2021-11-09",89905,224,92694],["Dougherty","2021-11-10",89905,195,92889],["Dougherty","2021-11-11",89905,327,93216],["Dougherty","2021-11-12",89905,194,93410],["Dougherty","2021-11-13",89905,131,93541],["Dougherty","2021-11-14",89905,24,93565],["Dougherty","2021-11-15",89905,240,93805],["Dougherty","2021-11-16",89905,266,94071],["Dougherty","2021-11-17",89905,340,94411],["Dougherty","2021-11-18",89905,298,94709],["Dougherty","2021-11-19",89905,237,94946],["Dougherty","2021-11-20",89905,81,95027],["Dougherty","2021-11-21",89905,64,95091],["Dougherty","2021-11-22",89905,250,95341],["Dougherty","2021-11-23",89905,281,95622],["Dougherty","2021-11-24",89905,137,95759],["Dougherty","2021-11-26",89905,104,95863],["Dougherty","2021-11-27",89905,84,95947],["Dougherty","2021-11-28",89905,45,95992],["Dougherty","2021-11-29",89905,228,96220],["Dougherty","2021-11-30",89905,337,96557],["Dougherty","2021-12-01",89905,274,96831],["Dougherty","2021-12-02",89905,362,97193],["Dougherty","2021-12-03",89905,341,97534],["Dougherty","2021-12-04",89905,252,97786],["Dougherty","2021-12-05",89905,48,97834],["Dougherty","2021-12-06",89905,195,98029],["Dougherty","2021-12-07",89905,291,98320],["Dougherty","2021-12-08",89905,253,98573],["Dougherty","2021-12-09",89905,285,98858],["Dougherty","2021-12-10",89905,300,99158],["Dougherty","2021-12-11",89905,92,99250],["Dougherty","2021-12-12",89905,56,99306],["Dougherty","2021-12-13",89905,186,99492],["Dougherty","2021-12-14",89905,256,99748],["Dougherty","2021-12-15",89905,183,99931],["Dougherty","2021-12-16",89905,254,100185],["Dougherty","2021-12-17",89905,249,100434],["Dougherty","2021-12-18",89905,83,100517],["Dougherty","2021-12-19",89905,54,100571],["Dougherty","2021-12-20",89905,247,100818],["Dougherty","2021-12-21",89905,309,101127],["Dougherty","2021-12-22",89905,255,101382],["Dougherty","2021-12-23",89905,173,101555],["Dougherty","2021-12-24",89905,47,101602],["Dougherty","2021-12-26",89905,51,101653],["Dougherty","2021-12-27",89905,215,101868],["Dougherty","2021-12-28",89905,274,102142],["Dougherty","2021-12-29",89905,250,102392],["Dougherty","2021-12-30",89905,337,102729],["Dougherty","2021-12-31",89905,118,102847],["Dougherty","2022-01-01",89905,22,102869],["Dougherty","2022-01-02",89905,55,102924],["Dougherty","2022-01-03",89905,92,103016],["Douglas","2020-12-17",151906,8,8],["Douglas","2020-12-18",151906,23,31],["Douglas","2020-12-19",151906,15,46],["Douglas","2020-12-20",151906,20,66],["Douglas","2020-12-21",151906,65,131],["Douglas","2020-12-22",151906,168,299],["Douglas","2020-12-23",151906,149,448],["Douglas","2020-12-24",151906,16,464],["Douglas","2020-12-26",151906,5,469],["Douglas","2020-12-27",151906,11,480],["Douglas","2020-12-28",151906,145,625],["Douglas","2020-12-29",151906,132,757],["Douglas","2020-12-30",151906,150,907],["Douglas","2020-12-31",151906,66,973],["Douglas","2021-01-01",151906,24,997],["Douglas","2021-01-02",151906,27,1024],["Douglas","2021-01-03",151906,16,1040],["Douglas","2021-01-04",151906,193,1233],["Douglas","2021-01-05",151906,168,1401],["Douglas","2021-01-06",151906,111,1512],["Douglas","2021-01-07",151906,210,1722],["Douglas","2021-01-08",151906,176,1898],["Douglas","2021-01-09",151906,70,1968],["Douglas","2021-01-10",151906,53,2021],["Douglas","2021-01-11",151906,240,2261],["Douglas","2021-01-12",151906,304,2565],["Douglas","2021-01-13",151906,364,2929],["Douglas","2021-01-14",151906,374,3303],["Douglas","2021-01-15",151906,312,3615],["Douglas","2021-01-16",151906,183,3798],["Douglas","2021-01-17",151906,102,3900],["Douglas","2021-01-18",151906,343,4243],["Douglas","2021-01-19",151906,513,4756],["Douglas","2021-01-20",151906,555,5311],["Douglas","2021-01-21",151906,412,5723],["Douglas","2021-01-22",151906,440,6163],["Douglas","2021-01-23",151906,126,6289],["Douglas","2021-01-24",151906,52,6341],["Douglas","2021-01-25",151906,525,6866],["Douglas","2021-01-26",151906,468,7334],["Douglas","2021-01-27",151906,616,7950],["Douglas","2021-01-28",151906,701,8651],["Douglas","2021-01-29",151906,414,9065],["Douglas","2021-01-30",151906,139,9204],["Douglas","2021-01-31",151906,79,9283],["Douglas","2021-02-01",151906,353,9636],["Douglas","2021-02-02",151906,431,10067],["Douglas","2021-02-03",151906,411,10478],["Douglas","2021-02-04",151906,536,11014],["Douglas","2021-02-05",151906,375,11389],["Douglas","2021-02-06",151906,104,11493],["Douglas","2021-02-07",151906,39,11532],["Douglas","2021-02-08",151906,366,11898],["Douglas","2021-02-09",151906,494,12392],["Douglas","2021-02-10",151906,466,12858],["Douglas","2021-02-11",151906,395,13253],["Douglas","2021-02-12",151906,460,13713],["Douglas","2021-02-13",151906,349,14062],["Douglas","2021-02-14",151906,93,14155],["Douglas","2021-02-15",151906,424,14579],["Douglas","2021-02-16",151906,466,15045],["Douglas","2021-02-17",151906,709,15754],["Douglas","2021-02-18",151906,569,16323],["Douglas","2021-02-19",151906,551,16874],["Douglas","2021-02-20",151906,105,16979],["Douglas","2021-02-21",151906,24,17003],["Douglas","2021-02-22",151906,343,17346],["Douglas","2021-02-23",151906,582,17928],["Douglas","2021-02-24",151906,530,18458],["Douglas","2021-02-25",151906,689,19147],["Douglas","2021-02-26",151906,775,19922],["Douglas","2021-02-27",151906,297,20219],["Douglas","2021-02-28",151906,133,20352],["Douglas","2021-03-01",151906,576,20928],["Douglas","2021-03-02",151906,558,21486],["Douglas","2021-03-03",151906,712,22198],["Douglas","2021-03-04",151906,594,22792],["Douglas","2021-03-05",151906,648,23440],["Douglas","2021-03-06",151906,234,23674],["Douglas","2021-03-07",151906,138,23812],["Douglas","2021-03-08",151906,570,24382],["Douglas","2021-03-09",151906,799,25181],["Douglas","2021-03-10",151906,775,25956],["Douglas","2021-03-11",151906,625,26581],["Douglas","2021-03-12",151906,947,27528],["Douglas","2021-03-13",151906,597,28125],["Douglas","2021-03-14",151906,138,28263],["Douglas","2021-03-15",151906,775,29038],["Douglas","2021-03-16",151906,1033,30071],["Douglas","2021-03-17",151906,1084,31155],["Douglas","2021-03-18",151906,739,31894],["Douglas","2021-03-19",151906,959,32853],["Douglas","2021-03-20",151906,438,33291],["Douglas","2021-03-21",151906,252,33543],["Douglas","2021-03-22",151906,601,34144],["Douglas","2021-03-23",151906,1107,35251],["Douglas","2021-03-24",151906,1030,36281],["Douglas","2021-03-25",151906,1175,37456],["Douglas","2021-03-26",151906,869,38325],["Douglas","2021-03-27",151906,526,38851],["Douglas","2021-03-28",151906,346,39197],["Douglas","2021-03-29",151906,921,40118],["Douglas","2021-03-30",151906,1344,41462],["Douglas","2021-03-31",151906,1498,42960],["Douglas","2021-04-01",151906,1437,44397],["Douglas","2021-04-02",151906,1056,45453],["Douglas","2021-04-03",151906,612,46065],["Douglas","2021-04-04",151906,334,46399],["Douglas","2021-04-05",151906,1095,47494],["Douglas","2021-04-06",151906,1664,49158],["Douglas","2021-04-07",151906,1328,50486],["Douglas","2021-04-08",151906,1525,52011],["Douglas","2021-04-09",151906,1277,53288],["Douglas","2021-04-10",151906,812,54100],["Douglas","2021-04-11",151906,302,54402],["Douglas","2021-04-12",151906,1294,55696],["Douglas","2021-04-13",151906,1387,57083],["Douglas","2021-04-14",151906,1506,58589],["Douglas","2021-04-15",151906,1163,59752],["Douglas","2021-04-16",151906,1700,61452],["Douglas","2021-04-17",151906,397,61849],["Douglas","2021-04-18",151906,416,62265],["Douglas","2021-04-19",151906,1107,63372],["Douglas","2021-04-20",151906,1237,64609],["Douglas","2021-04-21",151906,1314,65923],["Douglas","2021-04-22",151906,1225,67148],["Douglas","2021-04-23",151906,1181,68329],["Douglas","2021-04-24",151906,584,68913],["Douglas","2021-04-25",151906,250,69163],["Douglas","2021-04-26",151906,1075,70238],["Douglas","2021-04-27",151906,1055,71293],["Douglas","2021-04-28",151906,1210,72503],["Douglas","2021-04-29",151906,1023,73526],["Douglas","2021-04-30",151906,1218,74744],["Douglas","2021-05-01",151906,725,75469],["Douglas","2021-05-02",151906,241,75710],["Douglas","2021-05-03",151906,884,76594],["Douglas","2021-05-04",151906,882,77476],["Douglas","2021-05-05",151906,967,78443],["Douglas","2021-05-06",151906,751,79194],["Douglas","2021-05-07",151906,921,80115],["Douglas","2021-05-08",151906,438,80553],["Douglas","2021-05-09",151906,198,80751],["Douglas","2021-05-10",151906,584,81335],["Douglas","2021-05-11",151906,779,82114],["Douglas","2021-05-12",151906,636,82750],["Douglas","2021-05-13",151906,655,83405],["Douglas","2021-05-14",151906,770,84175],["Douglas","2021-05-15",151906,680,84855],["Douglas","2021-05-16",151906,216,85071],["Douglas","2021-05-17",151906,586,85657],["Douglas","2021-05-18",151906,603,86260],["Douglas","2021-05-19",151906,746,87006],["Douglas","2021-05-20",151906,568,87574],["Douglas","2021-05-21",151906,749,88323],["Douglas","2021-05-22",151906,448,88771],["Douglas","2021-05-23",151906,177,88948],["Douglas","2021-05-24",151906,347,89295],["Douglas","2021-05-25",151906,419,89714],["Douglas","2021-05-26",151906,497,90211],["Douglas","2021-05-27",151906,437,90648],["Douglas","2021-05-28",151906,427,91075],["Douglas","2021-05-29",151906,238,91313],["Douglas","2021-05-30",151906,161,91474],["Douglas","2021-05-31",151906,58,91532],["Douglas","2021-06-01",151906,495,92027],["Douglas","2021-06-02",151906,486,92513],["Douglas","2021-06-03",151906,425,92938],["Douglas","2021-06-04",151906,530,93468],["Douglas","2021-06-05",151906,416,93884],["Douglas","2021-06-06",151906,164,94048],["Douglas","2021-06-07",151906,373,94421],["Douglas","2021-06-08",151906,365,94786],["Douglas","2021-06-09",151906,385,95171],["Douglas","2021-06-10",151906,396,95567],["Douglas","2021-06-11",151906,478,96045],["Douglas","2021-06-12",151906,351,96396],["Douglas","2021-06-13",151906,151,96547],["Douglas","2021-06-14",151906,361,96908],["Douglas","2021-06-15",151906,294,97202],["Douglas","2021-06-16",151906,372,97574],["Douglas","2021-06-17",151906,312,97886],["Douglas","2021-06-18",151906,376,98262],["Douglas","2021-06-19",151906,248,98510],["Douglas","2021-06-20",151906,120,98630],["Douglas","2021-06-21",151906,256,98886],["Douglas","2021-06-22",151906,360,99246],["Douglas","2021-06-23",151906,408,99654],["Douglas","2021-06-24",151906,245,99899],["Douglas","2021-06-25",151906,286,100185],["Douglas","2021-06-26",151906,198,100383],["Douglas","2021-06-27",151906,110,100493],["Douglas","2021-06-28",151906,213,100706],["Douglas","2021-06-29",151906,221,100927],["Douglas","2021-06-30",151906,232,101159],["Douglas","2021-07-01",151906,266,101425],["Douglas","2021-07-02",151906,233,101658],["Douglas","2021-07-03",151906,180,101838],["Douglas","2021-07-04",151906,13,101851],["Douglas","2021-07-05",151906,231,102082],["Douglas","2021-07-06",151906,226,102308],["Douglas","2021-07-07",151906,230,102538],["Douglas","2021-07-08",151906,249,102787],["Douglas","2021-07-09",151906,254,103041],["Douglas","2021-07-10",151906,187,103228],["Douglas","2021-07-11",151906,107,103335],["Douglas","2021-07-12",151906,290,103625],["Douglas","2021-07-13",151906,321,103946],["Douglas","2021-07-14",151906,310,104256],["Douglas","2021-07-15",151906,181,104437],["Douglas","2021-07-16",151906,291,104728],["Douglas","2021-07-17",151906,220,104948],["Douglas","2021-07-18",151906,127,105075],["Douglas","2021-07-19",151906,246,105321],["Douglas","2021-07-20",151906,261,105582],["Douglas","2021-07-21",151906,274,105856],["Douglas","2021-07-22",151906,252,106108],["Douglas","2021-07-23",151906,377,106485],["Douglas","2021-07-24",151906,261,106746],["Douglas","2021-07-25",151906,156,106902],["Douglas","2021-07-26",151906,341,107243],["Douglas","2021-07-27",151906,333,107576],["Douglas","2021-07-28",151906,351,107927],["Douglas","2021-07-29",151906,385,108312],["Douglas","2021-07-30",151906,417,108729],["Douglas","2021-07-31",151906,238,108967],["Douglas","2021-08-01",151906,183,109150],["Douglas","2021-08-02",151906,384,109534],["Douglas","2021-08-03",151906,346,109880],["Douglas","2021-08-04",151906,353,110233],["Douglas","2021-08-05",151906,339,110572],["Douglas","2021-08-06",151906,460,111032],["Douglas","2021-08-07",151906,320,111352],["Douglas","2021-08-08",151906,208,111560],["Douglas","2021-08-09",151906,325,111885],["Douglas","2021-08-10",151906,390,112275],["Douglas","2021-08-11",151906,324,112599],["Douglas","2021-08-12",151906,389,112988],["Douglas","2021-08-13",151906,402,113390],["Douglas","2021-08-14",151906,355,113745],["Douglas","2021-08-15",151906,190,113935],["Douglas","2021-08-16",151906,407,114342],["Douglas","2021-08-17",151906,390,114732],["Douglas","2021-08-18",151906,408,115140],["Douglas","2021-08-19",151906,410,115550],["Douglas","2021-08-20",151906,485,116035],["Douglas","2021-08-21",151906,360,116395],["Douglas","2021-08-22",151906,141,116536],["Douglas","2021-08-23",151906,420,116956],["Douglas","2021-08-24",151906,369,117325],["Douglas","2021-08-25",151906,379,117704],["Douglas","2021-08-26",151906,397,118101],["Douglas","2021-08-27",151906,514,118615],["Douglas","2021-08-28",151906,365,118980],["Douglas","2021-08-29",151906,203,119183],["Douglas","2021-08-30",151906,435,119618],["Douglas","2021-08-31",151906,346,119964],["Douglas","2021-09-01",151906,358,120322],["Douglas","2021-09-02",151906,392,120714],["Douglas","2021-09-03",151906,463,121177],["Douglas","2021-09-04",151906,309,121486],["Douglas","2021-09-05",151906,150,121636],["Douglas","2021-09-06",151906,38,121674],["Douglas","2021-09-07",151906,404,122078],["Douglas","2021-09-08",151906,347,122425],["Douglas","2021-09-09",151906,372,122797],["Douglas","2021-09-10",151906,430,123227],["Douglas","2021-09-11",151906,311,123538],["Douglas","2021-09-12",151906,158,123696],["Douglas","2021-09-13",151906,374,124070],["Douglas","2021-09-14",151906,351,124421],["Douglas","2021-09-15",151906,332,124753],["Douglas","2021-09-16",151906,316,125069],["Douglas","2021-09-17",151906,309,125378],["Douglas","2021-09-18",151906,250,125628],["Douglas","2021-09-19",151906,123,125751],["Douglas","2021-09-20",151906,247,125998],["Douglas","2021-09-21",151906,229,126227],["Douglas","2021-09-22",151906,240,126467],["Douglas","2021-09-23",151906,243,126710],["Douglas","2021-09-24",151906,340,127050],["Douglas","2021-09-25",151906,224,127274],["Douglas","2021-09-26",151906,117,127391],["Douglas","2021-09-27",151906,293,127684],["Douglas","2021-09-28",151906,330,128014],["Douglas","2021-09-29",151906,340,128354],["Douglas","2021-09-30",151906,280,128634],["Douglas","2021-10-01",151906,345,128979],["Douglas","2021-10-02",151906,204,129183],["Douglas","2021-10-03",151906,120,129303],["Douglas","2021-10-04",151906,313,129616],["Douglas","2021-10-05",151906,308,129924],["Douglas","2021-10-06",151906,301,130225],["Douglas","2021-10-07",151906,247,130472],["Douglas","2021-10-08",151906,274,130746],["Douglas","2021-10-09",151906,189,130935],["Douglas","2021-10-10",151906,123,131058],["Douglas","2021-10-11",151906,213,131271],["Douglas","2021-10-12",151906,267,131538],["Douglas","2021-10-13",151906,206,131744],["Douglas","2021-10-14",151906,205,131949],["Douglas","2021-10-15",151906,284,132233],["Douglas","2021-10-16",151906,143,132376],["Douglas","2021-10-17",151906,83,132459],["Douglas","2021-10-18",151906,245,132704],["Douglas","2021-10-19",151906,248,132952],["Douglas","2021-10-20",151906,242,133194],["Douglas","2021-10-21",151906,261,133455],["Douglas","2021-10-22",151906,457,133912],["Douglas","2021-10-23",151906,282,134194],["Douglas","2021-10-24",151906,130,134324],["Douglas","2021-10-25",151906,483,134807],["Douglas","2021-10-26",151906,403,135210],["Douglas","2021-10-27",151906,447,135657],["Douglas","2021-10-28",151906,389,136046],["Douglas","2021-10-29",151906,425,136471],["Douglas","2021-10-30",151906,201,136672],["Douglas","2021-10-31",151906,114,136786],["Douglas","2021-11-01",151906,352,137138],["Douglas","2021-11-02",151906,366,137504],["Douglas","2021-11-03",151906,322,137826],["Douglas","2021-11-04",151906,408,138234],["Douglas","2021-11-05",151906,422,138656],["Douglas","2021-11-06",151906,266,138922],["Douglas","2021-11-07",151906,125,139047],["Douglas","2021-11-08",151906,351,139398],["Douglas","2021-11-09",151906,390,139788],["Douglas","2021-11-10",151906,424,140212],["Douglas","2021-11-11",151906,340,140552],["Douglas","2021-11-12",151906,500,141052],["Douglas","2021-11-13",151906,275,141327],["Douglas","2021-11-14",151906,124,141451],["Douglas","2021-11-15",151906,363,141814],["Douglas","2021-11-16",151906,312,142126],["Douglas","2021-11-17",151906,403,142529],["Douglas","2021-11-18",151906,385,142914],["Douglas","2021-11-19",151906,481,143395],["Douglas","2021-11-20",151906,301,143696],["Douglas","2021-11-21",151906,185,143881],["Douglas","2021-11-22",151906,429,144310],["Douglas","2021-11-23",151906,393,144703],["Douglas","2021-11-24",151906,298,145001],["Douglas","2021-11-26",151906,294,145295],["Douglas","2021-11-27",151906,272,145567],["Douglas","2021-11-28",151906,140,145707],["Douglas","2021-11-29",151906,499,146206],["Douglas","2021-11-30",151906,561,146767],["Douglas","2021-12-01",151906,592,147359],["Douglas","2021-12-02",151906,604,147963],["Douglas","2021-12-03",151906,731,148694],["Douglas","2021-12-04",151906,425,149119],["Douglas","2021-12-05",151906,179,149298],["Douglas","2021-12-06",151906,517,149815],["Douglas","2021-12-07",151906,432,150247],["Douglas","2021-12-08",151906,436,150683],["Douglas","2021-12-09",151906,417,151100],["Douglas","2021-12-10",151906,558,151658],["Douglas","2021-12-11",151906,393,152051],["Douglas","2021-12-12",151906,148,152199],["Douglas","2021-12-13",151906,342,152541],["Douglas","2021-12-14",151906,370,152911],["Douglas","2021-12-15",151906,360,153271],["Douglas","2021-12-16",151906,374,153645],["Douglas","2021-12-17",151906,406,154051],["Douglas","2021-12-18",151906,319,154370],["Douglas","2021-12-19",151906,168,154538],["Douglas","2021-12-20",151906,450,154988],["Douglas","2021-12-21",151906,475,155463],["Douglas","2021-12-22",151906,497,155960],["Douglas","2021-12-23",151906,409,156369],["Douglas","2021-12-24",151906,122,156491],["Douglas","2021-12-26",151906,147,156638],["Douglas","2021-12-27",151906,459,157097],["Douglas","2021-12-28",151906,385,157482],["Douglas","2021-12-29",151906,347,157829],["Douglas","2021-12-30",151906,307,158136],["Douglas","2021-12-31",151906,184,158320],["Douglas","2022-01-01",151906,25,158345],["Douglas","2022-01-02",151906,103,158448],["Douglas","2022-01-03",151906,100,158548],["Early","2020-12-18",10146,2,2],["Early","2020-12-19",10146,1,3],["Early","2020-12-20",10146,1,4],["Early","2020-12-21",10146,2,6],["Early","2020-12-22",10146,3,9],["Early","2020-12-23",10146,44,53],["Early","2020-12-24",10146,5,58],["Early","2020-12-26",10146,1,59],["Early","2020-12-27",10146,3,62],["Early","2020-12-28",10146,23,85],["Early","2020-12-29",10146,31,116],["Early","2020-12-30",10146,21,137],["Early","2020-12-31",10146,20,157],["Early","2021-01-01",10146,8,165],["Early","2021-01-03",10146,1,166],["Early","2021-01-04",10146,29,195],["Early","2021-01-05",10146,17,212],["Early","2021-01-06",10146,20,232],["Early","2021-01-07",10146,18,250],["Early","2021-01-08",10146,59,309],["Early","2021-01-11",10146,87,396],["Early","2021-01-12",10146,155,551],["Early","2021-01-13",10146,101,652],["Early","2021-01-14",10146,180,832],["Early","2021-01-15",10146,108,940],["Early","2021-01-16",10146,67,1007],["Early","2021-01-18",10146,87,1094],["Early","2021-01-19",10146,67,1161],["Early","2021-01-20",10146,80,1241],["Early","2021-01-21",10146,84,1325],["Early","2021-01-22",10146,56,1381],["Early","2021-01-23",10146,4,1385],["Early","2021-01-24",10146,2,1387],["Early","2021-01-25",10146,66,1453],["Early","2021-01-26",10146,69,1522],["Early","2021-01-27",10146,62,1584],["Early","2021-01-28",10146,66,1650],["Early","2021-01-29",10146,114,1764],["Early","2021-01-30",10146,1,1765],["Early","2021-01-31",10146,1,1766],["Early","2021-02-01",10146,52,1818],["Early","2021-02-02",10146,61,1879],["Early","2021-02-03",10146,59,1938],["Early","2021-02-04",10146,65,2003],["Early","2021-02-05",10146,38,2041],["Early","2021-02-06",10146,5,2046],["Early","2021-02-08",10146,137,2183],["Early","2021-02-09",10146,187,2370],["Early","2021-02-10",10146,97,2467],["Early","2021-02-11",10146,79,2546],["Early","2021-02-12",10146,144,2690],["Early","2021-02-13",10146,1,2691],["Early","2021-02-15",10146,100,2791],["Early","2021-02-16",10146,144,2935],["Early","2021-02-17",10146,121,3056],["Early","2021-02-18",10146,76,3132],["Early","2021-02-19",10146,118,3250],["Early","2021-02-20",10146,4,3254],["Early","2021-02-21",10146,2,3256],["Early","2021-02-22",10146,82,3338],["Early","2021-02-23",10146,55,3393],["Early","2021-02-24",10146,60,3453],["Early","2021-02-25",10146,104,3557],["Early","2021-02-26",10146,52,3609],["Early","2021-02-27",10146,2,3611],["Early","2021-03-01",10146,41,3652],["Early","2021-03-02",10146,67,3719],["Early","2021-03-03",10146,61,3780],["Early","2021-03-04",10146,49,3829],["Early","2021-03-05",10146,48,3877],["Early","2021-03-08",10146,151,4028],["Early","2021-03-09",10146,120,4148],["Early","2021-03-10",10146,71,4219],["Early","2021-03-11",10146,50,4269],["Early","2021-03-12",10146,43,4312],["Early","2021-03-13",10146,28,4340],["Early","2021-03-14",10146,1,4341],["Early","2021-03-15",10146,83,4424],["Early","2021-03-16",10146,41,4465],["Early","2021-03-17",10146,53,4518],["Early","2021-03-18",10146,16,4534],["Early","2021-03-19",10146,62,4596],["Early","2021-03-20",10146,2,4598],["Early","2021-03-21",10146,1,4599],["Early","2021-03-22",10146,33,4632],["Early","2021-03-23",10146,33,4665],["Early","2021-03-24",10146,54,4719],["Early","2021-03-25",10146,59,4778],["Early","2021-03-26",10146,108,4886],["Early","2021-03-27",10146,1,4887],["Early","2021-03-28",10146,1,4888],["Early","2021-03-29",10146,43,4931],["Early","2021-03-30",10146,80,5011],["Early","2021-03-31",10146,57,5068],["Early","2021-04-01",10146,46,5114],["Early","2021-04-02",10146,20,5134],["Early","2021-04-03",10146,2,5136],["Early","2021-04-04",10146,2,5138],["Early","2021-04-05",10146,73,5211],["Early","2021-04-06",10146,48,5259],["Early","2021-04-07",10146,141,5400],["Early","2021-04-08",10146,44,5444],["Early","2021-04-09",10146,51,5495],["Early","2021-04-10",10146,4,5499],["Early","2021-04-11",10146,4,5503],["Early","2021-04-12",10146,50,5553],["Early","2021-04-13",10146,44,5597],["Early","2021-04-14",10146,63,5660],["Early","2021-04-15",10146,30,5690],["Early","2021-04-16",10146,116,5806],["Early","2021-04-17",10146,1,5807],["Early","2021-04-18",10146,1,5808],["Early","2021-04-19",10146,33,5841],["Early","2021-04-20",10146,75,5916],["Early","2021-04-21",10146,39,5955],["Early","2021-04-22",10146,38,5993],["Early","2021-04-23",10146,62,6055],["Early","2021-04-24",10146,1,6056],["Early","2021-04-26",10146,67,6123],["Early","2021-04-27",10146,32,6155],["Early","2021-04-28",10146,66,6221],["Early","2021-04-29",10146,15,6236],["Early","2021-04-30",10146,46,6282],["Early","2021-05-01",10146,5,6287],["Early","2021-05-02",10146,5,6292],["Early","2021-05-03",10146,35,6327],["Early","2021-05-04",10146,16,6343],["Early","2021-05-05",10146,47,6390],["Early","2021-05-06",10146,17,6407],["Early","2021-05-07",10146,33,6440],["Early","2021-05-08",10146,5,6445],["Early","2021-05-09",10146,1,6446],["Early","2021-05-10",10146,27,6473],["Early","2021-05-11",10146,11,6484],["Early","2021-05-12",10146,43,6527],["Early","2021-05-13",10146,25,6552],["Early","2021-05-14",10146,22,6574],["Early","2021-05-15",10146,6,6580],["Early","2021-05-16",10146,1,6581],["Early","2021-05-17",10146,26,6607],["Early","2021-05-18",10146,19,6626],["Early","2021-05-19",10146,39,6665],["Early","2021-05-20",10146,23,6688],["Early","2021-05-21",10146,17,6705],["Early","2021-05-22",10146,2,6707],["Early","2021-05-23",10146,2,6709],["Early","2021-05-24",10146,23,6732],["Early","2021-05-25",10146,14,6746],["Early","2021-05-26",10146,31,6777],["Early","2021-05-27",10146,6,6783],["Early","2021-05-28",10146,24,6807],["Early","2021-05-29",10146,1,6808],["Early","2021-05-30",10146,1,6809],["Early","2021-06-01",10146,20,6829],["Early","2021-06-02",10146,29,6858],["Early","2021-06-03",10146,9,6867],["Early","2021-06-04",10146,29,6896],["Early","2021-06-05",10146,4,6900],["Early","2021-06-06",10146,1,6901],["Early","2021-06-07",10146,18,6919],["Early","2021-06-08",10146,12,6931],["Early","2021-06-09",10146,23,6954],["Early","2021-06-10",10146,11,6965],["Early","2021-06-11",10146,24,6989],["Early","2021-06-12",10146,1,6990],["Early","2021-06-13",10146,2,6992],["Early","2021-06-14",10146,19,7011],["Early","2021-06-15",10146,9,7020],["Early","2021-06-16",10146,17,7037],["Early","2021-06-17",10146,11,7048],["Early","2021-06-18",10146,3,7051],["Early","2021-06-19",10146,3,7054],["Early","2021-06-20",10146,1,7055],["Early","2021-06-21",10146,31,7086],["Early","2021-06-22",10146,16,7102],["Early","2021-06-23",10146,18,7120],["Early","2021-06-24",10146,5,7125],["Early","2021-06-25",10146,31,7156],["Early","2021-06-26",10146,1,7157],["Early","2021-06-27",10146,2,7159],["Early","2021-06-28",10146,16,7175],["Early","2021-06-29",10146,9,7184],["Early","2021-06-30",10146,19,7203],["Early","2021-07-01",10146,7,7210],["Early","2021-07-02",10146,15,7225],["Early","2021-07-03",10146,2,7227],["Early","2021-07-05",10146,5,7232],["Early","2021-07-06",10146,9,7241],["Early","2021-07-07",10146,25,7266],["Early","2021-07-08",10146,9,7275],["Early","2021-07-09",10146,18,7293],["Early","2021-07-10",10146,1,7294],["Early","2021-07-12",10146,11,7305],["Early","2021-07-13",10146,12,7317],["Early","2021-07-14",10146,23,7340],["Early","2021-07-15",10146,12,7352],["Early","2021-07-16",10146,38,7390],["Early","2021-07-17",10146,1,7391],["Early","2021-07-18",10146,1,7392],["Early","2021-07-19",10146,29,7421],["Early","2021-07-20",10146,12,7433],["Early","2021-07-21",10146,29,7462],["Early","2021-07-22",10146,17,7479],["Early","2021-07-23",10146,38,7517],["Early","2021-07-24",10146,7,7524],["Early","2021-07-25",10146,1,7525],["Early","2021-07-26",10146,29,7554],["Early","2021-07-27",10146,30,7584],["Early","2021-07-28",10146,37,7621],["Early","2021-07-29",10146,29,7650],["Early","2021-07-30",10146,41,7691],["Early","2021-07-31",10146,9,7700],["Early","2021-08-01",10146,6,7706],["Early","2021-08-02",10146,45,7751],["Early","2021-08-03",10146,23,7774],["Early","2021-08-04",10146,65,7839],["Early","2021-08-05",10146,26,7865],["Early","2021-08-06",10146,60,7925],["Early","2021-08-07",10146,11,7936],["Early","2021-08-08",10146,3,7939],["Early","2021-08-09",10146,50,7989],["Early","2021-08-10",10146,35,8024],["Early","2021-08-11",10146,64,8088],["Early","2021-08-12",10146,32,8120],["Early","2021-08-13",10146,71,8191],["Early","2021-08-14",10146,13,8204],["Early","2021-08-15",10146,3,8207],["Early","2021-08-16",10146,36,8243],["Early","2021-08-17",10146,23,8266],["Early","2021-08-18",10146,77,8343],["Early","2021-08-19",10146,28,8371],["Early","2021-08-20",10146,78,8449],["Early","2021-08-21",10146,14,8463],["Early","2021-08-22",10146,9,8472],["Early","2021-08-23",10146,74,8546],["Early","2021-08-24",10146,60,8606],["Early","2021-08-25",10146,72,8678],["Early","2021-08-26",10146,43,8721],["Early","2021-08-27",10146,54,8775],["Early","2021-08-28",10146,29,8804],["Early","2021-08-29",10146,7,8811],["Early","2021-08-30",10146,77,8888],["Early","2021-08-31",10146,36,8924],["Early","2021-09-01",10146,67,8991],["Early","2021-09-02",10146,39,9030],["Early","2021-09-03",10146,55,9085],["Early","2021-09-04",10146,9,9094],["Early","2021-09-05",10146,3,9097],["Early","2021-09-06",10146,3,9100],["Early","2021-09-07",10146,36,9136],["Early","2021-09-08",10146,56,9192],["Early","2021-09-09",10146,46,9238],["Early","2021-09-10",10146,52,9290],["Early","2021-09-11",10146,8,9298],["Early","2021-09-12",10146,4,9302],["Early","2021-09-13",10146,54,9356],["Early","2021-09-14",10146,18,9374],["Early","2021-09-15",10146,52,9426],["Early","2021-09-16",10146,24,9450],["Early","2021-09-17",10146,64,9514],["Early","2021-09-18",10146,11,9525],["Early","2021-09-19",10146,5,9530],["Early","2021-09-20",10146,50,9580],["Early","2021-09-21",10146,31,9611],["Early","2021-09-22",10146,49,9660],["Early","2021-09-23",10146,36,9696],["Early","2021-09-24",10146,28,9724],["Early","2021-09-25",10146,2,9726],["Early","2021-09-26",10146,5,9731],["Early","2021-09-27",10146,25,9756],["Early","2021-09-28",10146,26,9782],["Early","2021-09-29",10146,41,9823],["Early","2021-09-30",10146,18,9841],["Early","2021-10-01",10146,31,9872],["Early","2021-10-02",10146,5,9877],["Early","2021-10-03",10146,2,9879],["Early","2021-10-04",10146,7,9886],["Early","2021-10-05",10146,24,9910],["Early","2021-10-06",10146,22,9932],["Early","2021-10-07",10146,19,9951],["Early","2021-10-08",10146,16,9967],["Early","2021-10-10",10146,1,9968],["Early","2021-10-11",10146,11,9979],["Early","2021-10-12",10146,16,9995],["Early","2021-10-13",10146,20,10015],["Early","2021-10-14",10146,6,10021],["Early","2021-10-15",10146,20,10041],["Early","2021-10-16",10146,8,10049],["Early","2021-10-17",10146,1,10050],["Early","2021-10-18",10146,15,10065],["Early","2021-10-19",10146,9,10074],["Early","2021-10-20",10146,16,10090],["Early","2021-10-21",10146,6,10096],["Early","2021-10-22",10146,17,10113],["Early","2021-10-23",10146,3,10116],["Early","2021-10-24",10146,3,10119],["Early","2021-10-25",10146,29,10148],["Early","2021-10-26",10146,14,10162],["Early","2021-10-27",10146,68,10230],["Early","2021-10-28",10146,36,10266],["Early","2021-10-29",10146,52,10318],["Early","2021-10-30",10146,1,10319],["Early","2021-11-01",10146,50,10369],["Early","2021-11-02",10146,82,10451],["Early","2021-11-03",10146,75,10526],["Early","2021-11-04",10146,55,10581],["Early","2021-11-05",10146,46,10627],["Early","2021-11-06",10146,7,10634],["Early","2021-11-07",10146,1,10635],["Early","2021-11-08",10146,63,10698],["Early","2021-11-09",10146,36,10734],["Early","2021-11-10",10146,76,10810],["Early","2021-11-11",10146,22,10832],["Early","2021-11-12",10146,31,10863],["Early","2021-11-13",10146,15,10878],["Early","2021-11-14",10146,1,10879],["Early","2021-11-15",10146,50,10929],["Early","2021-11-16",10146,57,10986],["Early","2021-11-17",10146,78,11064],["Early","2021-11-18",10146,48,11112],["Early","2021-11-19",10146,37,11149],["Early","2021-11-20",10146,5,11154],["Early","2021-11-21",10146,1,11155],["Early","2021-11-22",10146,36,11191],["Early","2021-11-23",10146,41,11232],["Early","2021-11-24",10146,29,11261],["Early","2021-11-26",10146,7,11268],["Early","2021-11-27",10146,1,11269],["Early","2021-11-28",10146,2,11271],["Early","2021-11-29",10146,35,11306],["Early","2021-11-30",10146,40,11346],["Early","2021-12-01",10146,49,11395],["Early","2021-12-02",10146,38,11433],["Early","2021-12-03",10146,27,11460],["Early","2021-12-04",10146,2,11462],["Early","2021-12-06",10146,47,11509],["Early","2021-12-07",10146,36,11545],["Early","2021-12-08",10146,35,11580],["Early","2021-12-09",10146,21,11601],["Early","2021-12-10",10146,33,11634],["Early","2021-12-11",10146,2,11636],["Early","2021-12-13",10146,27,11663],["Early","2021-12-14",10146,27,11690],["Early","2021-12-15",10146,29,11719],["Early","2021-12-16",10146,16,11735],["Early","2021-12-17",10146,13,11748],["Early","2021-12-19",10146,1,11749],["Early","2021-12-20",10146,34,11783],["Early","2021-12-21",10146,25,11808],["Early","2021-12-22",10146,24,11832],["Early","2021-12-23",10146,8,11840],["Early","2021-12-24",10146,6,11846],["Early","2021-12-26",10146,2,11848],["Early","2021-12-27",10146,17,11865],["Early","2021-12-28",10146,19,11884],["Early","2021-12-29",10146,41,11925],["Early","2021-12-30",10146,26,11951],["Early","2021-12-31",10146,11,11962],["Early","2022-01-01",10146,3,11965],["Early","2022-01-02",10146,3,11968],["Echols","2020-12-21",3969,1,1],["Echols","2020-12-28",3969,1,2],["Echols","2020-12-29",3969,6,8],["Echols","2020-12-30",3969,1,9],["Echols","2021-01-04",3969,1,10],["Echols","2021-01-06",3969,11,21],["Echols","2021-01-07",3969,1,22],["Echols","2021-01-08",3969,3,25],["Echols","2021-01-09",3969,1,26],["Echols","2021-01-11",3969,17,43],["Echols","2021-01-12",3969,10,53],["Echols","2021-01-13",3969,11,64],["Echols","2021-01-14",3969,16,80],["Echols","2021-01-15",3969,8,88],["Echols","2021-01-16",3969,1,89],["Echols","2021-01-18",3969,23,112],["Echols","2021-01-19",3969,10,122],["Echols","2021-01-20",3969,16,138],["Echols","2021-01-21",3969,20,158],["Echols","2021-01-22",3969,10,168],["Echols","2021-01-25",3969,9,177],["Echols","2021-01-26",3969,13,190],["Echols","2021-01-27",3969,11,201],["Echols","2021-01-28",3969,18,219],["Echols","2021-01-29",3969,12,231],["Echols","2021-01-30",3969,1,232],["Echols","2021-02-01",3969,6,238],["Echols","2021-02-02",3969,9,247],["Echols","2021-02-03",3969,18,265],["Echols","2021-02-04",3969,32,297],["Echols","2021-02-05",3969,3,300],["Echols","2021-02-06",3969,1,301],["Echols","2021-02-08",3969,18,319],["Echols","2021-02-09",3969,10,329],["Echols","2021-02-10",3969,13,342],["Echols","2021-02-11",3969,15,357],["Echols","2021-02-12",3969,12,369],["Echols","2021-02-15",3969,28,397],["Echols","2021-02-16",3969,8,405],["Echols","2021-02-17",3969,17,422],["Echols","2021-02-18",3969,26,448],["Echols","2021-02-19",3969,9,457],["Echols","2021-02-22",3969,11,468],["Echols","2021-02-23",3969,9,477],["Echols","2021-02-24",3969,16,493],["Echols","2021-02-25",3969,20,513],["Echols","2021-02-26",3969,11,524],["Echols","2021-03-01",3969,2,526],["Echols","2021-03-02",3969,4,530],["Echols","2021-03-03",3969,28,558],["Echols","2021-03-04",3969,36,594],["Echols","2021-03-05",3969,7,601],["Echols","2021-03-08",3969,19,620],["Echols","2021-03-09",3969,5,625],["Echols","2021-03-10",3969,6,631],["Echols","2021-03-11",3969,12,643],["Echols","2021-03-12",3969,15,658],["Echols","2021-03-13",3969,2,660],["Echols","2021-03-14",3969,1,661],["Echols","2021-03-15",3969,13,674],["Echols","2021-03-16",3969,8,682],["Echols","2021-03-17",3969,21,703],["Echols","2021-03-18",3969,15,718],["Echols","2021-03-19",3969,12,730],["Echols","2021-03-20",3969,1,731],["Echols","2021-03-22",3969,4,735],["Echols","2021-03-23",3969,18,753],["Echols","2021-03-24",3969,9,762],["Echols","2021-03-25",3969,12,774],["Echols","2021-03-26",3969,16,790],["Echols","2021-03-27",3969,2,792],["Echols","2021-03-28",3969,1,793],["Echols","2021-03-29",3969,10,803],["Echols","2021-03-30",3969,17,820],["Echols","2021-03-31",3969,17,837],["Echols","2021-04-01",3969,22,859],["Echols","2021-04-02",3969,8,867],["Echols","2021-04-03",3969,6,873],["Echols","2021-04-05",3969,27,900],["Echols","2021-04-06",3969,5,905],["Echols","2021-04-07",3969,13,918],["Echols","2021-04-08",3969,18,936],["Echols","2021-04-09",3969,32,968],["Echols","2021-04-12",3969,19,987],["Echols","2021-04-13",3969,18,1005],["Echols","2021-04-14",3969,15,1020],["Echols","2021-04-15",3969,24,1044],["Echols","2021-04-16",3969,7,1051],["Echols","2021-04-17",3969,1,1052],["Echols","2021-04-19",3969,16,1068],["Echols","2021-04-20",3969,15,1083],["Echols","2021-04-21",3969,11,1094],["Echols","2021-04-22",3969,12,1106],["Echols","2021-04-23",3969,132,1238],["Echols","2021-04-25",3969,1,1239],["Echols","2021-04-26",3969,15,1254],["Echols","2021-04-27",3969,3,1257],["Echols","2021-04-28",3969,8,1265],["Echols","2021-04-29",3969,12,1277],["Echols","2021-04-30",3969,14,1291],["Echols","2021-05-01",3969,2,1293],["Echols","2021-05-03",3969,2,1295],["Echols","2021-05-04",3969,3,1298],["Echols","2021-05-05",3969,11,1309],["Echols","2021-05-06",3969,11,1320],["Echols","2021-05-07",3969,38,1358],["Echols","2021-05-10",3969,1,1359],["Echols","2021-05-11",3969,3,1362],["Echols","2021-05-12",3969,16,1378],["Echols","2021-05-13",3969,12,1390],["Echols","2021-05-14",3969,3,1393],["Echols","2021-05-15",3969,1,1394],["Echols","2021-05-17",3969,4,1398],["Echols","2021-05-18",3969,2,1400],["Echols","2021-05-19",3969,17,1417],["Echols","2021-05-20",3969,7,1424],["Echols","2021-05-21",3969,121,1545],["Echols","2021-05-22",3969,1,1546],["Echols","2021-05-24",3969,4,1550],["Echols","2021-05-25",3969,1,1551],["Echols","2021-05-26",3969,19,1570],["Echols","2021-05-27",3969,11,1581],["Echols","2021-05-28",3969,3,1584],["Echols","2021-06-01",3969,5,1589],["Echols","2021-06-02",3969,5,1594],["Echols","2021-06-03",3969,7,1601],["Echols","2021-06-04",3969,6,1607],["Echols","2021-06-07",3969,5,1612],["Echols","2021-06-08",3969,2,1614],["Echols","2021-06-09",3969,2,1616],["Echols","2021-06-11",3969,3,1619],["Echols","2021-06-12",3969,1,1620],["Echols","2021-06-14",3969,1,1621],["Echols","2021-06-16",3969,4,1625],["Echols","2021-06-18",3969,4,1629],["Echols","2021-06-19",3969,1,1630],["Echols","2021-06-20",3969,2,1632],["Echols","2021-06-21",3969,2,1634],["Echols","2021-06-22",3969,5,1639],["Echols","2021-06-23",3969,8,1647],["Echols","2021-06-24",3969,12,1659],["Echols","2021-06-25",3969,5,1664],["Echols","2021-06-28",3969,4,1668],["Echols","2021-06-29",3969,2,1670],["Echols","2021-06-30",3969,6,1676],["Echols","2021-07-01",3969,4,1680],["Echols","2021-07-02",3969,9,1689],["Echols","2021-07-03",3969,3,1692],["Echols","2021-07-05",3969,1,1693],["Echols","2021-07-06",3969,3,1696],["Echols","2021-07-08",3969,4,1700],["Echols","2021-07-09",3969,4,1704],["Echols","2021-07-10",3969,1,1705],["Echols","2021-07-11",3969,1,1706],["Echols","2021-07-13",3969,1,1707],["Echols","2021-07-14",3969,6,1713],["Echols","2021-07-15",3969,11,1724],["Echols","2021-07-16",3969,7,1731],["Echols","2021-07-17",3969,1,1732],["Echols","2021-07-18",3969,1,1733],["Echols","2021-07-19",3969,1,1734],["Echols","2021-07-20",3969,4,1738],["Echols","2021-07-21",3969,7,1745],["Echols","2021-07-22",3969,12,1757],["Echols","2021-07-23",3969,9,1766],["Echols","2021-07-24",3969,5,1771],["Echols","2021-07-27",3969,7,1778],["Echols","2021-07-28",3969,19,1797],["Echols","2021-07-29",3969,11,1808],["Echols","2021-07-30",3969,24,1832],["Echols","2021-07-31",3969,4,1836],["Echols","2021-08-01",3969,1,1837],["Echols","2021-08-02",3969,4,1841],["Echols","2021-08-03",3969,10,1851],["Echols","2021-08-04",3969,8,1859],["Echols","2021-08-05",3969,15,1874],["Echols","2021-08-06",3969,13,1887],["Echols","2021-08-07",3969,12,1899],["Echols","2021-08-09",3969,9,1908],["Echols","2021-08-10",3969,9,1917],["Echols","2021-08-11",3969,20,1937],["Echols","2021-08-12",3969,12,1949],["Echols","2021-08-13",3969,5,1954],["Echols","2021-08-14",3969,1,1955],["Echols","2021-08-15",3969,2,1957],["Echols","2021-08-16",3969,5,1962],["Echols","2021-08-17",3969,6,1968],["Echols","2021-08-18",3969,19,1987],["Echols","2021-08-19",3969,21,2008],["Echols","2021-08-20",3969,15,2023],["Echols","2021-08-21",3969,2,2025],["Echols","2021-08-23",3969,5,2030],["Echols","2021-08-24",3969,5,2035],["Echols","2021-08-25",3969,21,2056],["Echols","2021-08-26",3969,17,2073],["Echols","2021-08-27",3969,24,2097],["Echols","2021-08-28",3969,13,2110],["Echols","2021-08-29",3969,1,2111],["Echols","2021-08-30",3969,5,2116],["Echols","2021-08-31",3969,16,2132],["Echols","2021-09-01",3969,9,2141],["Echols","2021-09-02",3969,18,2159],["Echols","2021-09-03",3969,9,2168],["Echols","2021-09-04",3969,4,2172],["Echols","2021-09-05",3969,1,2173],["Echols","2021-09-07",3969,5,2178],["Echols","2021-09-08",3969,21,2199],["Echols","2021-09-09",3969,15,2214],["Echols","2021-09-10",3969,18,2232],["Echols","2021-09-13",3969,2,2234],["Echols","2021-09-14",3969,4,2238],["Echols","2021-09-15",3969,12,2250],["Echols","2021-09-16",3969,14,2264],["Echols","2021-09-17",3969,7,2271],["Echols","2021-09-18",3969,1,2272],["Echols","2021-09-20",3969,4,2276],["Echols","2021-09-21",3969,1,2277],["Echols","2021-09-22",3969,17,2294],["Echols","2021-09-23",3969,13,2307],["Echols","2021-09-24",3969,7,2314],["Echols","2021-09-25",3969,3,2317],["Echols","2021-09-26",3969,1,2318],["Echols","2021-09-28",3969,3,2321],["Echols","2021-09-29",3969,8,2329],["Echols","2021-09-30",3969,4,2333],["Echols","2021-10-01",3969,7,2340],["Echols","2021-10-02",3969,2,2342],["Echols","2021-10-03",3969,1,2343],["Echols","2021-10-04",3969,1,2344],["Echols","2021-10-05",3969,5,2349],["Echols","2021-10-06",3969,7,2356],["Echols","2021-10-09",3969,1,2357],["Echols","2021-10-11",3969,1,2358],["Echols","2021-10-12",3969,4,2362],["Echols","2021-10-13",3969,13,2375],["Echols","2021-10-14",3969,10,2385],["Echols","2021-10-15",3969,1,2386],["Echols","2021-10-17",3969,1,2387],["Echols","2021-10-19",3969,3,2390],["Echols","2021-10-20",3969,9,2399],["Echols","2021-10-21",3969,3,2402],["Echols","2021-10-26",3969,5,2407],["Echols","2021-10-27",3969,14,2421],["Echols","2021-10-28",3969,15,2436],["Echols","2021-10-29",3969,1,2437],["Echols","2021-10-31",3969,1,2438],["Echols","2021-11-01",3969,2,2440],["Echols","2021-11-02",3969,1,2441],["Echols","2021-11-03",3969,8,2449],["Echols","2021-11-04",3969,17,2466],["Echols","2021-11-05",3969,13,2479],["Echols","2021-11-08",3969,4,2483],["Echols","2021-11-09",3969,16,2499],["Echols","2021-11-10",3969,16,2515],["Echols","2021-11-11",3969,2,2517],["Echols","2021-11-12",3969,5,2522],["Echols","2021-11-14",3969,1,2523],["Echols","2021-11-15",3969,8,2531],["Echols","2021-11-16",3969,7,2538],["Echols","2021-11-17",3969,16,2554],["Echols","2021-11-19",3969,7,2561],["Echols","2021-11-21",3969,1,2562],["Echols","2021-11-22",3969,3,2565],["Echols","2021-11-23",3969,2,2567],["Echols","2021-11-24",3969,9,2576],["Echols","2021-11-27",3969,2,2578],["Echols","2021-11-29",3969,16,2594],["Echols","2021-11-30",3969,2,2596],["Echols","2021-12-01",3969,24,2620],["Echols","2021-12-02",3969,17,2637],["Echols","2021-12-03",3969,5,2642],["Echols","2021-12-04",3969,3,2645],["Echols","2021-12-05",3969,2,2647],["Echols","2021-12-06",3969,21,2668],["Echols","2021-12-07",3969,5,2673],["Echols","2021-12-08",3969,20,2693],["Echols","2021-12-09",3969,9,2702],["Echols","2021-12-10",3969,7,2709],["Echols","2021-12-12",3969,3,2712],["Echols","2021-12-13",3969,15,2727],["Echols","2021-12-14",3969,10,2737],["Echols","2021-12-15",3969,13,2750],["Echols","2021-12-16",3969,2,2752],["Echols","2021-12-17",3969,5,2757],["Echols","2021-12-20",3969,16,2773],["Echols","2021-12-21",3969,1,2774],["Echols","2021-12-22",3969,12,2786],["Echols","2021-12-23",3969,2,2788],["Echols","2021-12-27",3969,2,2790],["Echols","2021-12-28",3969,2,2792],["Echols","2021-12-29",3969,2,2794],["Echols","2021-12-30",3969,11,2805],["Echols","2021-12-31",3969,2,2807],["Echols","2022-01-01",3969,1,2808],["Echols","2022-01-03",3969,2,2810],["Effingham","2020-12-15",64026,5,5],["Effingham","2020-12-16",64026,48,53],["Effingham","2020-12-17",64026,19,72],["Effingham","2020-12-18",64026,84,156],["Effingham","2020-12-19",64026,13,169],["Effingham","2020-12-20",64026,4,173],["Effingham","2020-12-21",64026,96,269],["Effingham","2020-12-22",64026,53,322],["Effingham","2020-12-23",64026,64,386],["Effingham","2020-12-24",64026,12,398],["Effingham","2020-12-27",64026,8,406],["Effingham","2020-12-28",64026,64,470],["Effingham","2020-12-29",64026,39,509],["Effingham","2020-12-30",64026,94,603],["Effingham","2020-12-31",64026,16,619],["Effingham","2021-01-01",64026,11,630],["Effingham","2021-01-02",64026,5,635],["Effingham","2021-01-03",64026,3,638],["Effingham","2021-01-04",64026,36,674],["Effingham","2021-01-05",64026,71,745],["Effingham","2021-01-06",64026,159,904],["Effingham","2021-01-07",64026,142,1046],["Effingham","2021-01-08",64026,86,1132],["Effingham","2021-01-09",64026,25,1157],["Effingham","2021-01-10",64026,4,1161],["Effingham","2021-01-11",64026,220,1381],["Effingham","2021-01-12",64026,111,1492],["Effingham","2021-01-13",64026,112,1604],["Effingham","2021-01-14",64026,291,1895],["Effingham","2021-01-15",64026,94,1989],["Effingham","2021-01-16",64026,57,2046],["Effingham","2021-01-17",64026,37,2083],["Effingham","2021-01-18",64026,261,2344],["Effingham","2021-01-19",64026,149,2493],["Effingham","2021-01-20",64026,151,2644],["Effingham","2021-01-21",64026,242,2886],["Effingham","2021-01-22",64026,92,2978],["Effingham","2021-01-23",64026,49,3027],["Effingham","2021-01-24",64026,29,3056],["Effingham","2021-01-25",64026,234,3290],["Effingham","2021-01-26",64026,94,3384],["Effingham","2021-01-27",64026,222,3606],["Effingham","2021-01-28",64026,208,3814],["Effingham","2021-01-29",64026,216,4030],["Effingham","2021-01-30",64026,250,4280],["Effingham","2021-01-31",64026,35,4315],["Effingham","2021-02-01",64026,300,4615],["Effingham","2021-02-02",64026,261,4876],["Effingham","2021-02-03",64026,146,5022],["Effingham","2021-02-04",64026,220,5242],["Effingham","2021-02-05",64026,204,5446],["Effingham","2021-02-06",64026,199,5645],["Effingham","2021-02-07",64026,122,5767],["Effingham","2021-02-08",64026,221,5988],["Effingham","2021-02-09",64026,214,6202],["Effingham","2021-02-10",64026,88,6290],["Effingham","2021-02-11",64026,391,6681],["Effingham","2021-02-12",64026,306,6987],["Effingham","2021-02-13",64026,67,7054],["Effingham","2021-02-14",64026,29,7083],["Effingham","2021-02-15",64026,329,7412],["Effingham","2021-02-16",64026,263,7675],["Effingham","2021-02-17",64026,169,7844],["Effingham","2021-02-18",64026,341,8185],["Effingham","2021-02-19",64026,196,8381],["Effingham","2021-02-20",64026,245,8626],["Effingham","2021-02-21",64026,39,8665],["Effingham","2021-02-22",64026,221,8886],["Effingham","2021-02-23",64026,283,9169],["Effingham","2021-02-24",64026,140,9309],["Effingham","2021-02-25",64026,289,9598],["Effingham","2021-02-26",64026,184,9782],["Effingham","2021-02-27",64026,216,9998],["Effingham","2021-02-28",64026,169,10167],["Effingham","2021-03-01",64026,245,10412],["Effingham","2021-03-02",64026,305,10717],["Effingham","2021-03-03",64026,162,10879],["Effingham","2021-03-04",64026,353,11232],["Effingham","2021-03-05",64026,200,11432],["Effingham","2021-03-06",64026,61,11493],["Effingham","2021-03-07",64026,211,11704],["Effingham","2021-03-08",64026,265,11969],["Effingham","2021-03-09",64026,264,12233],["Effingham","2021-03-10",64026,166,12399],["Effingham","2021-03-11",64026,407,12806],["Effingham","2021-03-12",64026,334,13140],["Effingham","2021-03-13",64026,330,13470],["Effingham","2021-03-14",64026,56,13526],["Effingham","2021-03-15",64026,387,13913],["Effingham","2021-03-16",64026,369,14282],["Effingham","2021-03-17",64026,268,14550],["Effingham","2021-03-18",64026,643,15193],["Effingham","2021-03-19",64026,390,15583],["Effingham","2021-03-20",64026,180,15763],["Effingham","2021-03-21",64026,219,15982],["Effingham","2021-03-22",64026,317,16299],["Effingham","2021-03-23",64026,570,16869],["Effingham","2021-03-24",64026,431,17300],["Effingham","2021-03-25",64026,606,17906],["Effingham","2021-03-26",64026,448,18354],["Effingham","2021-03-27",64026,208,18562],["Effingham","2021-03-28",64026,248,18810],["Effingham","2021-03-29",64026,314,19124],["Effingham","2021-03-30",64026,452,19576],["Effingham","2021-03-31",64026,344,19920],["Effingham","2021-04-01",64026,544,20464],["Effingham","2021-04-02",64026,364,20828],["Effingham","2021-04-03",64026,95,20923],["Effingham","2021-04-04",64026,62,20985],["Effingham","2021-04-05",64026,307,21292],["Effingham","2021-04-06",64026,385,21677],["Effingham","2021-04-07",64026,406,22083],["Effingham","2021-04-08",64026,514,22597],["Effingham","2021-04-09",64026,370,22967],["Effingham","2021-04-10",64026,309,23276],["Effingham","2021-04-11",64026,178,23454],["Effingham","2021-04-12",64026,319,23773],["Effingham","2021-04-13",64026,412,24185],["Effingham","2021-04-14",64026,352,24537],["Effingham","2021-04-15",64026,541,25078],["Effingham","2021-04-16",64026,579,25657],["Effingham","2021-04-17",64026,223,25880],["Effingham","2021-04-18",64026,38,25918],["Effingham","2021-04-19",64026,200,26118],["Effingham","2021-04-20",64026,376,26494],["Effingham","2021-04-21",64026,316,26810],["Effingham","2021-04-22",64026,506,27316],["Effingham","2021-04-23",64026,370,27686],["Effingham","2021-04-24",64026,154,27840],["Effingham","2021-04-25",64026,35,27875],["Effingham","2021-04-26",64026,162,28037],["Effingham","2021-04-27",64026,329,28366],["Effingham","2021-04-28",64026,271,28637],["Effingham","2021-04-29",64026,406,29043],["Effingham","2021-04-30",64026,453,29496],["Effingham","2021-05-01",64026,225,29721],["Effingham","2021-05-02",64026,41,29762],["Effingham","2021-05-03",64026,152,29914],["Effingham","2021-05-04",64026,263,30177],["Effingham","2021-05-05",64026,208,30385],["Effingham","2021-05-06",64026,322,30707],["Effingham","2021-05-07",64026,243,30950],["Effingham","2021-05-08",64026,103,31053],["Effingham","2021-05-09",64026,16,31069],["Effingham","2021-05-10",64026,77,31146],["Effingham","2021-05-11",64026,180,31326],["Effingham","2021-05-12",64026,139,31465],["Effingham","2021-05-13",64026,235,31700],["Effingham","2021-05-14",64026,168,31868],["Effingham","2021-05-15",64026,93,31961],["Effingham","2021-05-16",64026,50,32011],["Effingham","2021-05-17",64026,109,32120],["Effingham","2021-05-18",64026,177,32297],["Effingham","2021-05-19",64026,137,32434],["Effingham","2021-05-20",64026,211,32645],["Effingham","2021-05-21",64026,168,32813],["Effingham","2021-05-22",64026,89,32902],["Effingham","2021-05-23",64026,44,32946],["Effingham","2021-05-24",64026,78,33024],["Effingham","2021-05-25",64026,119,33143],["Effingham","2021-05-26",64026,109,33252],["Effingham","2021-05-27",64026,146,33398],["Effingham","2021-05-28",64026,118,33516],["Effingham","2021-05-29",64026,49,33565],["Effingham","2021-05-30",64026,28,33593],["Effingham","2021-05-31",64026,13,33606],["Effingham","2021-06-01",64026,119,33725],["Effingham","2021-06-02",64026,90,33815],["Effingham","2021-06-03",64026,145,33960],["Effingham","2021-06-04",64026,122,34082],["Effingham","2021-06-05",64026,78,34160],["Effingham","2021-06-06",64026,41,34201],["Effingham","2021-06-07",64026,104,34305],["Effingham","2021-06-08",64026,92,34397],["Effingham","2021-06-09",64026,90,34487],["Effingham","2021-06-10",64026,111,34598],["Effingham","2021-06-11",64026,117,34715],["Effingham","2021-06-12",64026,76,34791],["Effingham","2021-06-13",64026,33,34824],["Effingham","2021-06-14",64026,79,34903],["Effingham","2021-06-15",64026,99,35002],["Effingham","2021-06-16",64026,73,35075],["Effingham","2021-06-17",64026,120,35195],["Effingham","2021-06-18",64026,107,35302],["Effingham","2021-06-19",64026,47,35349],["Effingham","2021-06-20",64026,14,35363],["Effingham","2021-06-21",64026,38,35401],["Effingham","2021-06-22",64026,79,35480],["Effingham","2021-06-23",64026,77,35557],["Effingham","2021-06-24",64026,81,35638],["Effingham","2021-06-25",64026,95,35733],["Effingham","2021-06-26",64026,48,35781],["Effingham","2021-06-27",64026,20,35801],["Effingham","2021-06-28",64026,47,35848],["Effingham","2021-06-29",64026,66,35914],["Effingham","2021-06-30",64026,90,36004],["Effingham","2021-07-01",64026,65,36069],["Effingham","2021-07-02",64026,72,36141],["Effingham","2021-07-03",64026,26,36167],["Effingham","2021-07-04",64026,3,36170],["Effingham","2021-07-05",64026,63,36233],["Effingham","2021-07-06",64026,52,36285],["Effingham","2021-07-07",64026,48,36333],["Effingham","2021-07-08",64026,61,36394],["Effingham","2021-07-09",64026,59,36453],["Effingham","2021-07-10",64026,41,36494],["Effingham","2021-07-11",64026,19,36513],["Effingham","2021-07-12",64026,56,36569],["Effingham","2021-07-13",64026,50,36619],["Effingham","2021-07-14",64026,58,36677],["Effingham","2021-07-15",64026,68,36745],["Effingham","2021-07-16",64026,77,36822],["Effingham","2021-07-17",64026,56,36878],["Effingham","2021-07-18",64026,32,36910],["Effingham","2021-07-19",64026,81,36991],["Effingham","2021-07-20",64026,76,37067],["Effingham","2021-07-21",64026,88,37155],["Effingham","2021-07-22",64026,89,37244],["Effingham","2021-07-23",64026,111,37355],["Effingham","2021-07-24",64026,65,37420],["Effingham","2021-07-25",64026,49,37469],["Effingham","2021-07-26",64026,128,37597],["Effingham","2021-07-27",64026,116,37713],["Effingham","2021-07-28",64026,126,37839],["Effingham","2021-07-29",64026,123,37962],["Effingham","2021-07-30",64026,161,38123],["Effingham","2021-07-31",64026,92,38215],["Effingham","2021-08-01",64026,52,38267],["Effingham","2021-08-02",64026,106,38373],["Effingham","2021-08-03",64026,106,38479],["Effingham","2021-08-04",64026,127,38606],["Effingham","2021-08-05",64026,121,38727],["Effingham","2021-08-06",64026,170,38897],["Effingham","2021-08-07",64026,106,39003],["Effingham","2021-08-08",64026,67,39070],["Effingham","2021-08-09",64026,129,39199],["Effingham","2021-08-10",64026,161,39360],["Effingham","2021-08-11",64026,168,39528],["Effingham","2021-08-12",64026,176,39704],["Effingham","2021-08-13",64026,219,39923],["Effingham","2021-08-14",64026,138,40061],["Effingham","2021-08-15",64026,92,40153],["Effingham","2021-08-16",64026,156,40309],["Effingham","2021-08-17",64026,153,40462],["Effingham","2021-08-18",64026,146,40608],["Effingham","2021-08-19",64026,212,40820],["Effingham","2021-08-20",64026,258,41078],["Effingham","2021-08-21",64026,108,41186],["Effingham","2021-08-22",64026,69,41255],["Effingham","2021-08-23",64026,158,41413],["Effingham","2021-08-24",64026,166,41579],["Effingham","2021-08-25",64026,187,41766],["Effingham","2021-08-26",64026,240,42006],["Effingham","2021-08-27",64026,254,42260],["Effingham","2021-08-28",64026,144,42404],["Effingham","2021-08-29",64026,77,42481],["Effingham","2021-08-30",64026,142,42623],["Effingham","2021-08-31",64026,154,42777],["Effingham","2021-09-01",64026,203,42980],["Effingham","2021-09-02",64026,218,43198],["Effingham","2021-09-03",64026,267,43465],["Effingham","2021-09-04",64026,118,43583],["Effingham","2021-09-05",64026,59,43642],["Effingham","2021-09-06",64026,52,43694],["Effingham","2021-09-07",64026,155,43849],["Effingham","2021-09-08",64026,138,43987],["Effingham","2021-09-09",64026,221,44208],["Effingham","2021-09-10",64026,222,44430],["Effingham","2021-09-11",64026,107,44537],["Effingham","2021-09-12",64026,69,44606],["Effingham","2021-09-13",64026,128,44734],["Effingham","2021-09-14",64026,135,44869],["Effingham","2021-09-15",64026,118,44987],["Effingham","2021-09-16",64026,167,45154],["Effingham","2021-09-17",64026,213,45367],["Effingham","2021-09-18",64026,97,45464],["Effingham","2021-09-19",64026,67,45531],["Effingham","2021-09-20",64026,110,45641],["Effingham","2021-09-21",64026,120,45761],["Effingham","2021-09-22",64026,146,45907],["Effingham","2021-09-23",64026,155,46062],["Effingham","2021-09-24",64026,205,46267],["Effingham","2021-09-25",64026,67,46334],["Effingham","2021-09-26",64026,49,46383],["Effingham","2021-09-27",64026,129,46512],["Effingham","2021-09-28",64026,115,46627],["Effingham","2021-09-29",64026,147,46774],["Effingham","2021-09-30",64026,194,46968],["Effingham","2021-10-01",64026,223,47191],["Effingham","2021-10-02",64026,70,47261],["Effingham","2021-10-03",64026,56,47317],["Effingham","2021-10-04",64026,97,47414],["Effingham","2021-10-05",64026,93,47507],["Effingham","2021-10-06",64026,120,47627],["Effingham","2021-10-07",64026,145,47772],["Effingham","2021-10-08",64026,178,47950],["Effingham","2021-10-09",64026,53,48003],["Effingham","2021-10-10",64026,54,48057],["Effingham","2021-10-11",64026,85,48142],["Effingham","2021-10-12",64026,85,48227],["Effingham","2021-10-13",64026,124,48351],["Effingham","2021-10-14",64026,95,48446],["Effingham","2021-10-15",64026,139,48585],["Effingham","2021-10-16",64026,34,48619],["Effingham","2021-10-17",64026,23,48642],["Effingham","2021-10-18",64026,53,48695],["Effingham","2021-10-19",64026,61,48756],["Effingham","2021-10-20",64026,60,48816],["Effingham","2021-10-21",64026,88,48904],["Effingham","2021-10-22",64026,148,49052],["Effingham","2021-10-23",64026,68,49120],["Effingham","2021-10-24",64026,34,49154],["Effingham","2021-10-25",64026,107,49261],["Effingham","2021-10-26",64026,88,49349],["Effingham","2021-10-27",64026,116,49465],["Effingham","2021-10-28",64026,197,49662],["Effingham","2021-10-29",64026,208,49870],["Effingham","2021-10-30",64026,39,49909],["Effingham","2021-10-31",64026,27,49936],["Effingham","2021-11-01",64026,81,50017],["Effingham","2021-11-02",64026,94,50111],["Effingham","2021-11-03",64026,99,50210],["Effingham","2021-11-04",64026,251,50461],["Effingham","2021-11-05",64026,202,50663],["Effingham","2021-11-06",64026,75,50738],["Effingham","2021-11-07",64026,35,50773],["Effingham","2021-11-08",64026,109,50882],["Effingham","2021-11-09",64026,94,50976],["Effingham","2021-11-10",64026,117,51093],["Effingham","2021-11-11",64026,68,51161],["Effingham","2021-11-12",64026,166,51327],["Effingham","2021-11-13",64026,83,51410],["Effingham","2021-11-14",64026,26,51436],["Effingham","2021-11-15",64026,120,51556],["Effingham","2021-11-16",64026,74,51630],["Effingham","2021-11-17",64026,102,51732],["Effingham","2021-11-18",64026,233,51965],["Effingham","2021-11-19",64026,244,52209],["Effingham","2021-11-20",64026,65,52274],["Effingham","2021-11-21",64026,41,52315],["Effingham","2021-11-22",64026,121,52436],["Effingham","2021-11-23",64026,130,52566],["Effingham","2021-11-24",64026,69,52635],["Effingham","2021-11-26",64026,89,52724],["Effingham","2021-11-27",64026,67,52791],["Effingham","2021-11-28",64026,46,52837],["Effingham","2021-11-29",64026,124,52961],["Effingham","2021-11-30",64026,135,53096],["Effingham","2021-12-01",64026,169,53265],["Effingham","2021-12-02",64026,298,53563],["Effingham","2021-12-03",64026,349,53912],["Effingham","2021-12-04",64026,100,54012],["Effingham","2021-12-05",64026,63,54075],["Effingham","2021-12-06",64026,142,54217],["Effingham","2021-12-07",64026,109,54326],["Effingham","2021-12-08",64026,120,54446],["Effingham","2021-12-09",64026,224,54670],["Effingham","2021-12-10",64026,245,54915],["Effingham","2021-12-11",64026,63,54978],["Effingham","2021-12-12",64026,47,55025],["Effingham","2021-12-13",64026,129,55154],["Effingham","2021-12-14",64026,111,55265],["Effingham","2021-12-15",64026,126,55391],["Effingham","2021-12-16",64026,158,55549],["Effingham","2021-12-17",64026,178,55727],["Effingham","2021-12-18",64026,68,55795],["Effingham","2021-12-19",64026,52,55847],["Effingham","2021-12-20",64026,133,55980],["Effingham","2021-12-21",64026,153,56133],["Effingham","2021-12-22",64026,146,56279],["Effingham","2021-12-23",64026,106,56385],["Effingham","2021-12-24",64026,37,56422],["Effingham","2021-12-26",64026,45,56467],["Effingham","2021-12-27",64026,135,56602],["Effingham","2021-12-28",64026,116,56718],["Effingham","2021-12-29",64026,125,56843],["Effingham","2021-12-30",64026,183,57026],["Effingham","2021-12-31",64026,68,57094],["Effingham","2022-01-01",64026,13,57107],["Effingham","2022-01-02",64026,49,57156],["Effingham","2022-01-03",64026,49,57205],["Elbert","2020-12-17",18945,7,7],["Elbert","2020-12-18",18945,21,28],["Elbert","2020-12-21",18945,1,29],["Elbert","2020-12-22",18945,8,37],["Elbert","2020-12-23",18945,12,49],["Elbert","2020-12-24",18945,3,52],["Elbert","2020-12-27",18945,1,53],["Elbert","2020-12-28",18945,44,97],["Elbert","2020-12-29",18945,12,109],["Elbert","2020-12-30",18945,10,119],["Elbert","2020-12-31",18945,1,120],["Elbert","2021-01-01",18945,2,122],["Elbert","2021-01-02",18945,1,123],["Elbert","2021-01-03",18945,25,148],["Elbert","2021-01-04",18945,71,219],["Elbert","2021-01-05",18945,66,285],["Elbert","2021-01-06",18945,59,344],["Elbert","2021-01-07",18945,62,406],["Elbert","2021-01-08",18945,68,474],["Elbert","2021-01-11",18945,86,560],["Elbert","2021-01-12",18945,73,633],["Elbert","2021-01-13",18945,91,724],["Elbert","2021-01-14",18945,122,846],["Elbert","2021-01-15",18945,95,941],["Elbert","2021-01-16",18945,11,952],["Elbert","2021-01-17",18945,5,957],["Elbert","2021-01-18",18945,113,1070],["Elbert","2021-01-19",18945,99,1169],["Elbert","2021-01-20",18945,166,1335],["Elbert","2021-01-21",18945,157,1492],["Elbert","2021-01-22",18945,75,1567],["Elbert","2021-01-23",18945,23,1590],["Elbert","2021-01-24",18945,32,1622],["Elbert","2021-01-25",18945,105,1727],["Elbert","2021-01-26",18945,83,1810],["Elbert","2021-01-27",18945,176,1986],["Elbert","2021-01-28",18945,107,2093],["Elbert","2021-01-29",18945,108,2201],["Elbert","2021-01-30",18945,3,2204],["Elbert","2021-01-31",18945,3,2207],["Elbert","2021-02-01",18945,110,2317],["Elbert","2021-02-02",18945,170,2487],["Elbert","2021-02-03",18945,229,2716],["Elbert","2021-02-04",18945,255,2971],["Elbert","2021-02-05",18945,167,3138],["Elbert","2021-02-06",18945,19,3157],["Elbert","2021-02-07",18945,19,3176],["Elbert","2021-02-08",18945,102,3278],["Elbert","2021-02-09",18945,128,3406],["Elbert","2021-02-10",18945,182,3588],["Elbert","2021-02-11",18945,179,3767],["Elbert","2021-02-12",18945,180,3947],["Elbert","2021-02-13",18945,37,3984],["Elbert","2021-02-14",18945,13,3997],["Elbert","2021-02-15",18945,43,4040],["Elbert","2021-02-16",18945,103,4143],["Elbert","2021-02-17",18945,115,4258],["Elbert","2021-02-18",18945,127,4385],["Elbert","2021-02-19",18945,87,4472],["Elbert","2021-02-20",18945,5,4477],["Elbert","2021-02-21",18945,1,4478],["Elbert","2021-02-22",18945,32,4510],["Elbert","2021-02-23",18945,166,4676],["Elbert","2021-02-24",18945,163,4839],["Elbert","2021-02-25",18945,92,4931],["Elbert","2021-02-26",18945,102,5033],["Elbert","2021-02-27",18945,21,5054],["Elbert","2021-02-28",18945,7,5061],["Elbert","2021-03-01",18945,101,5162],["Elbert","2021-03-02",18945,183,5345],["Elbert","2021-03-03",18945,219,5564],["Elbert","2021-03-04",18945,131,5695],["Elbert","2021-03-05",18945,134,5829],["Elbert","2021-03-06",18945,28,5857],["Elbert","2021-03-07",18945,24,5881],["Elbert","2021-03-08",18945,68,5949],["Elbert","2021-03-09",18945,114,6063],["Elbert","2021-03-10",18945,92,6155],["Elbert","2021-03-11",18945,114,6269],["Elbert","2021-03-12",18945,144,6413],["Elbert","2021-03-13",18945,32,6445],["Elbert","2021-03-14",18945,32,6477],["Elbert","2021-03-15",18945,36,6513],["Elbert","2021-03-16",18945,177,6690],["Elbert","2021-03-17",18945,152,6842],["Elbert","2021-03-18",18945,168,7010],["Elbert","2021-03-19",18945,174,7184],["Elbert","2021-03-20",18945,20,7204],["Elbert","2021-03-21",18945,20,7224],["Elbert","2021-03-22",18945,109,7333],["Elbert","2021-03-23",18945,142,7475],["Elbert","2021-03-24",18945,96,7571],["Elbert","2021-03-25",18945,93,7664],["Elbert","2021-03-26",18945,134,7798],["Elbert","2021-03-27",18945,13,7811],["Elbert","2021-03-28",18945,24,7835],["Elbert","2021-03-29",18945,106,7941],["Elbert","2021-03-30",18945,187,8128],["Elbert","2021-03-31",18945,109,8237],["Elbert","2021-04-01",18945,129,8366],["Elbert","2021-04-02",18945,86,8452],["Elbert","2021-04-03",18945,30,8482],["Elbert","2021-04-04",18945,31,8513],["Elbert","2021-04-05",18945,82,8595],["Elbert","2021-04-06",18945,166,8761],["Elbert","2021-04-07",18945,160,8921],["Elbert","2021-04-08",18945,225,9146],["Elbert","2021-04-09",18945,144,9290],["Elbert","2021-04-10",18945,32,9322],["Elbert","2021-04-11",18945,22,9344],["Elbert","2021-04-12",18945,69,9413],["Elbert","2021-04-13",18945,144,9557],["Elbert","2021-04-14",18945,89,9646],["Elbert","2021-04-15",18945,114,9760],["Elbert","2021-04-16",18945,133,9893],["Elbert","2021-04-17",18945,33,9926],["Elbert","2021-04-18",18945,10,9936],["Elbert","2021-04-19",18945,71,10007],["Elbert","2021-04-20",18945,88,10095],["Elbert","2021-04-21",18945,78,10173],["Elbert","2021-04-22",18945,125,10298],["Elbert","2021-04-23",18945,105,10403],["Elbert","2021-04-24",18945,28,10431],["Elbert","2021-04-25",18945,7,10438],["Elbert","2021-04-26",18945,96,10534],["Elbert","2021-04-27",18945,159,10693],["Elbert","2021-04-28",18945,76,10769],["Elbert","2021-04-29",18945,116,10885],["Elbert","2021-04-30",18945,75,10960],["Elbert","2021-05-01",18945,24,10984],["Elbert","2021-05-02",18945,13,10997],["Elbert","2021-05-03",18945,33,11030],["Elbert","2021-05-04",18945,71,11101],["Elbert","2021-05-05",18945,68,11169],["Elbert","2021-05-06",18945,100,11269],["Elbert","2021-05-07",18945,40,11309],["Elbert","2021-05-08",18945,25,11334],["Elbert","2021-05-09",18945,6,11340],["Elbert","2021-05-10",18945,33,11373],["Elbert","2021-05-11",18945,32,11405],["Elbert","2021-05-12",18945,40,11445],["Elbert","2021-05-13",18945,38,11483],["Elbert","2021-05-14",18945,45,11528],["Elbert","2021-05-15",18945,20,11548],["Elbert","2021-05-16",18945,5,11553],["Elbert","2021-05-17",18945,60,11613],["Elbert","2021-05-18",18945,68,11681],["Elbert","2021-05-19",18945,38,11719],["Elbert","2021-05-20",18945,77,11796],["Elbert","2021-05-21",18945,49,11845],["Elbert","2021-05-22",18945,13,11858],["Elbert","2021-05-23",18945,5,11863],["Elbert","2021-05-24",18945,21,11884],["Elbert","2021-05-25",18945,45,11929],["Elbert","2021-05-26",18945,29,11958],["Elbert","2021-05-27",18945,42,12000],["Elbert","2021-05-28",18945,25,12025],["Elbert","2021-05-29",18945,12,12037],["Elbert","2021-05-30",18945,2,12039],["Elbert","2021-05-31",18945,4,12043],["Elbert","2021-06-01",18945,58,12101],["Elbert","2021-06-02",18945,33,12134],["Elbert","2021-06-03",18945,20,12154],["Elbert","2021-06-04",18945,24,12178],["Elbert","2021-06-05",18945,15,12193],["Elbert","2021-06-06",18945,10,12203],["Elbert","2021-06-07",18945,17,12220],["Elbert","2021-06-08",18945,56,12276],["Elbert","2021-06-09",18945,21,12297],["Elbert","2021-06-10",18945,25,12322],["Elbert","2021-06-11",18945,32,12354],["Elbert","2021-06-12",18945,8,12362],["Elbert","2021-06-13",18945,2,12364],["Elbert","2021-06-14",18945,20,12384],["Elbert","2021-06-15",18945,31,12415],["Elbert","2021-06-16",18945,16,12431],["Elbert","2021-06-17",18945,15,12446],["Elbert","2021-06-18",18945,29,12475],["Elbert","2021-06-19",18945,11,12486],["Elbert","2021-06-20",18945,2,12488],["Elbert","2021-06-21",18945,14,12502],["Elbert","2021-06-22",18945,33,12535],["Elbert","2021-06-23",18945,12,12547],["Elbert","2021-06-24",18945,16,12563],["Elbert","2021-06-25",18945,9,12572],["Elbert","2021-06-26",18945,10,12582],["Elbert","2021-06-27",18945,6,12588],["Elbert","2021-06-28",18945,14,12602],["Elbert","2021-06-29",18945,40,12642],["Elbert","2021-06-30",18945,18,12660],["Elbert","2021-07-01",18945,13,12673],["Elbert","2021-07-02",18945,7,12680],["Elbert","2021-07-03",18945,6,12686],["Elbert","2021-07-04",18945,1,12687],["Elbert","2021-07-05",18945,10,12697],["Elbert","2021-07-06",18945,24,12721],["Elbert","2021-07-07",18945,21,12742],["Elbert","2021-07-08",18945,17,12759],["Elbert","2021-07-09",18945,31,12790],["Elbert","2021-07-10",18945,12,12802],["Elbert","2021-07-11",18945,4,12806],["Elbert","2021-07-12",18945,21,12827],["Elbert","2021-07-13",18945,28,12855],["Elbert","2021-07-14",18945,14,12869],["Elbert","2021-07-15",18945,20,12889],["Elbert","2021-07-16",18945,24,12913],["Elbert","2021-07-17",18945,9,12922],["Elbert","2021-07-18",18945,4,12926],["Elbert","2021-07-19",18945,23,12949],["Elbert","2021-07-20",18945,42,12991],["Elbert","2021-07-21",18945,21,13012],["Elbert","2021-07-22",18945,19,13031],["Elbert","2021-07-23",18945,27,13058],["Elbert","2021-07-24",18945,12,13070],["Elbert","2021-07-25",18945,3,13073],["Elbert","2021-07-26",18945,21,13094],["Elbert","2021-07-27",18945,35,13129],["Elbert","2021-07-28",18945,31,13160],["Elbert","2021-07-29",18945,24,13184],["Elbert","2021-07-30",18945,39,13223],["Elbert","2021-07-31",18945,32,13255],["Elbert","2021-08-01",18945,14,13269],["Elbert","2021-08-02",18945,45,13314],["Elbert","2021-08-03",18945,36,13350],["Elbert","2021-08-04",18945,34,13384],["Elbert","2021-08-05",18945,32,13416],["Elbert","2021-08-06",18945,24,13440],["Elbert","2021-08-07",18945,21,13461],["Elbert","2021-08-08",18945,98,13559],["Elbert","2021-08-09",18945,46,13605],["Elbert","2021-08-10",18945,81,13686],["Elbert","2021-08-11",18945,26,13712],["Elbert","2021-08-12",18945,45,13757],["Elbert","2021-08-13",18945,35,13792],["Elbert","2021-08-14",18945,27,13819],["Elbert","2021-08-15",18945,13,13832],["Elbert","2021-08-16",18945,38,13870],["Elbert","2021-08-17",18945,56,13926],["Elbert","2021-08-18",18945,46,13972],["Elbert","2021-08-19",18945,40,14012],["Elbert","2021-08-20",18945,50,14062],["Elbert","2021-08-21",18945,25,14087],["Elbert","2021-08-22",18945,8,14095],["Elbert","2021-08-23",18945,60,14155],["Elbert","2021-08-24",18945,73,14228],["Elbert","2021-08-25",18945,62,14290],["Elbert","2021-08-26",18945,58,14348],["Elbert","2021-08-27",18945,47,14395],["Elbert","2021-08-28",18945,44,14439],["Elbert","2021-08-29",18945,10,14449],["Elbert","2021-08-30",18945,134,14583],["Elbert","2021-08-31",18945,103,14686],["Elbert","2021-09-01",18945,74,14760],["Elbert","2021-09-02",18945,46,14806],["Elbert","2021-09-03",18945,52,14858],["Elbert","2021-09-04",18945,21,14879],["Elbert","2021-09-05",18945,20,14899],["Elbert","2021-09-06",18945,13,14912],["Elbert","2021-09-07",18945,65,14977],["Elbert","2021-09-08",18945,44,15021],["Elbert","2021-09-09",18945,45,15066],["Elbert","2021-09-10",18945,49,15115],["Elbert","2021-09-11",18945,29,15144],["Elbert","2021-09-12",18945,16,15160],["Elbert","2021-09-13",18945,54,15214],["Elbert","2021-09-14",18945,85,15299],["Elbert","2021-09-15",18945,46,15345],["Elbert","2021-09-16",18945,44,15389],["Elbert","2021-09-17",18945,36,15425],["Elbert","2021-09-18",18945,30,15455],["Elbert","2021-09-19",18945,6,15461],["Elbert","2021-09-20",18945,40,15501],["Elbert","2021-09-21",18945,83,15584],["Elbert","2021-09-22",18945,40,15624],["Elbert","2021-09-23",18945,30,15654],["Elbert","2021-09-24",18945,48,15702],["Elbert","2021-09-25",18945,18,15720],["Elbert","2021-09-26",18945,19,15739],["Elbert","2021-09-27",18945,100,15839],["Elbert","2021-09-28",18945,96,15935],["Elbert","2021-09-29",18945,34,15969],["Elbert","2021-09-30",18945,28,15997],["Elbert","2021-10-01",18945,47,16044],["Elbert","2021-10-02",18945,20,16064],["Elbert","2021-10-03",18945,6,16070],["Elbert","2021-10-04",18945,33,16103],["Elbert","2021-10-05",18945,81,16184],["Elbert","2021-10-06",18945,98,16282],["Elbert","2021-10-07",18945,42,16324],["Elbert","2021-10-08",18945,36,16360],["Elbert","2021-10-09",18945,10,16370],["Elbert","2021-10-10",18945,9,16379],["Elbert","2021-10-11",18945,43,16422],["Elbert","2021-10-12",18945,67,16489],["Elbert","2021-10-13",18945,41,16530],["Elbert","2021-10-14",18945,116,16646],["Elbert","2021-10-15",18945,27,16673],["Elbert","2021-10-16",18945,12,16685],["Elbert","2021-10-17",18945,7,16692],["Elbert","2021-10-18",18945,38,16730],["Elbert","2021-10-19",18945,84,16814],["Elbert","2021-10-20",18945,27,16841],["Elbert","2021-10-21",18945,62,16903],["Elbert","2021-10-22",18945,19,16922],["Elbert","2021-10-23",18945,34,16956],["Elbert","2021-10-24",18945,15,16971],["Elbert","2021-10-25",18945,50,17021],["Elbert","2021-10-26",18945,99,17120],["Elbert","2021-10-27",18945,47,17167],["Elbert","2021-10-28",18945,50,17217],["Elbert","2021-10-29",18945,54,17271],["Elbert","2021-10-30",18945,20,17291],["Elbert","2021-10-31",18945,10,17301],["Elbert","2021-11-01",18945,44,17345],["Elbert","2021-11-02",18945,91,17436],["Elbert","2021-11-03",18945,44,17480],["Elbert","2021-11-04",18945,29,17509],["Elbert","2021-11-05",18945,54,17563],["Elbert","2021-11-06",18945,13,17576],["Elbert","2021-11-07",18945,1,17577],["Elbert","2021-11-08",18945,35,17612],["Elbert","2021-11-09",18945,70,17682],["Elbert","2021-11-10",18945,54,17736],["Elbert","2021-11-11",18945,40,17776],["Elbert","2021-11-12",18945,34,17810],["Elbert","2021-11-13",18945,20,17830],["Elbert","2021-11-14",18945,13,17843],["Elbert","2021-11-15",18945,24,17867],["Elbert","2021-11-16",18945,66,17933],["Elbert","2021-11-17",18945,37,17970],["Elbert","2021-11-18",18945,36,18006],["Elbert","2021-11-19",18945,31,18037],["Elbert","2021-11-20",18945,20,18057],["Elbert","2021-11-21",18945,12,18069],["Elbert","2021-11-22",18945,66,18135],["Elbert","2021-11-23",18945,55,18190],["Elbert","2021-11-24",18945,41,18231],["Elbert","2021-11-25",18945,1,18232],["Elbert","2021-11-26",18945,19,18251],["Elbert","2021-11-27",18945,11,18262],["Elbert","2021-11-28",18945,11,18273],["Elbert","2021-11-29",18945,46,18319],["Elbert","2021-11-30",18945,114,18433],["Elbert","2021-12-01",18945,52,18485],["Elbert","2021-12-02",18945,65,18550],["Elbert","2021-12-03",18945,55,18605],["Elbert","2021-12-04",18945,27,18632],["Elbert","2021-12-05",18945,15,18647],["Elbert","2021-12-06",18945,43,18690],["Elbert","2021-12-07",18945,45,18735],["Elbert","2021-12-08",18945,48,18783],["Elbert","2021-12-09",18945,30,18813],["Elbert","2021-12-10",18945,65,18878],["Elbert","2021-12-11",18945,9,18887],["Elbert","2021-12-12",18945,5,18892],["Elbert","2021-12-13",18945,24,18916],["Elbert","2021-12-14",18945,50,18966],["Elbert","2021-12-15",18945,29,18995],["Elbert","2021-12-16",18945,32,19027],["Elbert","2021-12-17",18945,34,19061],["Elbert","2021-12-18",18945,10,19071],["Elbert","2021-12-19",18945,19,19090],["Elbert","2021-12-20",18945,48,19138],["Elbert","2021-12-21",18945,42,19180],["Elbert","2021-12-22",18945,43,19223],["Elbert","2021-12-23",18945,25,19248],["Elbert","2021-12-24",18945,10,19258],["Elbert","2021-12-26",18945,15,19273],["Elbert","2021-12-27",18945,30,19303],["Elbert","2021-12-28",18945,68,19371],["Elbert","2021-12-29",18945,43,19414],["Elbert","2021-12-30",18945,41,19455],["Elbert","2021-12-31",18945,33,19488],["Elbert","2022-01-01",18945,10,19498],["Elbert","2022-01-02",18945,10,19508],["Elbert","2022-01-03",18945,12,19520],["Emanuel","2020-12-17",22664,1,1],["Emanuel","2020-12-18",22664,3,4],["Emanuel","2020-12-19",22664,2,6],["Emanuel","2020-12-20",22664,3,9],["Emanuel","2020-12-22",22664,9,18],["Emanuel","2020-12-23",22664,8,26],["Emanuel","2020-12-24",22664,4,30],["Emanuel","2020-12-26",22664,2,32],["Emanuel","2020-12-27",22664,4,36],["Emanuel","2020-12-28",22664,45,81],["Emanuel","2020-12-29",22664,18,99],["Emanuel","2020-12-30",22664,14,113],["Emanuel","2020-12-31",22664,31,144],["Emanuel","2021-01-01",22664,1,145],["Emanuel","2021-01-02",22664,1,146],["Emanuel","2021-01-03",22664,1,147],["Emanuel","2021-01-04",22664,21,168],["Emanuel","2021-01-05",22664,71,239],["Emanuel","2021-01-06",22664,38,277],["Emanuel","2021-01-07",22664,111,388],["Emanuel","2021-01-08",22664,45,433],["Emanuel","2021-01-09",22664,35,468],["Emanuel","2021-01-10",22664,3,471],["Emanuel","2021-01-11",22664,19,490],["Emanuel","2021-01-12",22664,22,512],["Emanuel","2021-01-13",22664,320,832],["Emanuel","2021-01-14",22664,63,895],["Emanuel","2021-01-15",22664,34,929],["Emanuel","2021-01-16",22664,9,938],["Emanuel","2021-01-17",22664,9,947],["Emanuel","2021-01-18",22664,15,962],["Emanuel","2021-01-19",22664,281,1243],["Emanuel","2021-01-20",22664,186,1429],["Emanuel","2021-01-21",22664,127,1556],["Emanuel","2021-01-22",22664,74,1630],["Emanuel","2021-01-23",22664,7,1637],["Emanuel","2021-01-24",22664,1,1638],["Emanuel","2021-01-25",22664,50,1688],["Emanuel","2021-01-26",22664,60,1748],["Emanuel","2021-01-27",22664,148,1896],["Emanuel","2021-01-28",22664,145,2041],["Emanuel","2021-01-29",22664,32,2073],["Emanuel","2021-01-30",22664,42,2115],["Emanuel","2021-01-31",22664,3,2118],["Emanuel","2021-02-01",22664,31,2149],["Emanuel","2021-02-02",22664,228,2377],["Emanuel","2021-02-03",22664,153,2530],["Emanuel","2021-02-04",22664,81,2611],["Emanuel","2021-02-05",22664,98,2709],["Emanuel","2021-02-06",22664,15,2724],["Emanuel","2021-02-07",22664,7,2731],["Emanuel","2021-02-08",22664,16,2747],["Emanuel","2021-02-09",22664,136,2883],["Emanuel","2021-02-10",22664,361,3244],["Emanuel","2021-02-11",22664,31,3275],["Emanuel","2021-02-12",22664,61,3336],["Emanuel","2021-02-13",22664,14,3350],["Emanuel","2021-02-14",22664,8,3358],["Emanuel","2021-02-15",22664,29,3387],["Emanuel","2021-02-16",22664,303,3690],["Emanuel","2021-02-17",22664,248,3938],["Emanuel","2021-02-18",22664,90,4028],["Emanuel","2021-02-19",22664,192,4220],["Emanuel","2021-02-20",22664,2,4222],["Emanuel","2021-02-21",22664,17,4239],["Emanuel","2021-02-22",22664,20,4259],["Emanuel","2021-02-23",22664,42,4301],["Emanuel","2021-02-24",22664,225,4526],["Emanuel","2021-02-25",22664,83,4609],["Emanuel","2021-02-26",22664,43,4652],["Emanuel","2021-02-27",22664,3,4655],["Emanuel","2021-02-28",22664,3,4658],["Emanuel","2021-03-01",22664,23,4681],["Emanuel","2021-03-02",22664,194,4875],["Emanuel","2021-03-03",22664,132,5007],["Emanuel","2021-03-04",22664,69,5076],["Emanuel","2021-03-05",22664,57,5133],["Emanuel","2021-03-06",22664,9,5142],["Emanuel","2021-03-08",22664,27,5169],["Emanuel","2021-03-09",22664,111,5280],["Emanuel","2021-03-10",22664,184,5464],["Emanuel","2021-03-11",22664,69,5533],["Emanuel","2021-03-12",22664,158,5691],["Emanuel","2021-03-13",22664,20,5711],["Emanuel","2021-03-14",22664,9,5720],["Emanuel","2021-03-15",22664,65,5785],["Emanuel","2021-03-16",22664,135,5920],["Emanuel","2021-03-17",22664,224,6144],["Emanuel","2021-03-18",22664,69,6213],["Emanuel","2021-03-19",22664,212,6425],["Emanuel","2021-03-20",22664,7,6432],["Emanuel","2021-03-21",22664,2,6434],["Emanuel","2021-03-22",22664,37,6471],["Emanuel","2021-03-23",22664,97,6568],["Emanuel","2021-03-24",22664,169,6737],["Emanuel","2021-03-25",22664,105,6842],["Emanuel","2021-03-26",22664,106,6948],["Emanuel","2021-03-27",22664,26,6974],["Emanuel","2021-03-28",22664,14,6988],["Emanuel","2021-03-29",22664,38,7026],["Emanuel","2021-03-30",22664,115,7141],["Emanuel","2021-03-31",22664,147,7288],["Emanuel","2021-04-01",22664,72,7360],["Emanuel","2021-04-02",22664,80,7440],["Emanuel","2021-04-03",22664,13,7453],["Emanuel","2021-04-04",22664,12,7465],["Emanuel","2021-04-05",22664,53,7518],["Emanuel","2021-04-06",22664,101,7619],["Emanuel","2021-04-07",22664,205,7824],["Emanuel","2021-04-08",22664,79,7903],["Emanuel","2021-04-09",22664,138,8041],["Emanuel","2021-04-10",22664,20,8061],["Emanuel","2021-04-11",22664,13,8074],["Emanuel","2021-04-12",22664,47,8121],["Emanuel","2021-04-13",22664,147,8268],["Emanuel","2021-04-14",22664,219,8487],["Emanuel","2021-04-15",22664,55,8542],["Emanuel","2021-04-16",22664,182,8724],["Emanuel","2021-04-17",22664,13,8737],["Emanuel","2021-04-18",22664,1,8738],["Emanuel","2021-04-19",22664,37,8775],["Emanuel","2021-04-20",22664,111,8886],["Emanuel","2021-04-21",22664,206,9092],["Emanuel","2021-04-22",22664,77,9169],["Emanuel","2021-04-23",22664,85,9254],["Emanuel","2021-04-24",22664,12,9266],["Emanuel","2021-04-25",22664,3,9269],["Emanuel","2021-04-26",22664,41,9310],["Emanuel","2021-04-27",22664,61,9371],["Emanuel","2021-04-28",22664,168,9539],["Emanuel","2021-04-29",22664,53,9592],["Emanuel","2021-04-30",22664,90,9682],["Emanuel","2021-05-01",22664,35,9717],["Emanuel","2021-05-02",22664,8,9725],["Emanuel","2021-05-03",22664,21,9746],["Emanuel","2021-05-04",22664,61,9807],["Emanuel","2021-05-05",22664,148,9955],["Emanuel","2021-05-06",22664,55,10010],["Emanuel","2021-05-07",22664,78,10088],["Emanuel","2021-05-08",22664,15,10103],["Emanuel","2021-05-09",22664,5,10108],["Emanuel","2021-05-10",22664,31,10139],["Emanuel","2021-05-11",22664,66,10205],["Emanuel","2021-05-12",22664,81,10286],["Emanuel","2021-05-13",22664,31,10317],["Emanuel","2021-05-14",22664,49,10366],["Emanuel","2021-05-15",22664,11,10377],["Emanuel","2021-05-16",22664,6,10383],["Emanuel","2021-05-17",22664,26,10409],["Emanuel","2021-05-18",22664,110,10519],["Emanuel","2021-05-19",22664,99,10618],["Emanuel","2021-05-20",22664,51,10669],["Emanuel","2021-05-21",22664,38,10707],["Emanuel","2021-05-22",22664,22,10729],["Emanuel","2021-05-23",22664,6,10735],["Emanuel","2021-05-24",22664,27,10762],["Emanuel","2021-05-25",22664,29,10791],["Emanuel","2021-05-26",22664,78,10869],["Emanuel","2021-05-27",22664,31,10900],["Emanuel","2021-05-28",22664,50,10950],["Emanuel","2021-05-29",22664,8,10958],["Emanuel","2021-05-30",22664,7,10965],["Emanuel","2021-05-31",22664,5,10970],["Emanuel","2021-06-01",22664,56,11026],["Emanuel","2021-06-02",22664,75,11101],["Emanuel","2021-06-03",22664,34,11135],["Emanuel","2021-06-04",22664,45,11180],["Emanuel","2021-06-05",22664,19,11199],["Emanuel","2021-06-06",22664,7,11206],["Emanuel","2021-06-07",22664,23,11229],["Emanuel","2021-06-08",22664,39,11268],["Emanuel","2021-06-09",22664,68,11336],["Emanuel","2021-06-10",22664,22,11358],["Emanuel","2021-06-11",22664,46,11404],["Emanuel","2021-06-12",22664,15,11419],["Emanuel","2021-06-13",22664,13,11432],["Emanuel","2021-06-14",22664,22,11454],["Emanuel","2021-06-15",22664,36,11490],["Emanuel","2021-06-16",22664,55,11545],["Emanuel","2021-06-17",22664,36,11581],["Emanuel","2021-06-18",22664,17,11598],["Emanuel","2021-06-19",22664,16,11614],["Emanuel","2021-06-20",22664,2,11616],["Emanuel","2021-06-21",22664,22,11638],["Emanuel","2021-06-22",22664,18,11656],["Emanuel","2021-06-23",22664,56,11712],["Emanuel","2021-06-24",22664,18,11730],["Emanuel","2021-06-25",22664,18,11748],["Emanuel","2021-06-26",22664,12,11760],["Emanuel","2021-06-27",22664,2,11762],["Emanuel","2021-06-28",22664,13,11775],["Emanuel","2021-06-29",22664,21,11796],["Emanuel","2021-06-30",22664,45,11841],["Emanuel","2021-07-01",22664,21,11862],["Emanuel","2021-07-02",22664,17,11879],["Emanuel","2021-07-03",22664,10,11889],["Emanuel","2021-07-04",22664,1,11890],["Emanuel","2021-07-05",22664,16,11906],["Emanuel","2021-07-06",22664,20,11926],["Emanuel","2021-07-07",22664,44,11970],["Emanuel","2021-07-08",22664,13,11983],["Emanuel","2021-07-09",22664,25,12008],["Emanuel","2021-07-10",22664,7,12015],["Emanuel","2021-07-11",22664,4,12019],["Emanuel","2021-07-12",22664,15,12034],["Emanuel","2021-07-13",22664,24,12058],["Emanuel","2021-07-14",22664,39,12097],["Emanuel","2021-07-15",22664,30,12127],["Emanuel","2021-07-16",22664,32,12159],["Emanuel","2021-07-17",22664,12,12171],["Emanuel","2021-07-18",22664,7,12178],["Emanuel","2021-07-19",22664,26,12204],["Emanuel","2021-07-20",22664,39,12243],["Emanuel","2021-07-21",22664,87,12330],["Emanuel","2021-07-22",22664,42,12372],["Emanuel","2021-07-23",22664,64,12436],["Emanuel","2021-07-24",22664,29,12465],["Emanuel","2021-07-25",22664,6,12471],["Emanuel","2021-07-26",22664,36,12507],["Emanuel","2021-07-27",22664,35,12542],["Emanuel","2021-07-28",22664,87,12629],["Emanuel","2021-07-29",22664,141,12770],["Emanuel","2021-07-30",22664,56,12826],["Emanuel","2021-07-31",22664,32,12858],["Emanuel","2021-08-01",22664,13,12871],["Emanuel","2021-08-02",22664,48,12919],["Emanuel","2021-08-03",22664,48,12967],["Emanuel","2021-08-04",22664,70,13037],["Emanuel","2021-08-05",22664,45,13082],["Emanuel","2021-08-06",22664,44,13126],["Emanuel","2021-08-07",22664,58,13184],["Emanuel","2021-08-08",22664,17,13201],["Emanuel","2021-08-09",22664,58,13259],["Emanuel","2021-08-10",22664,58,13317],["Emanuel","2021-08-11",22664,117,13434],["Emanuel","2021-08-12",22664,108,13542],["Emanuel","2021-08-13",22664,95,13637],["Emanuel","2021-08-14",22664,52,13689],["Emanuel","2021-08-15",22664,17,13706],["Emanuel","2021-08-16",22664,95,13801],["Emanuel","2021-08-17",22664,79,13880],["Emanuel","2021-08-18",22664,166,14046],["Emanuel","2021-08-19",22664,79,14125],["Emanuel","2021-08-20",22664,97,14222],["Emanuel","2021-08-21",22664,43,14265],["Emanuel","2021-08-22",22664,20,14285],["Emanuel","2021-08-23",22664,92,14377],["Emanuel","2021-08-24",22664,58,14435],["Emanuel","2021-08-25",22664,157,14592],["Emanuel","2021-08-26",22664,147,14739],["Emanuel","2021-08-27",22664,118,14857],["Emanuel","2021-08-28",22664,49,14906],["Emanuel","2021-08-29",22664,26,14932],["Emanuel","2021-08-30",22664,107,15039],["Emanuel","2021-08-31",22664,90,15129],["Emanuel","2021-09-01",22664,122,15251],["Emanuel","2021-09-02",22664,80,15331],["Emanuel","2021-09-03",22664,80,15411],["Emanuel","2021-09-04",22664,45,15456],["Emanuel","2021-09-05",22664,20,15476],["Emanuel","2021-09-06",22664,12,15488],["Emanuel","2021-09-07",22664,82,15570],["Emanuel","2021-09-08",22664,118,15688],["Emanuel","2021-09-09",22664,97,15785],["Emanuel","2021-09-10",22664,105,15890],["Emanuel","2021-09-11",22664,38,15928],["Emanuel","2021-09-12",22664,17,15945],["Emanuel","2021-09-13",22664,73,16018],["Emanuel","2021-09-14",22664,72,16090],["Emanuel","2021-09-15",22664,127,16217],["Emanuel","2021-09-16",22664,79,16296],["Emanuel","2021-09-17",22664,86,16382],["Emanuel","2021-09-18",22664,55,16437],["Emanuel","2021-09-19",22664,5,16442],["Emanuel","2021-09-20",22664,80,16522],["Emanuel","2021-09-21",22664,81,16603],["Emanuel","2021-09-22",22664,91,16694],["Emanuel","2021-09-23",22664,62,16756],["Emanuel","2021-09-24",22664,85,16841],["Emanuel","2021-09-25",22664,25,16866],["Emanuel","2021-09-26",22664,17,16883],["Emanuel","2021-09-27",22664,39,16922],["Emanuel","2021-09-28",22664,39,16961],["Emanuel","2021-09-29",22664,53,17014],["Emanuel","2021-09-30",22664,40,17054],["Emanuel","2021-10-01",22664,59,17113],["Emanuel","2021-10-02",22664,27,17140],["Emanuel","2021-10-03",22664,5,17145],["Emanuel","2021-10-04",22664,28,17173],["Emanuel","2021-10-05",22664,26,17199],["Emanuel","2021-10-06",22664,44,17243],["Emanuel","2021-10-07",22664,36,17279],["Emanuel","2021-10-08",22664,42,17321],["Emanuel","2021-10-09",22664,24,17345],["Emanuel","2021-10-10",22664,8,17353],["Emanuel","2021-10-11",22664,14,17367],["Emanuel","2021-10-12",22664,30,17397],["Emanuel","2021-10-13",22664,21,17418],["Emanuel","2021-10-14",22664,24,17442],["Emanuel","2021-10-15",22664,44,17486],["Emanuel","2021-10-16",22664,8,17494],["Emanuel","2021-10-17",22664,6,17500],["Emanuel","2021-10-18",22664,31,17531],["Emanuel","2021-10-19",22664,23,17554],["Emanuel","2021-10-20",22664,50,17604],["Emanuel","2021-10-21",22664,24,17628],["Emanuel","2021-10-22",22664,29,17657],["Emanuel","2021-10-23",22664,16,17673],["Emanuel","2021-10-24",22664,5,17678],["Emanuel","2021-10-25",22664,52,17730],["Emanuel","2021-10-26",22664,122,17852],["Emanuel","2021-10-27",22664,117,17969],["Emanuel","2021-10-28",22664,67,18036],["Emanuel","2021-10-29",22664,34,18070],["Emanuel","2021-10-30",22664,15,18085],["Emanuel","2021-10-31",22664,4,18089],["Emanuel","2021-11-01",22664,60,18149],["Emanuel","2021-11-02",22664,90,18239],["Emanuel","2021-11-03",22664,95,18334],["Emanuel","2021-11-04",22664,45,18379],["Emanuel","2021-11-05",22664,63,18442],["Emanuel","2021-11-06",22664,6,18448],["Emanuel","2021-11-07",22664,1,18449],["Emanuel","2021-11-08",22664,63,18512],["Emanuel","2021-11-09",22664,41,18553],["Emanuel","2021-11-10",22664,50,18603],["Emanuel","2021-11-11",22664,23,18626],["Emanuel","2021-11-12",22664,53,18679],["Emanuel","2021-11-13",22664,16,18695],["Emanuel","2021-11-14",22664,1,18696],["Emanuel","2021-11-15",22664,63,18759],["Emanuel","2021-11-16",22664,79,18838],["Emanuel","2021-11-17",22664,127,18965],["Emanuel","2021-11-18",22664,93,19058],["Emanuel","2021-11-19",22664,79,19137],["Emanuel","2021-11-20",22664,38,19175],["Emanuel","2021-11-21",22664,19,19194],["Emanuel","2021-11-22",22664,55,19249],["Emanuel","2021-11-23",22664,103,19352],["Emanuel","2021-11-24",22664,22,19374],["Emanuel","2021-11-26",22664,23,19397],["Emanuel","2021-11-27",22664,6,19403],["Emanuel","2021-11-28",22664,5,19408],["Emanuel","2021-11-29",22664,63,19471],["Emanuel","2021-11-30",22664,125,19596],["Emanuel","2021-12-01",22664,134,19730],["Emanuel","2021-12-02",22664,75,19805],["Emanuel","2021-12-03",22664,53,19858],["Emanuel","2021-12-04",22664,16,19874],["Emanuel","2021-12-05",22664,16,19890],["Emanuel","2021-12-06",22664,51,19941],["Emanuel","2021-12-07",22664,75,20016],["Emanuel","2021-12-08",22664,53,20069],["Emanuel","2021-12-09",22664,72,20141],["Emanuel","2021-12-10",22664,58,20199],["Emanuel","2021-12-11",22664,33,20232],["Emanuel","2021-12-12",22664,2,20234],["Emanuel","2021-12-13",22664,39,20273],["Emanuel","2021-12-14",22664,48,20321],["Emanuel","2021-12-15",22664,56,20377],["Emanuel","2021-12-16",22664,38,20415],["Emanuel","2021-12-17",22664,60,20475],["Emanuel","2021-12-18",22664,8,20483],["Emanuel","2021-12-19",22664,6,20489],["Emanuel","2021-12-20",22664,59,20548],["Emanuel","2021-12-21",22664,54,20602],["Emanuel","2021-12-22",22664,51,20653],["Emanuel","2021-12-23",22664,38,20691],["Emanuel","2021-12-24",22664,11,20702],["Emanuel","2021-12-26",22664,6,20708],["Emanuel","2021-12-27",22664,36,20744],["Emanuel","2021-12-28",22664,70,20814],["Emanuel","2021-12-29",22664,48,20862],["Emanuel","2021-12-30",22664,53,20915],["Emanuel","2021-12-31",22664,15,20930],["Emanuel","2022-01-01",22664,6,20936],["Emanuel","2022-01-02",22664,4,20940],["Emanuel","2022-01-03",22664,26,20966],["Evans","2020-12-18",10687,3,3],["Evans","2020-12-21",10687,2,5],["Evans","2020-12-22",10687,2,7],["Evans","2020-12-23",10687,10,17],["Evans","2020-12-24",10687,10,27],["Evans","2020-12-27",10687,1,28],["Evans","2020-12-28",10687,11,39],["Evans","2020-12-29",10687,12,51],["Evans","2020-12-30",10687,31,82],["Evans","2020-12-31",10687,12,94],["Evans","2021-01-01",10687,4,98],["Evans","2021-01-02",10687,4,102],["Evans","2021-01-04",10687,17,119],["Evans","2021-01-05",10687,6,125],["Evans","2021-01-06",10687,24,149],["Evans","2021-01-07",10687,57,206],["Evans","2021-01-08",10687,24,230],["Evans","2021-01-09",10687,3,233],["Evans","2021-01-10",10687,3,236],["Evans","2021-01-11",10687,44,280],["Evans","2021-01-12",10687,107,387],["Evans","2021-01-13",10687,109,496],["Evans","2021-01-14",10687,84,580],["Evans","2021-01-15",10687,37,617],["Evans","2021-01-16",10687,5,622],["Evans","2021-01-17",10687,7,629],["Evans","2021-01-18",10687,85,714],["Evans","2021-01-19",10687,57,771],["Evans","2021-01-20",10687,55,826],["Evans","2021-01-21",10687,48,874],["Evans","2021-01-22",10687,21,895],["Evans","2021-01-23",10687,7,902],["Evans","2021-01-24",10687,1,903],["Evans","2021-01-25",10687,18,921],["Evans","2021-01-26",10687,31,952],["Evans","2021-01-27",10687,20,972],["Evans","2021-01-28",10687,62,1034],["Evans","2021-01-29",10687,36,1070],["Evans","2021-01-30",10687,8,1078],["Evans","2021-02-01",10687,30,1108],["Evans","2021-02-02",10687,30,1138],["Evans","2021-02-03",10687,76,1214],["Evans","2021-02-04",10687,49,1263],["Evans","2021-02-05",10687,75,1338],["Evans","2021-02-06",10687,1,1339],["Evans","2021-02-08",10687,64,1403],["Evans","2021-02-09",10687,131,1534],["Evans","2021-02-10",10687,125,1659],["Evans","2021-02-11",10687,90,1749],["Evans","2021-02-12",10687,86,1835],["Evans","2021-02-13",10687,18,1853],["Evans","2021-02-14",10687,4,1857],["Evans","2021-02-15",10687,85,1942],["Evans","2021-02-16",10687,61,2003],["Evans","2021-02-17",10687,87,2090],["Evans","2021-02-18",10687,68,2158],["Evans","2021-02-19",10687,25,2183],["Evans","2021-02-20",10687,3,2186],["Evans","2021-02-21",10687,2,2188],["Evans","2021-02-22",10687,59,2247],["Evans","2021-02-23",10687,43,2290],["Evans","2021-02-24",10687,69,2359],["Evans","2021-02-25",10687,61,2420],["Evans","2021-02-26",10687,20,2440],["Evans","2021-02-27",10687,6,2446],["Evans","2021-02-28",10687,3,2449],["Evans","2021-03-01",10687,56,2505],["Evans","2021-03-02",10687,49,2554],["Evans","2021-03-03",10687,57,2611],["Evans","2021-03-04",10687,73,2684],["Evans","2021-03-05",10687,60,2744],["Evans","2021-03-06",10687,4,2748],["Evans","2021-03-07",10687,7,2755],["Evans","2021-03-08",10687,47,2802],["Evans","2021-03-09",10687,65,2867],["Evans","2021-03-10",10687,62,2929],["Evans","2021-03-11",10687,74,3003],["Evans","2021-03-12",10687,94,3097],["Evans","2021-03-13",10687,10,3107],["Evans","2021-03-14",10687,10,3117],["Evans","2021-03-15",10687,45,3162],["Evans","2021-03-16",10687,48,3210],["Evans","2021-03-17",10687,88,3298],["Evans","2021-03-18",10687,51,3349],["Evans","2021-03-19",10687,51,3400],["Evans","2021-03-20",10687,9,3409],["Evans","2021-03-21",10687,9,3418],["Evans","2021-03-22",10687,65,3483],["Evans","2021-03-23",10687,52,3535],["Evans","2021-03-24",10687,94,3629],["Evans","2021-03-25",10687,69,3698],["Evans","2021-03-26",10687,32,3730],["Evans","2021-03-27",10687,13,3743],["Evans","2021-03-28",10687,8,3751],["Evans","2021-03-29",10687,81,3832],["Evans","2021-03-30",10687,101,3933],["Evans","2021-03-31",10687,63,3996],["Evans","2021-04-01",10687,106,4102],["Evans","2021-04-02",10687,23,4125],["Evans","2021-04-03",10687,10,4135],["Evans","2021-04-04",10687,12,4147],["Evans","2021-04-05",10687,59,4206],["Evans","2021-04-06",10687,54,4260],["Evans","2021-04-07",10687,51,4311],["Evans","2021-04-08",10687,58,4369],["Evans","2021-04-09",10687,46,4415],["Evans","2021-04-10",10687,32,4447],["Evans","2021-04-11",10687,17,4464],["Evans","2021-04-12",10687,64,4528],["Evans","2021-04-13",10687,35,4563],["Evans","2021-04-14",10687,87,4650],["Evans","2021-04-15",10687,59,4709],["Evans","2021-04-16",10687,82,4791],["Evans","2021-04-17",10687,14,4805],["Evans","2021-04-18",10687,2,4807],["Evans","2021-04-19",10687,39,4846],["Evans","2021-04-20",10687,34,4880],["Evans","2021-04-21",10687,74,4954],["Evans","2021-04-22",10687,37,4991],["Evans","2021-04-23",10687,52,5043],["Evans","2021-04-24",10687,5,5048],["Evans","2021-04-25",10687,3,5051],["Evans","2021-04-26",10687,49,5100],["Evans","2021-04-27",10687,73,5173],["Evans","2021-04-28",10687,45,5218],["Evans","2021-04-29",10687,60,5278],["Evans","2021-04-30",10687,42,5320],["Evans","2021-05-01",10687,24,5344],["Evans","2021-05-02",10687,3,5347],["Evans","2021-05-03",10687,18,5365],["Evans","2021-05-04",10687,39,5404],["Evans","2021-05-05",10687,51,5455],["Evans","2021-05-06",10687,70,5525],["Evans","2021-05-07",10687,44,5569],["Evans","2021-05-08",10687,8,5577],["Evans","2021-05-10",10687,29,5606],["Evans","2021-05-11",10687,30,5636],["Evans","2021-05-12",10687,33,5669],["Evans","2021-05-13",10687,25,5694],["Evans","2021-05-14",10687,37,5731],["Evans","2021-05-15",10687,15,5746],["Evans","2021-05-16",10687,4,5750],["Evans","2021-05-17",10687,26,5776],["Evans","2021-05-18",10687,25,5801],["Evans","2021-05-19",10687,48,5849],["Evans","2021-05-20",10687,19,5868],["Evans","2021-05-21",10687,36,5904],["Evans","2021-05-22",10687,4,5908],["Evans","2021-05-23",10687,2,5910],["Evans","2021-05-24",10687,26,5936],["Evans","2021-05-25",10687,13,5949],["Evans","2021-05-26",10687,30,5979],["Evans","2021-05-27",10687,42,6021],["Evans","2021-05-28",10687,20,6041],["Evans","2021-05-29",10687,8,6049],["Evans","2021-05-31",10687,1,6050],["Evans","2021-06-01",10687,28,6078],["Evans","2021-06-02",10687,29,6107],["Evans","2021-06-03",10687,23,6130],["Evans","2021-06-04",10687,15,6145],["Evans","2021-06-05",10687,8,6153],["Evans","2021-06-06",10687,2,6155],["Evans","2021-06-07",10687,17,6172],["Evans","2021-06-08",10687,22,6194],["Evans","2021-06-09",10687,21,6215],["Evans","2021-06-10",10687,23,6238],["Evans","2021-06-11",10687,19,6257],["Evans","2021-06-12",10687,9,6266],["Evans","2021-06-13",10687,2,6268],["Evans","2021-06-14",10687,15,6283],["Evans","2021-06-15",10687,13,6296],["Evans","2021-06-16",10687,20,6316],["Evans","2021-06-17",10687,33,6349],["Evans","2021-06-18",10687,25,6374],["Evans","2021-06-19",10687,10,6384],["Evans","2021-06-20",10687,4,6388],["Evans","2021-06-21",10687,9,6397],["Evans","2021-06-22",10687,18,6415],["Evans","2021-06-23",10687,12,6427],["Evans","2021-06-24",10687,14,6441],["Evans","2021-06-25",10687,18,6459],["Evans","2021-06-26",10687,11,6470],["Evans","2021-06-27",10687,1,6471],["Evans","2021-06-28",10687,15,6486],["Evans","2021-06-29",10687,14,6500],["Evans","2021-06-30",10687,17,6517],["Evans","2021-07-01",10687,15,6532],["Evans","2021-07-02",10687,9,6541],["Evans","2021-07-03",10687,3,6544],["Evans","2021-07-05",10687,3,6547],["Evans","2021-07-06",10687,7,6554],["Evans","2021-07-07",10687,12,6566],["Evans","2021-07-08",10687,12,6578],["Evans","2021-07-09",10687,13,6591],["Evans","2021-07-10",10687,5,6596],["Evans","2021-07-11",10687,3,6599],["Evans","2021-07-12",10687,16,6615],["Evans","2021-07-13",10687,12,6627],["Evans","2021-07-14",10687,21,6648],["Evans","2021-07-15",10687,18,6666],["Evans","2021-07-16",10687,19,6685],["Evans","2021-07-17",10687,8,6693],["Evans","2021-07-18",10687,10,6703],["Evans","2021-07-19",10687,21,6724],["Evans","2021-07-20",10687,26,6750],["Evans","2021-07-21",10687,23,6773],["Evans","2021-07-22",10687,32,6805],["Evans","2021-07-23",10687,25,6830],["Evans","2021-07-24",10687,19,6849],["Evans","2021-07-25",10687,20,6869],["Evans","2021-07-26",10687,24,6893],["Evans","2021-07-27",10687,32,6925],["Evans","2021-07-28",10687,28,6953],["Evans","2021-07-29",10687,33,6986],["Evans","2021-07-30",10687,46,7032],["Evans","2021-07-31",10687,19,7051],["Evans","2021-08-01",10687,9,7060],["Evans","2021-08-02",10687,26,7086],["Evans","2021-08-03",10687,15,7101],["Evans","2021-08-04",10687,37,7138],["Evans","2021-08-05",10687,43,7181],["Evans","2021-08-06",10687,33,7214],["Evans","2021-08-07",10687,19,7233],["Evans","2021-08-08",10687,13,7246],["Evans","2021-08-09",10687,28,7274],["Evans","2021-08-10",10687,31,7305],["Evans","2021-08-11",10687,46,7351],["Evans","2021-08-12",10687,28,7379],["Evans","2021-08-13",10687,34,7413],["Evans","2021-08-14",10687,15,7428],["Evans","2021-08-15",10687,10,7438],["Evans","2021-08-16",10687,20,7458],["Evans","2021-08-17",10687,40,7498],["Evans","2021-08-18",10687,30,7528],["Evans","2021-08-19",10687,39,7567],["Evans","2021-08-20",10687,52,7619],["Evans","2021-08-21",10687,29,7648],["Evans","2021-08-22",10687,16,7664],["Evans","2021-08-23",10687,37,7701],["Evans","2021-08-24",10687,38,7739],["Evans","2021-08-25",10687,45,7784],["Evans","2021-08-26",10687,35,7819],["Evans","2021-08-27",10687,51,7870],["Evans","2021-08-28",10687,15,7885],["Evans","2021-08-29",10687,6,7891],["Evans","2021-08-30",10687,28,7919],["Evans","2021-08-31",10687,25,7944],["Evans","2021-09-01",10687,48,7992],["Evans","2021-09-02",10687,39,8031],["Evans","2021-09-03",10687,54,8085],["Evans","2021-09-04",10687,9,8094],["Evans","2021-09-05",10687,6,8100],["Evans","2021-09-06",10687,3,8103],["Evans","2021-09-07",10687,43,8146],["Evans","2021-09-08",10687,31,8177],["Evans","2021-09-09",10687,26,8203],["Evans","2021-09-10",10687,39,8242],["Evans","2021-09-11",10687,8,8250],["Evans","2021-09-12",10687,3,8253],["Evans","2021-09-13",10687,20,8273],["Evans","2021-09-14",10687,22,8295],["Evans","2021-09-15",10687,26,8321],["Evans","2021-09-16",10687,16,8337],["Evans","2021-09-17",10687,32,8369],["Evans","2021-09-18",10687,12,8381],["Evans","2021-09-19",10687,3,8384],["Evans","2021-09-20",10687,24,8408],["Evans","2021-09-21",10687,19,8427],["Evans","2021-09-22",10687,19,8446],["Evans","2021-09-23",10687,22,8468],["Evans","2021-09-24",10687,28,8496],["Evans","2021-09-25",10687,6,8502],["Evans","2021-09-26",10687,2,8504],["Evans","2021-09-27",10687,8,8512],["Evans","2021-09-28",10687,24,8536],["Evans","2021-09-29",10687,16,8552],["Evans","2021-09-30",10687,20,8572],["Evans","2021-10-01",10687,31,8603],["Evans","2021-10-02",10687,1,8604],["Evans","2021-10-04",10687,15,8619],["Evans","2021-10-05",10687,23,8642],["Evans","2021-10-06",10687,10,8652],["Evans","2021-10-07",10687,25,8677],["Evans","2021-10-08",10687,14,8691],["Evans","2021-10-09",10687,3,8694],["Evans","2021-10-10",10687,3,8697],["Evans","2021-10-11",10687,6,8703],["Evans","2021-10-12",10687,14,8717],["Evans","2021-10-13",10687,3,8720],["Evans","2021-10-14",10687,30,8750],["Evans","2021-10-15",10687,11,8761],["Evans","2021-10-16",10687,4,8765],["Evans","2021-10-17",10687,2,8767],["Evans","2021-10-18",10687,8,8775],["Evans","2021-10-19",10687,32,8807],["Evans","2021-10-20",10687,5,8812],["Evans","2021-10-21",10687,35,8847],["Evans","2021-10-22",10687,12,8859],["Evans","2021-10-23",10687,6,8865],["Evans","2021-10-24",10687,3,8868],["Evans","2021-10-25",10687,12,8880],["Evans","2021-10-26",10687,85,8965],["Evans","2021-10-27",10687,15,8980],["Evans","2021-10-28",10687,67,9047],["Evans","2021-10-29",10687,22,9069],["Evans","2021-10-30",10687,5,9074],["Evans","2021-10-31",10687,2,9076],["Evans","2021-11-01",10687,19,9095],["Evans","2021-11-02",10687,62,9157],["Evans","2021-11-03",10687,19,9176],["Evans","2021-11-04",10687,79,9255],["Evans","2021-11-05",10687,33,9288],["Evans","2021-11-06",10687,4,9292],["Evans","2021-11-07",10687,3,9295],["Evans","2021-11-08",10687,16,9311],["Evans","2021-11-09",10687,50,9361],["Evans","2021-11-10",10687,11,9372],["Evans","2021-11-11",10687,40,9412],["Evans","2021-11-12",10687,40,9452],["Evans","2021-11-13",10687,8,9460],["Evans","2021-11-14",10687,2,9462],["Evans","2021-11-15",10687,15,9477],["Evans","2021-11-16",10687,48,9525],["Evans","2021-11-17",10687,14,9539],["Evans","2021-11-18",10687,46,9585],["Evans","2021-11-19",10687,53,9638],["Evans","2021-11-20",10687,14,9652],["Evans","2021-11-21",10687,12,9664],["Evans","2021-11-22",10687,35,9699],["Evans","2021-11-23",10687,17,9716],["Evans","2021-11-24",10687,17,9733],["Evans","2021-11-26",10687,9,9742],["Evans","2021-11-27",10687,4,9746],["Evans","2021-11-28",10687,3,9749],["Evans","2021-11-29",10687,33,9782],["Evans","2021-11-30",10687,62,9844],["Evans","2021-12-01",10687,21,9865],["Evans","2021-12-02",10687,61,9926],["Evans","2021-12-03",10687,39,9965],["Evans","2021-12-04",10687,12,9977],["Evans","2021-12-05",10687,7,9984],["Evans","2021-12-06",10687,24,10008],["Evans","2021-12-07",10687,35,10043],["Evans","2021-12-08",10687,20,10063],["Evans","2021-12-09",10687,37,10100],["Evans","2021-12-10",10687,35,10135],["Evans","2021-12-11",10687,4,10139],["Evans","2021-12-12",10687,4,10143],["Evans","2021-12-13",10687,28,10171],["Evans","2021-12-14",10687,24,10195],["Evans","2021-12-15",10687,18,10213],["Evans","2021-12-16",10687,22,10235],["Evans","2021-12-17",10687,18,10253],["Evans","2021-12-18",10687,9,10262],["Evans","2021-12-19",10687,3,10265],["Evans","2021-12-20",10687,19,10284],["Evans","2021-12-21",10687,25,10309],["Evans","2021-12-22",10687,18,10327],["Evans","2021-12-23",10687,32,10359],["Evans","2021-12-24",10687,2,10361],["Evans","2021-12-26",10687,8,10369],["Evans","2021-12-27",10687,22,10391],["Evans","2021-12-28",10687,36,10427],["Evans","2021-12-29",10687,17,10444],["Evans","2021-12-30",10687,49,10493],["Evans","2021-12-31",10687,15,10508],["Evans","2022-01-01",10687,1,10509],["Evans","2022-01-02",10687,11,10520],["Evans","2022-01-03",10687,7,10527],["Fannin","2020-12-17",26320,2,2],["Fannin","2020-12-18",26320,4,6],["Fannin","2020-12-19",26320,2,8],["Fannin","2020-12-20",26320,2,10],["Fannin","2020-12-21",26320,4,14],["Fannin","2020-12-22",26320,7,21],["Fannin","2020-12-23",26320,48,69],["Fannin","2020-12-24",26320,30,99],["Fannin","2020-12-27",26320,1,100],["Fannin","2020-12-28",26320,38,138],["Fannin","2020-12-29",26320,49,187],["Fannin","2020-12-30",26320,39,226],["Fannin","2020-12-31",26320,11,237],["Fannin","2021-01-01",26320,8,245],["Fannin","2021-01-02",26320,1,246],["Fannin","2021-01-03",26320,7,253],["Fannin","2021-01-04",26320,33,286],["Fannin","2021-01-05",26320,54,340],["Fannin","2021-01-06",26320,108,448],["Fannin","2021-01-07",26320,111,559],["Fannin","2021-01-08",26320,28,587],["Fannin","2021-01-09",26320,4,591],["Fannin","2021-01-10",26320,9,600],["Fannin","2021-01-11",26320,176,776],["Fannin","2021-01-12",26320,168,944],["Fannin","2021-01-13",26320,220,1164],["Fannin","2021-01-14",26320,203,1367],["Fannin","2021-01-15",26320,115,1482],["Fannin","2021-01-16",26320,23,1505],["Fannin","2021-01-17",26320,44,1549],["Fannin","2021-01-18",26320,179,1728],["Fannin","2021-01-19",26320,228,1956],["Fannin","2021-01-20",26320,366,2322],["Fannin","2021-01-21",26320,136,2458],["Fannin","2021-01-22",26320,215,2673],["Fannin","2021-01-23",26320,21,2694],["Fannin","2021-01-24",26320,21,2715],["Fannin","2021-01-25",26320,167,2882],["Fannin","2021-01-26",26320,103,2985],["Fannin","2021-01-27",26320,113,3098],["Fannin","2021-01-28",26320,101,3199],["Fannin","2021-01-29",26320,73,3272],["Fannin","2021-01-30",26320,8,3280],["Fannin","2021-01-31",26320,2,3282],["Fannin","2021-02-01",26320,111,3393],["Fannin","2021-02-02",26320,131,3524],["Fannin","2021-02-03",26320,193,3717],["Fannin","2021-02-04",26320,130,3847],["Fannin","2021-02-05",26320,116,3963],["Fannin","2021-02-06",26320,5,3968],["Fannin","2021-02-07",26320,4,3972],["Fannin","2021-02-08",26320,188,4160],["Fannin","2021-02-09",26320,207,4367],["Fannin","2021-02-10",26320,384,4751],["Fannin","2021-02-11",26320,225,4976],["Fannin","2021-02-12",26320,161,5137],["Fannin","2021-02-13",26320,27,5164],["Fannin","2021-02-14",26320,44,5208],["Fannin","2021-02-15",26320,205,5413],["Fannin","2021-02-16",26320,196,5609],["Fannin","2021-02-17",26320,203,5812],["Fannin","2021-02-18",26320,141,5953],["Fannin","2021-02-19",26320,123,6076],["Fannin","2021-02-20",26320,31,6107],["Fannin","2021-02-21",26320,20,6127],["Fannin","2021-02-22",26320,79,6206],["Fannin","2021-02-23",26320,173,6379],["Fannin","2021-02-24",26320,141,6520],["Fannin","2021-02-25",26320,148,6668],["Fannin","2021-02-26",26320,420,7088],["Fannin","2021-02-27",26320,22,7110],["Fannin","2021-02-28",26320,43,7153],["Fannin","2021-03-01",26320,255,7408],["Fannin","2021-03-02",26320,232,7640],["Fannin","2021-03-03",26320,239,7879],["Fannin","2021-03-04",26320,240,8119],["Fannin","2021-03-05",26320,165,8284],["Fannin","2021-03-06",26320,22,8306],["Fannin","2021-03-07",26320,35,8341],["Fannin","2021-03-08",26320,149,8490],["Fannin","2021-03-09",26320,153,8643],["Fannin","2021-03-10",26320,178,8821],["Fannin","2021-03-11",26320,130,8951],["Fannin","2021-03-12",26320,282,9233],["Fannin","2021-03-13",26320,32,9265],["Fannin","2021-03-14",26320,26,9291],["Fannin","2021-03-15",26320,232,9523],["Fannin","2021-03-16",26320,169,9692],["Fannin","2021-03-17",26320,252,9944],["Fannin","2021-03-18",26320,118,10062],["Fannin","2021-03-19",26320,133,10195],["Fannin","2021-03-20",26320,35,10230],["Fannin","2021-03-21",26320,25,10255],["Fannin","2021-03-22",26320,125,10380],["Fannin","2021-03-23",26320,144,10524],["Fannin","2021-03-24",26320,161,10685],["Fannin","2021-03-25",26320,193,10878],["Fannin","2021-03-26",26320,165,11043],["Fannin","2021-03-27",26320,28,11071],["Fannin","2021-03-28",26320,55,11126],["Fannin","2021-03-29",26320,211,11337],["Fannin","2021-03-30",26320,237,11574],["Fannin","2021-03-31",26320,262,11836],["Fannin","2021-04-01",26320,278,12114],["Fannin","2021-04-02",26320,126,12240],["Fannin","2021-04-03",26320,51,12291],["Fannin","2021-04-04",26320,37,12328],["Fannin","2021-04-05",26320,200,12528],["Fannin","2021-04-06",26320,158,12686],["Fannin","2021-04-07",26320,166,12852],["Fannin","2021-04-08",26320,170,13022],["Fannin","2021-04-09",26320,197,13219],["Fannin","2021-04-10",26320,88,13307],["Fannin","2021-04-11",26320,39,13346],["Fannin","2021-04-12",26320,308,13654],["Fannin","2021-04-13",26320,210,13864],["Fannin","2021-04-14",26320,141,14005],["Fannin","2021-04-15",26320,153,14158],["Fannin","2021-04-16",26320,143,14301],["Fannin","2021-04-17",26320,43,14344],["Fannin","2021-04-18",26320,22,14366],["Fannin","2021-04-19",26320,132,14498],["Fannin","2021-04-20",26320,141,14639],["Fannin","2021-04-21",26320,142,14781],["Fannin","2021-04-22",26320,127,14908],["Fannin","2021-04-23",26320,131,15039],["Fannin","2021-04-24",26320,22,15061],["Fannin","2021-04-25",26320,25,15086],["Fannin","2021-04-26",26320,104,15190],["Fannin","2021-04-27",26320,100,15290],["Fannin","2021-04-28",26320,116,15406],["Fannin","2021-04-29",26320,112,15518],["Fannin","2021-04-30",26320,104,15622],["Fannin","2021-05-01",26320,67,15689],["Fannin","2021-05-02",26320,20,15709],["Fannin","2021-05-03",26320,90,15799],["Fannin","2021-05-04",26320,95,15894],["Fannin","2021-05-05",26320,78,15972],["Fannin","2021-05-06",26320,72,16044],["Fannin","2021-05-07",26320,90,16134],["Fannin","2021-05-08",26320,19,16153],["Fannin","2021-05-09",26320,16,16169],["Fannin","2021-05-10",26320,70,16239],["Fannin","2021-05-11",26320,78,16317],["Fannin","2021-05-12",26320,33,16350],["Fannin","2021-05-13",26320,47,16397],["Fannin","2021-05-14",26320,66,16463],["Fannin","2021-05-15",26320,28,16491],["Fannin","2021-05-16",26320,20,16511],["Fannin","2021-05-17",26320,43,16554],["Fannin","2021-05-18",26320,49,16603],["Fannin","2021-05-19",26320,48,16651],["Fannin","2021-05-20",26320,41,16692],["Fannin","2021-05-21",26320,70,16762],["Fannin","2021-05-22",26320,13,16775],["Fannin","2021-05-23",26320,6,16781],["Fannin","2021-05-24",26320,46,16827],["Fannin","2021-05-25",26320,58,16885],["Fannin","2021-05-26",26320,29,16914],["Fannin","2021-05-27",26320,28,16942],["Fannin","2021-05-28",26320,51,16993],["Fannin","2021-05-29",26320,9,17002],["Fannin","2021-05-30",26320,8,17010],["Fannin","2021-05-31",26320,5,17015],["Fannin","2021-06-01",26320,53,17068],["Fannin","2021-06-02",26320,34,17102],["Fannin","2021-06-03",26320,20,17122],["Fannin","2021-06-04",26320,46,17168],["Fannin","2021-06-05",26320,17,17185],["Fannin","2021-06-06",26320,2,17187],["Fannin","2021-06-07",26320,25,17212],["Fannin","2021-06-08",26320,35,17247],["Fannin","2021-06-09",26320,22,17269],["Fannin","2021-06-10",26320,22,17291],["Fannin","2021-06-11",26320,14,17305],["Fannin","2021-06-12",26320,9,17314],["Fannin","2021-06-13",26320,5,17319],["Fannin","2021-06-14",26320,19,17338],["Fannin","2021-06-15",26320,23,17361],["Fannin","2021-06-16",26320,26,17387],["Fannin","2021-06-17",26320,19,17406],["Fannin","2021-06-18",26320,28,17434],["Fannin","2021-06-19",26320,5,17439],["Fannin","2021-06-20",26320,2,17441],["Fannin","2021-06-21",26320,19,17460],["Fannin","2021-06-22",26320,32,17492],["Fannin","2021-06-23",26320,27,17519],["Fannin","2021-06-24",26320,18,17537],["Fannin","2021-06-25",26320,33,17570],["Fannin","2021-06-26",26320,6,17576],["Fannin","2021-06-27",26320,2,17578],["Fannin","2021-06-28",26320,24,17602],["Fannin","2021-06-29",26320,21,17623],["Fannin","2021-06-30",26320,27,17650],["Fannin","2021-07-01",26320,14,17664],["Fannin","2021-07-02",26320,16,17680],["Fannin","2021-07-03",26320,5,17685],["Fannin","2021-07-04",26320,2,17687],["Fannin","2021-07-05",26320,14,17701],["Fannin","2021-07-06",26320,12,17713],["Fannin","2021-07-07",26320,16,17729],["Fannin","2021-07-08",26320,14,17743],["Fannin","2021-07-09",26320,16,17759],["Fannin","2021-07-10",26320,2,17761],["Fannin","2021-07-11",26320,8,17769],["Fannin","2021-07-12",26320,11,17780],["Fannin","2021-07-13",26320,24,17804],["Fannin","2021-07-14",26320,15,17819],["Fannin","2021-07-15",26320,18,17837],["Fannin","2021-07-16",26320,20,17857],["Fannin","2021-07-17",26320,6,17863],["Fannin","2021-07-18",26320,5,17868],["Fannin","2021-07-19",26320,11,17879],["Fannin","2021-07-20",26320,15,17894],["Fannin","2021-07-21",26320,18,17912],["Fannin","2021-07-22",26320,35,17947],["Fannin","2021-07-23",26320,22,17969],["Fannin","2021-07-24",26320,20,17989],["Fannin","2021-07-25",26320,6,17995],["Fannin","2021-07-26",26320,37,18032],["Fannin","2021-07-27",26320,26,18058],["Fannin","2021-07-28",26320,23,18081],["Fannin","2021-07-29",26320,28,18109],["Fannin","2021-07-30",26320,51,18160],["Fannin","2021-07-31",26320,18,18178],["Fannin","2021-08-01",26320,14,18192],["Fannin","2021-08-02",26320,31,18223],["Fannin","2021-08-03",26320,40,18263],["Fannin","2021-08-04",26320,36,18299],["Fannin","2021-08-05",26320,34,18333],["Fannin","2021-08-06",26320,49,18382],["Fannin","2021-08-07",26320,24,18406],["Fannin","2021-08-08",26320,19,18425],["Fannin","2021-08-09",26320,36,18461],["Fannin","2021-08-10",26320,34,18495],["Fannin","2021-08-11",26320,55,18550],["Fannin","2021-08-12",26320,51,18601],["Fannin","2021-08-13",26320,61,18662],["Fannin","2021-08-14",26320,23,18685],["Fannin","2021-08-15",26320,14,18699],["Fannin","2021-08-16",26320,56,18755],["Fannin","2021-08-17",26320,61,18816],["Fannin","2021-08-18",26320,54,18870],["Fannin","2021-08-19",26320,57,18927],["Fannin","2021-08-20",26320,61,18988],["Fannin","2021-08-21",26320,30,19018],["Fannin","2021-08-22",26320,20,19038],["Fannin","2021-08-23",26320,43,19081],["Fannin","2021-08-24",26320,54,19135],["Fannin","2021-08-25",26320,63,19198],["Fannin","2021-08-26",26320,72,19270],["Fannin","2021-08-27",26320,87,19357],["Fannin","2021-08-28",26320,105,19462],["Fannin","2021-08-29",26320,12,19474],["Fannin","2021-08-30",26320,68,19542],["Fannin","2021-08-31",26320,56,19598],["Fannin","2021-09-01",26320,79,19677],["Fannin","2021-09-02",26320,49,19726],["Fannin","2021-09-03",26320,78,19804],["Fannin","2021-09-04",26320,35,19839],["Fannin","2021-09-05",26320,18,19857],["Fannin","2021-09-06",26320,9,19866],["Fannin","2021-09-07",26320,64,19930],["Fannin","2021-09-08",26320,50,19980],["Fannin","2021-09-09",26320,44,20024],["Fannin","2021-09-10",26320,65,20089],["Fannin","2021-09-11",26320,26,20115],["Fannin","2021-09-12",26320,13,20128],["Fannin","2021-09-13",26320,41,20169],["Fannin","2021-09-14",26320,33,20202],["Fannin","2021-09-15",26320,44,20246],["Fannin","2021-09-16",26320,39,20285],["Fannin","2021-09-17",26320,55,20340],["Fannin","2021-09-18",26320,33,20373],["Fannin","2021-09-19",26320,9,20382],["Fannin","2021-09-20",26320,36,20418],["Fannin","2021-09-21",26320,39,20457],["Fannin","2021-09-22",26320,44,20501],["Fannin","2021-09-23",26320,22,20523],["Fannin","2021-09-24",26320,42,20565],["Fannin","2021-09-25",26320,24,20589],["Fannin","2021-09-26",26320,12,20601],["Fannin","2021-09-27",26320,42,20643],["Fannin","2021-09-28",26320,45,20688],["Fannin","2021-09-29",26320,34,20722],["Fannin","2021-09-30",26320,70,20792],["Fannin","2021-10-01",26320,42,20834],["Fannin","2021-10-02",26320,26,20860],["Fannin","2021-10-03",26320,7,20867],["Fannin","2021-10-04",26320,36,20903],["Fannin","2021-10-05",26320,25,20928],["Fannin","2021-10-06",26320,50,20978],["Fannin","2021-10-07",26320,26,21004],["Fannin","2021-10-08",26320,37,21041],["Fannin","2021-10-09",26320,12,21053],["Fannin","2021-10-10",26320,7,21060],["Fannin","2021-10-11",26320,17,21077],["Fannin","2021-10-12",26320,32,21109],["Fannin","2021-10-13",26320,21,21130],["Fannin","2021-10-14",26320,21,21151],["Fannin","2021-10-15",26320,19,21170],["Fannin","2021-10-16",26320,10,21180],["Fannin","2021-10-17",26320,10,21190],["Fannin","2021-10-18",26320,21,21211],["Fannin","2021-10-19",26320,18,21229],["Fannin","2021-10-20",26320,20,21249],["Fannin","2021-10-21",26320,25,21274],["Fannin","2021-10-22",26320,116,21390],["Fannin","2021-10-23",26320,67,21457],["Fannin","2021-10-24",26320,34,21491],["Fannin","2021-10-25",26320,116,21607],["Fannin","2021-10-26",26320,161,21768],["Fannin","2021-10-27",26320,146,21914],["Fannin","2021-10-28",26320,136,22050],["Fannin","2021-10-29",26320,127,22177],["Fannin","2021-10-30",26320,36,22213],["Fannin","2021-10-31",26320,23,22236],["Fannin","2021-11-01",26320,119,22355],["Fannin","2021-11-02",26320,119,22474],["Fannin","2021-11-03",26320,143,22617],["Fannin","2021-11-04",26320,122,22739],["Fannin","2021-11-05",26320,111,22850],["Fannin","2021-11-06",26320,33,22883],["Fannin","2021-11-07",26320,26,22909],["Fannin","2021-11-08",26320,84,22993],["Fannin","2021-11-09",26320,93,23086],["Fannin","2021-11-10",26320,88,23174],["Fannin","2021-11-11",26320,102,23276],["Fannin","2021-11-12",26320,96,23372],["Fannin","2021-11-13",26320,35,23407],["Fannin","2021-11-14",26320,29,23436],["Fannin","2021-11-15",26320,91,23527],["Fannin","2021-11-16",26320,102,23629],["Fannin","2021-11-17",26320,70,23699],["Fannin","2021-11-18",26320,76,23775],["Fannin","2021-11-19",26320,82,23857],["Fannin","2021-11-20",26320,51,23908],["Fannin","2021-11-21",26320,28,23936],["Fannin","2021-11-22",26320,82,24018],["Fannin","2021-11-23",26320,86,24104],["Fannin","2021-11-24",26320,40,24144],["Fannin","2021-11-26",26320,49,24193],["Fannin","2021-11-27",26320,40,24233],["Fannin","2021-11-28",26320,21,24254],["Fannin","2021-11-29",26320,85,24339],["Fannin","2021-11-30",26320,107,24446],["Fannin","2021-12-01",26320,91,24537],["Fannin","2021-12-02",26320,102,24639],["Fannin","2021-12-03",26320,107,24746],["Fannin","2021-12-04",26320,50,24796],["Fannin","2021-12-05",26320,18,24814],["Fannin","2021-12-06",26320,75,24889],["Fannin","2021-12-07",26320,69,24958],["Fannin","2021-12-08",26320,45,25003],["Fannin","2021-12-09",26320,53,25056],["Fannin","2021-12-10",26320,93,25149],["Fannin","2021-12-11",26320,31,25180],["Fannin","2021-12-12",26320,11,25191],["Fannin","2021-12-13",26320,60,25251],["Fannin","2021-12-14",26320,67,25318],["Fannin","2021-12-15",26320,45,25363],["Fannin","2021-12-16",26320,59,25422],["Fannin","2021-12-17",26320,73,25495],["Fannin","2021-12-18",26320,16,25511],["Fannin","2021-12-19",26320,13,25524],["Fannin","2021-12-20",26320,77,25601],["Fannin","2021-12-21",26320,67,25668],["Fannin","2021-12-22",26320,84,25752],["Fannin","2021-12-23",26320,43,25795],["Fannin","2021-12-24",26320,10,25805],["Fannin","2021-12-26",26320,8,25813],["Fannin","2021-12-27",26320,61,25874],["Fannin","2021-12-28",26320,41,25915],["Fannin","2021-12-29",26320,46,25961],["Fannin","2021-12-30",26320,39,26000],["Fannin","2021-12-31",26320,19,26019],["Fannin","2022-01-01",26320,4,26023],["Fannin","2022-01-02",26320,7,26030],["Fannin","2022-01-03",26320,9,26039],["Fayette","2020-12-15",117544,1,1],["Fayette","2020-12-16",117544,2,3],["Fayette","2020-12-17",117544,11,14],["Fayette","2020-12-18",117544,44,58],["Fayette","2020-12-19",117544,34,92],["Fayette","2020-12-20",117544,26,118],["Fayette","2020-12-21",117544,50,168],["Fayette","2020-12-22",117544,123,291],["Fayette","2020-12-23",117544,188,479],["Fayette","2020-12-24",117544,46,525],["Fayette","2020-12-25",117544,2,527],["Fayette","2020-12-26",117544,8,535],["Fayette","2020-12-27",117544,35,570],["Fayette","2020-12-28",117544,254,824],["Fayette","2020-12-29",117544,369,1193],["Fayette","2020-12-30",117544,206,1399],["Fayette","2020-12-31",117544,138,1537],["Fayette","2021-01-01",117544,68,1605],["Fayette","2021-01-02",117544,9,1614],["Fayette","2021-01-03",117544,18,1632],["Fayette","2021-01-04",117544,246,1878],["Fayette","2021-01-05",117544,108,1986],["Fayette","2021-01-06",117544,143,2129],["Fayette","2021-01-07",117544,122,2251],["Fayette","2021-01-08",117544,169,2420],["Fayette","2021-01-09",117544,96,2516],["Fayette","2021-01-10",117544,133,2649],["Fayette","2021-01-11",117544,396,3045],["Fayette","2021-01-12",117544,676,3721],["Fayette","2021-01-13",117544,919,4640],["Fayette","2021-01-14",117544,775,5415],["Fayette","2021-01-15",117544,680,6095],["Fayette","2021-01-16",117544,409,6504],["Fayette","2021-01-17",117544,223,6727],["Fayette","2021-01-18",117544,512,7239],["Fayette","2021-01-19",117544,683,7922],["Fayette","2021-01-20",117544,715,8637],["Fayette","2021-01-21",117544,552,9189],["Fayette","2021-01-22",117544,741,9930],["Fayette","2021-01-23",117544,227,10157],["Fayette","2021-01-24",117544,49,10206],["Fayette","2021-01-25",117544,620,10826],["Fayette","2021-01-26",117544,427,11253],["Fayette","2021-01-27",117544,559,11812],["Fayette","2021-01-28",117544,654,12466],["Fayette","2021-01-29",117544,802,13268],["Fayette","2021-01-30",117544,248,13516],["Fayette","2021-01-31",117544,161,13677],["Fayette","2021-02-01",117544,498,14175],["Fayette","2021-02-02",117544,396,14571],["Fayette","2021-02-03",117544,366,14937],["Fayette","2021-02-04",117544,642,15579],["Fayette","2021-02-05",117544,555,16134],["Fayette","2021-02-06",117544,139,16273],["Fayette","2021-02-07",117544,68,16341],["Fayette","2021-02-08",117544,462,16803],["Fayette","2021-02-09",117544,741,17544],["Fayette","2021-02-10",117544,1046,18590],["Fayette","2021-02-11",117544,800,19390],["Fayette","2021-02-12",117544,1178,20568],["Fayette","2021-02-13",117544,530,21098],["Fayette","2021-02-14",117544,194,21292],["Fayette","2021-02-15",117544,666,21958],["Fayette","2021-02-16",117544,923,22881],["Fayette","2021-02-17",117544,1315,24196],["Fayette","2021-02-18",117544,625,24821],["Fayette","2021-02-19",117544,868,25689],["Fayette","2021-02-20",117544,369,26058],["Fayette","2021-02-21",117544,63,26121],["Fayette","2021-02-22",117544,479,26600],["Fayette","2021-02-23",117544,943,27543],["Fayette","2021-02-24",117544,1234,28777],["Fayette","2021-02-25",117544,856,29633],["Fayette","2021-02-26",117544,967,30600],["Fayette","2021-02-27",117544,220,30820],["Fayette","2021-02-28",117544,162,30982],["Fayette","2021-03-01",117544,591,31573],["Fayette","2021-03-02",117544,696,32269],["Fayette","2021-03-03",117544,1259,33528],["Fayette","2021-03-04",117544,891,34419],["Fayette","2021-03-05",117544,1076,35495],["Fayette","2021-03-06",117544,211,35706],["Fayette","2021-03-07",117544,204,35910],["Fayette","2021-03-08",117544,729,36639],["Fayette","2021-03-09",117544,840,37479],["Fayette","2021-03-10",117544,1105,38584],["Fayette","2021-03-11",117544,1884,40468],["Fayette","2021-03-12",117544,1136,41604],["Fayette","2021-03-13",117544,343,41947],["Fayette","2021-03-14",117544,290,42237],["Fayette","2021-03-15",117544,1127,43364],["Fayette","2021-03-16",117544,1298,44662],["Fayette","2021-03-17",117544,1890,46552],["Fayette","2021-03-18",117544,1100,47652],["Fayette","2021-03-19",117544,1288,48940],["Fayette","2021-03-20",117544,347,49287],["Fayette","2021-03-21",117544,351,49638],["Fayette","2021-03-22",117544,996,50634],["Fayette","2021-03-23",117544,1305,51939],["Fayette","2021-03-24",117544,1711,53650],["Fayette","2021-03-25",117544,1481,55131],["Fayette","2021-03-26",117544,1425,56556],["Fayette","2021-03-27",117544,592,57148],["Fayette","2021-03-28",117544,453,57601],["Fayette","2021-03-29",117544,1117,58718],["Fayette","2021-03-30",117544,1598,60316],["Fayette","2021-03-31",117544,2041,62357],["Fayette","2021-04-01",117544,2892,65249],["Fayette","2021-04-02",117544,1316,66565],["Fayette","2021-04-03",117544,552,67117],["Fayette","2021-04-04",117544,332,67449],["Fayette","2021-04-05",117544,1284,68733],["Fayette","2021-04-06",117544,1752,70485],["Fayette","2021-04-07",117544,1785,72270],["Fayette","2021-04-08",117544,1375,73645],["Fayette","2021-04-09",117544,1424,75069],["Fayette","2021-04-10",117544,1075,76144],["Fayette","2021-04-11",117544,488,76632],["Fayette","2021-04-12",117544,1360,77992],["Fayette","2021-04-13",117544,1352,79344],["Fayette","2021-04-14",117544,1642,80986],["Fayette","2021-04-15",117544,1398,82384],["Fayette","2021-04-16",117544,1207,83591],["Fayette","2021-04-17",117544,447,84038],["Fayette","2021-04-18",117544,389,84427],["Fayette","2021-04-19",117544,1083,85510],["Fayette","2021-04-20",117544,1500,87010],["Fayette","2021-04-21",117544,1582,88592],["Fayette","2021-04-22",117544,1334,89926],["Fayette","2021-04-23",117544,1177,91103],["Fayette","2021-04-24",117544,552,91655],["Fayette","2021-04-25",117544,286,91941],["Fayette","2021-04-26",117544,812,92753],["Fayette","2021-04-27",117544,1119,93872],["Fayette","2021-04-28",117544,1196,95068],["Fayette","2021-04-29",117544,917,95985],["Fayette","2021-04-30",117544,1105,97090],["Fayette","2021-05-01",117544,969,98059],["Fayette","2021-05-02",117544,250,98309],["Fayette","2021-05-03",117544,653,98962],["Fayette","2021-05-04",117544,801,99763],["Fayette","2021-05-05",117544,978,100741],["Fayette","2021-05-06",117544,674,101415],["Fayette","2021-05-07",117544,724,102139],["Fayette","2021-05-08",117544,326,102465],["Fayette","2021-05-09",117544,149,102614],["Fayette","2021-05-10",117544,449,103063],["Fayette","2021-05-11",117544,632,103695],["Fayette","2021-05-12",117544,592,104287],["Fayette","2021-05-13",117544,551,104838],["Fayette","2021-05-14",117544,659,105497],["Fayette","2021-05-15",117544,482,105979],["Fayette","2021-05-16",117544,290,106269],["Fayette","2021-05-17",117544,521,106790],["Fayette","2021-05-18",117544,616,107406],["Fayette","2021-05-19",117544,633,108039],["Fayette","2021-05-20",117544,501,108540],["Fayette","2021-05-21",117544,614,109154],["Fayette","2021-05-22",117544,307,109461],["Fayette","2021-05-23",117544,176,109637],["Fayette","2021-05-24",117544,310,109947],["Fayette","2021-05-25",117544,359,110306],["Fayette","2021-05-26",117544,320,110626],["Fayette","2021-05-27",117544,363,110989],["Fayette","2021-05-28",117544,307,111296],["Fayette","2021-05-29",117544,193,111489],["Fayette","2021-05-30",117544,131,111620],["Fayette","2021-05-31",117544,63,111683],["Fayette","2021-06-01",117544,434,112117],["Fayette","2021-06-02",117544,366,112483],["Fayette","2021-06-03",117544,316,112799],["Fayette","2021-06-04",117544,367,113166],["Fayette","2021-06-05",117544,294,113460],["Fayette","2021-06-06",117544,208,113668],["Fayette","2021-06-07",117544,373,114041],["Fayette","2021-06-08",117544,311,114352],["Fayette","2021-06-09",117544,278,114630],["Fayette","2021-06-10",117544,286,114916],["Fayette","2021-06-11",117544,366,115282],["Fayette","2021-06-12",117544,204,115486],["Fayette","2021-06-13",117544,121,115607],["Fayette","2021-06-14",117544,260,115867],["Fayette","2021-06-15",117544,266,116133],["Fayette","2021-06-16",117544,223,116356],["Fayette","2021-06-17",117544,244,116600],["Fayette","2021-06-18",117544,242,116842],["Fayette","2021-06-19",117544,154,116996],["Fayette","2021-06-20",117544,86,117082],["Fayette","2021-06-21",117544,164,117246],["Fayette","2021-06-22",117544,230,117476],["Fayette","2021-06-23",117544,183,117659],["Fayette","2021-06-24",117544,175,117834],["Fayette","2021-06-25",117544,200,118034],["Fayette","2021-06-26",117544,120,118154],["Fayette","2021-06-27",117544,92,118246],["Fayette","2021-06-28",117544,170,118416],["Fayette","2021-06-29",117544,167,118583],["Fayette","2021-06-30",117544,190,118773],["Fayette","2021-07-01",117544,174,118947],["Fayette","2021-07-02",117544,211,119158],["Fayette","2021-07-03",117544,108,119266],["Fayette","2021-07-04",117544,14,119280],["Fayette","2021-07-05",117544,137,119417],["Fayette","2021-07-06",117544,178,119595],["Fayette","2021-07-07",117544,166,119761],["Fayette","2021-07-08",117544,149,119910],["Fayette","2021-07-09",117544,175,120085],["Fayette","2021-07-10",117544,111,120196],["Fayette","2021-07-11",117544,75,120271],["Fayette","2021-07-12",117544,132,120403],["Fayette","2021-07-13",117544,154,120557],["Fayette","2021-07-14",117544,142,120699],["Fayette","2021-07-15",117544,151,120850],["Fayette","2021-07-16",117544,169,121019],["Fayette","2021-07-17",117544,116,121135],["Fayette","2021-07-18",117544,93,121228],["Fayette","2021-07-19",117544,147,121375],["Fayette","2021-07-20",117544,206,121581],["Fayette","2021-07-21",117544,158,121739],["Fayette","2021-07-22",117544,190,121929],["Fayette","2021-07-23",117544,237,122166],["Fayette","2021-07-24",117544,163,122329],["Fayette","2021-07-25",117544,124,122453],["Fayette","2021-07-26",117544,234,122687],["Fayette","2021-07-27",117544,220,122907],["Fayette","2021-07-28",117544,263,123170],["Fayette","2021-07-29",117544,222,123392],["Fayette","2021-07-30",117544,287,123679],["Fayette","2021-07-31",117544,162,123841],["Fayette","2021-08-01",117544,125,123966],["Fayette","2021-08-02",117544,204,124170],["Fayette","2021-08-03",117544,219,124389],["Fayette","2021-08-04",117544,244,124633],["Fayette","2021-08-05",117544,240,124873],["Fayette","2021-08-06",117544,334,125207],["Fayette","2021-08-07",117544,213,125420],["Fayette","2021-08-08",117544,145,125565],["Fayette","2021-08-09",117544,240,125805],["Fayette","2021-08-10",117544,289,126094],["Fayette","2021-08-11",117544,263,126357],["Fayette","2021-08-12",117544,286,126643],["Fayette","2021-08-13",117544,274,126917],["Fayette","2021-08-14",117544,206,127123],["Fayette","2021-08-15",117544,167,127290],["Fayette","2021-08-16",117544,271,127561],["Fayette","2021-08-17",117544,290,127851],["Fayette","2021-08-18",117544,294,128145],["Fayette","2021-08-19",117544,275,128420],["Fayette","2021-08-20",117544,348,128768],["Fayette","2021-08-21",117544,242,129010],["Fayette","2021-08-22",117544,141,129151],["Fayette","2021-08-23",117544,306,129457],["Fayette","2021-08-24",117544,299,129756],["Fayette","2021-08-25",117544,294,130050],["Fayette","2021-08-26",117544,310,130360],["Fayette","2021-08-27",117544,377,130737],["Fayette","2021-08-28",117544,232,130969],["Fayette","2021-08-29",117544,170,131139],["Fayette","2021-08-30",117544,301,131440],["Fayette","2021-08-31",117544,307,131747],["Fayette","2021-09-01",117544,342,132089],["Fayette","2021-09-02",117544,292,132381],["Fayette","2021-09-03",117544,321,132702],["Fayette","2021-09-04",117544,156,132858],["Fayette","2021-09-05",117544,113,132971],["Fayette","2021-09-06",117544,15,132986],["Fayette","2021-09-07",117544,274,133260],["Fayette","2021-09-08",117544,278,133538],["Fayette","2021-09-09",117544,236,133774],["Fayette","2021-09-10",117544,301,134075],["Fayette","2021-09-11",117544,224,134299],["Fayette","2021-09-12",117544,112,134411],["Fayette","2021-09-13",117544,267,134678],["Fayette","2021-09-14",117544,242,134920],["Fayette","2021-09-15",117544,242,135162],["Fayette","2021-09-16",117544,215,135377],["Fayette","2021-09-17",117544,274,135651],["Fayette","2021-09-18",117544,162,135813],["Fayette","2021-09-19",117544,94,135907],["Fayette","2021-09-20",117544,219,136126],["Fayette","2021-09-21",117544,193,136319],["Fayette","2021-09-22",117544,202,136521],["Fayette","2021-09-23",117544,187,136708],["Fayette","2021-09-24",117544,241,136949],["Fayette","2021-09-25",117544,163,137112],["Fayette","2021-09-26",117544,143,137255],["Fayette","2021-09-27",117544,315,137570],["Fayette","2021-09-28",117544,315,137885],["Fayette","2021-09-29",117544,367,138252],["Fayette","2021-09-30",117544,286,138538],["Fayette","2021-10-01",117544,348,138886],["Fayette","2021-10-02",117544,178,139064],["Fayette","2021-10-03",117544,96,139160],["Fayette","2021-10-04",117544,245,139405],["Fayette","2021-10-05",117544,270,139675],["Fayette","2021-10-06",117544,281,139956],["Fayette","2021-10-07",117544,280,140236],["Fayette","2021-10-08",117544,324,140560],["Fayette","2021-10-09",117544,158,140718],["Fayette","2021-10-10",117544,103,140821],["Fayette","2021-10-11",117544,236,141057],["Fayette","2021-10-12",117544,241,141298],["Fayette","2021-10-13",117544,218,141516],["Fayette","2021-10-14",117544,214,141730],["Fayette","2021-10-15",117544,308,142038],["Fayette","2021-10-16",117544,133,142171],["Fayette","2021-10-17",117544,67,142238],["Fayette","2021-10-18",117544,212,142450],["Fayette","2021-10-19",117544,210,142660],["Fayette","2021-10-20",117544,295,142955],["Fayette","2021-10-21",117544,227,143182],["Fayette","2021-10-22",117544,497,143679],["Fayette","2021-10-23",117544,335,144014],["Fayette","2021-10-24",117544,169,144183],["Fayette","2021-10-25",117544,632,144815],["Fayette","2021-10-26",117544,482,145297],["Fayette","2021-10-27",117544,597,145894],["Fayette","2021-10-28",117544,638,146532],["Fayette","2021-10-29",117544,587,147119],["Fayette","2021-10-30",117544,291,147410],["Fayette","2021-10-31",117544,124,147534],["Fayette","2021-11-01",117544,475,148009],["Fayette","2021-11-02",117544,459,148468],["Fayette","2021-11-03",117544,450,148918],["Fayette","2021-11-04",117544,493,149411],["Fayette","2021-11-05",117544,532,149943],["Fayette","2021-11-06",117544,409,150352],["Fayette","2021-11-07",117544,161,150513],["Fayette","2021-11-08",117544,385,150898],["Fayette","2021-11-09",117544,497,151395],["Fayette","2021-11-10",117544,470,151865],["Fayette","2021-11-11",117544,453,152318],["Fayette","2021-11-12",117544,553,152871],["Fayette","2021-11-13",117544,379,153250],["Fayette","2021-11-14",117544,147,153397],["Fayette","2021-11-15",117544,448,153845],["Fayette","2021-11-16",117544,483,154328],["Fayette","2021-11-17",117544,478,154806],["Fayette","2021-11-18",117544,477,155283],["Fayette","2021-11-19",117544,567,155850],["Fayette","2021-11-20",117544,340,156190],["Fayette","2021-11-21",117544,244,156434],["Fayette","2021-11-22",117544,570,157004],["Fayette","2021-11-23",117544,507,157511],["Fayette","2021-11-24",117544,386,157897],["Fayette","2021-11-25",117544,1,157898],["Fayette","2021-11-26",117544,431,158329],["Fayette","2021-11-27",117544,262,158591],["Fayette","2021-11-28",117544,192,158783],["Fayette","2021-11-29",117544,540,159323],["Fayette","2021-11-30",117544,536,159859],["Fayette","2021-12-01",117544,662,160521],["Fayette","2021-12-02",117544,660,161181],["Fayette","2021-12-03",117544,667,161848],["Fayette","2021-12-04",117544,517,162365],["Fayette","2021-12-05",117544,186,162551],["Fayette","2021-12-06",117544,503,163054],["Fayette","2021-12-07",117544,523,163577],["Fayette","2021-12-08",117544,541,164118],["Fayette","2021-12-09",117544,588,164706],["Fayette","2021-12-10",117544,586,165292],["Fayette","2021-12-11",117544,332,165624],["Fayette","2021-12-12",117544,192,165816],["Fayette","2021-12-13",117544,448,166264],["Fayette","2021-12-14",117544,452,166716],["Fayette","2021-12-15",117544,452,167168],["Fayette","2021-12-16",117544,489,167657],["Fayette","2021-12-17",117544,572,168229],["Fayette","2021-12-18",117544,352,168581],["Fayette","2021-12-19",117544,220,168801],["Fayette","2021-12-20",117544,551,169352],["Fayette","2021-12-21",117544,571,169923],["Fayette","2021-12-22",117544,503,170426],["Fayette","2021-12-23",117544,451,170877],["Fayette","2021-12-24",117544,132,171009],["Fayette","2021-12-26",117544,130,171139],["Fayette","2021-12-27",117544,419,171558],["Fayette","2021-12-28",117544,448,172006],["Fayette","2021-12-29",117544,455,172461],["Fayette","2021-12-30",117544,320,172781],["Fayette","2021-12-31",117544,138,172919],["Fayette","2022-01-01",117544,19,172938],["Fayette","2022-01-02",117544,77,173015],["Fayette","2022-01-03",117544,92,173107],["Floyd","2020-12-15",99916,1,1],["Floyd","2020-12-16",99916,2,3],["Floyd","2020-12-17",99916,2,5],["Floyd","2020-12-18",99916,81,86],["Floyd","2020-12-20",99916,6,92],["Floyd","2020-12-21",99916,145,237],["Floyd","2020-12-22",99916,183,420],["Floyd","2020-12-23",99916,254,674],["Floyd","2020-12-24",99916,7,681],["Floyd","2020-12-26",99916,28,709],["Floyd","2020-12-27",99916,15,724],["Floyd","2020-12-28",99916,194,918],["Floyd","2020-12-29",99916,217,1135],["Floyd","2020-12-30",99916,172,1307],["Floyd","2020-12-31",99916,198,1505],["Floyd","2021-01-01",99916,39,1544],["Floyd","2021-01-02",99916,49,1593],["Floyd","2021-01-03",99916,42,1635],["Floyd","2021-01-04",99916,154,1789],["Floyd","2021-01-05",99916,273,2062],["Floyd","2021-01-06",99916,271,2333],["Floyd","2021-01-07",99916,419,2752],["Floyd","2021-01-08",99916,282,3034],["Floyd","2021-01-09",99916,13,3047],["Floyd","2021-01-10",99916,63,3110],["Floyd","2021-01-11",99916,580,3690],["Floyd","2021-01-12",99916,796,4486],["Floyd","2021-01-13",99916,804,5290],["Floyd","2021-01-14",99916,773,6063],["Floyd","2021-01-15",99916,489,6552],["Floyd","2021-01-16",99916,82,6634],["Floyd","2021-01-17",99916,32,6666],["Floyd","2021-01-18",99916,922,7588],["Floyd","2021-01-19",99916,1106,8694],["Floyd","2021-01-20",99916,762,9456],["Floyd","2021-01-21",99916,590,10046],["Floyd","2021-01-22",99916,338,10384],["Floyd","2021-01-23",99916,22,10406],["Floyd","2021-01-24",99916,44,10450],["Floyd","2021-01-25",99916,234,10684],["Floyd","2021-01-26",99916,327,11011],["Floyd","2021-01-27",99916,755,11766],["Floyd","2021-01-28",99916,778,12544],["Floyd","2021-01-29",99916,600,13144],["Floyd","2021-01-30",99916,74,13218],["Floyd","2021-01-31",99916,13,13231],["Floyd","2021-02-01",99916,895,14126],["Floyd","2021-02-02",99916,690,14816],["Floyd","2021-02-03",99916,793,15609],["Floyd","2021-02-04",99916,631,16240],["Floyd","2021-02-05",99916,975,17215],["Floyd","2021-02-06",99916,692,17907],["Floyd","2021-02-07",99916,27,17934],["Floyd","2021-02-08",99916,821,18755],["Floyd","2021-02-09",99916,443,19198],["Floyd","2021-02-10",99916,239,19437],["Floyd","2021-02-11",99916,482,19919],["Floyd","2021-02-12",99916,789,20708],["Floyd","2021-02-13",99916,226,20934],["Floyd","2021-02-14",99916,27,20961],["Floyd","2021-02-15",99916,680,21641],["Floyd","2021-02-16",99916,307,21948],["Floyd","2021-02-17",99916,289,22237],["Floyd","2021-02-18",99916,849,23086],["Floyd","2021-02-19",99916,769,23855],["Floyd","2021-02-20",99916,30,23885],["Floyd","2021-02-21",99916,29,23914],["Floyd","2021-02-22",99916,215,24129],["Floyd","2021-02-23",99916,174,24303],["Floyd","2021-02-24",99916,758,25061],["Floyd","2021-02-25",99916,327,25388],["Floyd","2021-02-26",99916,805,26193],["Floyd","2021-02-27",99916,29,26222],["Floyd","2021-02-28",99916,40,26262],["Floyd","2021-03-01",99916,853,27115],["Floyd","2021-03-02",99916,598,27713],["Floyd","2021-03-03",99916,500,28213],["Floyd","2021-03-04",99916,439,28652],["Floyd","2021-03-05",99916,497,29149],["Floyd","2021-03-06",99916,262,29411],["Floyd","2021-03-07",99916,23,29434],["Floyd","2021-03-08",99916,537,29971],["Floyd","2021-03-09",99916,160,30131],["Floyd","2021-03-10",99916,692,30823],["Floyd","2021-03-11",99916,510,31333],["Floyd","2021-03-12",99916,761,32094],["Floyd","2021-03-13",99916,116,32210],["Floyd","2021-03-14",99916,28,32238],["Floyd","2021-03-15",99916,590,32828],["Floyd","2021-03-16",99916,405,33233],["Floyd","2021-03-17",99916,456,33689],["Floyd","2021-03-18",99916,644,34333],["Floyd","2021-03-19",99916,1133,35466],["Floyd","2021-03-20",99916,35,35501],["Floyd","2021-03-21",99916,58,35559],["Floyd","2021-03-22",99916,324,35883],["Floyd","2021-03-23",99916,333,36216],["Floyd","2021-03-24",99916,398,36614],["Floyd","2021-03-25",99916,195,36809],["Floyd","2021-03-26",99916,1059,37868],["Floyd","2021-03-27",99916,215,38083],["Floyd","2021-03-28",99916,79,38162],["Floyd","2021-03-29",99916,638,38800],["Floyd","2021-03-30",99916,487,39287],["Floyd","2021-03-31",99916,1163,40450],["Floyd","2021-04-01",99916,632,41082],["Floyd","2021-04-02",99916,1146,42228],["Floyd","2021-04-03",99916,87,42315],["Floyd","2021-04-04",99916,73,42388],["Floyd","2021-04-05",99916,799,43187],["Floyd","2021-04-06",99916,346,43533],["Floyd","2021-04-07",99916,806,44339],["Floyd","2021-04-08",99916,363,44702],["Floyd","2021-04-09",99916,1149,45851],["Floyd","2021-04-10",99916,119,45970],["Floyd","2021-04-11",99916,62,46032],["Floyd","2021-04-12",99916,761,46793],["Floyd","2021-04-13",99916,338,47131],["Floyd","2021-04-14",99916,703,47834],["Floyd","2021-04-15",99916,522,48356],["Floyd","2021-04-16",99916,952,49308],["Floyd","2021-04-17",99916,141,49449],["Floyd","2021-04-18",99916,39,49488],["Floyd","2021-04-19",99916,473,49961],["Floyd","2021-04-20",99916,484,50445],["Floyd","2021-04-21",99916,617,51062],["Floyd","2021-04-22",99916,543,51605],["Floyd","2021-04-23",99916,810,52415],["Floyd","2021-04-24",99916,66,52481],["Floyd","2021-04-25",99916,38,52519],["Floyd","2021-04-26",99916,354,52873],["Floyd","2021-04-27",99916,398,53271],["Floyd","2021-04-28",99916,700,53971],["Floyd","2021-04-29",99916,376,54347],["Floyd","2021-04-30",99916,865,55212],["Floyd","2021-05-01",99916,101,55313],["Floyd","2021-05-02",99916,75,55388],["Floyd","2021-05-03",99916,270,55658],["Floyd","2021-05-04",99916,260,55918],["Floyd","2021-05-05",99916,370,56288],["Floyd","2021-05-06",99916,277,56565],["Floyd","2021-05-07",99916,566,57131],["Floyd","2021-05-08",99916,80,57211],["Floyd","2021-05-09",99916,32,57243],["Floyd","2021-05-10",99916,100,57343],["Floyd","2021-05-11",99916,258,57601],["Floyd","2021-05-12",99916,212,57813],["Floyd","2021-05-13",99916,266,58079],["Floyd","2021-05-14",99916,442,58521],["Floyd","2021-05-15",99916,174,58695],["Floyd","2021-05-16",99916,67,58762],["Floyd","2021-05-17",99916,169,58931],["Floyd","2021-05-18",99916,268,59199],["Floyd","2021-05-19",99916,368,59567],["Floyd","2021-05-20",99916,276,59843],["Floyd","2021-05-21",99916,353,60196],["Floyd","2021-05-22",99916,76,60272],["Floyd","2021-05-23",99916,50,60322],["Floyd","2021-05-24",99916,106,60428],["Floyd","2021-05-25",99916,183,60611],["Floyd","2021-05-26",99916,174,60785],["Floyd","2021-05-27",99916,225,61010],["Floyd","2021-05-28",99916,255,61265],["Floyd","2021-05-29",99916,69,61334],["Floyd","2021-05-30",99916,54,61388],["Floyd","2021-05-31",99916,63,61451],["Floyd","2021-06-01",99916,204,61655],["Floyd","2021-06-02",99916,124,61779],["Floyd","2021-06-03",99916,198,61977],["Floyd","2021-06-04",99916,286,62263],["Floyd","2021-06-05",99916,129,62392],["Floyd","2021-06-06",99916,62,62454],["Floyd","2021-06-07",99916,118,62572],["Floyd","2021-06-08",99916,176,62748],["Floyd","2021-06-09",99916,104,62852],["Floyd","2021-06-10",99916,213,63065],["Floyd","2021-06-11",99916,236,63301],["Floyd","2021-06-12",99916,83,63384],["Floyd","2021-06-13",99916,28,63412],["Floyd","2021-06-14",99916,71,63483],["Floyd","2021-06-15",99916,151,63634],["Floyd","2021-06-16",99916,103,63737],["Floyd","2021-06-17",99916,170,63907],["Floyd","2021-06-18",99916,172,64079],["Floyd","2021-06-19",99916,57,64136],["Floyd","2021-06-20",99916,32,64168],["Floyd","2021-06-21",99916,61,64229],["Floyd","2021-06-22",99916,147,64376],["Floyd","2021-06-23",99916,101,64477],["Floyd","2021-06-24",99916,105,64582],["Floyd","2021-06-25",99916,168,64750],["Floyd","2021-06-26",99916,59,64809],["Floyd","2021-06-27",99916,29,64838],["Floyd","2021-06-28",99916,77,64915],["Floyd","2021-06-29",99916,108,65023],["Floyd","2021-06-30",99916,75,65098],["Floyd","2021-07-01",99916,109,65207],["Floyd","2021-07-02",99916,98,65305],["Floyd","2021-07-03",99916,40,65345],["Floyd","2021-07-04",99916,6,65351],["Floyd","2021-07-05",99916,70,65421],["Floyd","2021-07-06",99916,104,65525],["Floyd","2021-07-07",99916,67,65592],["Floyd","2021-07-08",99916,140,65732],["Floyd","2021-07-09",99916,82,65814],["Floyd","2021-07-10",99916,41,65855],["Floyd","2021-07-11",99916,27,65882],["Floyd","2021-07-12",99916,53,65935],["Floyd","2021-07-13",99916,129,66064],["Floyd","2021-07-14",99916,74,66138],["Floyd","2021-07-15",99916,123,66261],["Floyd","2021-07-16",99916,100,66361],["Floyd","2021-07-17",99916,46,66407],["Floyd","2021-07-18",99916,35,66442],["Floyd","2021-07-19",99916,82,66524],["Floyd","2021-07-20",99916,123,66647],["Floyd","2021-07-21",99916,87,66734],["Floyd","2021-07-22",99916,143,66877],["Floyd","2021-07-23",99916,172,67049],["Floyd","2021-07-24",99916,103,67152],["Floyd","2021-07-25",99916,42,67194],["Floyd","2021-07-26",99916,89,67283],["Floyd","2021-07-27",99916,185,67468],["Floyd","2021-07-28",99916,122,67590],["Floyd","2021-07-29",99916,173,67763],["Floyd","2021-07-30",99916,238,68001],["Floyd","2021-07-31",99916,90,68091],["Floyd","2021-08-01",99916,60,68151],["Floyd","2021-08-02",99916,162,68313],["Floyd","2021-08-03",99916,234,68547],["Floyd","2021-08-04",99916,168,68715],["Floyd","2021-08-05",99916,237,68952],["Floyd","2021-08-06",99916,194,69146],["Floyd","2021-08-07",99916,133,69279],["Floyd","2021-08-08",99916,90,69369],["Floyd","2021-08-09",99916,167,69536],["Floyd","2021-08-10",99916,254,69790],["Floyd","2021-08-11",99916,169,69959],["Floyd","2021-08-12",99916,240,70199],["Floyd","2021-08-13",99916,283,70482],["Floyd","2021-08-14",99916,133,70615],["Floyd","2021-08-15",99916,105,70720],["Floyd","2021-08-16",99916,223,70943],["Floyd","2021-08-17",99916,330,71273],["Floyd","2021-08-18",99916,258,71531],["Floyd","2021-08-19",99916,359,71890],["Floyd","2021-08-20",99916,397,72287],["Floyd","2021-08-21",99916,154,72441],["Floyd","2021-08-22",99916,132,72573],["Floyd","2021-08-23",99916,243,72816],["Floyd","2021-08-24",99916,374,73190],["Floyd","2021-08-25",99916,254,73444],["Floyd","2021-08-26",99916,341,73785],["Floyd","2021-08-27",99916,401,74186],["Floyd","2021-08-28",99916,177,74363],["Floyd","2021-08-29",99916,116,74479],["Floyd","2021-08-30",99916,218,74697],["Floyd","2021-08-31",99916,341,75038],["Floyd","2021-09-01",99916,316,75354],["Floyd","2021-09-02",99916,394,75748],["Floyd","2021-09-03",99916,524,76272],["Floyd","2021-09-04",99916,165,76437],["Floyd","2021-09-05",99916,150,76587],["Floyd","2021-09-06",99916,81,76668],["Floyd","2021-09-07",99916,357,77025],["Floyd","2021-09-08",99916,275,77300],["Floyd","2021-09-09",99916,335,77635],["Floyd","2021-09-10",99916,394,78029],["Floyd","2021-09-11",99916,175,78204],["Floyd","2021-09-12",99916,120,78324],["Floyd","2021-09-13",99916,245,78569],["Floyd","2021-09-14",99916,316,78885],["Floyd","2021-09-15",99916,287,79172],["Floyd","2021-09-16",99916,346,79518],["Floyd","2021-09-17",99916,396,79914],["Floyd","2021-09-18",99916,136,80050],["Floyd","2021-09-19",99916,101,80151],["Floyd","2021-09-20",99916,202,80353],["Floyd","2021-09-21",99916,229,80582],["Floyd","2021-09-22",99916,198,80780],["Floyd","2021-09-23",99916,197,80977],["Floyd","2021-09-24",99916,320,81297],["Floyd","2021-09-25",99916,127,81424],["Floyd","2021-09-26",99916,99,81523],["Floyd","2021-09-27",99916,214,81737],["Floyd","2021-09-28",99916,242,81979],["Floyd","2021-09-29",99916,220,82199],["Floyd","2021-09-30",99916,282,82481],["Floyd","2021-10-01",99916,395,82876],["Floyd","2021-10-02",99916,106,82982],["Floyd","2021-10-03",99916,80,83062],["Floyd","2021-10-04",99916,146,83208],["Floyd","2021-10-05",99916,326,83534],["Floyd","2021-10-06",99916,155,83689],["Floyd","2021-10-07",99916,201,83890],["Floyd","2021-10-08",99916,309,84199],["Floyd","2021-10-09",99916,53,84252],["Floyd","2021-10-10",99916,62,84314],["Floyd","2021-10-11",99916,118,84432],["Floyd","2021-10-12",99916,158,84590],["Floyd","2021-10-13",99916,201,84791],["Floyd","2021-10-14",99916,159,84950],["Floyd","2021-10-15",99916,231,85181],["Floyd","2021-10-16",99916,89,85270],["Floyd","2021-10-17",99916,43,85313],["Floyd","2021-10-18",99916,101,85414],["Floyd","2021-10-19",99916,185,85599],["Floyd","2021-10-20",99916,88,85687],["Floyd","2021-10-21",99916,104,85791],["Floyd","2021-10-22",99916,290,86081],["Floyd","2021-10-23",99916,130,86211],["Floyd","2021-10-24",99916,100,86311],["Floyd","2021-10-25",99916,267,86578],["Floyd","2021-10-26",99916,526,87104],["Floyd","2021-10-27",99916,474,87578],["Floyd","2021-10-28",99916,333,87911],["Floyd","2021-10-29",99916,489,88400],["Floyd","2021-10-30",99916,72,88472],["Floyd","2021-10-31",99916,47,88519],["Floyd","2021-11-01",99916,466,88985],["Floyd","2021-11-02",99916,283,89268],["Floyd","2021-11-03",99916,246,89514],["Floyd","2021-11-04",99916,289,89803],["Floyd","2021-11-05",99916,484,90287],["Floyd","2021-11-06",99916,97,90384],["Floyd","2021-11-07",99916,78,90462],["Floyd","2021-11-08",99916,252,90714],["Floyd","2021-11-09",99916,317,91031],["Floyd","2021-11-10",99916,232,91263],["Floyd","2021-11-11",99916,177,91440],["Floyd","2021-11-12",99916,453,91893],["Floyd","2021-11-13",99916,97,91990],["Floyd","2021-11-14",99916,50,92040],["Floyd","2021-11-15",99916,217,92257],["Floyd","2021-11-16",99916,359,92616],["Floyd","2021-11-17",99916,268,92884],["Floyd","2021-11-18",99916,337,93221],["Floyd","2021-11-19",99916,414,93635],["Floyd","2021-11-20",99916,109,93744],["Floyd","2021-11-21",99916,64,93808],["Floyd","2021-11-22",99916,254,94062],["Floyd","2021-11-23",99916,369,94431],["Floyd","2021-11-24",99916,162,94593],["Floyd","2021-11-25",99916,3,94596],["Floyd","2021-11-26",99916,146,94742],["Floyd","2021-11-27",99916,97,94839],["Floyd","2021-11-28",99916,106,94945],["Floyd","2021-11-29",99916,266,95211],["Floyd","2021-11-30",99916,448,95659],["Floyd","2021-12-01",99916,361,96020],["Floyd","2021-12-02",99916,473,96493],["Floyd","2021-12-03",99916,456,96949],["Floyd","2021-12-04",99916,186,97135],["Floyd","2021-12-05",99916,70,97205],["Floyd","2021-12-06",99916,236,97441],["Floyd","2021-12-07",99916,355,97796],["Floyd","2021-12-08",99916,204,98000],["Floyd","2021-12-09",99916,286,98286],["Floyd","2021-12-10",99916,302,98588],["Floyd","2021-12-11",99916,85,98673],["Floyd","2021-12-12",99916,55,98728],["Floyd","2021-12-13",99916,178,98906],["Floyd","2021-12-14",99916,245,99151],["Floyd","2021-12-15",99916,160,99311],["Floyd","2021-12-16",99916,204,99515],["Floyd","2021-12-17",99916,219,99734],["Floyd","2021-12-18",99916,100,99834],["Floyd","2021-12-19",99916,59,99893],["Floyd","2021-12-20",99916,266,100159],["Floyd","2021-12-21",99916,325,100484],["Floyd","2021-12-22",99916,252,100736],["Floyd","2021-12-23",99916,145,100881],["Floyd","2021-12-24",99916,52,100933],["Floyd","2021-12-25",99916,1,100934],["Floyd","2021-12-26",99916,64,100998],["Floyd","2021-12-27",99916,239,101237],["Floyd","2021-12-28",99916,311,101548],["Floyd","2021-12-29",99916,272,101820],["Floyd","2021-12-30",99916,264,102084],["Floyd","2021-12-31",99916,110,102194],["Floyd","2022-01-01",99916,20,102214],["Floyd","2022-01-02",99916,77,102291],["Floyd","2022-01-03",99916,81,102372],["Forsyth","2020-12-16",252507,3,3],["Forsyth","2020-12-17",252507,50,53],["Forsyth","2020-12-18",252507,95,148],["Forsyth","2020-12-19",252507,66,214],["Forsyth","2020-12-20",252507,87,301],["Forsyth","2020-12-21",252507,129,430],["Forsyth","2020-12-22",252507,184,614],["Forsyth","2020-12-23",252507,202,816],["Forsyth","2020-12-24",252507,54,870],["Forsyth","2020-12-25",252507,1,871],["Forsyth","2020-12-26",252507,29,900],["Forsyth","2020-12-27",252507,62,962],["Forsyth","2020-12-28",252507,274,1236],["Forsyth","2020-12-29",252507,291,1527],["Forsyth","2020-12-30",252507,448,1975],["Forsyth","2020-12-31",252507,86,2061],["Forsyth","2021-01-01",252507,452,2513],["Forsyth","2021-01-02",252507,39,2552],["Forsyth","2021-01-03",252507,61,2613],["Forsyth","2021-01-04",252507,392,3005],["Forsyth","2021-01-05",252507,289,3294],["Forsyth","2021-01-06",252507,411,3705],["Forsyth","2021-01-07",252507,436,4141],["Forsyth","2021-01-08",252507,363,4504],["Forsyth","2021-01-09",252507,228,4732],["Forsyth","2021-01-10",252507,123,4855],["Forsyth","2021-01-11",252507,456,5311],["Forsyth","2021-01-12",252507,486,5797],["Forsyth","2021-01-13",252507,586,6383],["Forsyth","2021-01-14",252507,630,7013],["Forsyth","2021-01-15",252507,722,7735],["Forsyth","2021-01-16",252507,536,8271],["Forsyth","2021-01-17",252507,328,8599],["Forsyth","2021-01-18",252507,791,9390],["Forsyth","2021-01-19",252507,1373,10763],["Forsyth","2021-01-20",252507,1416,12179],["Forsyth","2021-01-21",252507,887,13066],["Forsyth","2021-01-22",252507,658,13724],["Forsyth","2021-01-23",252507,398,14122],["Forsyth","2021-01-24",252507,224,14346],["Forsyth","2021-01-25",252507,806,15152],["Forsyth","2021-01-26",252507,1310,16462],["Forsyth","2021-01-27",252507,1639,18101],["Forsyth","2021-01-28",252507,1183,19284],["Forsyth","2021-01-29",252507,943,20227],["Forsyth","2021-01-30",252507,435,20662],["Forsyth","2021-01-31",252507,73,20735],["Forsyth","2021-02-01",252507,1151,21886],["Forsyth","2021-02-02",252507,808,22694],["Forsyth","2021-02-03",252507,751,23445],["Forsyth","2021-02-04",252507,1473,24918],["Forsyth","2021-02-05",252507,688,25606],["Forsyth","2021-02-06",252507,489,26095],["Forsyth","2021-02-07",252507,100,26195],["Forsyth","2021-02-08",252507,1238,27433],["Forsyth","2021-02-09",252507,1302,28735],["Forsyth","2021-02-10",252507,1245,29980],["Forsyth","2021-02-11",252507,854,30834],["Forsyth","2021-02-12",252507,726,31560],["Forsyth","2021-02-13",252507,673,32233],["Forsyth","2021-02-14",252507,331,32564],["Forsyth","2021-02-15",252507,1023,33587],["Forsyth","2021-02-16",252507,1466,35053],["Forsyth","2021-02-17",252507,1588,36641],["Forsyth","2021-02-18",252507,1016,37657],["Forsyth","2021-02-19",252507,721,38378],["Forsyth","2021-02-20",252507,458,38836],["Forsyth","2021-02-21",252507,167,39003],["Forsyth","2021-02-22",252507,568,39571],["Forsyth","2021-02-23",252507,796,40367],["Forsyth","2021-02-24",252507,1570,41937],["Forsyth","2021-02-25",252507,2074,44011],["Forsyth","2021-02-26",252507,1868,45879],["Forsyth","2021-02-27",252507,643,46522],["Forsyth","2021-02-28",252507,267,46789],["Forsyth","2021-03-01",252507,2260,49049],["Forsyth","2021-03-02",252507,2060,51109],["Forsyth","2021-03-03",252507,1522,52631],["Forsyth","2021-03-04",252507,1106,53737],["Forsyth","2021-03-05",252507,1236,54973],["Forsyth","2021-03-06",252507,537,55510],["Forsyth","2021-03-07",252507,297,55807],["Forsyth","2021-03-08",252507,1331,57138],["Forsyth","2021-03-09",252507,1516,58654],["Forsyth","2021-03-10",252507,1956,60610],["Forsyth","2021-03-11",252507,1466,62076],["Forsyth","2021-03-12",252507,1343,63419],["Forsyth","2021-03-13",252507,1974,65393],["Forsyth","2021-03-14",252507,381,65774],["Forsyth","2021-03-15",252507,1828,67602],["Forsyth","2021-03-16",252507,2397,69999],["Forsyth","2021-03-17",252507,2583,72582],["Forsyth","2021-03-18",252507,2547,75129],["Forsyth","2021-03-19",252507,2283,77412],["Forsyth","2021-03-20",252507,880,78292],["Forsyth","2021-03-21",252507,490,78782],["Forsyth","2021-03-22",252507,1944,80726],["Forsyth","2021-03-23",252507,2474,83200],["Forsyth","2021-03-24",252507,2908,86108],["Forsyth","2021-03-25",252507,3337,89445],["Forsyth","2021-03-26",252507,2605,92050],["Forsyth","2021-03-27",252507,1241,93291],["Forsyth","2021-03-28",252507,722,94013],["Forsyth","2021-03-29",252507,2626,96639],["Forsyth","2021-03-30",252507,3180,99819],["Forsyth","2021-03-31",252507,3724,103543],["Forsyth","2021-04-01",252507,4139,107682],["Forsyth","2021-04-02",252507,2334,110016],["Forsyth","2021-04-03",252507,1011,111027],["Forsyth","2021-04-04",252507,568,111595],["Forsyth","2021-04-05",252507,2470,114065],["Forsyth","2021-04-06",252507,3474,117539],["Forsyth","2021-04-07",252507,3433,120972],["Forsyth","2021-04-08",252507,3225,124197],["Forsyth","2021-04-09",252507,2585,126782],["Forsyth","2021-04-10",252507,1435,128217],["Forsyth","2021-04-11",252507,691,128908],["Forsyth","2021-04-12",252507,2995,131903],["Forsyth","2021-04-13",252507,2852,134755],["Forsyth","2021-04-14",252507,3389,138144],["Forsyth","2021-04-15",252507,3611,141755],["Forsyth","2021-04-16",252507,2395,144150],["Forsyth","2021-04-17",252507,1034,145184],["Forsyth","2021-04-18",252507,660,145844],["Forsyth","2021-04-19",252507,2695,148539],["Forsyth","2021-04-20",252507,3119,151658],["Forsyth","2021-04-21",252507,3145,154803],["Forsyth","2021-04-22",252507,3274,158077],["Forsyth","2021-04-23",252507,2888,160965],["Forsyth","2021-04-24",252507,1455,162420],["Forsyth","2021-04-25",252507,636,163056],["Forsyth","2021-04-26",252507,2036,165092],["Forsyth","2021-04-27",252507,2365,167457],["Forsyth","2021-04-28",252507,2386,169843],["Forsyth","2021-04-29",252507,2529,172372],["Forsyth","2021-04-30",252507,1967,174339],["Forsyth","2021-05-01",252507,1397,175736],["Forsyth","2021-05-02",252507,508,176244],["Forsyth","2021-05-03",252507,1620,177864],["Forsyth","2021-05-04",252507,2090,179954],["Forsyth","2021-05-05",252507,1989,181943],["Forsyth","2021-05-06",252507,1719,183662],["Forsyth","2021-05-07",252507,1667,185329],["Forsyth","2021-05-08",252507,663,185992],["Forsyth","2021-05-09",252507,310,186302],["Forsyth","2021-05-10",252507,1054,187356],["Forsyth","2021-05-11",252507,1288,188644],["Forsyth","2021-05-12",252507,923,189567],["Forsyth","2021-05-13",252507,1560,191127],["Forsyth","2021-05-14",252507,1127,192254],["Forsyth","2021-05-15",252507,947,193201],["Forsyth","2021-05-16",252507,622,193823],["Forsyth","2021-05-17",252507,1196,195019],["Forsyth","2021-05-18",252507,1291,196310],["Forsyth","2021-05-19",252507,1193,197503],["Forsyth","2021-05-20",252507,1108,198611],["Forsyth","2021-05-21",252507,935,199546],["Forsyth","2021-05-22",252507,685,200231],["Forsyth","2021-05-23",252507,348,200579],["Forsyth","2021-05-24",252507,660,201239],["Forsyth","2021-05-25",252507,1007,202246],["Forsyth","2021-05-26",252507,695,202941],["Forsyth","2021-05-27",252507,795,203736],["Forsyth","2021-05-28",252507,682,204418],["Forsyth","2021-05-29",252507,365,204783],["Forsyth","2021-05-30",252507,243,205026],["Forsyth","2021-05-31",252507,99,205125],["Forsyth","2021-06-01",252507,912,206037],["Forsyth","2021-06-02",252507,582,206619],["Forsyth","2021-06-03",252507,1031,207650],["Forsyth","2021-06-04",252507,858,208508],["Forsyth","2021-06-05",252507,702,209210],["Forsyth","2021-06-06",252507,434,209644],["Forsyth","2021-06-07",252507,593,210237],["Forsyth","2021-06-08",252507,798,211035],["Forsyth","2021-06-09",252507,624,211659],["Forsyth","2021-06-10",252507,698,212357],["Forsyth","2021-06-11",252507,636,212993],["Forsyth","2021-06-12",252507,563,213556],["Forsyth","2021-06-13",252507,215,213771],["Forsyth","2021-06-14",252507,492,214263],["Forsyth","2021-06-15",252507,549,214812],["Forsyth","2021-06-16",252507,456,215268],["Forsyth","2021-06-17",252507,439,215707],["Forsyth","2021-06-18",252507,514,216221],["Forsyth","2021-06-19",252507,346,216567],["Forsyth","2021-06-20",252507,180,216747],["Forsyth","2021-06-21",252507,277,217024],["Forsyth","2021-06-22",252507,428,217452],["Forsyth","2021-06-23",252507,339,217791],["Forsyth","2021-06-24",252507,410,218201],["Forsyth","2021-06-25",252507,412,218613],["Forsyth","2021-06-26",252507,279,218892],["Forsyth","2021-06-27",252507,186,219078],["Forsyth","2021-06-28",252507,270,219348],["Forsyth","2021-06-29",252507,365,219713],["Forsyth","2021-06-30",252507,317,220030],["Forsyth","2021-07-01",252507,397,220427],["Forsyth","2021-07-02",252507,343,220770],["Forsyth","2021-07-03",252507,172,220942],["Forsyth","2021-07-04",252507,28,220970],["Forsyth","2021-07-05",252507,221,221191],["Forsyth","2021-07-06",252507,274,221465],["Forsyth","2021-07-07",252507,306,221771],["Forsyth","2021-07-08",252507,264,222035],["Forsyth","2021-07-09",252507,319,222354],["Forsyth","2021-07-10",252507,223,222577],["Forsyth","2021-07-11",252507,108,222685],["Forsyth","2021-07-12",252507,249,222934],["Forsyth","2021-07-13",252507,267,223201],["Forsyth","2021-07-14",252507,250,223451],["Forsyth","2021-07-15",252507,287,223738],["Forsyth","2021-07-16",252507,343,224081],["Forsyth","2021-07-17",252507,223,224304],["Forsyth","2021-07-18",252507,164,224468],["Forsyth","2021-07-19",252507,287,224755],["Forsyth","2021-07-20",252507,333,225088],["Forsyth","2021-07-21",252507,321,225409],["Forsyth","2021-07-22",252507,369,225778],["Forsyth","2021-07-23",252507,435,226213],["Forsyth","2021-07-24",252507,294,226507],["Forsyth","2021-07-25",252507,171,226678],["Forsyth","2021-07-26",252507,351,227029],["Forsyth","2021-07-27",252507,370,227399],["Forsyth","2021-07-28",252507,404,227803],["Forsyth","2021-07-29",252507,373,228176],["Forsyth","2021-07-30",252507,455,228631],["Forsyth","2021-07-31",252507,337,228968],["Forsyth","2021-08-01",252507,270,229238],["Forsyth","2021-08-02",252507,437,229675],["Forsyth","2021-08-03",252507,475,230150],["Forsyth","2021-08-04",252507,448,230598],["Forsyth","2021-08-05",252507,403,231001],["Forsyth","2021-08-06",252507,540,231541],["Forsyth","2021-08-07",252507,402,231943],["Forsyth","2021-08-08",252507,284,232227],["Forsyth","2021-08-09",252507,428,232655],["Forsyth","2021-08-10",252507,485,233140],["Forsyth","2021-08-11",252507,411,233551],["Forsyth","2021-08-12",252507,463,234014],["Forsyth","2021-08-13",252507,562,234576],["Forsyth","2021-08-14",252507,423,234999],["Forsyth","2021-08-15",252507,293,235292],["Forsyth","2021-08-16",252507,543,235835],["Forsyth","2021-08-17",252507,564,236399],["Forsyth","2021-08-18",252507,501,236900],["Forsyth","2021-08-19",252507,517,237417],["Forsyth","2021-08-20",252507,641,238058],["Forsyth","2021-08-21",252507,526,238584],["Forsyth","2021-08-22",252507,266,238850],["Forsyth","2021-08-23",252507,506,239356],["Forsyth","2021-08-24",252507,525,239881],["Forsyth","2021-08-25",252507,504,240385],["Forsyth","2021-08-26",252507,543,240928],["Forsyth","2021-08-27",252507,635,241563],["Forsyth","2021-08-28",252507,439,242002],["Forsyth","2021-08-29",252507,300,242302],["Forsyth","2021-08-30",252507,519,242821],["Forsyth","2021-08-31",252507,481,243302],["Forsyth","2021-09-01",252507,511,243813],["Forsyth","2021-09-02",252507,459,244272],["Forsyth","2021-09-03",252507,607,244879],["Forsyth","2021-09-04",252507,339,245218],["Forsyth","2021-09-05",252507,241,245459],["Forsyth","2021-09-06",252507,62,245521],["Forsyth","2021-09-07",252507,452,245973],["Forsyth","2021-09-08",252507,398,246371],["Forsyth","2021-09-09",252507,445,246816],["Forsyth","2021-09-10",252507,502,247318],["Forsyth","2021-09-11",252507,326,247644],["Forsyth","2021-09-12",252507,192,247836],["Forsyth","2021-09-13",252507,430,248266],["Forsyth","2021-09-14",252507,384,248650],["Forsyth","2021-09-15",252507,341,248991],["Forsyth","2021-09-16",252507,369,249360],["Forsyth","2021-09-17",252507,457,249817],["Forsyth","2021-09-18",252507,269,250086],["Forsyth","2021-09-19",252507,145,250231],["Forsyth","2021-09-20",252507,324,250555],["Forsyth","2021-09-21",252507,268,250823],["Forsyth","2021-09-22",252507,273,251096],["Forsyth","2021-09-23",252507,238,251334],["Forsyth","2021-09-24",252507,403,251737],["Forsyth","2021-09-25",252507,271,252008],["Forsyth","2021-09-26",252507,193,252201],["Forsyth","2021-09-27",252507,420,252621],["Forsyth","2021-09-28",252507,449,253070],["Forsyth","2021-09-29",252507,429,253499],["Forsyth","2021-09-30",252507,460,253959],["Forsyth","2021-10-01",252507,684,254643],["Forsyth","2021-10-02",252507,247,254890],["Forsyth","2021-10-03",252507,150,255040],["Forsyth","2021-10-04",252507,427,255467],["Forsyth","2021-10-05",252507,365,255832],["Forsyth","2021-10-06",252507,388,256220],["Forsyth","2021-10-07",252507,482,256702],["Forsyth","2021-10-08",252507,523,257225],["Forsyth","2021-10-09",252507,218,257443],["Forsyth","2021-10-10",252507,155,257598],["Forsyth","2021-10-11",252507,259,257857],["Forsyth","2021-10-12",252507,295,258152],["Forsyth","2021-10-13",252507,265,258417],["Forsyth","2021-10-14",252507,272,258689],["Forsyth","2021-10-15",252507,431,259120],["Forsyth","2021-10-16",252507,192,259312],["Forsyth","2021-10-17",252507,132,259444],["Forsyth","2021-10-18",252507,348,259792],["Forsyth","2021-10-19",252507,273,260065],["Forsyth","2021-10-20",252507,258,260323],["Forsyth","2021-10-21",252507,319,260642],["Forsyth","2021-10-22",252507,724,261366],["Forsyth","2021-10-23",252507,495,261861],["Forsyth","2021-10-24",252507,321,262182],["Forsyth","2021-10-25",252507,811,262993],["Forsyth","2021-10-26",252507,619,263612],["Forsyth","2021-10-27",252507,774,264386],["Forsyth","2021-10-28",252507,679,265065],["Forsyth","2021-10-29",252507,899,265964],["Forsyth","2021-10-30",252507,450,266414],["Forsyth","2021-10-31",252507,255,266669],["Forsyth","2021-11-01",252507,702,267371],["Forsyth","2021-11-02",252507,627,267998],["Forsyth","2021-11-03",252507,624,268622],["Forsyth","2021-11-04",252507,666,269288],["Forsyth","2021-11-05",252507,836,270124],["Forsyth","2021-11-06",252507,586,270710],["Forsyth","2021-11-07",252507,316,271026],["Forsyth","2021-11-08",252507,627,271653],["Forsyth","2021-11-09",252507,646,272299],["Forsyth","2021-11-10",252507,699,272998],["Forsyth","2021-11-11",252507,727,273725],["Forsyth","2021-11-12",252507,911,274636],["Forsyth","2021-11-13",252507,1129,275765],["Forsyth","2021-11-14",252507,420,276185],["Forsyth","2021-11-15",252507,745,276930],["Forsyth","2021-11-16",252507,673,277603],["Forsyth","2021-11-17",252507,722,278325],["Forsyth","2021-11-18",252507,696,279021],["Forsyth","2021-11-19",252507,906,279927],["Forsyth","2021-11-20",252507,747,280674],["Forsyth","2021-11-21",252507,522,281196],["Forsyth","2021-11-22",252507,916,282112],["Forsyth","2021-11-23",252507,871,282983],["Forsyth","2021-11-24",252507,775,283758],["Forsyth","2021-11-25",252507,1,283759],["Forsyth","2021-11-26",252507,832,284591],["Forsyth","2021-11-27",252507,616,285207],["Forsyth","2021-11-28",252507,453,285660],["Forsyth","2021-11-29",252507,838,286498],["Forsyth","2021-11-30",252507,915,287413],["Forsyth","2021-12-01",252507,1121,288534],["Forsyth","2021-12-02",252507,1158,289692],["Forsyth","2021-12-03",252507,1401,291093],["Forsyth","2021-12-04",252507,1015,292108],["Forsyth","2021-12-05",252507,539,292647],["Forsyth","2021-12-06",252507,1023,293670],["Forsyth","2021-12-07",252507,1025,294695],["Forsyth","2021-12-08",252507,996,295691],["Forsyth","2021-12-09",252507,1002,296693],["Forsyth","2021-12-10",252507,1253,297946],["Forsyth","2021-12-11",252507,822,298768],["Forsyth","2021-12-12",252507,515,299283],["Forsyth","2021-12-13",252507,924,300207],["Forsyth","2021-12-14",252507,935,301142],["Forsyth","2021-12-15",252507,914,302056],["Forsyth","2021-12-16",252507,1041,303097],["Forsyth","2021-12-17",252507,1117,304214],["Forsyth","2021-12-18",252507,752,304966],["Forsyth","2021-12-19",252507,549,305515],["Forsyth","2021-12-20",252507,1104,306619],["Forsyth","2021-12-21",252507,1174,307793],["Forsyth","2021-12-22",252507,1126,308919],["Forsyth","2021-12-23",252507,956,309875],["Forsyth","2021-12-24",252507,360,310235],["Forsyth","2021-12-25",252507,2,310237],["Forsyth","2021-12-26",252507,313,310550],["Forsyth","2021-12-27",252507,908,311458],["Forsyth","2021-12-28",252507,1042,312500],["Forsyth","2021-12-29",252507,1004,313504],["Forsyth","2021-12-30",252507,789,314293],["Forsyth","2021-12-31",252507,335,314628],["Forsyth","2022-01-01",252507,65,314693],["Forsyth","2022-01-02",252507,275,314968],["Forsyth","2022-01-03",252507,281,315249],["Franklin","2020-12-18",23329,4,4],["Franklin","2020-12-19",23329,1,5],["Franklin","2020-12-21",23329,5,10],["Franklin","2020-12-22",23329,20,30],["Franklin","2020-12-23",23329,18,48],["Franklin","2020-12-27",23329,2,50],["Franklin","2020-12-28",23329,22,72],["Franklin","2020-12-29",23329,78,150],["Franklin","2020-12-30",23329,52,202],["Franklin","2020-12-31",23329,4,206],["Franklin","2021-01-01",23329,5,211],["Franklin","2021-01-02",23329,2,213],["Franklin","2021-01-03",23329,4,217],["Franklin","2021-01-04",23329,27,244],["Franklin","2021-01-05",23329,36,280],["Franklin","2021-01-06",23329,27,307],["Franklin","2021-01-07",23329,22,329],["Franklin","2021-01-08",23329,32,361],["Franklin","2021-01-09",23329,2,363],["Franklin","2021-01-10",23329,11,374],["Franklin","2021-01-11",23329,72,446],["Franklin","2021-01-12",23329,110,556],["Franklin","2021-01-13",23329,130,686],["Franklin","2021-01-14",23329,102,788],["Franklin","2021-01-15",23329,102,890],["Franklin","2021-01-16",23329,10,900],["Franklin","2021-01-17",23329,2,902],["Franklin","2021-01-18",23329,143,1045],["Franklin","2021-01-19",23329,180,1225],["Franklin","2021-01-20",23329,172,1397],["Franklin","2021-01-21",23329,118,1515],["Franklin","2021-01-22",23329,79,1594],["Franklin","2021-01-23",23329,20,1614],["Franklin","2021-01-24",23329,22,1636],["Franklin","2021-01-25",23329,98,1734],["Franklin","2021-01-26",23329,145,1879],["Franklin","2021-01-27",23329,113,1992],["Franklin","2021-01-28",23329,99,2091],["Franklin","2021-01-29",23329,63,2154],["Franklin","2021-01-30",23329,5,2159],["Franklin","2021-01-31",23329,17,2176],["Franklin","2021-02-01",23329,100,2276],["Franklin","2021-02-02",23329,100,2376],["Franklin","2021-02-03",23329,119,2495],["Franklin","2021-02-04",23329,85,2580],["Franklin","2021-02-05",23329,65,2645],["Franklin","2021-02-06",23329,12,2657],["Franklin","2021-02-07",23329,6,2663],["Franklin","2021-02-08",23329,88,2751],["Franklin","2021-02-09",23329,111,2862],["Franklin","2021-02-10",23329,107,2969],["Franklin","2021-02-11",23329,116,3085],["Franklin","2021-02-12",23329,89,3174],["Franklin","2021-02-13",23329,9,3183],["Franklin","2021-02-14",23329,21,3204],["Franklin","2021-02-15",23329,111,3315],["Franklin","2021-02-16",23329,118,3433],["Franklin","2021-02-17",23329,104,3537],["Franklin","2021-02-18",23329,114,3651],["Franklin","2021-02-19",23329,74,3725],["Franklin","2021-02-20",23329,12,3737],["Franklin","2021-02-21",23329,3,3740],["Franklin","2021-02-22",23329,43,3783],["Franklin","2021-02-23",23329,226,4009],["Franklin","2021-02-24",23329,139,4148],["Franklin","2021-02-25",23329,149,4297],["Franklin","2021-02-26",23329,59,4356],["Franklin","2021-02-27",23329,10,4366],["Franklin","2021-02-28",23329,15,4381],["Franklin","2021-03-01",23329,128,4509],["Franklin","2021-03-02",23329,153,4662],["Franklin","2021-03-03",23329,186,4848],["Franklin","2021-03-04",23329,122,4970],["Franklin","2021-03-05",23329,126,5096],["Franklin","2021-03-06",23329,9,5105],["Franklin","2021-03-07",23329,12,5117],["Franklin","2021-03-08",23329,128,5245],["Franklin","2021-03-09",23329,174,5419],["Franklin","2021-03-10",23329,120,5539],["Franklin","2021-03-11",23329,139,5678],["Franklin","2021-03-12",23329,126,5804],["Franklin","2021-03-13",23329,37,5841],["Franklin","2021-03-14",23329,15,5856],["Franklin","2021-03-15",23329,116,5972],["Franklin","2021-03-16",23329,149,6121],["Franklin","2021-03-17",23329,146,6267],["Franklin","2021-03-18",23329,120,6387],["Franklin","2021-03-19",23329,132,6519],["Franklin","2021-03-20",23329,20,6539],["Franklin","2021-03-21",23329,15,6554],["Franklin","2021-03-22",23329,105,6659],["Franklin","2021-03-23",23329,99,6758],["Franklin","2021-03-24",23329,122,6880],["Franklin","2021-03-25",23329,137,7017],["Franklin","2021-03-26",23329,121,7138],["Franklin","2021-03-27",23329,25,7163],["Franklin","2021-03-28",23329,36,7199],["Franklin","2021-03-29",23329,94,7293],["Franklin","2021-03-30",23329,143,7436],["Franklin","2021-03-31",23329,135,7571],["Franklin","2021-04-01",23329,159,7730],["Franklin","2021-04-02",23329,105,7835],["Franklin","2021-04-03",23329,59,7894],["Franklin","2021-04-04",23329,34,7928],["Franklin","2021-04-05",23329,156,8084],["Franklin","2021-04-06",23329,230,8314],["Franklin","2021-04-07",23329,129,8443],["Franklin","2021-04-08",23329,163,8606],["Franklin","2021-04-09",23329,110,8716],["Franklin","2021-04-10",23329,34,8750],["Franklin","2021-04-11",23329,25,8775],["Franklin","2021-04-12",23329,150,8925],["Franklin","2021-04-13",23329,136,9061],["Franklin","2021-04-14",23329,173,9234],["Franklin","2021-04-15",23329,149,9383],["Franklin","2021-04-16",23329,144,9527],["Franklin","2021-04-17",23329,59,9586],["Franklin","2021-04-18",23329,13,9599],["Franklin","2021-04-19",23329,88,9687],["Franklin","2021-04-20",23329,136,9823],["Franklin","2021-04-21",23329,118,9941],["Franklin","2021-04-22",23329,135,10076],["Franklin","2021-04-23",23329,101,10177],["Franklin","2021-04-24",23329,20,10197],["Franklin","2021-04-25",23329,16,10213],["Franklin","2021-04-26",23329,96,10309],["Franklin","2021-04-27",23329,142,10451],["Franklin","2021-04-28",23329,122,10573],["Franklin","2021-04-29",23329,101,10674],["Franklin","2021-04-30",23329,88,10762],["Franklin","2021-05-01",23329,34,10796],["Franklin","2021-05-02",23329,19,10815],["Franklin","2021-05-03",23329,67,10882],["Franklin","2021-05-04",23329,150,11032],["Franklin","2021-05-05",23329,68,11100],["Franklin","2021-05-06",23329,62,11162],["Franklin","2021-05-07",23329,79,11241],["Franklin","2021-05-08",23329,59,11300],["Franklin","2021-05-09",23329,8,11308],["Franklin","2021-05-10",23329,41,11349],["Franklin","2021-05-11",23329,67,11416],["Franklin","2021-05-12",23329,54,11470],["Franklin","2021-05-13",23329,40,11510],["Franklin","2021-05-14",23329,88,11598],["Franklin","2021-05-15",23329,20,11618],["Franklin","2021-05-16",23329,7,11625],["Franklin","2021-05-17",23329,59,11684],["Franklin","2021-05-18",23329,86,11770],["Franklin","2021-05-19",23329,62,11832],["Franklin","2021-05-20",23329,49,11881],["Franklin","2021-05-21",23329,54,11935],["Franklin","2021-05-22",23329,17,11952],["Franklin","2021-05-23",23329,9,11961],["Franklin","2021-05-24",23329,42,12003],["Franklin","2021-05-25",23329,54,12057],["Franklin","2021-05-26",23329,53,12110],["Franklin","2021-05-27",23329,30,12140],["Franklin","2021-05-28",23329,46,12186],["Franklin","2021-05-29",23329,13,12199],["Franklin","2021-05-30",23329,7,12206],["Franklin","2021-05-31",23329,9,12215],["Franklin","2021-06-01",23329,48,12263],["Franklin","2021-06-02",23329,23,12286],["Franklin","2021-06-03",23329,42,12328],["Franklin","2021-06-04",23329,35,12363],["Franklin","2021-06-05",23329,13,12376],["Franklin","2021-06-06",23329,8,12384],["Franklin","2021-06-07",23329,23,12407],["Franklin","2021-06-08",23329,34,12441],["Franklin","2021-06-09",23329,19,12460],["Franklin","2021-06-10",23329,35,12495],["Franklin","2021-06-11",23329,22,12517],["Franklin","2021-06-12",23329,19,12536],["Franklin","2021-06-13",23329,4,12540],["Franklin","2021-06-14",23329,30,12570],["Franklin","2021-06-15",23329,50,12620],["Franklin","2021-06-16",23329,27,12647],["Franklin","2021-06-17",23329,13,12660],["Franklin","2021-06-18",23329,30,12690],["Franklin","2021-06-19",23329,16,12706],["Franklin","2021-06-20",23329,8,12714],["Franklin","2021-06-21",23329,23,12737],["Franklin","2021-06-22",23329,24,12761],["Franklin","2021-06-23",23329,27,12788],["Franklin","2021-06-24",23329,15,12803],["Franklin","2021-06-25",23329,28,12831],["Franklin","2021-06-26",23329,8,12839],["Franklin","2021-06-27",23329,4,12843],["Franklin","2021-06-28",23329,15,12858],["Franklin","2021-06-29",23329,19,12877],["Franklin","2021-06-30",23329,24,12901],["Franklin","2021-07-01",23329,26,12927],["Franklin","2021-07-02",23329,18,12945],["Franklin","2021-07-03",23329,9,12954],["Franklin","2021-07-04",23329,3,12957],["Franklin","2021-07-05",23329,8,12965],["Franklin","2021-07-06",23329,23,12988],["Franklin","2021-07-07",23329,17,13005],["Franklin","2021-07-08",23329,25,13030],["Franklin","2021-07-09",23329,20,13050],["Franklin","2021-07-10",23329,11,13061],["Franklin","2021-07-11",23329,3,13064],["Franklin","2021-07-12",23329,15,13079],["Franklin","2021-07-13",23329,25,13104],["Franklin","2021-07-14",23329,19,13123],["Franklin","2021-07-15",23329,11,13134],["Franklin","2021-07-16",23329,22,13156],["Franklin","2021-07-17",23329,10,13166],["Franklin","2021-07-18",23329,9,13175],["Franklin","2021-07-19",23329,20,13195],["Franklin","2021-07-20",23329,26,13221],["Franklin","2021-07-21",23329,20,13241],["Franklin","2021-07-22",23329,44,13285],["Franklin","2021-07-23",23329,18,13303],["Franklin","2021-07-24",23329,20,13323],["Franklin","2021-07-25",23329,8,13331],["Franklin","2021-07-26",23329,29,13360],["Franklin","2021-07-27",23329,32,13392],["Franklin","2021-07-28",23329,31,13423],["Franklin","2021-07-29",23329,50,13473],["Franklin","2021-07-30",23329,33,13506],["Franklin","2021-07-31",23329,24,13530],["Franklin","2021-08-01",23329,14,13544],["Franklin","2021-08-02",23329,28,13572],["Franklin","2021-08-03",23329,30,13602],["Franklin","2021-08-04",23329,50,13652],["Franklin","2021-08-05",23329,47,13699],["Franklin","2021-08-06",23329,39,13738],["Franklin","2021-08-07",23329,22,13760],["Franklin","2021-08-08",23329,16,13776],["Franklin","2021-08-09",23329,36,13812],["Franklin","2021-08-10",23329,66,13878],["Franklin","2021-08-11",23329,44,13922],["Franklin","2021-08-12",23329,69,13991],["Franklin","2021-08-13",23329,54,14045],["Franklin","2021-08-14",23329,29,14074],["Franklin","2021-08-15",23329,28,14102],["Franklin","2021-08-16",23329,43,14145],["Franklin","2021-08-17",23329,41,14186],["Franklin","2021-08-18",23329,43,14229],["Franklin","2021-08-19",23329,54,14283],["Franklin","2021-08-20",23329,77,14360],["Franklin","2021-08-21",23329,36,14396],["Franklin","2021-08-22",23329,22,14418],["Franklin","2021-08-23",23329,62,14480],["Franklin","2021-08-24",23329,83,14563],["Franklin","2021-08-25",23329,75,14638],["Franklin","2021-08-26",23329,83,14721],["Franklin","2021-08-27",23329,76,14797],["Franklin","2021-08-28",23329,40,14837],["Franklin","2021-08-29",23329,18,14855],["Franklin","2021-08-30",23329,49,14904],["Franklin","2021-08-31",23329,63,14967],["Franklin","2021-09-01",23329,61,15028],["Franklin","2021-09-02",23329,75,15103],["Franklin","2021-09-03",23329,66,15169],["Franklin","2021-09-04",23329,33,15202],["Franklin","2021-09-05",23329,29,15231],["Franklin","2021-09-06",23329,5,15236],["Franklin","2021-09-07",23329,58,15294],["Franklin","2021-09-08",23329,49,15343],["Franklin","2021-09-09",23329,64,15407],["Franklin","2021-09-10",23329,61,15468],["Franklin","2021-09-11",23329,36,15504],["Franklin","2021-09-12",23329,23,15527],["Franklin","2021-09-13",23329,77,15604],["Franklin","2021-09-14",23329,68,15672],["Franklin","2021-09-15",23329,46,15718],["Franklin","2021-09-16",23329,68,15786],["Franklin","2021-09-17",23329,76,15862],["Franklin","2021-09-18",23329,36,15898],["Franklin","2021-09-19",23329,27,15925],["Franklin","2021-09-20",23329,44,15969],["Franklin","2021-09-21",23329,46,16015],["Franklin","2021-09-22",23329,44,16059],["Franklin","2021-09-23",23329,75,16134],["Franklin","2021-09-24",23329,39,16173],["Franklin","2021-09-25",23329,23,16196],["Franklin","2021-09-26",23329,10,16206],["Franklin","2021-09-27",23329,36,16242],["Franklin","2021-09-28",23329,47,16289],["Franklin","2021-09-29",23329,46,16335],["Franklin","2021-09-30",23329,37,16372],["Franklin","2021-10-01",23329,47,16419],["Franklin","2021-10-02",23329,13,16432],["Franklin","2021-10-03",23329,11,16443],["Franklin","2021-10-04",23329,43,16486],["Franklin","2021-10-05",23329,30,16516],["Franklin","2021-10-06",23329,34,16550],["Franklin","2021-10-07",23329,36,16586],["Franklin","2021-10-08",23329,35,16621],["Franklin","2021-10-09",23329,12,16633],["Franklin","2021-10-10",23329,6,16639],["Franklin","2021-10-11",23329,20,16659],["Franklin","2021-10-12",23329,37,16696],["Franklin","2021-10-13",23329,29,16725],["Franklin","2021-10-14",23329,21,16746],["Franklin","2021-10-15",23329,33,16779],["Franklin","2021-10-16",23329,13,16792],["Franklin","2021-10-17",23329,6,16798],["Franklin","2021-10-18",23329,28,16826],["Franklin","2021-10-19",23329,21,16847],["Franklin","2021-10-20",23329,33,16880],["Franklin","2021-10-21",23329,31,16911],["Franklin","2021-10-22",23329,35,16946],["Franklin","2021-10-23",23329,34,16980],["Franklin","2021-10-24",23329,14,16994],["Franklin","2021-10-25",23329,46,17040],["Franklin","2021-10-26",23329,92,17132],["Franklin","2021-10-27",23329,91,17223],["Franklin","2021-10-28",23329,78,17301],["Franklin","2021-10-29",23329,57,17358],["Franklin","2021-10-30",23329,21,17379],["Franklin","2021-10-31",23329,14,17393],["Franklin","2021-11-01",23329,55,17448],["Franklin","2021-11-02",23329,73,17521],["Franklin","2021-11-03",23329,71,17592],["Franklin","2021-11-04",23329,49,17641],["Franklin","2021-11-05",23329,55,17696],["Franklin","2021-11-06",23329,22,17718],["Franklin","2021-11-07",23329,7,17725],["Franklin","2021-11-08",23329,55,17780],["Franklin","2021-11-09",23329,54,17834],["Franklin","2021-11-10",23329,84,17918],["Franklin","2021-11-11",23329,65,17983],["Franklin","2021-11-12",23329,72,18055],["Franklin","2021-11-13",23329,13,18068],["Franklin","2021-11-14",23329,5,18073],["Franklin","2021-11-15",23329,47,18120],["Franklin","2021-11-16",23329,72,18192],["Franklin","2021-11-17",23329,89,18281],["Franklin","2021-11-18",23329,60,18341],["Franklin","2021-11-19",23329,44,18385],["Franklin","2021-11-20",23329,15,18400],["Franklin","2021-11-21",23329,10,18410],["Franklin","2021-11-22",23329,60,18470],["Franklin","2021-11-23",23329,53,18523],["Franklin","2021-11-24",23329,47,18570],["Franklin","2021-11-26",23329,29,18599],["Franklin","2021-11-27",23329,15,18614],["Franklin","2021-11-28",23329,10,18624],["Franklin","2021-11-29",23329,59,18683],["Franklin","2021-11-30",23329,77,18760],["Franklin","2021-12-01",23329,87,18847],["Franklin","2021-12-02",23329,81,18928],["Franklin","2021-12-03",23329,103,19031],["Franklin","2021-12-04",23329,25,19056],["Franklin","2021-12-05",23329,13,19069],["Franklin","2021-12-06",23329,68,19137],["Franklin","2021-12-07",23329,41,19178],["Franklin","2021-12-08",23329,79,19257],["Franklin","2021-12-09",23329,48,19305],["Franklin","2021-12-10",23329,50,19355],["Franklin","2021-12-11",23329,18,19373],["Franklin","2021-12-12",23329,10,19383],["Franklin","2021-12-13",23329,42,19425],["Franklin","2021-12-14",23329,47,19472],["Franklin","2021-12-15",23329,51,19523],["Franklin","2021-12-16",23329,61,19584],["Franklin","2021-12-17",23329,54,19638],["Franklin","2021-12-18",23329,21,19659],["Franklin","2021-12-19",23329,6,19665],["Franklin","2021-12-20",23329,40,19705],["Franklin","2021-12-21",23329,49,19754],["Franklin","2021-12-22",23329,62,19816],["Franklin","2021-12-23",23329,31,19847],["Franklin","2021-12-24",23329,6,19853],["Franklin","2021-12-26",23329,14,19867],["Franklin","2021-12-27",23329,39,19906],["Franklin","2021-12-28",23329,52,19958],["Franklin","2021-12-29",23329,51,20009],["Franklin","2021-12-30",23329,42,20051],["Franklin","2021-12-31",23329,21,20072],["Franklin","2022-01-01",23329,8,20080],["Franklin","2022-01-02",23329,5,20085],["Franklin","2022-01-03",23329,13,20098],["Fulton","2020-12-12",1099181,1,1],["Fulton","2020-12-13",1099181,1,2],["Fulton","2020-12-14",1099181,3,5],["Fulton","2020-12-15",1099181,7,12],["Fulton","2020-12-16",1099181,27,39],["Fulton","2020-12-17",1099181,305,344],["Fulton","2020-12-18",1099181,635,979],["Fulton","2020-12-19",1099181,981,1960],["Fulton","2020-12-20",1099181,869,2829],["Fulton","2020-12-21",1099181,861,3690],["Fulton","2020-12-22",1099181,1145,4835],["Fulton","2020-12-23",1099181,1443,6278],["Fulton","2020-12-24",1099181,415,6693],["Fulton","2020-12-25",1099181,25,6718],["Fulton","2020-12-26",1099181,249,6967],["Fulton","2020-12-27",1099181,222,7189],["Fulton","2020-12-28",1099181,1571,8760],["Fulton","2020-12-29",1099181,1618,10378],["Fulton","2020-12-30",1099181,1464,11842],["Fulton","2020-12-31",1099181,765,12607],["Fulton","2021-01-01",1099181,699,13306],["Fulton","2021-01-02",1099181,243,13549],["Fulton","2021-01-03",1099181,355,13904],["Fulton","2021-01-04",1099181,1539,15443],["Fulton","2021-01-05",1099181,1667,17110],["Fulton","2021-01-06",1099181,1776,18886],["Fulton","2021-01-07",1099181,1918,20804],["Fulton","2021-01-08",1099181,2658,23462],["Fulton","2021-01-09",1099181,2014,25476],["Fulton","2021-01-10",1099181,1137,26613],["Fulton","2021-01-11",1099181,3455,30068],["Fulton","2021-01-12",1099181,3624,33692],["Fulton","2021-01-13",1099181,4576,38268],["Fulton","2021-01-14",1099181,4035,42303],["Fulton","2021-01-15",1099181,4297,46600],["Fulton","2021-01-16",1099181,3136,49736],["Fulton","2021-01-17",1099181,1490,51226],["Fulton","2021-01-18",1099181,3378,54604],["Fulton","2021-01-19",1099181,4461,59065],["Fulton","2021-01-20",1099181,4798,63863],["Fulton","2021-01-21",1099181,4291,68154],["Fulton","2021-01-22",1099181,3707,71861],["Fulton","2021-01-23",1099181,1583,73444],["Fulton","2021-01-24",1099181,913,74357],["Fulton","2021-01-25",1099181,3655,78012],["Fulton","2021-01-26",1099181,3512,81524],["Fulton","2021-01-27",1099181,4027,85551],["Fulton","2021-01-28",1099181,4705,90256],["Fulton","2021-01-29",1099181,5100,95356],["Fulton","2021-01-30",1099181,2009,97365],["Fulton","2021-01-31",1099181,920,98285],["Fulton","2021-02-01",1099181,4656,102941],["Fulton","2021-02-02",1099181,3995,106936],["Fulton","2021-02-03",1099181,4109,111045],["Fulton","2021-02-04",1099181,4676,115721],["Fulton","2021-02-05",1099181,4745,120466],["Fulton","2021-02-06",1099181,1752,122218],["Fulton","2021-02-07",1099181,1108,123326],["Fulton","2021-02-08",1099181,4684,128010],["Fulton","2021-02-09",1099181,4766,132776],["Fulton","2021-02-10",1099181,5155,137931],["Fulton","2021-02-11",1099181,5823,143754],["Fulton","2021-02-12",1099181,4911,148665],["Fulton","2021-02-13",1099181,3350,152015],["Fulton","2021-02-14",1099181,1364,153379],["Fulton","2021-02-15",1099181,4249,157628],["Fulton","2021-02-16",1099181,4908,162536],["Fulton","2021-02-17",1099181,5948,168484],["Fulton","2021-02-18",1099181,5110,173594],["Fulton","2021-02-19",1099181,5178,178772],["Fulton","2021-02-20",1099181,2086,180858],["Fulton","2021-02-21",1099181,702,181560],["Fulton","2021-02-22",1099181,2645,184205],["Fulton","2021-02-23",1099181,4294,188499],["Fulton","2021-02-24",1099181,5179,193678],["Fulton","2021-02-25",1099181,6758,200436],["Fulton","2021-02-26",1099181,6557,206993],["Fulton","2021-02-27",1099181,2440,209433],["Fulton","2021-02-28",1099181,1078,210511],["Fulton","2021-03-01",1099181,5011,215522],["Fulton","2021-03-02",1099181,5782,221304],["Fulton","2021-03-03",1099181,5943,227247],["Fulton","2021-03-04",1099181,6880,234127],["Fulton","2021-03-05",1099181,6708,240835],["Fulton","2021-03-06",1099181,2874,243709],["Fulton","2021-03-07",1099181,1405,245114],["Fulton","2021-03-08",1099181,6139,251253],["Fulton","2021-03-09",1099181,7455,258708],["Fulton","2021-03-10",1099181,8414,267122],["Fulton","2021-03-11",1099181,8369,275491],["Fulton","2021-03-12",1099181,8360,283851],["Fulton","2021-03-13",1099181,3756,287607],["Fulton","2021-03-14",1099181,2196,289803],["Fulton","2021-03-15",1099181,7678,297481],["Fulton","2021-03-16",1099181,11061,308542],["Fulton","2021-03-17",1099181,11171,319713],["Fulton","2021-03-18",1099181,10904,330617],["Fulton","2021-03-19",1099181,10640,341257],["Fulton","2021-03-20",1099181,4749,346006],["Fulton","2021-03-21",1099181,2337,348343],["Fulton","2021-03-22",1099181,9695,358038],["Fulton","2021-03-23",1099181,11688,369726],["Fulton","2021-03-24",1099181,12807,382533],["Fulton","2021-03-25",1099181,14643,397176],["Fulton","2021-03-26",1099181,13420,410596],["Fulton","2021-03-27",1099181,6463,417059],["Fulton","2021-03-28",1099181,3289,420348],["Fulton","2021-03-29",1099181,11835,432183],["Fulton","2021-03-30",1099181,16516,448699],["Fulton","2021-03-31",1099181,16739,465438],["Fulton","2021-04-01",1099181,15980,481418],["Fulton","2021-04-02",1099181,11711,493129],["Fulton","2021-04-03",1099181,5892,499021],["Fulton","2021-04-04",1099181,2405,501426],["Fulton","2021-04-05",1099181,11131,512557],["Fulton","2021-04-06",1099181,16436,528993],["Fulton","2021-04-07",1099181,15810,544803],["Fulton","2021-04-08",1099181,14409,559212],["Fulton","2021-04-09",1099181,14948,574160],["Fulton","2021-04-10",1099181,8826,582986],["Fulton","2021-04-11",1099181,3073,586059],["Fulton","2021-04-12",1099181,13015,599074],["Fulton","2021-04-13",1099181,14712,613786],["Fulton","2021-04-14",1099181,15458,629244],["Fulton","2021-04-15",1099181,14309,643553],["Fulton","2021-04-16",1099181,11271,654824],["Fulton","2021-04-17",1099181,5402,660226],["Fulton","2021-04-18",1099181,5742,665968],["Fulton","2021-04-19",1099181,11678,677646],["Fulton","2021-04-20",1099181,14462,692108],["Fulton","2021-04-21",1099181,13012,705120],["Fulton","2021-04-22",1099181,12803,717923],["Fulton","2021-04-23",1099181,12334,730257],["Fulton","2021-04-24",1099181,6151,736408],["Fulton","2021-04-25",1099181,2568,738976],["Fulton","2021-04-26",1099181,9763,748739],["Fulton","2021-04-27",1099181,9856,758595],["Fulton","2021-04-28",1099181,13885,772480],["Fulton","2021-04-29",1099181,11644,784124],["Fulton","2021-04-30",1099181,11634,795758],["Fulton","2021-05-01",1099181,7762,803520],["Fulton","2021-05-02",1099181,1771,805291],["Fulton","2021-05-03",1099181,6593,811884],["Fulton","2021-05-04",1099181,8341,820225],["Fulton","2021-05-05",1099181,7669,827894],["Fulton","2021-05-06",1099181,6514,834408],["Fulton","2021-05-07",1099181,7048,841456],["Fulton","2021-05-08",1099181,3643,845099],["Fulton","2021-05-09",1099181,1185,846284],["Fulton","2021-05-10",1099181,4452,850736],["Fulton","2021-05-11",1099181,5986,856722],["Fulton","2021-05-12",1099181,5614,862336],["Fulton","2021-05-13",1099181,5552,867888],["Fulton","2021-05-14",1099181,6042,873930],["Fulton","2021-05-15",1099181,4807,878737],["Fulton","2021-05-16",1099181,2310,881047],["Fulton","2021-05-17",1099181,4830,885877],["Fulton","2021-05-18",1099181,5801,891678],["Fulton","2021-05-19",1099181,5445,897123],["Fulton","2021-05-20",1099181,4567,901690],["Fulton","2021-05-21",1099181,4998,906688],["Fulton","2021-05-22",1099181,3820,910508],["Fulton","2021-05-23",1099181,1440,911948],["Fulton","2021-05-24",1099181,2932,914880],["Fulton","2021-05-25",1099181,3854,918734],["Fulton","2021-05-26",1099181,3662,922396],["Fulton","2021-05-27",1099181,3520,925916],["Fulton","2021-05-28",1099181,3256,929172],["Fulton","2021-05-29",1099181,1661,930833],["Fulton","2021-05-30",1099181,1057,931890],["Fulton","2021-05-31",1099181,367,932257],["Fulton","2021-06-01",1099181,4062,936319],["Fulton","2021-06-02",1099181,3765,940084],["Fulton","2021-06-03",1099181,3804,943888],["Fulton","2021-06-04",1099181,4016,947904],["Fulton","2021-06-05",1099181,3350,951254],["Fulton","2021-06-06",1099181,1793,953047],["Fulton","2021-06-07",1099181,3483,956530],["Fulton","2021-06-08",1099181,3678,960208],["Fulton","2021-06-09",1099181,2995,963203],["Fulton","2021-06-10",1099181,3253,966456],["Fulton","2021-06-11",1099181,3094,969550],["Fulton","2021-06-12",1099181,2396,971946],["Fulton","2021-06-13",1099181,931,972877],["Fulton","2021-06-14",1099181,2306,975183],["Fulton","2021-06-15",1099181,2651,977834],["Fulton","2021-06-16",1099181,2223,980057],["Fulton","2021-06-17",1099181,2285,982342],["Fulton","2021-06-18",1099181,2412,984754],["Fulton","2021-06-19",1099181,1615,986369],["Fulton","2021-06-20",1099181,824,987193],["Fulton","2021-06-21",1099181,1294,988487],["Fulton","2021-06-22",1099181,2188,990675],["Fulton","2021-06-23",1099181,1977,992652],["Fulton","2021-06-24",1099181,1864,994516],["Fulton","2021-06-25",1099181,2013,996529],["Fulton","2021-06-26",1099181,1600,998129],["Fulton","2021-06-27",1099181,862,998991],["Fulton","2021-06-28",1099181,1637,1000628],["Fulton","2021-06-29",1099181,1833,1002461],["Fulton","2021-06-30",1099181,1724,1004185],["Fulton","2021-07-01",1099181,1757,1005942],["Fulton","2021-07-02",1099181,1675,1007617],["Fulton","2021-07-03",1099181,906,1008523],["Fulton","2021-07-04",1099181,71,1008594],["Fulton","2021-07-05",1099181,1164,1009758],["Fulton","2021-07-06",1099181,1599,1011357],["Fulton","2021-07-07",1099181,1384,1012741],["Fulton","2021-07-08",1099181,1469,1014210],["Fulton","2021-07-09",1099181,1638,1015848],["Fulton","2021-07-10",1099181,1151,1016999],["Fulton","2021-07-11",1099181,642,1017641],["Fulton","2021-07-12",1099181,1336,1018977],["Fulton","2021-07-13",1099181,1504,1020481],["Fulton","2021-07-14",1099181,1437,1021918],["Fulton","2021-07-15",1099181,1549,1023467],["Fulton","2021-07-16",1099181,1582,1025049],["Fulton","2021-07-17",1099181,1222,1026271],["Fulton","2021-07-18",1099181,755,1027026],["Fulton","2021-07-19",1099181,1625,1028651],["Fulton","2021-07-20",1099181,1714,1030365],["Fulton","2021-07-21",1099181,1787,1032152],["Fulton","2021-07-22",1099181,1898,1034050],["Fulton","2021-07-23",1099181,2070,1036120],["Fulton","2021-07-24",1099181,1562,1037682],["Fulton","2021-07-25",1099181,858,1038540],["Fulton","2021-07-26",1099181,1903,1040443],["Fulton","2021-07-27",1099181,1982,1042425],["Fulton","2021-07-28",1099181,1946,1044371],["Fulton","2021-07-29",1099181,2109,1046480],["Fulton","2021-07-30",1099181,2229,1048709],["Fulton","2021-07-31",1099181,1754,1050463],["Fulton","2021-08-01",1099181,1211,1051674],["Fulton","2021-08-02",1099181,2118,1053792],["Fulton","2021-08-03",1099181,2239,1056031],["Fulton","2021-08-04",1099181,2298,1058329],["Fulton","2021-08-05",1099181,2226,1060555],["Fulton","2021-08-06",1099181,2507,1063062],["Fulton","2021-08-07",1099181,1813,1064875],["Fulton","2021-08-08",1099181,1153,1066028],["Fulton","2021-08-09",1099181,2187,1068215],["Fulton","2021-08-10",1099181,2463,1070678],["Fulton","2021-08-11",1099181,2244,1072922],["Fulton","2021-08-12",1099181,2481,1075403],["Fulton","2021-08-13",1099181,2468,1077871],["Fulton","2021-08-14",1099181,2315,1080186],["Fulton","2021-08-15",1099181,1399,1081585],["Fulton","2021-08-16",1099181,2449,1084034],["Fulton","2021-08-17",1099181,2457,1086491],["Fulton","2021-08-18",1099181,2694,1089185],["Fulton","2021-08-19",1099181,2631,1091816],["Fulton","2021-08-20",1099181,2961,1094777],["Fulton","2021-08-21",1099181,2434,1097211],["Fulton","2021-08-22",1099181,1333,1098544],["Fulton","2021-08-23",1099181,2532,1101076],["Fulton","2021-08-24",1099181,2493,1103569],["Fulton","2021-08-25",1099181,2590,1106159],["Fulton","2021-08-26",1099181,2730,1108889],["Fulton","2021-08-27",1099181,2930,1111819],["Fulton","2021-08-28",1099181,2546,1114365],["Fulton","2021-08-29",1099181,1385,1115750],["Fulton","2021-08-30",1099181,2467,1118217],["Fulton","2021-08-31",1099181,2586,1120803],["Fulton","2021-09-01",1099181,2759,1123562],["Fulton","2021-09-02",1099181,2651,1126213],["Fulton","2021-09-03",1099181,2756,1128969],["Fulton","2021-09-04",1099181,1684,1130653],["Fulton","2021-09-05",1099181,1226,1131879],["Fulton","2021-09-06",1099181,291,1132170],["Fulton","2021-09-07",1099181,2328,1134498],["Fulton","2021-09-08",1099181,2182,1136680],["Fulton","2021-09-09",1099181,2434,1139114],["Fulton","2021-09-10",1099181,2497,1141611],["Fulton","2021-09-11",1099181,1699,1143310],["Fulton","2021-09-12",1099181,1126,1144436],["Fulton","2021-09-13",1099181,2000,1146436],["Fulton","2021-09-14",1099181,1875,1148311],["Fulton","2021-09-15",1099181,1752,1150063],["Fulton","2021-09-16",1099181,1724,1151787],["Fulton","2021-09-17",1099181,1991,1153778],["Fulton","2021-09-18",1099181,1468,1155246],["Fulton","2021-09-19",1099181,911,1156157],["Fulton","2021-09-20",1099181,1655,1157812],["Fulton","2021-09-21",1099181,1629,1159441],["Fulton","2021-09-22",1099181,1507,1160948],["Fulton","2021-09-23",1099181,1568,1162516],["Fulton","2021-09-24",1099181,2175,1164691],["Fulton","2021-09-25",1099181,1725,1166416],["Fulton","2021-09-26",1099181,1143,1167559],["Fulton","2021-09-27",1099181,2569,1170128],["Fulton","2021-09-28",1099181,2737,1172865],["Fulton","2021-09-29",1099181,2456,1175321],["Fulton","2021-09-30",1099181,2579,1177900],["Fulton","2021-10-01",1099181,3043,1180943],["Fulton","2021-10-02",1099181,1812,1182755],["Fulton","2021-10-03",1099181,965,1183720],["Fulton","2021-10-04",1099181,2177,1185897],["Fulton","2021-10-05",1099181,2323,1188220],["Fulton","2021-10-06",1099181,2343,1190563],["Fulton","2021-10-07",1099181,2179,1192742],["Fulton","2021-10-08",1099181,2471,1195213],["Fulton","2021-10-09",1099181,1466,1196679],["Fulton","2021-10-10",1099181,919,1197598],["Fulton","2021-10-11",1099181,2130,1199728],["Fulton","2021-10-12",1099181,2043,1201771],["Fulton","2021-10-13",1099181,1944,1203715],["Fulton","2021-10-14",1099181,2054,1205769],["Fulton","2021-10-15",1099181,2328,1208097],["Fulton","2021-10-16",1099181,1432,1209529],["Fulton","2021-10-17",1099181,768,1210297],["Fulton","2021-10-18",1099181,2031,1212328],["Fulton","2021-10-19",1099181,1944,1214272],["Fulton","2021-10-20",1099181,1800,1216072],["Fulton","2021-10-21",1099181,2206,1218278],["Fulton","2021-10-22",1099181,3240,1221518],["Fulton","2021-10-23",1099181,2349,1223867],["Fulton","2021-10-24",1099181,1291,1225158],["Fulton","2021-10-25",1099181,3894,1229052],["Fulton","2021-10-26",1099181,3337,1232389],["Fulton","2021-10-27",1099181,3774,1236163],["Fulton","2021-10-28",1099181,3285,1239448],["Fulton","2021-10-29",1099181,4252,1243700],["Fulton","2021-10-30",1099181,2314,1246014],["Fulton","2021-10-31",1099181,1257,1247271],["Fulton","2021-11-01",1099181,3420,1250691],["Fulton","2021-11-02",1099181,3272,1253963],["Fulton","2021-11-03",1099181,3520,1257483],["Fulton","2021-11-04",1099181,3424,1260907],["Fulton","2021-11-05",1099181,4162,1265069],["Fulton","2021-11-06",1099181,2903,1267972],["Fulton","2021-11-07",1099181,1744,1269716],["Fulton","2021-11-08",1099181,3154,1272870],["Fulton","2021-11-09",1099181,3583,1276453],["Fulton","2021-11-10",1099181,3578,1280031],["Fulton","2021-11-11",1099181,3711,1283742],["Fulton","2021-11-12",1099181,4219,1287961],["Fulton","2021-11-13",1099181,3099,1291060],["Fulton","2021-11-14",1099181,1828,1292888],["Fulton","2021-11-15",1099181,3710,1296598],["Fulton","2021-11-16",1099181,4082,1300680],["Fulton","2021-11-17",1099181,3862,1304542],["Fulton","2021-11-18",1099181,3940,1308482],["Fulton","2021-11-19",1099181,4700,1313182],["Fulton","2021-11-20",1099181,3713,1316895],["Fulton","2021-11-21",1099181,2031,1318926],["Fulton","2021-11-22",1099181,4624,1323550],["Fulton","2021-11-23",1099181,4690,1328240],["Fulton","2021-11-24",1099181,3643,1331883],["Fulton","2021-11-25",1099181,14,1331897],["Fulton","2021-11-26",1099181,3733,1335630],["Fulton","2021-11-27",1099181,2742,1338372],["Fulton","2021-11-28",1099181,2062,1340434],["Fulton","2021-11-29",1099181,4160,1344594],["Fulton","2021-11-30",1099181,4696,1349290],["Fulton","2021-12-01",1099181,5487,1354777],["Fulton","2021-12-02",1099181,5483,1360260],["Fulton","2021-12-03",1099181,6231,1366491],["Fulton","2021-12-04",1099181,4284,1370775],["Fulton","2021-12-05",1099181,2175,1372950],["Fulton","2021-12-06",1099181,4741,1377691],["Fulton","2021-12-07",1099181,5038,1382729],["Fulton","2021-12-08",1099181,4864,1387593],["Fulton","2021-12-09",1099181,4913,1392506],["Fulton","2021-12-10",1099181,5177,1397683],["Fulton","2021-12-11",1099181,3502,1401185],["Fulton","2021-12-12",1099181,2089,1403274],["Fulton","2021-12-13",1099181,4305,1407579],["Fulton","2021-12-14",1099181,4662,1412241],["Fulton","2021-12-15",1099181,4451,1416692],["Fulton","2021-12-16",1099181,4494,1421186],["Fulton","2021-12-17",1099181,4754,1425940],["Fulton","2021-12-18",1099181,3448,1429388],["Fulton","2021-12-19",1099181,2195,1431583],["Fulton","2021-12-20",1099181,5152,1436735],["Fulton","2021-12-21",1099181,5594,1442329],["Fulton","2021-12-22",1099181,5359,1447688],["Fulton","2021-12-23",1099181,4436,1452124],["Fulton","2021-12-24",1099181,1339,1453463],["Fulton","2021-12-25",1099181,3,1453466],["Fulton","2021-12-26",1099181,1347,1454813],["Fulton","2021-12-27",1099181,3986,1458799],["Fulton","2021-12-28",1099181,4386,1463185],["Fulton","2021-12-29",1099181,4180,1467365],["Fulton","2021-12-30",1099181,3232,1470597],["Fulton","2021-12-31",1099181,1485,1472082],["Fulton","2022-01-01",1099181,173,1472255],["Fulton","2022-01-02",1099181,966,1473221],["Fulton","2022-01-03",1099181,1051,1474272],["Gilmer","2020-12-17",31417,2,2],["Gilmer","2020-12-18",31417,13,15],["Gilmer","2020-12-19",31417,1,16],["Gilmer","2020-12-20",31417,5,21],["Gilmer","2020-12-21",31417,6,27],["Gilmer","2020-12-22",31417,29,56],["Gilmer","2020-12-23",31417,37,93],["Gilmer","2020-12-24",31417,9,102],["Gilmer","2020-12-26",31417,1,103],["Gilmer","2020-12-27",31417,1,104],["Gilmer","2020-12-28",31417,62,166],["Gilmer","2020-12-29",31417,47,213],["Gilmer","2020-12-30",31417,46,259],["Gilmer","2020-12-31",31417,22,281],["Gilmer","2021-01-01",31417,7,288],["Gilmer","2021-01-02",31417,2,290],["Gilmer","2021-01-03",31417,4,294],["Gilmer","2021-01-04",31417,40,334],["Gilmer","2021-01-05",31417,78,412],["Gilmer","2021-01-06",31417,69,481],["Gilmer","2021-01-07",31417,125,606],["Gilmer","2021-01-08",31417,56,662],["Gilmer","2021-01-09",31417,4,666],["Gilmer","2021-01-10",31417,6,672],["Gilmer","2021-01-11",31417,222,894],["Gilmer","2021-01-12",31417,380,1274],["Gilmer","2021-01-13",31417,282,1556],["Gilmer","2021-01-14",31417,331,1887],["Gilmer","2021-01-15",31417,256,2143],["Gilmer","2021-01-16",31417,60,2203],["Gilmer","2021-01-17",31417,23,2226],["Gilmer","2021-01-18",31417,301,2527],["Gilmer","2021-01-19",31417,366,2893],["Gilmer","2021-01-20",31417,345,3238],["Gilmer","2021-01-21",31417,216,3454],["Gilmer","2021-01-22",31417,91,3545],["Gilmer","2021-01-23",31417,12,3557],["Gilmer","2021-01-24",31417,14,3571],["Gilmer","2021-01-25",31417,129,3700],["Gilmer","2021-01-26",31417,106,3806],["Gilmer","2021-01-27",31417,108,3914],["Gilmer","2021-01-28",31417,92,4006],["Gilmer","2021-01-29",31417,51,4057],["Gilmer","2021-01-30",31417,16,4073],["Gilmer","2021-02-01",31417,79,4152],["Gilmer","2021-02-02",31417,124,4276],["Gilmer","2021-02-03",31417,115,4391],["Gilmer","2021-02-04",31417,163,4554],["Gilmer","2021-02-05",31417,104,4658],["Gilmer","2021-02-06",31417,15,4673],["Gilmer","2021-02-07",31417,4,4677],["Gilmer","2021-02-08",31417,232,4909],["Gilmer","2021-02-09",31417,435,5344],["Gilmer","2021-02-10",31417,303,5647],["Gilmer","2021-02-11",31417,329,5976],["Gilmer","2021-02-12",31417,284,6260],["Gilmer","2021-02-13",31417,54,6314],["Gilmer","2021-02-14",31417,25,6339],["Gilmer","2021-02-15",31417,299,6638],["Gilmer","2021-02-16",31417,353,6991],["Gilmer","2021-02-17",31417,405,7396],["Gilmer","2021-02-18",31417,361,7757],["Gilmer","2021-02-19",31417,116,7873],["Gilmer","2021-02-20",31417,24,7897],["Gilmer","2021-02-21",31417,23,7920],["Gilmer","2021-02-22",31417,107,8027],["Gilmer","2021-02-23",31417,158,8185],["Gilmer","2021-02-24",31417,181,8366],["Gilmer","2021-02-25",31417,189,8555],["Gilmer","2021-02-26",31417,122,8677],["Gilmer","2021-02-27",31417,23,8700],["Gilmer","2021-02-28",31417,41,8741],["Gilmer","2021-03-01",31417,175,8916],["Gilmer","2021-03-02",31417,189,9105],["Gilmer","2021-03-03",31417,161,9266],["Gilmer","2021-03-04",31417,129,9395],["Gilmer","2021-03-05",31417,93,9488],["Gilmer","2021-03-06",31417,14,9502],["Gilmer","2021-03-07",31417,30,9532],["Gilmer","2021-03-08",31417,155,9687],["Gilmer","2021-03-09",31417,243,9930],["Gilmer","2021-03-10",31417,147,10077],["Gilmer","2021-03-11",31417,109,10186],["Gilmer","2021-03-12",31417,175,10361],["Gilmer","2021-03-13",31417,27,10388],["Gilmer","2021-03-14",31417,41,10429],["Gilmer","2021-03-15",31417,343,10772],["Gilmer","2021-03-16",31417,310,11082],["Gilmer","2021-03-17",31417,251,11333],["Gilmer","2021-03-18",31417,259,11592],["Gilmer","2021-03-19",31417,255,11847],["Gilmer","2021-03-20",31417,26,11873],["Gilmer","2021-03-21",31417,35,11908],["Gilmer","2021-03-22",31417,178,12086],["Gilmer","2021-03-23",31417,229,12315],["Gilmer","2021-03-24",31417,217,12532],["Gilmer","2021-03-25",31417,253,12785],["Gilmer","2021-03-26",31417,176,12961],["Gilmer","2021-03-27",31417,32,12993],["Gilmer","2021-03-28",31417,57,13050],["Gilmer","2021-03-29",31417,258,13308],["Gilmer","2021-03-30",31417,300,13608],["Gilmer","2021-03-31",31417,227,13835],["Gilmer","2021-04-01",31417,222,14057],["Gilmer","2021-04-02",31417,134,14191],["Gilmer","2021-04-03",31417,41,14232],["Gilmer","2021-04-04",31417,37,14269],["Gilmer","2021-04-05",31417,216,14485],["Gilmer","2021-04-06",31417,213,14698],["Gilmer","2021-04-07",31417,161,14859],["Gilmer","2021-04-08",31417,147,15006],["Gilmer","2021-04-09",31417,222,15228],["Gilmer","2021-04-10",31417,65,15293],["Gilmer","2021-04-11",31417,61,15354],["Gilmer","2021-04-12",31417,363,15717],["Gilmer","2021-04-13",31417,320,16037],["Gilmer","2021-04-14",31417,172,16209],["Gilmer","2021-04-15",31417,169,16378],["Gilmer","2021-04-16",31417,165,16543],["Gilmer","2021-04-17",31417,23,16566],["Gilmer","2021-04-18",31417,18,16584],["Gilmer","2021-04-19",31417,204,16788],["Gilmer","2021-04-20",31417,242,17030],["Gilmer","2021-04-21",31417,190,17220],["Gilmer","2021-04-22",31417,210,17430],["Gilmer","2021-04-23",31417,167,17597],["Gilmer","2021-04-24",31417,26,17623],["Gilmer","2021-04-25",31417,18,17641],["Gilmer","2021-04-26",31417,153,17794],["Gilmer","2021-04-27",31417,133,17927],["Gilmer","2021-04-28",31417,155,18082],["Gilmer","2021-04-29",31417,195,18277],["Gilmer","2021-04-30",31417,88,18365],["Gilmer","2021-05-01",31417,34,18399],["Gilmer","2021-05-02",31417,18,18417],["Gilmer","2021-05-03",31417,103,18520],["Gilmer","2021-05-04",31417,135,18655],["Gilmer","2021-05-05",31417,102,18757],["Gilmer","2021-05-06",31417,129,18886],["Gilmer","2021-05-07",31417,176,19062],["Gilmer","2021-05-08",31417,28,19090],["Gilmer","2021-05-09",31417,15,19105],["Gilmer","2021-05-10",31417,63,19168],["Gilmer","2021-05-11",31417,137,19305],["Gilmer","2021-05-12",31417,64,19369],["Gilmer","2021-05-13",31417,87,19456],["Gilmer","2021-05-14",31417,87,19543],["Gilmer","2021-05-15",31417,38,19581],["Gilmer","2021-05-16",31417,31,19612],["Gilmer","2021-05-17",31417,60,19672],["Gilmer","2021-05-18",31417,91,19763],["Gilmer","2021-05-19",31417,102,19865],["Gilmer","2021-05-20",31417,55,19920],["Gilmer","2021-05-21",31417,50,19970],["Gilmer","2021-05-22",31417,31,20001],["Gilmer","2021-05-23",31417,25,20026],["Gilmer","2021-05-24",31417,49,20075],["Gilmer","2021-05-25",31417,78,20153],["Gilmer","2021-05-26",31417,79,20232],["Gilmer","2021-05-27",31417,49,20281],["Gilmer","2021-05-28",31417,33,20314],["Gilmer","2021-05-29",31417,22,20336],["Gilmer","2021-05-30",31417,12,20348],["Gilmer","2021-05-31",31417,20,20368],["Gilmer","2021-06-01",31417,82,20450],["Gilmer","2021-06-02",31417,57,20507],["Gilmer","2021-06-03",31417,45,20552],["Gilmer","2021-06-04",31417,83,20635],["Gilmer","2021-06-05",31417,17,20652],["Gilmer","2021-06-06",31417,14,20666],["Gilmer","2021-06-07",31417,41,20707],["Gilmer","2021-06-08",31417,63,20770],["Gilmer","2021-06-09",31417,46,20816],["Gilmer","2021-06-10",31417,51,20867],["Gilmer","2021-06-11",31417,49,20916],["Gilmer","2021-06-12",31417,24,20940],["Gilmer","2021-06-13",31417,13,20953],["Gilmer","2021-06-14",31417,27,20980],["Gilmer","2021-06-15",31417,52,21032],["Gilmer","2021-06-16",31417,45,21077],["Gilmer","2021-06-17",31417,29,21106],["Gilmer","2021-06-18",31417,40,21146],["Gilmer","2021-06-19",31417,18,21164],["Gilmer","2021-06-20",31417,12,21176],["Gilmer","2021-06-21",31417,40,21216],["Gilmer","2021-06-22",31417,50,21266],["Gilmer","2021-06-23",31417,33,21299],["Gilmer","2021-06-24",31417,23,21322],["Gilmer","2021-06-25",31417,31,21353],["Gilmer","2021-06-26",31417,16,21369],["Gilmer","2021-06-27",31417,4,21373],["Gilmer","2021-06-28",31417,23,21396],["Gilmer","2021-06-29",31417,43,21439],["Gilmer","2021-06-30",31417,35,21474],["Gilmer","2021-07-01",31417,18,21492],["Gilmer","2021-07-02",31417,22,21514],["Gilmer","2021-07-03",31417,13,21527],["Gilmer","2021-07-04",31417,2,21529],["Gilmer","2021-07-05",31417,15,21544],["Gilmer","2021-07-06",31417,29,21573],["Gilmer","2021-07-07",31417,18,21591],["Gilmer","2021-07-08",31417,25,21616],["Gilmer","2021-07-09",31417,36,21652],["Gilmer","2021-07-10",31417,18,21670],["Gilmer","2021-07-11",31417,6,21676],["Gilmer","2021-07-12",31417,17,21693],["Gilmer","2021-07-13",31417,21,21714],["Gilmer","2021-07-14",31417,15,21729],["Gilmer","2021-07-15",31417,38,21767],["Gilmer","2021-07-16",31417,25,21792],["Gilmer","2021-07-17",31417,17,21809],["Gilmer","2021-07-18",31417,6,21815],["Gilmer","2021-07-19",31417,18,21833],["Gilmer","2021-07-20",31417,34,21867],["Gilmer","2021-07-21",31417,32,21899],["Gilmer","2021-07-22",31417,20,21919],["Gilmer","2021-07-23",31417,46,21965],["Gilmer","2021-07-24",31417,21,21986],["Gilmer","2021-07-25",31417,8,21994],["Gilmer","2021-07-26",31417,31,22025],["Gilmer","2021-07-27",31417,52,22077],["Gilmer","2021-07-28",31417,32,22109],["Gilmer","2021-07-29",31417,43,22152],["Gilmer","2021-07-30",31417,37,22189],["Gilmer","2021-07-31",31417,28,22217],["Gilmer","2021-08-01",31417,18,22235],["Gilmer","2021-08-02",31417,47,22282],["Gilmer","2021-08-03",31417,42,22324],["Gilmer","2021-08-04",31417,35,22359],["Gilmer","2021-08-05",31417,57,22416],["Gilmer","2021-08-06",31417,52,22468],["Gilmer","2021-08-07",31417,27,22495],["Gilmer","2021-08-08",31417,20,22515],["Gilmer","2021-08-09",31417,33,22548],["Gilmer","2021-08-10",31417,62,22610],["Gilmer","2021-08-11",31417,48,22658],["Gilmer","2021-08-12",31417,67,22725],["Gilmer","2021-08-13",31417,68,22793],["Gilmer","2021-08-14",31417,47,22840],["Gilmer","2021-08-15",31417,35,22875],["Gilmer","2021-08-16",31417,56,22931],["Gilmer","2021-08-17",31417,90,23021],["Gilmer","2021-08-18",31417,87,23108],["Gilmer","2021-08-19",31417,58,23166],["Gilmer","2021-08-20",31417,69,23235],["Gilmer","2021-08-21",31417,42,23277],["Gilmer","2021-08-22",31417,26,23303],["Gilmer","2021-08-23",31417,81,23384],["Gilmer","2021-08-24",31417,80,23464],["Gilmer","2021-08-25",31417,60,23524],["Gilmer","2021-08-26",31417,69,23593],["Gilmer","2021-08-27",31417,94,23687],["Gilmer","2021-08-28",31417,27,23714],["Gilmer","2021-08-29",31417,23,23737],["Gilmer","2021-08-30",31417,84,23821],["Gilmer","2021-08-31",31417,75,23896],["Gilmer","2021-09-01",31417,60,23956],["Gilmer","2021-09-02",31417,76,24032],["Gilmer","2021-09-03",31417,84,24116],["Gilmer","2021-09-04",31417,49,24165],["Gilmer","2021-09-05",31417,25,24190],["Gilmer","2021-09-06",31417,11,24201],["Gilmer","2021-09-07",31417,88,24289],["Gilmer","2021-09-08",31417,57,24346],["Gilmer","2021-09-09",31417,72,24418],["Gilmer","2021-09-10",31417,79,24497],["Gilmer","2021-09-11",31417,40,24537],["Gilmer","2021-09-12",31417,31,24568],["Gilmer","2021-09-13",31417,81,24649],["Gilmer","2021-09-14",31417,65,24714],["Gilmer","2021-09-15",31417,59,24773],["Gilmer","2021-09-16",31417,65,24838],["Gilmer","2021-09-17",31417,52,24890],["Gilmer","2021-09-18",31417,29,24919],["Gilmer","2021-09-19",31417,14,24933],["Gilmer","2021-09-20",31417,62,24995],["Gilmer","2021-09-21",31417,65,25060],["Gilmer","2021-09-22",31417,39,25099],["Gilmer","2021-09-23",31417,39,25138],["Gilmer","2021-09-24",31417,53,25191],["Gilmer","2021-09-25",31417,32,25223],["Gilmer","2021-09-26",31417,19,25242],["Gilmer","2021-09-27",31417,52,25294],["Gilmer","2021-09-28",31417,80,25374],["Gilmer","2021-09-29",31417,56,25430],["Gilmer","2021-09-30",31417,62,25492],["Gilmer","2021-10-01",31417,64,25556],["Gilmer","2021-10-02",31417,27,25583],["Gilmer","2021-10-03",31417,10,25593],["Gilmer","2021-10-04",31417,47,25640],["Gilmer","2021-10-05",31417,49,25689],["Gilmer","2021-10-06",31417,45,25734],["Gilmer","2021-10-07",31417,41,25775],["Gilmer","2021-10-08",31417,42,25817],["Gilmer","2021-10-09",31417,11,25828],["Gilmer","2021-10-10",31417,11,25839],["Gilmer","2021-10-11",31417,21,25860],["Gilmer","2021-10-12",31417,48,25908],["Gilmer","2021-10-13",31417,34,25942],["Gilmer","2021-10-14",31417,32,25974],["Gilmer","2021-10-15",31417,29,26003],["Gilmer","2021-10-16",31417,13,26016],["Gilmer","2021-10-17",31417,12,26028],["Gilmer","2021-10-18",31417,37,26065],["Gilmer","2021-10-19",31417,38,26103],["Gilmer","2021-10-20",31417,16,26119],["Gilmer","2021-10-21",31417,26,26145],["Gilmer","2021-10-22",31417,78,26223],["Gilmer","2021-10-23",31417,63,26286],["Gilmer","2021-10-24",31417,49,26335],["Gilmer","2021-10-25",31417,142,26477],["Gilmer","2021-10-26",31417,269,26746],["Gilmer","2021-10-27",31417,186,26932],["Gilmer","2021-10-28",31417,178,27110],["Gilmer","2021-10-29",31417,197,27307],["Gilmer","2021-10-30",31417,42,27349],["Gilmer","2021-10-31",31417,33,27382],["Gilmer","2021-11-01",31417,131,27513],["Gilmer","2021-11-02",31417,143,27656],["Gilmer","2021-11-03",31417,96,27752],["Gilmer","2021-11-04",31417,155,27907],["Gilmer","2021-11-05",31417,136,28043],["Gilmer","2021-11-06",31417,38,28081],["Gilmer","2021-11-07",31417,34,28115],["Gilmer","2021-11-08",31417,122,28237],["Gilmer","2021-11-09",31417,111,28348],["Gilmer","2021-11-10",31417,109,28457],["Gilmer","2021-11-11",31417,92,28549],["Gilmer","2021-11-12",31417,104,28653],["Gilmer","2021-11-13",31417,39,28692],["Gilmer","2021-11-14",31417,17,28709],["Gilmer","2021-11-15",31417,101,28810],["Gilmer","2021-11-16",31417,99,28909],["Gilmer","2021-11-17",31417,115,29024],["Gilmer","2021-11-18",31417,76,29100],["Gilmer","2021-11-19",31417,107,29207],["Gilmer","2021-11-20",31417,42,29249],["Gilmer","2021-11-21",31417,32,29281],["Gilmer","2021-11-22",31417,103,29384],["Gilmer","2021-11-23",31417,72,29456],["Gilmer","2021-11-24",31417,57,29513],["Gilmer","2021-11-26",31417,32,29545],["Gilmer","2021-11-27",31417,35,29580],["Gilmer","2021-11-28",31417,32,29612],["Gilmer","2021-11-29",31417,113,29725],["Gilmer","2021-11-30",31417,117,29842],["Gilmer","2021-12-01",31417,130,29972],["Gilmer","2021-12-02",31417,112,30084],["Gilmer","2021-12-03",31417,129,30213],["Gilmer","2021-12-04",31417,59,30272],["Gilmer","2021-12-05",31417,23,30295],["Gilmer","2021-12-06",31417,66,30361],["Gilmer","2021-12-07",31417,96,30457],["Gilmer","2021-12-08",31417,63,30520],["Gilmer","2021-12-09",31417,67,30587],["Gilmer","2021-12-10",31417,94,30681],["Gilmer","2021-12-11",31417,33,30714],["Gilmer","2021-12-12",31417,13,30727],["Gilmer","2021-12-13",31417,61,30788],["Gilmer","2021-12-14",31417,65,30853],["Gilmer","2021-12-15",31417,47,30900],["Gilmer","2021-12-16",31417,58,30958],["Gilmer","2021-12-17",31417,94,31052],["Gilmer","2021-12-18",31417,28,31080],["Gilmer","2021-12-19",31417,19,31099],["Gilmer","2021-12-20",31417,70,31169],["Gilmer","2021-12-21",31417,120,31289],["Gilmer","2021-12-22",31417,75,31364],["Gilmer","2021-12-23",31417,56,31420],["Gilmer","2021-12-24",31417,13,31433],["Gilmer","2021-12-26",31417,21,31454],["Gilmer","2021-12-27",31417,63,31517],["Gilmer","2021-12-28",31417,90,31607],["Gilmer","2021-12-29",31417,69,31676],["Gilmer","2021-12-30",31417,74,31750],["Gilmer","2021-12-31",31417,35,31785],["Gilmer","2022-01-01",31417,10,31795],["Gilmer","2022-01-02",31417,14,31809],["Gilmer","2022-01-03",31417,16,31825],["Glascock","2020-12-18",3025,1,1],["Glascock","2020-12-22",3025,1,2],["Glascock","2020-12-23",3025,1,3],["Glascock","2020-12-28",3025,7,10],["Glascock","2020-12-29",3025,10,20],["Glascock","2020-12-30",3025,1,21],["Glascock","2021-01-02",3025,2,23],["Glascock","2021-01-04",3025,3,26],["Glascock","2021-01-05",3025,3,29],["Glascock","2021-01-06",3025,28,57],["Glascock","2021-01-07",3025,3,60],["Glascock","2021-01-08",3025,2,62],["Glascock","2021-01-09",3025,25,87],["Glascock","2021-01-11",3025,3,90],["Glascock","2021-01-12",3025,3,93],["Glascock","2021-01-13",3025,96,189],["Glascock","2021-01-14",3025,11,200],["Glascock","2021-01-16",3025,3,203],["Glascock","2021-01-18",3025,4,207],["Glascock","2021-01-19",3025,16,223],["Glascock","2021-01-20",3025,52,275],["Glascock","2021-01-21",3025,2,277],["Glascock","2021-01-23",3025,1,278],["Glascock","2021-01-25",3025,6,284],["Glascock","2021-01-26",3025,7,291],["Glascock","2021-01-27",3025,40,331],["Glascock","2021-01-28",3025,8,339],["Glascock","2021-01-30",3025,1,340],["Glascock","2021-01-31",3025,24,364],["Glascock","2021-02-01",3025,5,369],["Glascock","2021-02-02",3025,3,372],["Glascock","2021-02-03",3025,46,418],["Glascock","2021-02-04",3025,3,421],["Glascock","2021-02-05",3025,6,427],["Glascock","2021-02-08",3025,2,429],["Glascock","2021-02-09",3025,8,437],["Glascock","2021-02-10",3025,100,537],["Glascock","2021-02-11",3025,8,545],["Glascock","2021-02-12",3025,2,547],["Glascock","2021-02-15",3025,1,548],["Glascock","2021-02-16",3025,20,568],["Glascock","2021-02-17",3025,60,628],["Glascock","2021-02-18",3025,2,630],["Glascock","2021-02-22",3025,13,643],["Glascock","2021-02-23",3025,4,647],["Glascock","2021-02-24",3025,42,689],["Glascock","2021-02-25",3025,13,702],["Glascock","2021-03-02",3025,3,705],["Glascock","2021-03-03",3025,28,733],["Glascock","2021-03-05",3025,6,739],["Glascock","2021-03-08",3025,2,741],["Glascock","2021-03-09",3025,3,744],["Glascock","2021-03-10",3025,49,793],["Glascock","2021-03-11",3025,8,801],["Glascock","2021-03-12",3025,2,803],["Glascock","2021-03-14",3025,1,804],["Glascock","2021-03-15",3025,4,808],["Glascock","2021-03-16",3025,20,828],["Glascock","2021-03-17",3025,33,861],["Glascock","2021-03-18",3025,7,868],["Glascock","2021-03-19",3025,4,872],["Glascock","2021-03-20",3025,1,873],["Glascock","2021-03-22",3025,6,879],["Glascock","2021-03-23",3025,12,891],["Glascock","2021-03-24",3025,24,915],["Glascock","2021-03-25",3025,10,925],["Glascock","2021-03-26",3025,3,928],["Glascock","2021-03-27",3025,4,932],["Glascock","2021-03-28",3025,2,934],["Glascock","2021-03-29",3025,4,938],["Glascock","2021-03-30",3025,11,949],["Glascock","2021-03-31",3025,37,986],["Glascock","2021-04-01",3025,6,992],["Glascock","2021-04-02",3025,3,995],["Glascock","2021-04-03",3025,2,997],["Glascock","2021-04-05",3025,7,1004],["Glascock","2021-04-06",3025,3,1007],["Glascock","2021-04-07",3025,27,1034],["Glascock","2021-04-08",3025,8,1042],["Glascock","2021-04-09",3025,8,1050],["Glascock","2021-04-10",3025,1,1051],["Glascock","2021-04-12",3025,9,1060],["Glascock","2021-04-13",3025,16,1076],["Glascock","2021-04-14",3025,25,1101],["Glascock","2021-04-15",3025,6,1107],["Glascock","2021-04-16",3025,5,1112],["Glascock","2021-04-17",3025,6,1118],["Glascock","2021-04-19",3025,9,1127],["Glascock","2021-04-20",3025,10,1137],["Glascock","2021-04-21",3025,27,1164],["Glascock","2021-04-22",3025,9,1173],["Glascock","2021-04-23",3025,7,1180],["Glascock","2021-04-26",3025,6,1186],["Glascock","2021-04-27",3025,11,1197],["Glascock","2021-04-28",3025,35,1232],["Glascock","2021-04-29",3025,4,1236],["Glascock","2021-04-30",3025,8,1244],["Glascock","2021-05-01",3025,2,1246],["Glascock","2021-05-03",3025,4,1250],["Glascock","2021-05-04",3025,3,1253],["Glascock","2021-05-05",3025,19,1272],["Glascock","2021-05-06",3025,3,1275],["Glascock","2021-05-07",3025,5,1280],["Glascock","2021-05-08",3025,1,1281],["Glascock","2021-05-09",3025,1,1282],["Glascock","2021-05-10",3025,4,1286],["Glascock","2021-05-11",3025,7,1293],["Glascock","2021-05-12",3025,13,1306],["Glascock","2021-05-13",3025,7,1313],["Glascock","2021-05-14",3025,5,1318],["Glascock","2021-05-15",3025,4,1322],["Glascock","2021-05-17",3025,5,1327],["Glascock","2021-05-18",3025,3,1330],["Glascock","2021-05-19",3025,12,1342],["Glascock","2021-05-20",3025,5,1347],["Glascock","2021-05-21",3025,5,1352],["Glascock","2021-05-22",3025,3,1355],["Glascock","2021-05-23",3025,2,1357],["Glascock","2021-05-24",3025,2,1359],["Glascock","2021-05-25",3025,4,1363],["Glascock","2021-05-26",3025,14,1377],["Glascock","2021-05-27",3025,3,1380],["Glascock","2021-05-28",3025,6,1386],["Glascock","2021-05-29",3025,1,1387],["Glascock","2021-06-01",3025,2,1389],["Glascock","2021-06-02",3025,15,1404],["Glascock","2021-06-03",3025,3,1407],["Glascock","2021-06-04",3025,3,1410],["Glascock","2021-06-05",3025,4,1414],["Glascock","2021-06-07",3025,5,1419],["Glascock","2021-06-08",3025,3,1422],["Glascock","2021-06-09",3025,6,1428],["Glascock","2021-06-10",3025,4,1432],["Glascock","2021-06-11",3025,2,1434],["Glascock","2021-06-12",3025,3,1437],["Glascock","2021-06-14",3025,2,1439],["Glascock","2021-06-15",3025,1,1440],["Glascock","2021-06-16",3025,3,1443],["Glascock","2021-06-17",3025,4,1447],["Glascock","2021-06-18",3025,1,1448],["Glascock","2021-06-21",3025,3,1451],["Glascock","2021-06-22",3025,1,1452],["Glascock","2021-06-23",3025,6,1458],["Glascock","2021-06-24",3025,2,1460],["Glascock","2021-06-25",3025,7,1467],["Glascock","2021-06-26",3025,1,1468],["Glascock","2021-06-29",3025,2,1470],["Glascock","2021-06-30",3025,11,1481],["Glascock","2021-07-01",3025,3,1484],["Glascock","2021-07-05",3025,1,1485],["Glascock","2021-07-07",3025,3,1488],["Glascock","2021-07-09",3025,2,1490],["Glascock","2021-07-12",3025,1,1491],["Glascock","2021-07-13",3025,1,1492],["Glascock","2021-07-14",3025,3,1495],["Glascock","2021-07-15",3025,3,1498],["Glascock","2021-07-18",3025,1,1499],["Glascock","2021-07-19",3025,4,1503],["Glascock","2021-07-21",3025,5,1508],["Glascock","2021-07-22",3025,5,1513],["Glascock","2021-07-23",3025,1,1514],["Glascock","2021-07-24",3025,3,1517],["Glascock","2021-07-26",3025,5,1522],["Glascock","2021-07-27",3025,3,1525],["Glascock","2021-07-28",3025,12,1537],["Glascock","2021-07-29",3025,7,1544],["Glascock","2021-07-30",3025,4,1548],["Glascock","2021-08-02",3025,4,1552],["Glascock","2021-08-03",3025,2,1554],["Glascock","2021-08-04",3025,4,1558],["Glascock","2021-08-05",3025,7,1565],["Glascock","2021-08-06",3025,1,1566],["Glascock","2021-08-07",3025,8,1574],["Glascock","2021-08-08",3025,1,1575],["Glascock","2021-08-09",3025,10,1585],["Glascock","2021-08-10",3025,2,1587],["Glascock","2021-08-11",3025,12,1599],["Glascock","2021-08-12",3025,3,1602],["Glascock","2021-08-13",3025,9,1611],["Glascock","2021-08-14",3025,8,1619],["Glascock","2021-08-15",3025,3,1622],["Glascock","2021-08-16",3025,4,1626],["Glascock","2021-08-17",3025,2,1628],["Glascock","2021-08-18",3025,12,1640],["Glascock","2021-08-19",3025,11,1651],["Glascock","2021-08-20",3025,2,1653],["Glascock","2021-08-23",3025,8,1661],["Glascock","2021-08-24",3025,2,1663],["Glascock","2021-08-25",3025,14,1677],["Glascock","2021-08-26",3025,14,1691],["Glascock","2021-08-27",3025,7,1698],["Glascock","2021-08-28",3025,3,1701],["Glascock","2021-08-30",3025,9,1710],["Glascock","2021-08-31",3025,13,1723],["Glascock","2021-09-01",3025,11,1734],["Glascock","2021-09-02",3025,5,1739],["Glascock","2021-09-03",3025,10,1749],["Glascock","2021-09-04",3025,4,1753],["Glascock","2021-09-05",3025,5,1758],["Glascock","2021-09-07",3025,2,1760],["Glascock","2021-09-08",3025,17,1777],["Glascock","2021-09-09",3025,5,1782],["Glascock","2021-09-10",3025,15,1797],["Glascock","2021-09-11",3025,2,1799],["Glascock","2021-09-13",3025,4,1803],["Glascock","2021-09-14",3025,2,1805],["Glascock","2021-09-15",3025,16,1821],["Glascock","2021-09-16",3025,10,1831],["Glascock","2021-09-17",3025,4,1835],["Glascock","2021-09-18",3025,2,1837],["Glascock","2021-09-19",3025,1,1838],["Glascock","2021-09-20",3025,4,1842],["Glascock","2021-09-21",3025,3,1845],["Glascock","2021-09-22",3025,6,1851],["Glascock","2021-09-23",3025,8,1859],["Glascock","2021-09-24",3025,2,1861],["Glascock","2021-09-25",3025,3,1864],["Glascock","2021-09-26",3025,2,1866],["Glascock","2021-09-27",3025,3,1869],["Glascock","2021-09-28",3025,6,1875],["Glascock","2021-09-29",3025,11,1886],["Glascock","2021-09-30",3025,5,1891],["Glascock","2021-10-01",3025,3,1894],["Glascock","2021-10-02",3025,2,1896],["Glascock","2021-10-03",3025,1,1897],["Glascock","2021-10-04",3025,2,1899],["Glascock","2021-10-05",3025,3,1902],["Glascock","2021-10-06",3025,2,1904],["Glascock","2021-10-07",3025,2,1906],["Glascock","2021-10-08",3025,5,1911],["Glascock","2021-10-09",3025,2,1913],["Glascock","2021-10-10",3025,1,1914],["Glascock","2021-10-11",3025,3,1917],["Glascock","2021-10-12",3025,4,1921],["Glascock","2021-10-13",3025,4,1925],["Glascock","2021-10-14",3025,4,1929],["Glascock","2021-10-15",3025,2,1931],["Glascock","2021-10-16",3025,1,1932],["Glascock","2021-10-18",3025,2,1934],["Glascock","2021-10-19",3025,4,1938],["Glascock","2021-10-20",3025,6,1944],["Glascock","2021-10-23",3025,5,1949],["Glascock","2021-10-24",3025,1,1950],["Glascock","2021-10-25",3025,3,1953],["Glascock","2021-10-26",3025,21,1974],["Glascock","2021-10-27",3025,14,1988],["Glascock","2021-10-28",3025,3,1991],["Glascock","2021-10-29",3025,5,1996],["Glascock","2021-10-31",3025,1,1997],["Glascock","2021-11-01",3025,7,2004],["Glascock","2021-11-02",3025,13,2017],["Glascock","2021-11-03",3025,24,2041],["Glascock","2021-11-04",3025,2,2043],["Glascock","2021-11-05",3025,4,2047],["Glascock","2021-11-06",3025,1,2048],["Glascock","2021-11-08",3025,2,2050],["Glascock","2021-11-09",3025,12,2062],["Glascock","2021-11-10",3025,35,2097],["Glascock","2021-11-11",3025,13,2110],["Glascock","2021-11-12",3025,5,2115],["Glascock","2021-11-13",3025,2,2117],["Glascock","2021-11-15",3025,5,2122],["Glascock","2021-11-16",3025,12,2134],["Glascock","2021-11-17",3025,25,2159],["Glascock","2021-11-18",3025,3,2162],["Glascock","2021-11-19",3025,4,2166],["Glascock","2021-11-21",3025,3,2169],["Glascock","2021-11-22",3025,8,2177],["Glascock","2021-11-23",3025,2,2179],["Glascock","2021-11-24",3025,5,2184],["Glascock","2021-11-28",3025,1,2185],["Glascock","2021-11-29",3025,6,2191],["Glascock","2021-11-30",3025,3,2194],["Glascock","2021-12-01",3025,30,2224],["Glascock","2021-12-02",3025,3,2227],["Glascock","2021-12-03",3025,3,2230],["Glascock","2021-12-04",3025,2,2232],["Glascock","2021-12-05",3025,1,2233],["Glascock","2021-12-06",3025,3,2236],["Glascock","2021-12-07",3025,5,2241],["Glascock","2021-12-08",3025,19,2260],["Glascock","2021-12-09",3025,1,2261],["Glascock","2021-12-10",3025,6,2267],["Glascock","2021-12-11",3025,2,2269],["Glascock","2021-12-12",3025,2,2271],["Glascock","2021-12-13",3025,1,2272],["Glascock","2021-12-14",3025,2,2274],["Glascock","2021-12-15",3025,18,2292],["Glascock","2021-12-16",3025,3,2295],["Glascock","2021-12-17",3025,1,2296],["Glascock","2021-12-18",3025,3,2299],["Glascock","2021-12-20",3025,4,2303],["Glascock","2021-12-21",3025,4,2307],["Glascock","2021-12-22",3025,1,2308],["Glascock","2021-12-23",3025,7,2315],["Glascock","2021-12-24",3025,1,2316],["Glascock","2021-12-27",3025,3,2319],["Glascock","2021-12-28",3025,10,2329],["Glascock","2021-12-29",3025,13,2342],["Glascock","2021-12-30",3025,2,2344],["Glascock","2021-12-31",3025,1,2345],["Glascock","2022-01-02",3025,1,2346],["Glascock","2022-01-03",3025,2,2348],["Glynn","2020-12-15",86047,33,33],["Glynn","2020-12-16",86047,12,45],["Glynn","2020-12-17",86047,151,196],["Glynn","2020-12-18",86047,155,351],["Glynn","2020-12-19",86047,1,352],["Glynn","2020-12-20",86047,2,354],["Glynn","2020-12-21",86047,58,412],["Glynn","2020-12-22",86047,67,479],["Glynn","2020-12-23",86047,111,590],["Glynn","2020-12-24",86047,8,598],["Glynn","2020-12-25",86047,1,599],["Glynn","2020-12-26",86047,2,601],["Glynn","2020-12-27",86047,2,603],["Glynn","2020-12-28",86047,58,661],["Glynn","2020-12-29",86047,79,740],["Glynn","2020-12-30",86047,62,802],["Glynn","2020-12-31",86047,50,852],["Glynn","2021-01-01",86047,11,863],["Glynn","2021-01-02",86047,2,865],["Glynn","2021-01-03",86047,10,875],["Glynn","2021-01-04",86047,69,944],["Glynn","2021-01-05",86047,315,1259],["Glynn","2021-01-06",86047,279,1538],["Glynn","2021-01-07",86047,262,1800],["Glynn","2021-01-08",86047,346,2146],["Glynn","2021-01-09",86047,4,2150],["Glynn","2021-01-10",86047,105,2255],["Glynn","2021-01-11",86047,306,2561],["Glynn","2021-01-12",86047,596,3157],["Glynn","2021-01-13",86047,691,3848],["Glynn","2021-01-14",86047,898,4746],["Glynn","2021-01-15",86047,376,5122],["Glynn","2021-01-16",86047,379,5501],["Glynn","2021-01-17",86047,160,5661],["Glynn","2021-01-18",86047,458,6119],["Glynn","2021-01-19",86047,466,6585],["Glynn","2021-01-20",86047,804,7389],["Glynn","2021-01-21",86047,662,8051],["Glynn","2021-01-22",86047,363,8414],["Glynn","2021-01-23",86047,221,8635],["Glynn","2021-01-24",86047,16,8651],["Glynn","2021-01-25",86047,530,9181],["Glynn","2021-01-26",86047,735,9916],["Glynn","2021-01-27",86047,262,10178],["Glynn","2021-01-28",86047,561,10739],["Glynn","2021-01-29",86047,445,11184],["Glynn","2021-01-30",86047,608,11792],["Glynn","2021-01-31",86047,119,11911],["Glynn","2021-02-01",86047,539,12450],["Glynn","2021-02-02",86047,1066,13516],["Glynn","2021-02-03",86047,810,14326],["Glynn","2021-02-04",86047,1095,15421],["Glynn","2021-02-05",86047,452,15873],["Glynn","2021-02-06",86047,361,16234],["Glynn","2021-02-07",86047,156,16390],["Glynn","2021-02-08",86047,777,17167],["Glynn","2021-02-09",86047,760,17927],["Glynn","2021-02-10",86047,723,18650],["Glynn","2021-02-11",86047,981,19631],["Glynn","2021-02-12",86047,456,20087],["Glynn","2021-02-13",86047,252,20339],["Glynn","2021-02-14",86047,24,20363],["Glynn","2021-02-15",86047,524,20887],["Glynn","2021-02-16",86047,508,21395],["Glynn","2021-02-17",86047,833,22228],["Glynn","2021-02-18",86047,547,22775],["Glynn","2021-02-19",86047,396,23171],["Glynn","2021-02-20",86047,914,24085],["Glynn","2021-02-21",86047,79,24164],["Glynn","2021-02-22",86047,353,24517],["Glynn","2021-02-23",86047,709,25226],["Glynn","2021-02-24",86047,647,25873],["Glynn","2021-02-25",86047,703,26576],["Glynn","2021-02-26",86047,602,27178],["Glynn","2021-02-27",86047,377,27555],["Glynn","2021-02-28",86047,16,27571],["Glynn","2021-03-01",86047,533,28104],["Glynn","2021-03-02",86047,729,28833],["Glynn","2021-03-03",86047,662,29495],["Glynn","2021-03-04",86047,666,30161],["Glynn","2021-03-05",86047,281,30442],["Glynn","2021-03-06",86047,365,30807],["Glynn","2021-03-07",86047,18,30825],["Glynn","2021-03-08",86047,428,31253],["Glynn","2021-03-09",86047,461,31714],["Glynn","2021-03-10",86047,1095,32809],["Glynn","2021-03-11",86047,649,33458],["Glynn","2021-03-12",86047,479,33937],["Glynn","2021-03-13",86047,812,34749],["Glynn","2021-03-14",86047,74,34823],["Glynn","2021-03-15",86047,499,35322],["Glynn","2021-03-16",86047,734,36056],["Glynn","2021-03-17",86047,964,37020],["Glynn","2021-03-18",86047,744,37764],["Glynn","2021-03-19",86047,416,38180],["Glynn","2021-03-20",86047,642,38822],["Glynn","2021-03-21",86047,31,38853],["Glynn","2021-03-22",86047,410,39263],["Glynn","2021-03-23",86047,576,39839],["Glynn","2021-03-24",86047,902,40741],["Glynn","2021-03-25",86047,807,41548],["Glynn","2021-03-26",86047,384,41932],["Glynn","2021-03-27",86047,636,42568],["Glynn","2021-03-28",86047,59,42627],["Glynn","2021-03-29",86047,424,43051],["Glynn","2021-03-30",86047,526,43577],["Glynn","2021-03-31",86047,982,44559],["Glynn","2021-04-01",86047,679,45238],["Glynn","2021-04-02",86047,266,45504],["Glynn","2021-04-03",86047,539,46043],["Glynn","2021-04-04",86047,49,46092],["Glynn","2021-04-05",86047,466,46558],["Glynn","2021-04-06",86047,981,47539],["Glynn","2021-04-07",86047,723,48262],["Glynn","2021-04-08",86047,748,49010],["Glynn","2021-04-09",86047,398,49408],["Glynn","2021-04-10",86047,461,49869],["Glynn","2021-04-11",86047,50,49919],["Glynn","2021-04-12",86047,349,50268],["Glynn","2021-04-13",86047,508,50776],["Glynn","2021-04-14",86047,711,51487],["Glynn","2021-04-15",86047,601,52088],["Glynn","2021-04-16",86047,340,52428],["Glynn","2021-04-17",86047,409,52837],["Glynn","2021-04-18",86047,28,52865],["Glynn","2021-04-19",86047,296,53161],["Glynn","2021-04-20",86047,401,53562],["Glynn","2021-04-21",86047,697,54259],["Glynn","2021-04-22",86047,585,54844],["Glynn","2021-04-23",86047,345,55189],["Glynn","2021-04-24",86047,331,55520],["Glynn","2021-04-25",86047,38,55558],["Glynn","2021-04-26",86047,314,55872],["Glynn","2021-04-27",86047,517,56389],["Glynn","2021-04-28",86047,516,56905],["Glynn","2021-04-29",86047,295,57200],["Glynn","2021-04-30",86047,282,57482],["Glynn","2021-05-01",86047,223,57705],["Glynn","2021-05-02",86047,28,57733],["Glynn","2021-05-03",86047,187,57920],["Glynn","2021-05-04",86047,182,58102],["Glynn","2021-05-05",86047,380,58482],["Glynn","2021-05-06",86047,316,58798],["Glynn","2021-05-07",86047,205,59003],["Glynn","2021-05-08",86047,181,59184],["Glynn","2021-05-09",86047,11,59195],["Glynn","2021-05-10",86047,124,59319],["Glynn","2021-05-11",86047,218,59537],["Glynn","2021-05-12",86047,247,59784],["Glynn","2021-05-13",86047,227,60011],["Glynn","2021-05-14",86047,167,60178],["Glynn","2021-05-15",86047,237,60415],["Glynn","2021-05-16",86047,38,60453],["Glynn","2021-05-17",86047,171,60624],["Glynn","2021-05-18",86047,205,60829],["Glynn","2021-05-19",86047,311,61140],["Glynn","2021-05-20",86047,249,61389],["Glynn","2021-05-21",86047,143,61532],["Glynn","2021-05-22",86047,168,61700],["Glynn","2021-05-23",86047,23,61723],["Glynn","2021-05-24",86047,120,61843],["Glynn","2021-05-25",86047,115,61958],["Glynn","2021-05-26",86047,138,62096],["Glynn","2021-05-27",86047,262,62358],["Glynn","2021-05-28",86047,110,62468],["Glynn","2021-05-29",86047,40,62508],["Glynn","2021-05-30",86047,18,62526],["Glynn","2021-05-31",86047,13,62539],["Glynn","2021-06-01",86047,172,62711],["Glynn","2021-06-02",86047,207,62918],["Glynn","2021-06-03",86047,235,63153],["Glynn","2021-06-04",86047,114,63267],["Glynn","2021-06-05",86047,195,63462],["Glynn","2021-06-06",86047,28,63490],["Glynn","2021-06-07",86047,163,63653],["Glynn","2021-06-08",86047,190,63843],["Glynn","2021-06-09",86047,183,64026],["Glynn","2021-06-10",86047,185,64211],["Glynn","2021-06-11",86047,127,64338],["Glynn","2021-06-12",86047,126,64464],["Glynn","2021-06-13",86047,24,64488],["Glynn","2021-06-14",86047,95,64583],["Glynn","2021-06-15",86047,84,64667],["Glynn","2021-06-16",86047,165,64832],["Glynn","2021-06-17",86047,130,64962],["Glynn","2021-06-18",86047,99,65061],["Glynn","2021-06-19",86047,66,65127],["Glynn","2021-06-20",86047,15,65142],["Glynn","2021-06-21",86047,64,65206],["Glynn","2021-06-22",86047,101,65307],["Glynn","2021-06-23",86047,154,65461],["Glynn","2021-06-24",86047,154,65615],["Glynn","2021-06-25",86047,86,65701],["Glynn","2021-06-26",86047,71,65772],["Glynn","2021-06-27",86047,17,65789],["Glynn","2021-06-28",86047,100,65889],["Glynn","2021-06-29",86047,148,66037],["Glynn","2021-06-30",86047,60,66097],["Glynn","2021-07-01",86047,114,66211],["Glynn","2021-07-02",86047,70,66281],["Glynn","2021-07-03",86047,26,66307],["Glynn","2021-07-04",86047,4,66311],["Glynn","2021-07-05",86047,49,66360],["Glynn","2021-07-06",86047,123,66483],["Glynn","2021-07-07",86047,43,66526],["Glynn","2021-07-08",86047,67,66593],["Glynn","2021-07-09",86047,86,66679],["Glynn","2021-07-10",86047,30,66709],["Glynn","2021-07-11",86047,15,66724],["Glynn","2021-07-12",86047,73,66797],["Glynn","2021-07-13",86047,197,66994],["Glynn","2021-07-14",86047,88,67082],["Glynn","2021-07-15",86047,96,67178],["Glynn","2021-07-16",86047,83,67261],["Glynn","2021-07-17",86047,30,67291],["Glynn","2021-07-18",86047,41,67332],["Glynn","2021-07-19",86047,108,67440],["Glynn","2021-07-20",86047,169,67609],["Glynn","2021-07-21",86047,119,67728],["Glynn","2021-07-22",86047,139,67867],["Glynn","2021-07-23",86047,156,68023],["Glynn","2021-07-24",86047,101,68124],["Glynn","2021-07-25",86047,66,68190],["Glynn","2021-07-26",86047,153,68343],["Glynn","2021-07-27",86047,325,68668],["Glynn","2021-07-28",86047,148,68816],["Glynn","2021-07-29",86047,253,69069],["Glynn","2021-07-30",86047,198,69267],["Glynn","2021-07-31",86047,109,69376],["Glynn","2021-08-01",86047,60,69436],["Glynn","2021-08-02",86047,193,69629],["Glynn","2021-08-03",86047,393,70022],["Glynn","2021-08-04",86047,174,70196],["Glynn","2021-08-05",86047,300,70496],["Glynn","2021-08-06",86047,221,70717],["Glynn","2021-08-07",86047,119,70836],["Glynn","2021-08-08",86047,95,70931],["Glynn","2021-08-09",86047,241,71172],["Glynn","2021-08-10",86047,359,71531],["Glynn","2021-08-11",86047,208,71739],["Glynn","2021-08-12",86047,399,72138],["Glynn","2021-08-13",86047,251,72389],["Glynn","2021-08-14",86047,157,72546],["Glynn","2021-08-15",86047,98,72644],["Glynn","2021-08-16",86047,251,72895],["Glynn","2021-08-17",86047,446,73341],["Glynn","2021-08-18",86047,329,73670],["Glynn","2021-08-19",86047,543,74213],["Glynn","2021-08-20",86047,315,74528],["Glynn","2021-08-21",86047,132,74660],["Glynn","2021-08-22",86047,100,74760],["Glynn","2021-08-23",86047,300,75060],["Glynn","2021-08-24",86047,596,75656],["Glynn","2021-08-25",86047,266,75922],["Glynn","2021-08-26",86047,556,76478],["Glynn","2021-08-27",86047,284,76762],["Glynn","2021-08-28",86047,158,76920],["Glynn","2021-08-29",86047,108,77028],["Glynn","2021-08-30",86047,295,77323],["Glynn","2021-08-31",86047,472,77795],["Glynn","2021-09-01",86047,224,78019],["Glynn","2021-09-02",86047,472,78491],["Glynn","2021-09-03",86047,305,78796],["Glynn","2021-09-04",86047,101,78897],["Glynn","2021-09-05",86047,83,78980],["Glynn","2021-09-06",86047,33,79013],["Glynn","2021-09-07",86047,358,79371],["Glynn","2021-09-08",86047,293,79664],["Glynn","2021-09-09",86047,452,80116],["Glynn","2021-09-10",86047,233,80349],["Glynn","2021-09-11",86047,123,80472],["Glynn","2021-09-12",86047,78,80550],["Glynn","2021-09-13",86047,211,80761],["Glynn","2021-09-14",86047,367,81128],["Glynn","2021-09-15",86047,216,81344],["Glynn","2021-09-16",86047,350,81694],["Glynn","2021-09-17",86047,210,81904],["Glynn","2021-09-18",86047,113,82017],["Glynn","2021-09-19",86047,77,82094],["Glynn","2021-09-20",86047,180,82274],["Glynn","2021-09-21",86047,271,82545],["Glynn","2021-09-22",86047,165,82710],["Glynn","2021-09-23",86047,259,82969],["Glynn","2021-09-24",86047,184,83153],["Glynn","2021-09-25",86047,139,83292],["Glynn","2021-09-26",86047,83,83375],["Glynn","2021-09-27",86047,410,83785],["Glynn","2021-09-28",86047,537,84322],["Glynn","2021-09-29",86047,296,84618],["Glynn","2021-09-30",86047,720,85338],["Glynn","2021-10-01",86047,335,85673],["Glynn","2021-10-02",86047,80,85753],["Glynn","2021-10-03",86047,54,85807],["Glynn","2021-10-04",86047,340,86147],["Glynn","2021-10-05",86047,653,86800],["Glynn","2021-10-06",86047,266,87066],["Glynn","2021-10-07",86047,544,87610],["Glynn","2021-10-08",86047,221,87831],["Glynn","2021-10-09",86047,58,87889],["Glynn","2021-10-10",86047,57,87946],["Glynn","2021-10-11",86047,115,88061],["Glynn","2021-10-12",86047,420,88481],["Glynn","2021-10-13",86047,186,88667],["Glynn","2021-10-14",86047,357,89024],["Glynn","2021-10-15",86047,151,89175],["Glynn","2021-10-16",86047,50,89225],["Glynn","2021-10-17",86047,23,89248],["Glynn","2021-10-18",86047,182,89430],["Glynn","2021-10-19",86047,268,89698],["Glynn","2021-10-20",86047,129,89827],["Glynn","2021-10-21",86047,299,90126],["Glynn","2021-10-22",86047,147,90273],["Glynn","2021-10-23",86047,66,90339],["Glynn","2021-10-24",86047,50,90389],["Glynn","2021-10-25",86047,213,90602],["Glynn","2021-10-26",86047,343,90945],["Glynn","2021-10-27",86047,186,91131],["Glynn","2021-10-28",86047,298,91429],["Glynn","2021-10-29",86047,182,91611],["Glynn","2021-10-30",86047,71,91682],["Glynn","2021-10-31",86047,26,91708],["Glynn","2021-11-01",86047,175,91883],["Glynn","2021-11-02",86047,281,92164],["Glynn","2021-11-03",86047,148,92312],["Glynn","2021-11-04",86047,283,92595],["Glynn","2021-11-05",86047,165,92760],["Glynn","2021-11-06",86047,55,92815],["Glynn","2021-11-07",86047,51,92866],["Glynn","2021-11-08",86047,286,93152],["Glynn","2021-11-09",86047,251,93403],["Glynn","2021-11-10",86047,189,93592],["Glynn","2021-11-11",86047,269,93861],["Glynn","2021-11-12",86047,177,94038],["Glynn","2021-11-13",86047,48,94086],["Glynn","2021-11-14",86047,54,94140],["Glynn","2021-11-15",86047,199,94339],["Glynn","2021-11-16",86047,260,94599],["Glynn","2021-11-17",86047,151,94750],["Glynn","2021-11-18",86047,292,95042],["Glynn","2021-11-19",86047,168,95210],["Glynn","2021-11-20",86047,98,95308],["Glynn","2021-11-21",86047,67,95375],["Glynn","2021-11-22",86047,238,95613],["Glynn","2021-11-23",86047,310,95923],["Glynn","2021-11-24",86047,118,96041],["Glynn","2021-11-26",86047,95,96136],["Glynn","2021-11-27",86047,74,96210],["Glynn","2021-11-28",86047,55,96265],["Glynn","2021-11-29",86047,299,96564],["Glynn","2021-11-30",86047,400,96964],["Glynn","2021-12-01",86047,285,97249],["Glynn","2021-12-02",86047,501,97750],["Glynn","2021-12-03",86047,255,98005],["Glynn","2021-12-04",86047,79,98084],["Glynn","2021-12-05",86047,70,98154],["Glynn","2021-12-06",86047,257,98411],["Glynn","2021-12-07",86047,272,98683],["Glynn","2021-12-08",86047,172,98855],["Glynn","2021-12-09",86047,320,99175],["Glynn","2021-12-10",86047,308,99483],["Glynn","2021-12-11",86047,72,99555],["Glynn","2021-12-12",86047,62,99617],["Glynn","2021-12-13",86047,173,99790],["Glynn","2021-12-14",86047,233,100023],["Glynn","2021-12-15",86047,165,100188],["Glynn","2021-12-16",86047,263,100451],["Glynn","2021-12-17",86047,180,100631],["Glynn","2021-12-18",86047,82,100713],["Glynn","2021-12-19",86047,74,100787],["Glynn","2021-12-20",86047,255,101042],["Glynn","2021-12-21",86047,319,101361],["Glynn","2021-12-22",86047,201,101562],["Glynn","2021-12-23",86047,183,101745],["Glynn","2021-12-24",86047,26,101771],["Glynn","2021-12-26",86047,48,101819],["Glynn","2021-12-27",86047,215,102034],["Glynn","2021-12-28",86047,176,102210],["Glynn","2021-12-29",86047,177,102387],["Glynn","2021-12-30",86047,237,102624],["Glynn","2021-12-31",86047,48,102672],["Glynn","2022-01-01",86047,11,102683],["Glynn","2022-01-02",86047,39,102722],["Glynn","2022-01-03",86047,41,102763],["Gordon","2020-12-15",58049,1,1],["Gordon","2020-12-17",58049,2,3],["Gordon","2020-12-18",58049,17,20],["Gordon","2020-12-19",58049,3,23],["Gordon","2020-12-20",58049,4,27],["Gordon","2020-12-21",58049,27,54],["Gordon","2020-12-22",58049,36,90],["Gordon","2020-12-23",58049,43,133],["Gordon","2020-12-24",58049,9,142],["Gordon","2020-12-26",58049,3,145],["Gordon","2020-12-27",58049,43,188],["Gordon","2020-12-28",58049,60,248],["Gordon","2020-12-29",58049,49,297],["Gordon","2020-12-30",58049,68,365],["Gordon","2020-12-31",58049,41,406],["Gordon","2021-01-01",58049,21,427],["Gordon","2021-01-02",58049,8,435],["Gordon","2021-01-03",58049,55,490],["Gordon","2021-01-04",58049,27,517],["Gordon","2021-01-05",58049,114,631],["Gordon","2021-01-06",58049,112,743],["Gordon","2021-01-07",58049,113,856],["Gordon","2021-01-08",58049,124,980],["Gordon","2021-01-09",58049,5,985],["Gordon","2021-01-10",58049,10,995],["Gordon","2021-01-11",58049,186,1181],["Gordon","2021-01-12",58049,279,1460],["Gordon","2021-01-13",58049,295,1755],["Gordon","2021-01-14",58049,389,2144],["Gordon","2021-01-15",58049,141,2285],["Gordon","2021-01-16",58049,17,2302],["Gordon","2021-01-17",58049,43,2345],["Gordon","2021-01-18",58049,304,2649],["Gordon","2021-01-19",58049,380,3029],["Gordon","2021-01-20",58049,439,3468],["Gordon","2021-01-21",58049,364,3832],["Gordon","2021-01-22",58049,153,3985],["Gordon","2021-01-23",58049,6,3991],["Gordon","2021-01-24",58049,83,4074],["Gordon","2021-01-25",58049,245,4319],["Gordon","2021-01-26",58049,248,4567],["Gordon","2021-01-27",58049,420,4987],["Gordon","2021-01-28",58049,413,5400],["Gordon","2021-01-29",58049,295,5695],["Gordon","2021-01-30",58049,12,5707],["Gordon","2021-01-31",58049,1,5708],["Gordon","2021-02-01",58049,342,6050],["Gordon","2021-02-02",58049,286,6336],["Gordon","2021-02-03",58049,293,6629],["Gordon","2021-02-04",58049,257,6886],["Gordon","2021-02-05",58049,275,7161],["Gordon","2021-02-06",58049,30,7191],["Gordon","2021-02-07",58049,14,7205],["Gordon","2021-02-08",58049,196,7401],["Gordon","2021-02-09",58049,276,7677],["Gordon","2021-02-10",58049,332,8009],["Gordon","2021-02-11",58049,306,8315],["Gordon","2021-02-12",58049,165,8480],["Gordon","2021-02-13",58049,19,8499],["Gordon","2021-02-14",58049,32,8531],["Gordon","2021-02-15",58049,273,8804],["Gordon","2021-02-16",58049,65,8869],["Gordon","2021-02-17",58049,249,9118],["Gordon","2021-02-18",58049,114,9232],["Gordon","2021-02-19",58049,190,9422],["Gordon","2021-02-20",58049,8,9430],["Gordon","2021-02-21",58049,8,9438],["Gordon","2021-02-22",58049,52,9490],["Gordon","2021-02-23",58049,110,9600],["Gordon","2021-02-24",58049,281,9881],["Gordon","2021-02-25",58049,448,10329],["Gordon","2021-02-26",58049,348,10677],["Gordon","2021-02-27",58049,31,10708],["Gordon","2021-02-28",58049,26,10734],["Gordon","2021-03-01",58049,493,11227],["Gordon","2021-03-02",58049,450,11677],["Gordon","2021-03-03",58049,472,12149],["Gordon","2021-03-04",58049,347,12496],["Gordon","2021-03-05",58049,240,12736],["Gordon","2021-03-06",58049,39,12775],["Gordon","2021-03-07",58049,18,12793],["Gordon","2021-03-08",58049,375,13168],["Gordon","2021-03-09",58049,373,13541],["Gordon","2021-03-10",58049,280,13821],["Gordon","2021-03-11",58049,229,14050],["Gordon","2021-03-12",58049,507,14557],["Gordon","2021-03-13",58049,29,14586],["Gordon","2021-03-14",58049,30,14616],["Gordon","2021-03-15",58049,341,14957],["Gordon","2021-03-16",58049,438,15395],["Gordon","2021-03-17",58049,344,15739],["Gordon","2021-03-18",58049,166,15905],["Gordon","2021-03-19",58049,504,16409],["Gordon","2021-03-20",58049,20,16429],["Gordon","2021-03-21",58049,39,16468],["Gordon","2021-03-22",58049,187,16655],["Gordon","2021-03-23",58049,237,16892],["Gordon","2021-03-24",58049,271,17163],["Gordon","2021-03-25",58049,191,17354],["Gordon","2021-03-26",58049,622,17976],["Gordon","2021-03-27",58049,103,18079],["Gordon","2021-03-28",58049,58,18137],["Gordon","2021-03-29",58049,315,18452],["Gordon","2021-03-30",58049,487,18939],["Gordon","2021-03-31",58049,343,19282],["Gordon","2021-04-01",58049,339,19621],["Gordon","2021-04-02",58049,579,20200],["Gordon","2021-04-03",58049,111,20311],["Gordon","2021-04-04",58049,66,20377],["Gordon","2021-04-05",58049,362,20739],["Gordon","2021-04-06",58049,233,20972],["Gordon","2021-04-07",58049,440,21412],["Gordon","2021-04-08",58049,280,21692],["Gordon","2021-04-09",58049,616,22308],["Gordon","2021-04-10",58049,59,22367],["Gordon","2021-04-11",58049,52,22419],["Gordon","2021-04-12",58049,294,22713],["Gordon","2021-04-13",58049,234,22947],["Gordon","2021-04-14",58049,384,23331],["Gordon","2021-04-15",58049,245,23576],["Gordon","2021-04-16",58049,527,24103],["Gordon","2021-04-17",58049,48,24151],["Gordon","2021-04-18",58049,26,24177],["Gordon","2021-04-19",58049,387,24564],["Gordon","2021-04-20",58049,452,25016],["Gordon","2021-04-21",58049,348,25364],["Gordon","2021-04-22",58049,242,25606],["Gordon","2021-04-23",58049,607,26213],["Gordon","2021-04-24",58049,117,26330],["Gordon","2021-04-25",58049,52,26382],["Gordon","2021-04-26",58049,222,26604],["Gordon","2021-04-27",58049,183,26787],["Gordon","2021-04-28",58049,315,27102],["Gordon","2021-04-29",58049,248,27350],["Gordon","2021-04-30",58049,339,27689],["Gordon","2021-05-01",58049,78,27767],["Gordon","2021-05-02",58049,60,27827],["Gordon","2021-05-03",58049,246,28073],["Gordon","2021-05-04",58049,173,28246],["Gordon","2021-05-05",58049,321,28567],["Gordon","2021-05-06",58049,149,28716],["Gordon","2021-05-07",58049,275,28991],["Gordon","2021-05-08",58049,60,29051],["Gordon","2021-05-09",58049,30,29081],["Gordon","2021-05-10",58049,141,29222],["Gordon","2021-05-11",58049,126,29348],["Gordon","2021-05-12",58049,150,29498],["Gordon","2021-05-13",58049,161,29659],["Gordon","2021-05-14",58049,246,29905],["Gordon","2021-05-15",58049,91,29996],["Gordon","2021-05-16",58049,46,30042],["Gordon","2021-05-17",58049,164,30206],["Gordon","2021-05-18",58049,160,30366],["Gordon","2021-05-19",58049,133,30499],["Gordon","2021-05-20",58049,144,30643],["Gordon","2021-05-21",58049,245,30888],["Gordon","2021-05-22",58049,62,30950],["Gordon","2021-05-23",58049,32,30982],["Gordon","2021-05-24",58049,86,31068],["Gordon","2021-05-25",58049,144,31212],["Gordon","2021-05-26",58049,89,31301],["Gordon","2021-05-27",58049,107,31408],["Gordon","2021-05-28",58049,171,31579],["Gordon","2021-05-29",58049,54,31633],["Gordon","2021-05-30",58049,35,31668],["Gordon","2021-05-31",58049,32,31700],["Gordon","2021-06-01",58049,119,31819],["Gordon","2021-06-02",58049,68,31887],["Gordon","2021-06-03",58049,83,31970],["Gordon","2021-06-04",58049,148,32118],["Gordon","2021-06-05",58049,61,32179],["Gordon","2021-06-06",58049,47,32226],["Gordon","2021-06-07",58049,80,32306],["Gordon","2021-06-08",58049,67,32373],["Gordon","2021-06-09",58049,87,32460],["Gordon","2021-06-10",58049,76,32536],["Gordon","2021-06-11",58049,107,32643],["Gordon","2021-06-12",58049,53,32696],["Gordon","2021-06-13",58049,30,32726],["Gordon","2021-06-14",58049,74,32800],["Gordon","2021-06-15",58049,114,32914],["Gordon","2021-06-16",58049,64,32978],["Gordon","2021-06-17",58049,76,33054],["Gordon","2021-06-18",58049,120,33174],["Gordon","2021-06-19",58049,34,33208],["Gordon","2021-06-20",58049,24,33232],["Gordon","2021-06-21",58049,43,33275],["Gordon","2021-06-22",58049,88,33363],["Gordon","2021-06-23",58049,71,33434],["Gordon","2021-06-24",58049,59,33493],["Gordon","2021-06-25",58049,118,33611],["Gordon","2021-06-26",58049,60,33671],["Gordon","2021-06-27",58049,32,33703],["Gordon","2021-06-28",58049,43,33746],["Gordon","2021-06-29",58049,60,33806],["Gordon","2021-06-30",58049,48,33854],["Gordon","2021-07-01",58049,41,33895],["Gordon","2021-07-02",58049,85,33980],["Gordon","2021-07-03",58049,31,34011],["Gordon","2021-07-04",58049,3,34014],["Gordon","2021-07-05",58049,40,34054],["Gordon","2021-07-06",58049,52,34106],["Gordon","2021-07-07",58049,46,34152],["Gordon","2021-07-08",58049,56,34208],["Gordon","2021-07-09",58049,50,34258],["Gordon","2021-07-10",58049,20,34278],["Gordon","2021-07-11",58049,27,34305],["Gordon","2021-07-12",58049,48,34353],["Gordon","2021-07-13",58049,65,34418],["Gordon","2021-07-14",58049,53,34471],["Gordon","2021-07-15",58049,60,34531],["Gordon","2021-07-16",58049,91,34622],["Gordon","2021-07-17",58049,40,34662],["Gordon","2021-07-18",58049,28,34690],["Gordon","2021-07-19",58049,42,34732],["Gordon","2021-07-20",58049,73,34805],["Gordon","2021-07-21",58049,55,34860],["Gordon","2021-07-22",58049,75,34935],["Gordon","2021-07-23",58049,100,35035],["Gordon","2021-07-24",58049,53,35088],["Gordon","2021-07-25",58049,34,35122],["Gordon","2021-07-26",58049,77,35199],["Gordon","2021-07-27",58049,90,35289],["Gordon","2021-07-28",58049,121,35410],["Gordon","2021-07-29",58049,96,35506],["Gordon","2021-07-30",58049,130,35636],["Gordon","2021-07-31",58049,89,35725],["Gordon","2021-08-01",58049,55,35780],["Gordon","2021-08-02",58049,114,35894],["Gordon","2021-08-03",58049,137,36031],["Gordon","2021-08-04",58049,121,36152],["Gordon","2021-08-05",58049,100,36252],["Gordon","2021-08-06",58049,168,36420],["Gordon","2021-08-07",58049,93,36513],["Gordon","2021-08-08",58049,33,36546],["Gordon","2021-08-09",58049,94,36640],["Gordon","2021-08-10",58049,162,36802],["Gordon","2021-08-11",58049,103,36905],["Gordon","2021-08-12",58049,154,37059],["Gordon","2021-08-13",58049,162,37221],["Gordon","2021-08-14",58049,106,37327],["Gordon","2021-08-15",58049,62,37389],["Gordon","2021-08-16",58049,138,37527],["Gordon","2021-08-17",58049,159,37686],["Gordon","2021-08-18",58049,123,37809],["Gordon","2021-08-19",58049,203,38012],["Gordon","2021-08-20",58049,220,38232],["Gordon","2021-08-21",58049,124,38356],["Gordon","2021-08-22",58049,74,38430],["Gordon","2021-08-23",58049,175,38605],["Gordon","2021-08-24",58049,227,38832],["Gordon","2021-08-25",58049,171,39003],["Gordon","2021-08-26",58049,198,39201],["Gordon","2021-08-27",58049,222,39423],["Gordon","2021-08-28",58049,137,39560],["Gordon","2021-08-29",58049,59,39619],["Gordon","2021-08-30",58049,174,39793],["Gordon","2021-08-31",58049,220,40013],["Gordon","2021-09-01",58049,157,40170],["Gordon","2021-09-02",58049,245,40415],["Gordon","2021-09-03",58049,235,40650],["Gordon","2021-09-04",58049,104,40754],["Gordon","2021-09-05",58049,63,40817],["Gordon","2021-09-06",58049,23,40840],["Gordon","2021-09-07",58049,188,41028],["Gordon","2021-09-08",58049,161,41189],["Gordon","2021-09-09",58049,158,41347],["Gordon","2021-09-10",58049,208,41555],["Gordon","2021-09-11",58049,122,41677],["Gordon","2021-09-12",58049,64,41741],["Gordon","2021-09-13",58049,138,41879],["Gordon","2021-09-14",58049,176,42055],["Gordon","2021-09-15",58049,103,42158],["Gordon","2021-09-16",58049,179,42337],["Gordon","2021-09-17",58049,226,42563],["Gordon","2021-09-18",58049,69,42632],["Gordon","2021-09-19",58049,52,42684],["Gordon","2021-09-20",58049,132,42816],["Gordon","2021-09-21",58049,126,42942],["Gordon","2021-09-22",58049,97,43039],["Gordon","2021-09-23",58049,128,43167],["Gordon","2021-09-24",58049,199,43366],["Gordon","2021-09-25",58049,79,43445],["Gordon","2021-09-26",58049,50,43495],["Gordon","2021-09-27",58049,103,43598],["Gordon","2021-09-28",58049,105,43703],["Gordon","2021-09-29",58049,115,43818],["Gordon","2021-09-30",58049,112,43930],["Gordon","2021-10-01",58049,152,44082],["Gordon","2021-10-02",58049,49,44131],["Gordon","2021-10-03",58049,34,44165],["Gordon","2021-10-04",58049,84,44249],["Gordon","2021-10-05",58049,147,44396],["Gordon","2021-10-06",58049,78,44474],["Gordon","2021-10-07",58049,113,44587],["Gordon","2021-10-08",58049,110,44697],["Gordon","2021-10-09",58049,33,44730],["Gordon","2021-10-10",58049,34,44764],["Gordon","2021-10-11",58049,71,44835],["Gordon","2021-10-12",58049,82,44917],["Gordon","2021-10-13",58049,65,44982],["Gordon","2021-10-14",58049,91,45073],["Gordon","2021-10-15",58049,84,45157],["Gordon","2021-10-16",58049,22,45179],["Gordon","2021-10-17",58049,26,45205],["Gordon","2021-10-18",58049,55,45260],["Gordon","2021-10-19",58049,77,45337],["Gordon","2021-10-20",58049,56,45393],["Gordon","2021-10-21",58049,66,45459],["Gordon","2021-10-22",58049,111,45570],["Gordon","2021-10-23",58049,66,45636],["Gordon","2021-10-24",58049,23,45659],["Gordon","2021-10-25",58049,134,45793],["Gordon","2021-10-26",58049,159,45952],["Gordon","2021-10-27",58049,181,46133],["Gordon","2021-10-28",58049,159,46292],["Gordon","2021-10-29",58049,185,46477],["Gordon","2021-10-30",58049,45,46522],["Gordon","2021-10-31",58049,26,46548],["Gordon","2021-11-01",58049,162,46710],["Gordon","2021-11-02",58049,158,46868],["Gordon","2021-11-03",58049,202,47070],["Gordon","2021-11-04",58049,156,47226],["Gordon","2021-11-05",58049,191,47417],["Gordon","2021-11-06",58049,64,47481],["Gordon","2021-11-07",58049,40,47521],["Gordon","2021-11-08",58049,146,47667],["Gordon","2021-11-09",58049,205,47872],["Gordon","2021-11-10",58049,143,48015],["Gordon","2021-11-11",58049,69,48084],["Gordon","2021-11-12",58049,163,48247],["Gordon","2021-11-13",58049,33,48280],["Gordon","2021-11-14",58049,19,48299],["Gordon","2021-11-15",58049,124,48423],["Gordon","2021-11-16",58049,133,48556],["Gordon","2021-11-17",58049,132,48688],["Gordon","2021-11-18",58049,140,48828],["Gordon","2021-11-19",58049,178,49006],["Gordon","2021-11-20",58049,62,49068],["Gordon","2021-11-21",58049,39,49107],["Gordon","2021-11-22",58049,169,49276],["Gordon","2021-11-23",58049,163,49439],["Gordon","2021-11-24",58049,71,49510],["Gordon","2021-11-25",58049,1,49511],["Gordon","2021-11-26",58049,107,49618],["Gordon","2021-11-27",58049,42,49660],["Gordon","2021-11-28",58049,44,49704],["Gordon","2021-11-29",58049,168,49872],["Gordon","2021-11-30",58049,188,50060],["Gordon","2021-12-01",58049,180,50240],["Gordon","2021-12-02",58049,194,50434],["Gordon","2021-12-03",58049,237,50671],["Gordon","2021-12-04",58049,66,50737],["Gordon","2021-12-05",58049,32,50769],["Gordon","2021-12-06",58049,141,50910],["Gordon","2021-12-07",58049,161,51071],["Gordon","2021-12-08",58049,131,51202],["Gordon","2021-12-09",58049,138,51340],["Gordon","2021-12-10",58049,178,51518],["Gordon","2021-12-11",58049,49,51567],["Gordon","2021-12-12",58049,16,51583],["Gordon","2021-12-13",58049,82,51665],["Gordon","2021-12-14",58049,113,51778],["Gordon","2021-12-15",58049,133,51911],["Gordon","2021-12-16",58049,75,51986],["Gordon","2021-12-17",58049,119,52105],["Gordon","2021-12-18",58049,57,52162],["Gordon","2021-12-19",58049,33,52195],["Gordon","2021-12-20",58049,138,52333],["Gordon","2021-12-21",58049,135,52468],["Gordon","2021-12-22",58049,117,52585],["Gordon","2021-12-23",58049,87,52672],["Gordon","2021-12-24",58049,19,52691],["Gordon","2021-12-26",58049,35,52726],["Gordon","2021-12-27",58049,156,52882],["Gordon","2021-12-28",58049,107,52989],["Gordon","2021-12-29",58049,136,53125],["Gordon","2021-12-30",58049,138,53263],["Gordon","2021-12-31",58049,79,53342],["Gordon","2022-01-01",58049,12,53354],["Gordon","2022-01-02",58049,32,53386],["Gordon","2022-01-03",58049,30,53416],["Grady","2020-12-17",24540,1,1],["Grady","2020-12-18",24540,4,5],["Grady","2020-12-19",24540,9,14],["Grady","2020-12-21",24540,24,38],["Grady","2020-12-22",24540,18,56],["Grady","2020-12-23",24540,68,124],["Grady","2020-12-24",24540,5,129],["Grady","2020-12-26",24540,2,131],["Grady","2020-12-27",24540,1,132],["Grady","2020-12-28",24540,62,194],["Grady","2020-12-29",24540,81,275],["Grady","2020-12-30",24540,74,349],["Grady","2020-12-31",24540,13,362],["Grady","2021-01-02",24540,1,363],["Grady","2021-01-04",24540,62,425],["Grady","2021-01-05",24540,69,494],["Grady","2021-01-06",24540,44,538],["Grady","2021-01-07",24540,14,552],["Grady","2021-01-08",24540,39,591],["Grady","2021-01-09",24540,2,593],["Grady","2021-01-10",24540,3,596],["Grady","2021-01-11",24540,116,712],["Grady","2021-01-12",24540,136,848],["Grady","2021-01-13",24540,142,990],["Grady","2021-01-14",24540,182,1172],["Grady","2021-01-15",24540,109,1281],["Grady","2021-01-16",24540,37,1318],["Grady","2021-01-17",24540,6,1324],["Grady","2021-01-18",24540,138,1462],["Grady","2021-01-19",24540,169,1631],["Grady","2021-01-20",24540,127,1758],["Grady","2021-01-21",24540,188,1946],["Grady","2021-01-22",24540,124,2070],["Grady","2021-01-23",24540,49,2119],["Grady","2021-01-25",24540,145,2264],["Grady","2021-01-26",24540,192,2456],["Grady","2021-01-27",24540,156,2612],["Grady","2021-01-28",24540,168,2780],["Grady","2021-01-29",24540,121,2901],["Grady","2021-01-30",24540,50,2951],["Grady","2021-01-31",24540,4,2955],["Grady","2021-02-01",24540,97,3052],["Grady","2021-02-02",24540,151,3203],["Grady","2021-02-03",24540,198,3401],["Grady","2021-02-04",24540,201,3602],["Grady","2021-02-05",24540,136,3738],["Grady","2021-02-06",24540,57,3795],["Grady","2021-02-08",24540,171,3966],["Grady","2021-02-09",24540,221,4187],["Grady","2021-02-10",24540,127,4314],["Grady","2021-02-11",24540,119,4433],["Grady","2021-02-12",24540,131,4564],["Grady","2021-02-13",24540,24,4588],["Grady","2021-02-14",24540,7,4595],["Grady","2021-02-15",24540,89,4684],["Grady","2021-02-16",24540,176,4860],["Grady","2021-02-17",24540,95,4955],["Grady","2021-02-18",24540,217,5172],["Grady","2021-02-19",24540,117,5289],["Grady","2021-02-20",24540,56,5345],["Grady","2021-02-21",24540,2,5347],["Grady","2021-02-22",24540,109,5456],["Grady","2021-02-23",24540,176,5632],["Grady","2021-02-24",24540,160,5792],["Grady","2021-02-25",24540,137,5929],["Grady","2021-02-26",24540,76,6005],["Grady","2021-02-27",24540,11,6016],["Grady","2021-02-28",24540,5,6021],["Grady","2021-03-01",24540,112,6133],["Grady","2021-03-02",24540,102,6235],["Grady","2021-03-03",24540,186,6421],["Grady","2021-03-04",24540,151,6572],["Grady","2021-03-05",24540,94,6666],["Grady","2021-03-06",24540,11,6677],["Grady","2021-03-07",24540,5,6682],["Grady","2021-03-08",24540,141,6823],["Grady","2021-03-09",24540,195,7018],["Grady","2021-03-10",24540,106,7124],["Grady","2021-03-11",24540,113,7237],["Grady","2021-03-12",24540,129,7366],["Grady","2021-03-13",24540,35,7401],["Grady","2021-03-14",24540,16,7417],["Grady","2021-03-15",24540,124,7541],["Grady","2021-03-16",24540,149,7690],["Grady","2021-03-17",24540,149,7839],["Grady","2021-03-18",24540,115,7954],["Grady","2021-03-19",24540,131,8085],["Grady","2021-03-20",24540,20,8105],["Grady","2021-03-21",24540,13,8118],["Grady","2021-03-22",24540,137,8255],["Grady","2021-03-23",24540,113,8368],["Grady","2021-03-24",24540,120,8488],["Grady","2021-03-25",24540,137,8625],["Grady","2021-03-26",24540,87,8712],["Grady","2021-03-27",24540,22,8734],["Grady","2021-03-28",24540,23,8757],["Grady","2021-03-29",24540,151,8908],["Grady","2021-03-30",24540,174,9082],["Grady","2021-03-31",24540,134,9216],["Grady","2021-04-01",24540,165,9381],["Grady","2021-04-02",24540,177,9558],["Grady","2021-04-03",24540,15,9573],["Grady","2021-04-04",24540,14,9587],["Grady","2021-04-05",24540,146,9733],["Grady","2021-04-06",24540,108,9841],["Grady","2021-04-07",24540,149,9990],["Grady","2021-04-08",24540,126,10116],["Grady","2021-04-09",24540,112,10228],["Grady","2021-04-10",24540,22,10250],["Grady","2021-04-11",24540,24,10274],["Grady","2021-04-12",24540,126,10400],["Grady","2021-04-13",24540,146,10546],["Grady","2021-04-14",24540,118,10664],["Grady","2021-04-15",24540,129,10793],["Grady","2021-04-16",24540,92,10885],["Grady","2021-04-17",24540,14,10899],["Grady","2021-04-18",24540,9,10908],["Grady","2021-04-19",24540,145,11053],["Grady","2021-04-20",24540,148,11201],["Grady","2021-04-21",24540,102,11303],["Grady","2021-04-22",24540,201,11504],["Grady","2021-04-23",24540,91,11595],["Grady","2021-04-24",24540,9,11604],["Grady","2021-04-25",24540,5,11609],["Grady","2021-04-26",24540,158,11767],["Grady","2021-04-27",24540,136,11903],["Grady","2021-04-28",24540,123,12026],["Grady","2021-04-29",24540,98,12124],["Grady","2021-04-30",24540,57,12181],["Grady","2021-05-01",24540,20,12201],["Grady","2021-05-02",24540,8,12209],["Grady","2021-05-03",24540,79,12288],["Grady","2021-05-04",24540,116,12404],["Grady","2021-05-05",24540,70,12474],["Grady","2021-05-06",24540,85,12559],["Grady","2021-05-07",24540,48,12607],["Grady","2021-05-08",24540,16,12623],["Grady","2021-05-09",24540,2,12625],["Grady","2021-05-10",24540,81,12706],["Grady","2021-05-11",24540,79,12785],["Grady","2021-05-12",24540,56,12841],["Grady","2021-05-13",24540,83,12924],["Grady","2021-05-14",24540,58,12982],["Grady","2021-05-15",24540,13,12995],["Grady","2021-05-16",24540,13,13008],["Grady","2021-05-17",24540,76,13084],["Grady","2021-05-18",24540,78,13162],["Grady","2021-05-19",24540,82,13244],["Grady","2021-05-20",24540,67,13311],["Grady","2021-05-21",24540,68,13379],["Grady","2021-05-22",24540,17,13396],["Grady","2021-05-23",24540,2,13398],["Grady","2021-05-24",24540,45,13443],["Grady","2021-05-25",24540,56,13499],["Grady","2021-05-26",24540,50,13549],["Grady","2021-05-27",24540,50,13599],["Grady","2021-05-28",24540,16,13615],["Grady","2021-05-29",24540,16,13631],["Grady","2021-05-30",24540,6,13637],["Grady","2021-05-31",24540,2,13639],["Grady","2021-06-01",24540,104,13743],["Grady","2021-06-02",24540,52,13795],["Grady","2021-06-03",24540,71,13866],["Grady","2021-06-04",24540,47,13913],["Grady","2021-06-05",24540,24,13937],["Grady","2021-06-06",24540,6,13943],["Grady","2021-06-07",24540,35,13978],["Grady","2021-06-08",24540,50,14028],["Grady","2021-06-09",24540,25,14053],["Grady","2021-06-10",24540,72,14125],["Grady","2021-06-11",24540,45,14170],["Grady","2021-06-12",24540,13,14183],["Grady","2021-06-13",24540,1,14184],["Grady","2021-06-14",24540,34,14218],["Grady","2021-06-15",24540,63,14281],["Grady","2021-06-16",24540,31,14312],["Grady","2021-06-17",24540,30,14342],["Grady","2021-06-18",24540,29,14371],["Grady","2021-06-19",24540,20,14391],["Grady","2021-06-20",24540,2,14393],["Grady","2021-06-21",24540,24,14417],["Grady","2021-06-22",24540,42,14459],["Grady","2021-06-23",24540,44,14503],["Grady","2021-06-24",24540,33,14536],["Grady","2021-06-25",24540,37,14573],["Grady","2021-06-26",24540,7,14580],["Grady","2021-06-27",24540,5,14585],["Grady","2021-06-28",24540,15,14600],["Grady","2021-06-29",24540,40,14640],["Grady","2021-06-30",24540,19,14659],["Grady","2021-07-01",24540,46,14705],["Grady","2021-07-02",24540,37,14742],["Grady","2021-07-03",24540,8,14750],["Grady","2021-07-04",24540,1,14751],["Grady","2021-07-05",24540,22,14773],["Grady","2021-07-06",24540,37,14810],["Grady","2021-07-07",24540,9,14819],["Grady","2021-07-08",24540,39,14858],["Grady","2021-07-09",24540,28,14886],["Grady","2021-07-10",24540,12,14898],["Grady","2021-07-11",24540,8,14906],["Grady","2021-07-12",24540,16,14922],["Grady","2021-07-13",24540,51,14973],["Grady","2021-07-14",24540,26,14999],["Grady","2021-07-15",24540,31,15030],["Grady","2021-07-16",24540,40,15070],["Grady","2021-07-17",24540,8,15078],["Grady","2021-07-18",24540,6,15084],["Grady","2021-07-19",24540,28,15112],["Grady","2021-07-20",24540,43,15155],["Grady","2021-07-21",24540,63,15218],["Grady","2021-07-22",24540,50,15268],["Grady","2021-07-23",24540,57,15325],["Grady","2021-07-24",24540,16,15341],["Grady","2021-07-25",24540,7,15348],["Grady","2021-07-26",24540,72,15420],["Grady","2021-07-27",24540,79,15499],["Grady","2021-07-28",24540,72,15571],["Grady","2021-07-29",24540,126,15697],["Grady","2021-07-30",24540,70,15767],["Grady","2021-07-31",24540,34,15801],["Grady","2021-08-01",24540,17,15818],["Grady","2021-08-02",24540,81,15899],["Grady","2021-08-03",24540,79,15978],["Grady","2021-08-04",24540,133,16111],["Grady","2021-08-05",24540,97,16208],["Grady","2021-08-06",24540,76,16284],["Grady","2021-08-07",24540,39,16323],["Grady","2021-08-08",24540,24,16347],["Grady","2021-08-09",24540,107,16454],["Grady","2021-08-10",24540,79,16533],["Grady","2021-08-11",24540,132,16665],["Grady","2021-08-12",24540,128,16793],["Grady","2021-08-13",24540,101,16894],["Grady","2021-08-14",24540,36,16930],["Grady","2021-08-15",24540,36,16966],["Grady","2021-08-16",24540,78,17044],["Grady","2021-08-17",24540,127,17171],["Grady","2021-08-18",24540,156,17327],["Grady","2021-08-19",24540,146,17473],["Grady","2021-08-20",24540,138,17611],["Grady","2021-08-21",24540,68,17679],["Grady","2021-08-22",24540,21,17700],["Grady","2021-08-23",24540,126,17826],["Grady","2021-08-24",24540,120,17946],["Grady","2021-08-25",24540,165,18111],["Grady","2021-08-26",24540,127,18238],["Grady","2021-08-27",24540,95,18333],["Grady","2021-08-28",24540,51,18384],["Grady","2021-08-29",24540,28,18412],["Grady","2021-08-30",24540,138,18550],["Grady","2021-08-31",24540,115,18665],["Grady","2021-09-01",24540,176,18841],["Grady","2021-09-02",24540,117,18958],["Grady","2021-09-03",24540,99,19057],["Grady","2021-09-04",24540,44,19101],["Grady","2021-09-05",24540,26,19127],["Grady","2021-09-06",24540,5,19132],["Grady","2021-09-07",24540,100,19232],["Grady","2021-09-08",24540,119,19351],["Grady","2021-09-09",24540,113,19464],["Grady","2021-09-10",24540,82,19546],["Grady","2021-09-11",24540,65,19611],["Grady","2021-09-12",24540,38,19649],["Grady","2021-09-13",24540,85,19734],["Grady","2021-09-14",24540,94,19828],["Grady","2021-09-15",24540,89,19917],["Grady","2021-09-16",24540,103,20020],["Grady","2021-09-17",24540,91,20111],["Grady","2021-09-18",24540,33,20144],["Grady","2021-09-19",24540,19,20163],["Grady","2021-09-20",24540,60,20223],["Grady","2021-09-21",24540,77,20300],["Grady","2021-09-22",24540,79,20379],["Grady","2021-09-23",24540,66,20445],["Grady","2021-09-24",24540,59,20504],["Grady","2021-09-25",24540,25,20529],["Grady","2021-09-26",24540,13,20542],["Grady","2021-09-27",24540,81,20623],["Grady","2021-09-28",24540,79,20702],["Grady","2021-09-29",24540,115,20817],["Grady","2021-09-30",24540,72,20889],["Grady","2021-10-01",24540,62,20951],["Grady","2021-10-02",24540,23,20974],["Grady","2021-10-03",24540,7,20981],["Grady","2021-10-04",24540,39,21020],["Grady","2021-10-05",24540,54,21074],["Grady","2021-10-06",24540,83,21157],["Grady","2021-10-07",24540,41,21198],["Grady","2021-10-08",24540,42,21240],["Grady","2021-10-09",24540,19,21259],["Grady","2021-10-10",24540,4,21263],["Grady","2021-10-11",24540,26,21289],["Grady","2021-10-12",24540,30,21319],["Grady","2021-10-13",24540,63,21382],["Grady","2021-10-14",24540,26,21408],["Grady","2021-10-15",24540,26,21434],["Grady","2021-10-16",24540,9,21443],["Grady","2021-10-17",24540,6,21449],["Grady","2021-10-18",24540,28,21477],["Grady","2021-10-19",24540,14,21491],["Grady","2021-10-20",24540,47,21538],["Grady","2021-10-21",24540,23,21561],["Grady","2021-10-22",24540,27,21588],["Grady","2021-10-23",24540,18,21606],["Grady","2021-10-24",24540,7,21613],["Grady","2021-10-25",24540,35,21648],["Grady","2021-10-26",24540,66,21714],["Grady","2021-10-27",24540,92,21806],["Grady","2021-10-28",24540,100,21906],["Grady","2021-10-29",24540,65,21971],["Grady","2021-10-30",24540,11,21982],["Grady","2021-10-31",24540,3,21985],["Grady","2021-11-01",24540,101,22086],["Grady","2021-11-02",24540,98,22184],["Grady","2021-11-03",24540,100,22284],["Grady","2021-11-04",24540,35,22319],["Grady","2021-11-05",24540,29,22348],["Grady","2021-11-06",24540,21,22369],["Grady","2021-11-07",24540,8,22377],["Grady","2021-11-08",24540,75,22452],["Grady","2021-11-09",24540,62,22514],["Grady","2021-11-10",24540,111,22625],["Grady","2021-11-11",24540,58,22683],["Grady","2021-11-12",24540,59,22742],["Grady","2021-11-13",24540,17,22759],["Grady","2021-11-14",24540,7,22766],["Grady","2021-11-15",24540,64,22830],["Grady","2021-11-16",24540,80,22910],["Grady","2021-11-17",24540,97,23007],["Grady","2021-11-18",24540,47,23054],["Grady","2021-11-19",24540,53,23107],["Grady","2021-11-20",24540,23,23130],["Grady","2021-11-21",24540,6,23136],["Grady","2021-11-22",24540,82,23218],["Grady","2021-11-23",24540,79,23297],["Grady","2021-11-24",24540,54,23351],["Grady","2021-11-26",24540,14,23365],["Grady","2021-11-27",24540,25,23390],["Grady","2021-11-28",24540,5,23395],["Grady","2021-11-29",24540,86,23481],["Grady","2021-11-30",24540,68,23549],["Grady","2021-12-01",24540,157,23706],["Grady","2021-12-02",24540,111,23817],["Grady","2021-12-03",24540,58,23875],["Grady","2021-12-04",24540,22,23897],["Grady","2021-12-05",24540,4,23901],["Grady","2021-12-06",24540,74,23975],["Grady","2021-12-07",24540,117,24092],["Grady","2021-12-08",24540,94,24186],["Grady","2021-12-09",24540,89,24275],["Grady","2021-12-10",24540,63,24338],["Grady","2021-12-11",24540,22,24360],["Grady","2021-12-12",24540,4,24364],["Grady","2021-12-13",24540,50,24414],["Grady","2021-12-14",24540,75,24489],["Grady","2021-12-15",24540,62,24551],["Grady","2021-12-16",24540,48,24599],["Grady","2021-12-17",24540,38,24637],["Grady","2021-12-18",24540,24,24661],["Grady","2021-12-19",24540,8,24669],["Grady","2021-12-20",24540,66,24735],["Grady","2021-12-21",24540,80,24815],["Grady","2021-12-22",24540,87,24902],["Grady","2021-12-23",24540,42,24944],["Grady","2021-12-24",24540,14,24958],["Grady","2021-12-26",24540,7,24965],["Grady","2021-12-27",24540,39,25004],["Grady","2021-12-28",24540,76,25080],["Grady","2021-12-29",24540,88,25168],["Grady","2021-12-30",24540,83,25251],["Grady","2021-12-31",24540,38,25289],["Grady","2022-01-02",24540,20,25309],["Grady","2022-01-03",24540,10,25319],["Greene","2020-12-16",18717,1,1],["Greene","2020-12-18",18717,2,3],["Greene","2020-12-19",18717,1,4],["Greene","2020-12-20",18717,1,5],["Greene","2020-12-21",18717,3,8],["Greene","2020-12-22",18717,7,15],["Greene","2020-12-23",18717,28,43],["Greene","2020-12-24",18717,2,45],["Greene","2020-12-25",18717,1,46],["Greene","2020-12-26",18717,1,47],["Greene","2020-12-27",18717,1,48],["Greene","2020-12-28",18717,17,65],["Greene","2020-12-29",18717,24,89],["Greene","2020-12-30",18717,21,110],["Greene","2020-12-31",18717,9,119],["Greene","2021-01-01",18717,6,125],["Greene","2021-01-02",18717,8,133],["Greene","2021-01-03",18717,28,161],["Greene","2021-01-04",18717,63,224],["Greene","2021-01-05",18717,36,260],["Greene","2021-01-06",18717,28,288],["Greene","2021-01-07",18717,45,333],["Greene","2021-01-08",18717,21,354],["Greene","2021-01-09",18717,7,361],["Greene","2021-01-10",18717,7,368],["Greene","2021-01-11",18717,71,439],["Greene","2021-01-12",18717,102,541],["Greene","2021-01-13",18717,71,612],["Greene","2021-01-14",18717,111,723],["Greene","2021-01-15",18717,86,809],["Greene","2021-01-16",18717,58,867],["Greene","2021-01-17",18717,111,978],["Greene","2021-01-18",18717,124,1102],["Greene","2021-01-19",18717,173,1275],["Greene","2021-01-20",18717,70,1345],["Greene","2021-01-21",18717,147,1492],["Greene","2021-01-22",18717,143,1635],["Greene","2021-01-23",18717,77,1712],["Greene","2021-01-24",18717,12,1724],["Greene","2021-01-25",18717,272,1996],["Greene","2021-01-26",18717,116,2112],["Greene","2021-01-27",18717,77,2189],["Greene","2021-01-28",18717,124,2313],["Greene","2021-01-29",18717,129,2442],["Greene","2021-01-30",18717,19,2461],["Greene","2021-01-31",18717,23,2484],["Greene","2021-02-01",18717,187,2671],["Greene","2021-02-02",18717,99,2770],["Greene","2021-02-03",18717,79,2849],["Greene","2021-02-04",18717,95,2944],["Greene","2021-02-05",18717,84,3028],["Greene","2021-02-06",18717,30,3058],["Greene","2021-02-07",18717,104,3162],["Greene","2021-02-08",18717,155,3317],["Greene","2021-02-09",18717,182,3499],["Greene","2021-02-10",18717,67,3566],["Greene","2021-02-11",18717,174,3740],["Greene","2021-02-12",18717,118,3858],["Greene","2021-02-13",18717,110,3968],["Greene","2021-02-14",18717,66,4034],["Greene","2021-02-15",18717,244,4278],["Greene","2021-02-16",18717,222,4500],["Greene","2021-02-17",18717,130,4630],["Greene","2021-02-18",18717,197,4827],["Greene","2021-02-19",18717,144,4971],["Greene","2021-02-20",18717,41,5012],["Greene","2021-02-21",18717,9,5021],["Greene","2021-02-22",18717,179,5200],["Greene","2021-02-23",18717,185,5385],["Greene","2021-02-24",18717,124,5509],["Greene","2021-02-25",18717,207,5716],["Greene","2021-02-26",18717,157,5873],["Greene","2021-02-27",18717,111,5984],["Greene","2021-02-28",18717,24,6008],["Greene","2021-03-01",18717,196,6204],["Greene","2021-03-02",18717,81,6285],["Greene","2021-03-03",18717,135,6420],["Greene","2021-03-04",18717,136,6556],["Greene","2021-03-05",18717,146,6702],["Greene","2021-03-06",18717,65,6767],["Greene","2021-03-07",18717,31,6798],["Greene","2021-03-08",18717,261,7059],["Greene","2021-03-09",18717,231,7290],["Greene","2021-03-10",18717,139,7429],["Greene","2021-03-11",18717,196,7625],["Greene","2021-03-12",18717,99,7724],["Greene","2021-03-13",18717,41,7765],["Greene","2021-03-14",18717,15,7780],["Greene","2021-03-15",18717,197,7977],["Greene","2021-03-16",18717,316,8293],["Greene","2021-03-17",18717,146,8439],["Greene","2021-03-18",18717,162,8601],["Greene","2021-03-19",18717,122,8723],["Greene","2021-03-20",18717,114,8837],["Greene","2021-03-21",18717,27,8864],["Greene","2021-03-22",18717,173,9037],["Greene","2021-03-23",18717,262,9299],["Greene","2021-03-24",18717,139,9438],["Greene","2021-03-25",18717,215,9653],["Greene","2021-03-26",18717,146,9799],["Greene","2021-03-27",18717,56,9855],["Greene","2021-03-28",18717,21,9876],["Greene","2021-03-29",18717,235,10111],["Greene","2021-03-30",18717,221,10332],["Greene","2021-03-31",18717,152,10484],["Greene","2021-04-01",18717,233,10717],["Greene","2021-04-02",18717,126,10843],["Greene","2021-04-03",18717,36,10879],["Greene","2021-04-04",18717,27,10906],["Greene","2021-04-05",18717,150,11056],["Greene","2021-04-06",18717,185,11241],["Greene","2021-04-07",18717,149,11390],["Greene","2021-04-08",18717,219,11609],["Greene","2021-04-09",18717,99,11708],["Greene","2021-04-10",18717,34,11742],["Greene","2021-04-11",18717,33,11775],["Greene","2021-04-12",18717,219,11994],["Greene","2021-04-13",18717,273,12267],["Greene","2021-04-14",18717,156,12423],["Greene","2021-04-15",18717,142,12565],["Greene","2021-04-16",18717,126,12691],["Greene","2021-04-17",18717,44,12735],["Greene","2021-04-18",18717,13,12748],["Greene","2021-04-19",18717,106,12854],["Greene","2021-04-20",18717,230,13084],["Greene","2021-04-21",18717,86,13170],["Greene","2021-04-22",18717,141,13311],["Greene","2021-04-23",18717,119,13430],["Greene","2021-04-24",18717,17,13447],["Greene","2021-04-25",18717,11,13458],["Greene","2021-04-26",18717,136,13594],["Greene","2021-04-27",18717,140,13734],["Greene","2021-04-28",18717,127,13861],["Greene","2021-04-29",18717,100,13961],["Greene","2021-04-30",18717,150,14111],["Greene","2021-05-01",18717,47,14158],["Greene","2021-05-02",18717,17,14175],["Greene","2021-05-03",18717,100,14275],["Greene","2021-05-04",18717,113,14388],["Greene","2021-05-05",18717,69,14457],["Greene","2021-05-06",18717,174,14631],["Greene","2021-05-07",18717,71,14702],["Greene","2021-05-08",18717,32,14734],["Greene","2021-05-09",18717,6,14740],["Greene","2021-05-10",18717,132,14872],["Greene","2021-05-11",18717,97,14969],["Greene","2021-05-12",18717,55,15024],["Greene","2021-05-13",18717,45,15069],["Greene","2021-05-14",18717,45,15114],["Greene","2021-05-15",18717,21,15135],["Greene","2021-05-16",18717,11,15146],["Greene","2021-05-17",18717,68,15214],["Greene","2021-05-18",18717,61,15275],["Greene","2021-05-19",18717,38,15313],["Greene","2021-05-20",18717,51,15364],["Greene","2021-05-21",18717,45,15409],["Greene","2021-05-22",18717,11,15420],["Greene","2021-05-23",18717,5,15425],["Greene","2021-05-24",18717,59,15484],["Greene","2021-05-25",18717,63,15547],["Greene","2021-05-26",18717,40,15587],["Greene","2021-05-27",18717,40,15627],["Greene","2021-05-28",18717,25,15652],["Greene","2021-05-29",18717,12,15664],["Greene","2021-05-30",18717,13,15677],["Greene","2021-05-31",18717,10,15687],["Greene","2021-06-01",18717,49,15736],["Greene","2021-06-02",18717,54,15790],["Greene","2021-06-03",18717,53,15843],["Greene","2021-06-04",18717,47,15890],["Greene","2021-06-05",18717,26,15916],["Greene","2021-06-06",18717,5,15921],["Greene","2021-06-07",18717,33,15954],["Greene","2021-06-08",18717,34,15988],["Greene","2021-06-09",18717,39,16027],["Greene","2021-06-10",18717,34,16061],["Greene","2021-06-11",18717,22,16083],["Greene","2021-06-12",18717,17,16100],["Greene","2021-06-13",18717,13,16113],["Greene","2021-06-14",18717,28,16141],["Greene","2021-06-15",18717,41,16182],["Greene","2021-06-16",18717,23,16205],["Greene","2021-06-17",18717,30,16235],["Greene","2021-06-18",18717,14,16249],["Greene","2021-06-19",18717,13,16262],["Greene","2021-06-20",18717,7,16269],["Greene","2021-06-21",18717,37,16306],["Greene","2021-06-22",18717,32,16338],["Greene","2021-06-23",18717,22,16360],["Greene","2021-06-24",18717,25,16385],["Greene","2021-06-25",18717,17,16402],["Greene","2021-06-26",18717,26,16428],["Greene","2021-06-27",18717,5,16433],["Greene","2021-06-28",18717,22,16455],["Greene","2021-06-29",18717,26,16481],["Greene","2021-06-30",18717,23,16504],["Greene","2021-07-01",18717,32,16536],["Greene","2021-07-02",18717,20,16556],["Greene","2021-07-03",18717,7,16563],["Greene","2021-07-05",18717,16,16579],["Greene","2021-07-06",18717,21,16600],["Greene","2021-07-07",18717,17,16617],["Greene","2021-07-08",18717,18,16635],["Greene","2021-07-09",18717,14,16649],["Greene","2021-07-10",18717,9,16658],["Greene","2021-07-11",18717,4,16662],["Greene","2021-07-12",18717,16,16678],["Greene","2021-07-13",18717,16,16694],["Greene","2021-07-14",18717,13,16707],["Greene","2021-07-15",18717,29,16736],["Greene","2021-07-16",18717,20,16756],["Greene","2021-07-17",18717,28,16784],["Greene","2021-07-18",18717,8,16792],["Greene","2021-07-19",18717,28,16820],["Greene","2021-07-20",18717,30,16850],["Greene","2021-07-21",18717,24,16874],["Greene","2021-07-22",18717,51,16925],["Greene","2021-07-23",18717,32,16957],["Greene","2021-07-24",18717,22,16979],["Greene","2021-07-25",18717,3,16982],["Greene","2021-07-26",18717,36,17018],["Greene","2021-07-27",18717,40,17058],["Greene","2021-07-28",18717,37,17095],["Greene","2021-07-29",18717,45,17140],["Greene","2021-07-30",18717,44,17184],["Greene","2021-07-31",18717,20,17204],["Greene","2021-08-01",18717,11,17215],["Greene","2021-08-02",18717,34,17249],["Greene","2021-08-03",18717,35,17284],["Greene","2021-08-04",18717,33,17317],["Greene","2021-08-05",18717,39,17356],["Greene","2021-08-06",18717,53,17409],["Greene","2021-08-07",18717,17,17426],["Greene","2021-08-08",18717,38,17464],["Greene","2021-08-09",18717,44,17508],["Greene","2021-08-10",18717,30,17538],["Greene","2021-08-11",18717,49,17587],["Greene","2021-08-12",18717,51,17638],["Greene","2021-08-13",18717,55,17693],["Greene","2021-08-14",18717,31,17724],["Greene","2021-08-15",18717,10,17734],["Greene","2021-08-16",18717,51,17785],["Greene","2021-08-17",18717,46,17831],["Greene","2021-08-18",18717,39,17870],["Greene","2021-08-19",18717,51,17921],["Greene","2021-08-20",18717,53,17974],["Greene","2021-08-21",18717,26,18000],["Greene","2021-08-22",18717,30,18030],["Greene","2021-08-23",18717,47,18077],["Greene","2021-08-24",18717,63,18140],["Greene","2021-08-25",18717,47,18187],["Greene","2021-08-26",18717,56,18243],["Greene","2021-08-27",18717,73,18316],["Greene","2021-08-28",18717,30,18346],["Greene","2021-08-29",18717,51,18397],["Greene","2021-08-30",18717,55,18452],["Greene","2021-08-31",18717,62,18514],["Greene","2021-09-01",18717,61,18575],["Greene","2021-09-02",18717,60,18635],["Greene","2021-09-03",18717,51,18686],["Greene","2021-09-04",18717,19,18705],["Greene","2021-09-05",18717,24,18729],["Greene","2021-09-06",18717,5,18734],["Greene","2021-09-07",18717,58,18792],["Greene","2021-09-08",18717,46,18838],["Greene","2021-09-09",18717,53,18891],["Greene","2021-09-10",18717,45,18936],["Greene","2021-09-11",18717,24,18960],["Greene","2021-09-12",18717,29,18989],["Greene","2021-09-13",18717,46,19035],["Greene","2021-09-14",18717,40,19075],["Greene","2021-09-15",18717,39,19114],["Greene","2021-09-16",18717,47,19161],["Greene","2021-09-17",18717,34,19195],["Greene","2021-09-18",18717,19,19214],["Greene","2021-09-19",18717,22,19236],["Greene","2021-09-20",18717,29,19265],["Greene","2021-09-21",18717,50,19315],["Greene","2021-09-22",18717,36,19351],["Greene","2021-09-23",18717,53,19404],["Greene","2021-09-24",18717,32,19436],["Greene","2021-09-25",18717,27,19463],["Greene","2021-09-26",18717,19,19482],["Greene","2021-09-27",18717,48,19530],["Greene","2021-09-28",18717,60,19590],["Greene","2021-09-29",18717,53,19643],["Greene","2021-09-30",18717,56,19699],["Greene","2021-10-01",18717,41,19740],["Greene","2021-10-02",18717,16,19756],["Greene","2021-10-03",18717,13,19769],["Greene","2021-10-04",18717,42,19811],["Greene","2021-10-05",18717,45,19856],["Greene","2021-10-06",18717,44,19900],["Greene","2021-10-07",18717,28,19928],["Greene","2021-10-08",18717,52,19980],["Greene","2021-10-09",18717,15,19995],["Greene","2021-10-10",18717,16,20011],["Greene","2021-10-11",18717,17,20028],["Greene","2021-10-12",18717,19,20047],["Greene","2021-10-13",18717,32,20079],["Greene","2021-10-14",18717,24,20103],["Greene","2021-10-15",18717,18,20121],["Greene","2021-10-16",18717,8,20129],["Greene","2021-10-17",18717,12,20141],["Greene","2021-10-18",18717,44,20185],["Greene","2021-10-19",18717,22,20207],["Greene","2021-10-20",18717,49,20256],["Greene","2021-10-21",18717,24,20280],["Greene","2021-10-22",18717,47,20327],["Greene","2021-10-23",18717,43,20370],["Greene","2021-10-24",18717,27,20397],["Greene","2021-10-25",18717,75,20472],["Greene","2021-10-26",18717,74,20546],["Greene","2021-10-27",18717,78,20624],["Greene","2021-10-28",18717,117,20741],["Greene","2021-10-29",18717,82,20823],["Greene","2021-10-30",18717,28,20851],["Greene","2021-10-31",18717,24,20875],["Greene","2021-11-01",18717,82,20957],["Greene","2021-11-02",18717,103,21060],["Greene","2021-11-03",18717,88,21148],["Greene","2021-11-04",18717,104,21252],["Greene","2021-11-05",18717,87,21339],["Greene","2021-11-06",18717,42,21381],["Greene","2021-11-07",18717,21,21402],["Greene","2021-11-08",18717,87,21489],["Greene","2021-11-09",18717,93,21582],["Greene","2021-11-10",18717,74,21656],["Greene","2021-11-11",18717,87,21743],["Greene","2021-11-12",18717,65,21808],["Greene","2021-11-13",18717,17,21825],["Greene","2021-11-14",18717,29,21854],["Greene","2021-11-15",18717,83,21937],["Greene","2021-11-16",18717,81,22018],["Greene","2021-11-17",18717,66,22084],["Greene","2021-11-18",18717,94,22178],["Greene","2021-11-19",18717,54,22232],["Greene","2021-11-20",18717,31,22263],["Greene","2021-11-21",18717,18,22281],["Greene","2021-11-22",18717,68,22349],["Greene","2021-11-23",18717,68,22417],["Greene","2021-11-24",18717,26,22443],["Greene","2021-11-26",18717,42,22485],["Greene","2021-11-27",18717,37,22522],["Greene","2021-11-28",18717,20,22542],["Greene","2021-11-29",18717,58,22600],["Greene","2021-11-30",18717,58,22658],["Greene","2021-12-01",18717,92,22750],["Greene","2021-12-02",18717,95,22845],["Greene","2021-12-03",18717,89,22934],["Greene","2021-12-04",18717,45,22979],["Greene","2021-12-05",18717,25,23004],["Greene","2021-12-06",18717,67,23071],["Greene","2021-12-07",18717,73,23144],["Greene","2021-12-08",18717,79,23223],["Greene","2021-12-09",18717,66,23289],["Greene","2021-12-10",18717,65,23354],["Greene","2021-12-11",18717,35,23389],["Greene","2021-12-12",18717,22,23411],["Greene","2021-12-13",18717,42,23453],["Greene","2021-12-14",18717,72,23525],["Greene","2021-12-15",18717,39,23564],["Greene","2021-12-16",18717,76,23640],["Greene","2021-12-17",18717,51,23691],["Greene","2021-12-18",18717,46,23737],["Greene","2021-12-19",18717,30,23767],["Greene","2021-12-20",18717,70,23837],["Greene","2021-12-21",18717,76,23913],["Greene","2021-12-22",18717,67,23980],["Greene","2021-12-23",18717,34,24014],["Greene","2021-12-24",18717,22,24036],["Greene","2021-12-26",18717,11,24047],["Greene","2021-12-27",18717,66,24113],["Greene","2021-12-28",18717,69,24182],["Greene","2021-12-29",18717,58,24240],["Greene","2021-12-30",18717,42,24282],["Greene","2021-12-31",18717,15,24297],["Greene","2022-01-01",18717,2,24299],["Greene","2022-01-02",18717,12,24311],["Greene","2022-01-03",18717,4,24315],["Gwinnett","2020-12-14",971145,2,2],["Gwinnett","2020-12-15",971145,2,4],["Gwinnett","2020-12-16",971145,35,39],["Gwinnett","2020-12-17",971145,246,285],["Gwinnett","2020-12-18",971145,448,733],["Gwinnett","2020-12-19",971145,348,1081],["Gwinnett","2020-12-20",971145,372,1453],["Gwinnett","2020-12-21",971145,493,1946],["Gwinnett","2020-12-22",971145,758,2704],["Gwinnett","2020-12-23",971145,988,3692],["Gwinnett","2020-12-24",971145,224,3916],["Gwinnett","2020-12-25",971145,13,3929],["Gwinnett","2020-12-26",971145,141,4070],["Gwinnett","2020-12-27",971145,218,4288],["Gwinnett","2020-12-28",971145,978,5266],["Gwinnett","2020-12-29",971145,1147,6413],["Gwinnett","2020-12-30",971145,1231,7644],["Gwinnett","2020-12-31",971145,660,8304],["Gwinnett","2021-01-01",971145,254,8558],["Gwinnett","2021-01-02",971145,351,8909],["Gwinnett","2021-01-03",971145,280,9189],["Gwinnett","2021-01-04",971145,1140,10329],["Gwinnett","2021-01-05",971145,1295,11624],["Gwinnett","2021-01-06",971145,1378,13002],["Gwinnett","2021-01-07",971145,1565,14567],["Gwinnett","2021-01-08",971145,1875,16442],["Gwinnett","2021-01-09",971145,1104,17546],["Gwinnett","2021-01-10",971145,558,18104],["Gwinnett","2021-01-11",971145,1657,19761],["Gwinnett","2021-01-12",971145,1695,21456],["Gwinnett","2021-01-13",971145,2657,24113],["Gwinnett","2021-01-14",971145,2085,26198],["Gwinnett","2021-01-15",971145,2335,28533],["Gwinnett","2021-01-16",971145,2140,30673],["Gwinnett","2021-01-17",971145,838,31511],["Gwinnett","2021-01-18",971145,2557,34068],["Gwinnett","2021-01-19",971145,3039,37107],["Gwinnett","2021-01-20",971145,3180,40287],["Gwinnett","2021-01-21",971145,3095,43382],["Gwinnett","2021-01-22",971145,3016,46398],["Gwinnett","2021-01-23",971145,1627,48025],["Gwinnett","2021-01-24",971145,727,48752],["Gwinnett","2021-01-25",971145,2437,51189],["Gwinnett","2021-01-26",971145,2779,53968],["Gwinnett","2021-01-27",971145,2661,56629],["Gwinnett","2021-01-28",971145,3920,60549],["Gwinnett","2021-01-29",971145,3827,64376],["Gwinnett","2021-01-30",971145,1114,65490],["Gwinnett","2021-01-31",971145,414,65904],["Gwinnett","2021-02-01",971145,2270,68174],["Gwinnett","2021-02-02",971145,2512,70686],["Gwinnett","2021-02-03",971145,2532,73218],["Gwinnett","2021-02-04",971145,2924,76142],["Gwinnett","2021-02-05",971145,2946,79088],["Gwinnett","2021-02-06",971145,1725,80813],["Gwinnett","2021-02-07",971145,409,81222],["Gwinnett","2021-02-08",971145,3052,84274],["Gwinnett","2021-02-09",971145,3059,87333],["Gwinnett","2021-02-10",971145,2986,90319],["Gwinnett","2021-02-11",971145,3706,94025],["Gwinnett","2021-02-12",971145,3496,97521],["Gwinnett","2021-02-13",971145,3106,100627],["Gwinnett","2021-02-14",971145,915,101542],["Gwinnett","2021-02-15",971145,4144,105686],["Gwinnett","2021-02-16",971145,3733,109419],["Gwinnett","2021-02-17",971145,3629,113048],["Gwinnett","2021-02-18",971145,3391,116439],["Gwinnett","2021-02-19",971145,3550,119989],["Gwinnett","2021-02-20",971145,1961,121950],["Gwinnett","2021-02-21",971145,589,122539],["Gwinnett","2021-02-22",971145,2706,125245],["Gwinnett","2021-02-23",971145,3445,128690],["Gwinnett","2021-02-24",971145,3821,132511],["Gwinnett","2021-02-25",971145,5249,137760],["Gwinnett","2021-02-26",971145,5326,143086],["Gwinnett","2021-02-27",971145,2573,145659],["Gwinnett","2021-02-28",971145,768,146427],["Gwinnett","2021-03-01",971145,4956,151383],["Gwinnett","2021-03-02",971145,4880,156263],["Gwinnett","2021-03-03",971145,4725,160988],["Gwinnett","2021-03-04",971145,5316,166304],["Gwinnett","2021-03-05",971145,5540,171844],["Gwinnett","2021-03-06",971145,2874,174718],["Gwinnett","2021-03-07",971145,1044,175762],["Gwinnett","2021-03-08",971145,5874,181636],["Gwinnett","2021-03-09",971145,6426,188062],["Gwinnett","2021-03-10",971145,6030,194092],["Gwinnett","2021-03-11",971145,6168,200260],["Gwinnett","2021-03-12",971145,6613,206873],["Gwinnett","2021-03-13",971145,3328,210201],["Gwinnett","2021-03-14",971145,1996,212197],["Gwinnett","2021-03-15",971145,6888,219085],["Gwinnett","2021-03-16",971145,7873,226958],["Gwinnett","2021-03-17",971145,7918,234876],["Gwinnett","2021-03-18",971145,7716,242592],["Gwinnett","2021-03-19",971145,8240,250832],["Gwinnett","2021-03-20",971145,5310,256142],["Gwinnett","2021-03-21",971145,2039,258181],["Gwinnett","2021-03-22",971145,6980,265161],["Gwinnett","2021-03-23",971145,8407,273568],["Gwinnett","2021-03-24",971145,9055,282623],["Gwinnett","2021-03-25",971145,9350,291973],["Gwinnett","2021-03-26",971145,9574,301547],["Gwinnett","2021-03-27",971145,6160,307707],["Gwinnett","2021-03-28",971145,2877,310584],["Gwinnett","2021-03-29",971145,9310,319894],["Gwinnett","2021-03-30",971145,12036,331930],["Gwinnett","2021-03-31",971145,12346,344276],["Gwinnett","2021-04-01",971145,11809,356085],["Gwinnett","2021-04-02",971145,10172,366257],["Gwinnett","2021-04-03",971145,5826,372083],["Gwinnett","2021-04-04",971145,2546,374629],["Gwinnett","2021-04-05",971145,9616,384245],["Gwinnett","2021-04-06",971145,12582,396827],["Gwinnett","2021-04-07",971145,12683,409510],["Gwinnett","2021-04-08",971145,11470,420980],["Gwinnett","2021-04-09",971145,11828,432808],["Gwinnett","2021-04-10",971145,8085,440893],["Gwinnett","2021-04-11",971145,3080,443973],["Gwinnett","2021-04-12",971145,10343,454316],["Gwinnett","2021-04-13",971145,11310,465626],["Gwinnett","2021-04-14",971145,12051,477677],["Gwinnett","2021-04-15",971145,10617,488294],["Gwinnett","2021-04-16",971145,9735,498029],["Gwinnett","2021-04-17",971145,6363,504392],["Gwinnett","2021-04-18",971145,4334,508726],["Gwinnett","2021-04-19",971145,10009,518735],["Gwinnett","2021-04-20",971145,10894,529629],["Gwinnett","2021-04-21",971145,11237,540866],["Gwinnett","2021-04-22",971145,10274,551140],["Gwinnett","2021-04-23",971145,9770,560910],["Gwinnett","2021-04-24",971145,6667,567577],["Gwinnett","2021-04-25",971145,2980,570557],["Gwinnett","2021-04-26",971145,8005,578562],["Gwinnett","2021-04-27",971145,8861,587423],["Gwinnett","2021-04-28",971145,10666,598089],["Gwinnett","2021-04-29",971145,9856,607945],["Gwinnett","2021-04-30",971145,9908,617853],["Gwinnett","2021-05-01",971145,7711,625564],["Gwinnett","2021-05-02",971145,2291,627855],["Gwinnett","2021-05-03",971145,6193,634048],["Gwinnett","2021-05-04",971145,7785,641833],["Gwinnett","2021-05-05",971145,8346,650179],["Gwinnett","2021-05-06",971145,6387,656566],["Gwinnett","2021-05-07",971145,6821,663387],["Gwinnett","2021-05-08",971145,4229,667616],["Gwinnett","2021-05-09",971145,1671,669287],["Gwinnett","2021-05-10",971145,4275,673562],["Gwinnett","2021-05-11",971145,5587,679149],["Gwinnett","2021-05-12",971145,5434,684583],["Gwinnett","2021-05-13",971145,5169,689752],["Gwinnett","2021-05-14",971145,5841,695593],["Gwinnett","2021-05-15",971145,5338,700931],["Gwinnett","2021-05-16",971145,2876,703807],["Gwinnett","2021-05-17",971145,4961,708768],["Gwinnett","2021-05-18",971145,4879,713647],["Gwinnett","2021-05-19",971145,5978,719625],["Gwinnett","2021-05-20",971145,4362,723987],["Gwinnett","2021-05-21",971145,5122,729109],["Gwinnett","2021-05-22",971145,4481,733590],["Gwinnett","2021-05-23",971145,2077,735667],["Gwinnett","2021-05-24",971145,3298,738965],["Gwinnett","2021-05-25",971145,3526,742491],["Gwinnett","2021-05-26",971145,4279,746770],["Gwinnett","2021-05-27",971145,3576,750346],["Gwinnett","2021-05-28",971145,3662,754008],["Gwinnett","2021-05-29",971145,2377,756385],["Gwinnett","2021-05-30",971145,1382,757767],["Gwinnett","2021-05-31",971145,563,758330],["Gwinnett","2021-06-01",971145,3620,761950],["Gwinnett","2021-06-02",971145,3727,765677],["Gwinnett","2021-06-03",971145,3412,769089],["Gwinnett","2021-06-04",971145,3939,773028],["Gwinnett","2021-06-05",971145,3463,776491],["Gwinnett","2021-06-06",971145,1868,778359],["Gwinnett","2021-06-07",971145,3096,781455],["Gwinnett","2021-06-08",971145,3225,784680],["Gwinnett","2021-06-09",971145,3560,788240],["Gwinnett","2021-06-10",971145,2959,791199],["Gwinnett","2021-06-11",971145,3400,794599],["Gwinnett","2021-06-12",971145,2898,797497],["Gwinnett","2021-06-13",971145,1452,798949],["Gwinnett","2021-06-14",971145,2346,801295],["Gwinnett","2021-06-15",971145,2461,803756],["Gwinnett","2021-06-16",971145,2937,806693],["Gwinnett","2021-06-17",971145,2373,809066],["Gwinnett","2021-06-18",971145,2764,811830],["Gwinnett","2021-06-19",971145,1899,813729],["Gwinnett","2021-06-20",971145,1074,814803],["Gwinnett","2021-06-21",971145,1660,816463],["Gwinnett","2021-06-22",971145,2270,818733],["Gwinnett","2021-06-23",971145,2611,821344],["Gwinnett","2021-06-24",971145,1803,823147],["Gwinnett","2021-06-25",971145,2421,825568],["Gwinnett","2021-06-26",971145,2135,827703],["Gwinnett","2021-06-27",971145,1193,828896],["Gwinnett","2021-06-28",971145,1630,830526],["Gwinnett","2021-06-29",971145,1846,832372],["Gwinnett","2021-06-30",971145,2262,834634],["Gwinnett","2021-07-01",971145,1643,836277],["Gwinnett","2021-07-02",971145,2013,838290],["Gwinnett","2021-07-03",971145,1539,839829],["Gwinnett","2021-07-04",971145,121,839950],["Gwinnett","2021-07-05",971145,1310,841260],["Gwinnett","2021-07-06",971145,1579,842839],["Gwinnett","2021-07-07",971145,1960,844799],["Gwinnett","2021-07-08",971145,1525,846324],["Gwinnett","2021-07-09",971145,1740,848064],["Gwinnett","2021-07-10",971145,1460,849524],["Gwinnett","2021-07-11",971145,881,850405],["Gwinnett","2021-07-12",971145,1564,851969],["Gwinnett","2021-07-13",971145,1343,853312],["Gwinnett","2021-07-14",971145,1807,855119],["Gwinnett","2021-07-15",971145,1476,856595],["Gwinnett","2021-07-16",971145,1827,858422],["Gwinnett","2021-07-17",971145,1578,860000],["Gwinnett","2021-07-18",971145,1009,861009],["Gwinnett","2021-07-19",971145,1726,862735],["Gwinnett","2021-07-20",971145,1737,864472],["Gwinnett","2021-07-21",971145,2227,866699],["Gwinnett","2021-07-22",971145,1730,868429],["Gwinnett","2021-07-23",971145,2140,870569],["Gwinnett","2021-07-24",971145,1776,872345],["Gwinnett","2021-07-25",971145,1063,873408],["Gwinnett","2021-07-26",971145,1793,875201],["Gwinnett","2021-07-27",971145,1921,877122],["Gwinnett","2021-07-28",971145,2269,879391],["Gwinnett","2021-07-29",971145,1976,881367],["Gwinnett","2021-07-30",971145,2361,883728],["Gwinnett","2021-07-31",971145,1803,885531],["Gwinnett","2021-08-01",971145,1330,886861],["Gwinnett","2021-08-02",971145,2290,889151],["Gwinnett","2021-08-03",971145,2171,891322],["Gwinnett","2021-08-04",971145,2390,893712],["Gwinnett","2021-08-05",971145,1933,895645],["Gwinnett","2021-08-06",971145,2513,898158],["Gwinnett","2021-08-07",971145,2283,900441],["Gwinnett","2021-08-08",971145,1463,901904],["Gwinnett","2021-08-09",971145,2148,904052],["Gwinnett","2021-08-10",971145,2144,906196],["Gwinnett","2021-08-11",971145,2564,908760],["Gwinnett","2021-08-12",971145,2085,910845],["Gwinnett","2021-08-13",971145,2418,913263],["Gwinnett","2021-08-14",971145,2133,915396],["Gwinnett","2021-08-15",971145,1413,916809],["Gwinnett","2021-08-16",971145,2065,918874],["Gwinnett","2021-08-17",971145,2060,920934],["Gwinnett","2021-08-18",971145,2482,923416],["Gwinnett","2021-08-19",971145,2130,925546],["Gwinnett","2021-08-20",971145,2708,928254],["Gwinnett","2021-08-21",971145,2410,930664],["Gwinnett","2021-08-22",971145,1433,932097],["Gwinnett","2021-08-23",971145,2180,934277],["Gwinnett","2021-08-24",971145,2063,936340],["Gwinnett","2021-08-25",971145,2470,938810],["Gwinnett","2021-08-26",971145,2230,941040],["Gwinnett","2021-08-27",971145,2727,943767],["Gwinnett","2021-08-28",971145,2476,946243],["Gwinnett","2021-08-29",971145,1371,947614],["Gwinnett","2021-08-30",971145,2131,949745],["Gwinnett","2021-08-31",971145,2133,951878],["Gwinnett","2021-09-01",971145,2474,954352],["Gwinnett","2021-09-02",971145,2078,956430],["Gwinnett","2021-09-03",971145,2444,958874],["Gwinnett","2021-09-04",971145,1762,960636],["Gwinnett","2021-09-05",971145,1134,961770],["Gwinnett","2021-09-06",971145,312,962082],["Gwinnett","2021-09-07",971145,1970,964052],["Gwinnett","2021-09-08",971145,2102,966154],["Gwinnett","2021-09-09",971145,1864,968018],["Gwinnett","2021-09-10",971145,2161,970179],["Gwinnett","2021-09-11",971145,1742,971921],["Gwinnett","2021-09-12",971145,1176,973097],["Gwinnett","2021-09-13",971145,1689,974786],["Gwinnett","2021-09-14",971145,1565,976351],["Gwinnett","2021-09-15",971145,1762,978113],["Gwinnett","2021-09-16",971145,1468,979581],["Gwinnett","2021-09-17",971145,1804,981385],["Gwinnett","2021-09-18",971145,1380,982765],["Gwinnett","2021-09-19",971145,886,983651],["Gwinnett","2021-09-20",971145,1525,985176],["Gwinnett","2021-09-21",971145,1367,986543],["Gwinnett","2021-09-22",971145,1460,988003],["Gwinnett","2021-09-23",971145,1243,989246],["Gwinnett","2021-09-24",971145,1784,991030],["Gwinnett","2021-09-25",971145,1429,992459],["Gwinnett","2021-09-26",971145,913,993372],["Gwinnett","2021-09-27",971145,1861,995233],["Gwinnett","2021-09-28",971145,2100,997333],["Gwinnett","2021-09-29",971145,2124,999457],["Gwinnett","2021-09-30",971145,2009,1001466],["Gwinnett","2021-10-01",971145,2369,1003835],["Gwinnett","2021-10-02",971145,1451,1005286],["Gwinnett","2021-10-03",971145,767,1006053],["Gwinnett","2021-10-04",971145,1738,1007791],["Gwinnett","2021-10-05",971145,1814,1009605],["Gwinnett","2021-10-06",971145,1804,1011409],["Gwinnett","2021-10-07",971145,1591,1013000],["Gwinnett","2021-10-08",971145,2097,1015097],["Gwinnett","2021-10-09",971145,1196,1016293],["Gwinnett","2021-10-10",971145,914,1017207],["Gwinnett","2021-10-11",971145,1450,1018657],["Gwinnett","2021-10-12",971145,1507,1020164],["Gwinnett","2021-10-13",971145,1676,1021840],["Gwinnett","2021-10-14",971145,1411,1023251],["Gwinnett","2021-10-15",971145,1868,1025119],["Gwinnett","2021-10-16",971145,1131,1026250],["Gwinnett","2021-10-17",971145,726,1026976],["Gwinnett","2021-10-18",971145,1318,1028294],["Gwinnett","2021-10-19",971145,1300,1029594],["Gwinnett","2021-10-20",971145,1412,1031006],["Gwinnett","2021-10-21",971145,1538,1032544],["Gwinnett","2021-10-22",971145,2684,1035228],["Gwinnett","2021-10-23",971145,2767,1037995],["Gwinnett","2021-10-24",971145,1261,1039256],["Gwinnett","2021-10-25",971145,2844,1042100],["Gwinnett","2021-10-26",971145,2367,1044467],["Gwinnett","2021-10-27",971145,2859,1047326],["Gwinnett","2021-10-28",971145,2481,1049807],["Gwinnett","2021-10-29",971145,3293,1053100],["Gwinnett","2021-10-30",971145,2003,1055103],["Gwinnett","2021-10-31",971145,1145,1056248],["Gwinnett","2021-11-01",971145,2587,1058835],["Gwinnett","2021-11-02",971145,2360,1061195],["Gwinnett","2021-11-03",971145,2490,1063685],["Gwinnett","2021-11-04",971145,2378,1066063],["Gwinnett","2021-11-05",971145,3261,1069324],["Gwinnett","2021-11-06",971145,2166,1071490],["Gwinnett","2021-11-07",971145,1307,1072797],["Gwinnett","2021-11-08",971145,2423,1075220],["Gwinnett","2021-11-09",971145,2711,1077931],["Gwinnett","2021-11-10",971145,2586,1080517],["Gwinnett","2021-11-11",971145,2407,1082924],["Gwinnett","2021-11-12",971145,3175,1086099],["Gwinnett","2021-11-13",971145,2361,1088460],["Gwinnett","2021-11-14",971145,1133,1089593],["Gwinnett","2021-11-15",971145,2651,1092244],["Gwinnett","2021-11-16",971145,2619,1094863],["Gwinnett","2021-11-17",971145,2516,1097379],["Gwinnett","2021-11-18",971145,2674,1100053],["Gwinnett","2021-11-19",971145,3441,1103494],["Gwinnett","2021-11-20",971145,2778,1106272],["Gwinnett","2021-11-21",971145,1739,1108011],["Gwinnett","2021-11-22",971145,3740,1111751],["Gwinnett","2021-11-23",971145,3451,1115202],["Gwinnett","2021-11-24",971145,2648,1117850],["Gwinnett","2021-11-25",971145,13,1117863],["Gwinnett","2021-11-26",971145,3167,1121030],["Gwinnett","2021-11-27",971145,2313,1123343],["Gwinnett","2021-11-28",971145,1396,1124739],["Gwinnett","2021-11-29",971145,3212,1127951],["Gwinnett","2021-11-30",971145,3642,1131593],["Gwinnett","2021-12-01",971145,4017,1135610],["Gwinnett","2021-12-02",971145,4257,1139867],["Gwinnett","2021-12-03",971145,5158,1145025],["Gwinnett","2021-12-04",971145,3901,1148926],["Gwinnett","2021-12-05",971145,1664,1150590],["Gwinnett","2021-12-06",971145,3644,1154234],["Gwinnett","2021-12-07",971145,3531,1157765],["Gwinnett","2021-12-08",971145,3551,1161316],["Gwinnett","2021-12-09",971145,3476,1164792],["Gwinnett","2021-12-10",971145,4966,1169758],["Gwinnett","2021-12-11",971145,3559,1173317],["Gwinnett","2021-12-12",971145,2230,1175547],["Gwinnett","2021-12-13",971145,3079,1178626],["Gwinnett","2021-12-14",971145,3179,1181805],["Gwinnett","2021-12-15",971145,2874,1184679],["Gwinnett","2021-12-16",971145,2986,1187665],["Gwinnett","2021-12-17",971145,3731,1191396],["Gwinnett","2021-12-18",971145,3046,1194442],["Gwinnett","2021-12-19",971145,1676,1196118],["Gwinnett","2021-12-20",971145,3834,1199952],["Gwinnett","2021-12-21",971145,4026,1203978],["Gwinnett","2021-12-22",971145,3965,1207943],["Gwinnett","2021-12-23",971145,3158,1211101],["Gwinnett","2021-12-24",971145,1229,1212330],["Gwinnett","2021-12-25",971145,4,1212334],["Gwinnett","2021-12-26",971145,1207,1213541],["Gwinnett","2021-12-27",971145,3382,1216923],["Gwinnett","2021-12-28",971145,3796,1220719],["Gwinnett","2021-12-29",971145,3767,1224486],["Gwinnett","2021-12-30",971145,3086,1227572],["Gwinnett","2021-12-31",971145,1584,1229156],["Gwinnett","2022-01-01",971145,237,1229393],["Gwinnett","2022-01-02",971145,912,1230305],["Gwinnett","2022-01-03",971145,1199,1231504],["Habersham","2020-12-16",45800,2,2],["Habersham","2020-12-17",45800,2,4],["Habersham","2020-12-18",45800,9,13],["Habersham","2020-12-19",45800,5,18],["Habersham","2020-12-20",45800,6,24],["Habersham","2020-12-21",45800,12,36],["Habersham","2020-12-22",45800,33,69],["Habersham","2020-12-23",45800,58,127],["Habersham","2020-12-24",45800,4,131],["Habersham","2020-12-26",45800,4,135],["Habersham","2020-12-27",45800,2,137],["Habersham","2020-12-28",45800,60,197],["Habersham","2020-12-29",45800,87,284],["Habersham","2020-12-30",45800,78,362],["Habersham","2020-12-31",45800,13,375],["Habersham","2021-01-01",45800,11,386],["Habersham","2021-01-02",45800,3,389],["Habersham","2021-01-03",45800,2,391],["Habersham","2021-01-04",45800,50,441],["Habersham","2021-01-05",45800,62,503],["Habersham","2021-01-06",45800,53,556],["Habersham","2021-01-07",45800,42,598],["Habersham","2021-01-08",45800,38,636],["Habersham","2021-01-09",45800,10,646],["Habersham","2021-01-10",45800,16,662],["Habersham","2021-01-11",45800,141,803],["Habersham","2021-01-12",45800,171,974],["Habersham","2021-01-13",45800,267,1241],["Habersham","2021-01-14",45800,431,1672],["Habersham","2021-01-15",45800,311,1983],["Habersham","2021-01-16",45800,105,2088],["Habersham","2021-01-17",45800,29,2117],["Habersham","2021-01-18",45800,207,2324],["Habersham","2021-01-19",45800,251,2575],["Habersham","2021-01-20",45800,275,2850],["Habersham","2021-01-21",45800,185,3035],["Habersham","2021-01-22",45800,169,3204],["Habersham","2021-01-23",45800,58,3262],["Habersham","2021-01-24",45800,46,3308],["Habersham","2021-01-25",45800,165,3473],["Habersham","2021-01-26",45800,227,3700],["Habersham","2021-01-27",45800,249,3949],["Habersham","2021-01-28",45800,147,4096],["Habersham","2021-01-29",45800,159,4255],["Habersham","2021-01-30",45800,37,4292],["Habersham","2021-01-31",45800,25,4317],["Habersham","2021-02-01",45800,121,4438],["Habersham","2021-02-02",45800,138,4576],["Habersham","2021-02-03",45800,257,4833],["Habersham","2021-02-04",45800,145,4978],["Habersham","2021-02-05",45800,133,5111],["Habersham","2021-02-06",45800,28,5139],["Habersham","2021-02-07",45800,10,5149],["Habersham","2021-02-08",45800,183,5332],["Habersham","2021-02-09",45800,219,5551],["Habersham","2021-02-10",45800,237,5788],["Habersham","2021-02-11",45800,417,6205],["Habersham","2021-02-12",45800,229,6434],["Habersham","2021-02-13",45800,82,6516],["Habersham","2021-02-14",45800,23,6539],["Habersham","2021-02-15",45800,290,6829],["Habersham","2021-02-16",45800,238,7067],["Habersham","2021-02-17",45800,178,7245],["Habersham","2021-02-18",45800,215,7460],["Habersham","2021-02-19",45800,209,7669],["Habersham","2021-02-20",45800,42,7711],["Habersham","2021-02-21",45800,40,7751],["Habersham","2021-02-22",45800,325,8076],["Habersham","2021-02-23",45800,309,8385],["Habersham","2021-02-24",45800,299,8684],["Habersham","2021-02-25",45800,313,8997],["Habersham","2021-02-26",45800,311,9308],["Habersham","2021-02-27",45800,109,9417],["Habersham","2021-02-28",45800,38,9455],["Habersham","2021-03-01",45800,246,9701],["Habersham","2021-03-02",45800,291,9992],["Habersham","2021-03-03",45800,389,10381],["Habersham","2021-03-04",45800,223,10604],["Habersham","2021-03-05",45800,203,10807],["Habersham","2021-03-06",45800,28,10835],["Habersham","2021-03-07",45800,35,10870],["Habersham","2021-03-08",45800,264,11134],["Habersham","2021-03-09",45800,195,11329],["Habersham","2021-03-10",45800,241,11570],["Habersham","2021-03-11",45800,360,11930],["Habersham","2021-03-12",45800,245,12175],["Habersham","2021-03-13",45800,70,12245],["Habersham","2021-03-14",45800,46,12291],["Habersham","2021-03-15",45800,372,12663],["Habersham","2021-03-16",45800,350,13013],["Habersham","2021-03-17",45800,312,13325],["Habersham","2021-03-18",45800,288,13613],["Habersham","2021-03-19",45800,256,13869],["Habersham","2021-03-20",45800,51,13920],["Habersham","2021-03-21",45800,71,13991],["Habersham","2021-03-22",45800,214,14205],["Habersham","2021-03-23",45800,201,14406],["Habersham","2021-03-24",45800,266,14672],["Habersham","2021-03-25",45800,302,14974],["Habersham","2021-03-26",45800,263,15237],["Habersham","2021-03-27",45800,83,15320],["Habersham","2021-03-28",45800,55,15375],["Habersham","2021-03-29",45800,349,15724],["Habersham","2021-03-30",45800,314,16038],["Habersham","2021-03-31",45800,317,16355],["Habersham","2021-04-01",45800,275,16630],["Habersham","2021-04-02",45800,269,16899],["Habersham","2021-04-03",45800,83,16982],["Habersham","2021-04-04",45800,53,17035],["Habersham","2021-04-05",45800,321,17356],["Habersham","2021-04-06",45800,230,17586],["Habersham","2021-04-07",45800,307,17893],["Habersham","2021-04-08",45800,265,18158],["Habersham","2021-04-09",45800,318,18476],["Habersham","2021-04-10",45800,83,18559],["Habersham","2021-04-11",45800,60,18619],["Habersham","2021-04-12",45800,365,18984],["Habersham","2021-04-13",45800,200,19184],["Habersham","2021-04-14",45800,307,19491],["Habersham","2021-04-15",45800,284,19775],["Habersham","2021-04-16",45800,298,20073],["Habersham","2021-04-17",45800,95,20168],["Habersham","2021-04-18",45800,48,20216],["Habersham","2021-04-19",45800,253,20469],["Habersham","2021-04-20",45800,239,20708],["Habersham","2021-04-21",45800,443,21151],["Habersham","2021-04-22",45800,253,21404],["Habersham","2021-04-23",45800,480,21884],["Habersham","2021-04-24",45800,69,21953],["Habersham","2021-04-25",45800,24,21977],["Habersham","2021-04-26",45800,223,22200],["Habersham","2021-04-27",45800,190,22390],["Habersham","2021-04-28",45800,244,22634],["Habersham","2021-04-29",45800,194,22828],["Habersham","2021-04-30",45800,303,23131],["Habersham","2021-05-01",45800,74,23205],["Habersham","2021-05-02",45800,29,23234],["Habersham","2021-05-03",45800,202,23436],["Habersham","2021-05-04",45800,126,23562],["Habersham","2021-05-05",45800,159,23721],["Habersham","2021-05-06",45800,166,23887],["Habersham","2021-05-07",45800,194,24081],["Habersham","2021-05-08",45800,65,24146],["Habersham","2021-05-09",45800,28,24174],["Habersham","2021-05-10",45800,116,24290],["Habersham","2021-05-11",45800,101,24391],["Habersham","2021-05-12",45800,120,24511],["Habersham","2021-05-13",45800,133,24644],["Habersham","2021-05-14",45800,188,24832],["Habersham","2021-05-15",45800,78,24910],["Habersham","2021-05-16",45800,40,24950],["Habersham","2021-05-17",45800,108,25058],["Habersham","2021-05-18",45800,124,25182],["Habersham","2021-05-19",45800,346,25528],["Habersham","2021-05-20",45800,99,25627],["Habersham","2021-05-21",45800,279,25906],["Habersham","2021-05-22",45800,46,25952],["Habersham","2021-05-23",45800,29,25981],["Habersham","2021-05-24",45800,67,26048],["Habersham","2021-05-25",45800,78,26126],["Habersham","2021-05-26",45800,109,26235],["Habersham","2021-05-27",45800,77,26312],["Habersham","2021-05-28",45800,116,26428],["Habersham","2021-05-29",45800,33,26461],["Habersham","2021-05-30",45800,26,26487],["Habersham","2021-05-31",45800,23,26510],["Habersham","2021-06-01",45800,67,26577],["Habersham","2021-06-02",45800,88,26665],["Habersham","2021-06-03",45800,69,26734],["Habersham","2021-06-04",45800,88,26822],["Habersham","2021-06-05",45800,49,26871],["Habersham","2021-06-06",45800,28,26899],["Habersham","2021-06-07",45800,47,26946],["Habersham","2021-06-08",45800,47,26993],["Habersham","2021-06-09",45800,79,27072],["Habersham","2021-06-10",45800,56,27128],["Habersham","2021-06-11",45800,79,27207],["Habersham","2021-06-12",45800,47,27254],["Habersham","2021-06-13",45800,15,27269],["Habersham","2021-06-14",45800,46,27315],["Habersham","2021-06-15",45800,58,27373],["Habersham","2021-06-16",45800,60,27433],["Habersham","2021-06-17",45800,41,27474],["Habersham","2021-06-18",45800,66,27540],["Habersham","2021-06-19",45800,24,27564],["Habersham","2021-06-20",45800,16,27580],["Habersham","2021-06-21",45800,30,27610],["Habersham","2021-06-22",45800,108,27718],["Habersham","2021-06-23",45800,60,27778],["Habersham","2021-06-24",45800,49,27827],["Habersham","2021-06-25",45800,70,27897],["Habersham","2021-06-26",45800,30,27927],["Habersham","2021-06-27",45800,14,27941],["Habersham","2021-06-28",45800,33,27974],["Habersham","2021-06-29",45800,22,27996],["Habersham","2021-06-30",45800,40,28036],["Habersham","2021-07-01",45800,29,28065],["Habersham","2021-07-02",45800,50,28115],["Habersham","2021-07-03",45800,18,28133],["Habersham","2021-07-04",45800,3,28136],["Habersham","2021-07-05",45800,26,28162],["Habersham","2021-07-06",45800,34,28196],["Habersham","2021-07-07",45800,50,28246],["Habersham","2021-07-08",45800,36,28282],["Habersham","2021-07-09",45800,31,28313],["Habersham","2021-07-10",45800,26,28339],["Habersham","2021-07-11",45800,8,28347],["Habersham","2021-07-12",45800,39,28386],["Habersham","2021-07-13",45800,38,28424],["Habersham","2021-07-14",45800,36,28460],["Habersham","2021-07-15",45800,30,28490],["Habersham","2021-07-16",45800,54,28544],["Habersham","2021-07-17",45800,30,28574],["Habersham","2021-07-18",45800,14,28588],["Habersham","2021-07-19",45800,32,28620],["Habersham","2021-07-20",45800,41,28661],["Habersham","2021-07-21",45800,58,28719],["Habersham","2021-07-22",45800,33,28752],["Habersham","2021-07-23",45800,79,28831],["Habersham","2021-07-24",45800,38,28869],["Habersham","2021-07-25",45800,16,28885],["Habersham","2021-07-26",45800,57,28942],["Habersham","2021-07-27",45800,52,28994],["Habersham","2021-07-28",45800,71,29065],["Habersham","2021-07-29",45800,61,29126],["Habersham","2021-07-30",45800,83,29209],["Habersham","2021-07-31",45800,41,29250],["Habersham","2021-08-01",45800,54,29304],["Habersham","2021-08-02",45800,78,29382],["Habersham","2021-08-03",45800,81,29463],["Habersham","2021-08-04",45800,116,29579],["Habersham","2021-08-05",45800,72,29651],["Habersham","2021-08-06",45800,114,29765],["Habersham","2021-08-07",45800,56,29821],["Habersham","2021-08-08",45800,30,29851],["Habersham","2021-08-09",45800,72,29923],["Habersham","2021-08-10",45800,84,30007],["Habersham","2021-08-11",45800,90,30097],["Habersham","2021-08-12",45800,83,30180],["Habersham","2021-08-13",45800,135,30315],["Habersham","2021-08-14",45800,73,30388],["Habersham","2021-08-15",45800,43,30431],["Habersham","2021-08-16",45800,112,30543],["Habersham","2021-08-17",45800,92,30635],["Habersham","2021-08-18",45800,138,30773],["Habersham","2021-08-19",45800,99,30872],["Habersham","2021-08-20",45800,160,31032],["Habersham","2021-08-21",45800,80,31112],["Habersham","2021-08-22",45800,40,31152],["Habersham","2021-08-23",45800,102,31254],["Habersham","2021-08-24",45800,134,31388],["Habersham","2021-08-25",45800,159,31547],["Habersham","2021-08-26",45800,143,31690],["Habersham","2021-08-27",45800,249,31939],["Habersham","2021-08-28",45800,102,32041],["Habersham","2021-08-29",45800,81,32122],["Habersham","2021-08-30",45800,127,32249],["Habersham","2021-08-31",45800,137,32386],["Habersham","2021-09-01",45800,148,32534],["Habersham","2021-09-02",45800,120,32654],["Habersham","2021-09-03",45800,184,32838],["Habersham","2021-09-04",45800,88,32926],["Habersham","2021-09-05",45800,61,32987],["Habersham","2021-09-06",45800,25,33012],["Habersham","2021-09-07",45800,97,33109],["Habersham","2021-09-08",45800,114,33223],["Habersham","2021-09-09",45800,113,33336],["Habersham","2021-09-10",45800,164,33500],["Habersham","2021-09-11",45800,81,33581],["Habersham","2021-09-12",45800,42,33623],["Habersham","2021-09-13",45800,88,33711],["Habersham","2021-09-14",45800,100,33811],["Habersham","2021-09-15",45800,116,33927],["Habersham","2021-09-16",45800,120,34047],["Habersham","2021-09-17",45800,165,34212],["Habersham","2021-09-18",45800,67,34279],["Habersham","2021-09-19",45800,32,34311],["Habersham","2021-09-20",45800,72,34383],["Habersham","2021-09-21",45800,107,34490],["Habersham","2021-09-22",45800,118,34608],["Habersham","2021-09-23",45800,60,34668],["Habersham","2021-09-24",45800,169,34837],["Habersham","2021-09-25",45800,75,34912],["Habersham","2021-09-26",45800,30,34942],["Habersham","2021-09-27",45800,85,35027],["Habersham","2021-09-28",45800,83,35110],["Habersham","2021-09-29",45800,76,35186],["Habersham","2021-09-30",45800,92,35278],["Habersham","2021-10-01",45800,133,35411],["Habersham","2021-10-02",45800,59,35470],["Habersham","2021-10-03",45800,23,35493],["Habersham","2021-10-04",45800,60,35553],["Habersham","2021-10-05",45800,61,35614],["Habersham","2021-10-06",45800,65,35679],["Habersham","2021-10-07",45800,63,35742],["Habersham","2021-10-08",45800,112,35854],["Habersham","2021-10-09",45800,50,35904],["Habersham","2021-10-10",45800,19,35923],["Habersham","2021-10-11",45800,44,35967],["Habersham","2021-10-12",45800,51,36018],["Habersham","2021-10-13",45800,49,36067],["Habersham","2021-10-14",45800,64,36131],["Habersham","2021-10-15",45800,64,36195],["Habersham","2021-10-16",45800,34,36229],["Habersham","2021-10-17",45800,13,36242],["Habersham","2021-10-18",45800,50,36292],["Habersham","2021-10-19",45800,46,36338],["Habersham","2021-10-20",45800,53,36391],["Habersham","2021-10-21",45800,53,36444],["Habersham","2021-10-22",45800,93,36537],["Habersham","2021-10-23",45800,83,36620],["Habersham","2021-10-24",45800,72,36692],["Habersham","2021-10-25",45800,172,36864],["Habersham","2021-10-26",45800,290,37154],["Habersham","2021-10-27",45800,193,37347],["Habersham","2021-10-28",45800,166,37513],["Habersham","2021-10-29",45800,195,37708],["Habersham","2021-10-30",45800,65,37773],["Habersham","2021-10-31",45800,30,37803],["Habersham","2021-11-01",45800,151,37954],["Habersham","2021-11-02",45800,189,38143],["Habersham","2021-11-03",45800,112,38255],["Habersham","2021-11-04",45800,147,38402],["Habersham","2021-11-05",45800,139,38541],["Habersham","2021-11-06",45800,56,38597],["Habersham","2021-11-07",45800,23,38620],["Habersham","2021-11-08",45800,101,38721],["Habersham","2021-11-09",45800,115,38836],["Habersham","2021-11-10",45800,125,38961],["Habersham","2021-11-11",45800,120,39081],["Habersham","2021-11-12",45800,154,39235],["Habersham","2021-11-13",45800,46,39281],["Habersham","2021-11-14",45800,15,39296],["Habersham","2021-11-15",45800,110,39406],["Habersham","2021-11-16",45800,121,39527],["Habersham","2021-11-17",45800,159,39686],["Habersham","2021-11-18",45800,107,39793],["Habersham","2021-11-19",45800,130,39923],["Habersham","2021-11-20",45800,62,39985],["Habersham","2021-11-21",45800,28,40013],["Habersham","2021-11-22",45800,141,40154],["Habersham","2021-11-23",45800,107,40261],["Habersham","2021-11-24",45800,79,40340],["Habersham","2021-11-26",45800,72,40412],["Habersham","2021-11-27",45800,57,40469],["Habersham","2021-11-28",45800,28,40497],["Habersham","2021-11-29",45800,117,40614],["Habersham","2021-11-30",45800,172,40786],["Habersham","2021-12-01",45800,152,40938],["Habersham","2021-12-02",45800,126,41064],["Habersham","2021-12-03",45800,193,41257],["Habersham","2021-12-04",45800,71,41328],["Habersham","2021-12-05",45800,37,41365],["Habersham","2021-12-06",45800,114,41479],["Habersham","2021-12-07",45800,122,41601],["Habersham","2021-12-08",45800,118,41719],["Habersham","2021-12-09",45800,227,41946],["Habersham","2021-12-10",45800,182,42128],["Habersham","2021-12-11",45800,57,42185],["Habersham","2021-12-12",45800,26,42211],["Habersham","2021-12-13",45800,81,42292],["Habersham","2021-12-14",45800,81,42373],["Habersham","2021-12-15",45800,94,42467],["Habersham","2021-12-16",45800,88,42555],["Habersham","2021-12-17",45800,101,42656],["Habersham","2021-12-18",45800,58,42714],["Habersham","2021-12-19",45800,38,42752],["Habersham","2021-12-20",45800,121,42873],["Habersham","2021-12-21",45800,144,43017],["Habersham","2021-12-22",45800,129,43146],["Habersham","2021-12-23",45800,84,43230],["Habersham","2021-12-24",45800,14,43244],["Habersham","2021-12-26",45800,28,43272],["Habersham","2021-12-27",45800,89,43361],["Habersham","2021-12-28",45800,98,43459],["Habersham","2021-12-29",45800,113,43572],["Habersham","2021-12-30",45800,99,43671],["Habersham","2021-12-31",45800,44,43715],["Habersham","2022-01-01",45800,34,43749],["Habersham","2022-01-02",45800,32,43781],["Habersham","2022-01-03",45800,36,43817],["Hall","2020-12-12",206349,1,1],["Hall","2020-12-14",206349,1,2],["Hall","2020-12-15",206349,1,3],["Hall","2020-12-16",206349,4,7],["Hall","2020-12-17",206349,13,20],["Hall","2020-12-18",206349,148,168],["Hall","2020-12-19",206349,62,230],["Hall","2020-12-20",206349,65,295],["Hall","2020-12-21",206349,177,472],["Hall","2020-12-22",206349,237,709],["Hall","2020-12-23",206349,296,1005],["Hall","2020-12-24",206349,19,1024],["Hall","2020-12-26",206349,42,1066],["Hall","2020-12-27",206349,37,1103],["Hall","2020-12-28",206349,345,1448],["Hall","2020-12-29",206349,336,1784],["Hall","2020-12-30",206349,221,2005],["Hall","2020-12-31",206349,158,2163],["Hall","2021-01-01",206349,154,2317],["Hall","2021-01-02",206349,11,2328],["Hall","2021-01-03",206349,24,2352],["Hall","2021-01-04",206349,188,2540],["Hall","2021-01-05",206349,183,2723],["Hall","2021-01-06",206349,199,2922],["Hall","2021-01-07",206349,282,3204],["Hall","2021-01-08",206349,266,3470],["Hall","2021-01-09",206349,121,3591],["Hall","2021-01-10",206349,44,3635],["Hall","2021-01-11",206349,829,4464],["Hall","2021-01-12",206349,453,4917],["Hall","2021-01-13",206349,719,5636],["Hall","2021-01-14",206349,825,6461],["Hall","2021-01-15",206349,647,7108],["Hall","2021-01-16",206349,952,8060],["Hall","2021-01-17",206349,340,8400],["Hall","2021-01-18",206349,1157,9557],["Hall","2021-01-19",206349,1115,10672],["Hall","2021-01-20",206349,873,11545],["Hall","2021-01-21",206349,454,11999],["Hall","2021-01-22",206349,928,12927],["Hall","2021-01-23",206349,708,13635],["Hall","2021-01-24",206349,173,13808],["Hall","2021-01-25",206349,765,14573],["Hall","2021-01-26",206349,818,15391],["Hall","2021-01-27",206349,1324,16715],["Hall","2021-01-28",206349,630,17345],["Hall","2021-01-29",206349,894,18239],["Hall","2021-01-30",206349,679,18918],["Hall","2021-01-31",206349,32,18950],["Hall","2021-02-01",206349,638,19588],["Hall","2021-02-02",206349,690,20278],["Hall","2021-02-03",206349,654,20932],["Hall","2021-02-04",206349,672,21604],["Hall","2021-02-05",206349,595,22199],["Hall","2021-02-06",206349,530,22729],["Hall","2021-02-07",206349,50,22779],["Hall","2021-02-08",206349,841,23620],["Hall","2021-02-09",206349,744,24364],["Hall","2021-02-10",206349,825,25189],["Hall","2021-02-11",206349,968,26157],["Hall","2021-02-12",206349,715,26872],["Hall","2021-02-13",206349,1408,28280],["Hall","2021-02-14",206349,320,28600],["Hall","2021-02-15",206349,1185,29785],["Hall","2021-02-16",206349,1204,30989],["Hall","2021-02-17",206349,1055,32044],["Hall","2021-02-18",206349,617,32661],["Hall","2021-02-19",206349,791,33452],["Hall","2021-02-20",206349,744,34196],["Hall","2021-02-21",206349,284,34480],["Hall","2021-02-22",206349,472,34952],["Hall","2021-02-23",206349,933,35885],["Hall","2021-02-24",206349,1184,37069],["Hall","2021-02-25",206349,1035,38104],["Hall","2021-02-26",206349,766,38870],["Hall","2021-02-27",206349,878,39748],["Hall","2021-02-28",206349,175,39923],["Hall","2021-03-01",206349,752,40675],["Hall","2021-03-02",206349,820,41495],["Hall","2021-03-03",206349,716,42211],["Hall","2021-03-04",206349,883,43094],["Hall","2021-03-05",206349,776,43870],["Hall","2021-03-06",206349,612,44482],["Hall","2021-03-07",206349,364,44846],["Hall","2021-03-08",206349,657,45503],["Hall","2021-03-09",206349,1024,46527],["Hall","2021-03-10",206349,1227,47754],["Hall","2021-03-11",206349,1300,49054],["Hall","2021-03-12",206349,1349,50403],["Hall","2021-03-13",206349,1307,51710],["Hall","2021-03-14",206349,152,51862],["Hall","2021-03-15",206349,1072,52934],["Hall","2021-03-16",206349,1461,54395],["Hall","2021-03-17",206349,1360,55755],["Hall","2021-03-18",206349,1206,56961],["Hall","2021-03-19",206349,868,57829],["Hall","2021-03-20",206349,695,58524],["Hall","2021-03-21",206349,607,59131],["Hall","2021-03-22",206349,703,59834],["Hall","2021-03-23",206349,1075,60909],["Hall","2021-03-24",206349,1326,62235],["Hall","2021-03-25",206349,1653,63888],["Hall","2021-03-26",206349,1077,64965],["Hall","2021-03-27",206349,976,65941],["Hall","2021-03-28",206349,464,66405],["Hall","2021-03-29",206349,1113,67518],["Hall","2021-03-30",206349,1970,69488],["Hall","2021-03-31",206349,2001,71489],["Hall","2021-04-01",206349,1693,73182],["Hall","2021-04-02",206349,1261,74443],["Hall","2021-04-03",206349,843,75286],["Hall","2021-04-04",206349,301,75587],["Hall","2021-04-05",206349,1743,77330],["Hall","2021-04-06",206349,1931,79261],["Hall","2021-04-07",206349,1926,81187],["Hall","2021-04-08",206349,1762,82949],["Hall","2021-04-09",206349,1659,84608],["Hall","2021-04-10",206349,1058,85666],["Hall","2021-04-11",206349,700,86366],["Hall","2021-04-12",206349,1171,87537],["Hall","2021-04-13",206349,1436,88973],["Hall","2021-04-14",206349,1684,90657],["Hall","2021-04-15",206349,1432,92089],["Hall","2021-04-16",206349,1519,93608],["Hall","2021-04-17",206349,683,94291],["Hall","2021-04-18",206349,366,94657],["Hall","2021-04-19",206349,1042,95699],["Hall","2021-04-20",206349,1585,97284],["Hall","2021-04-21",206349,1519,98803],["Hall","2021-04-22",206349,1616,100419],["Hall","2021-04-23",206349,1465,101884],["Hall","2021-04-24",206349,919,102803],["Hall","2021-04-25",206349,289,103092],["Hall","2021-04-26",206349,1039,104131],["Hall","2021-04-27",206349,1442,105573],["Hall","2021-04-28",206349,1682,107255],["Hall","2021-04-29",206349,1445,108700],["Hall","2021-04-30",206349,1608,110308],["Hall","2021-05-01",206349,786,111094],["Hall","2021-05-02",206349,479,111573],["Hall","2021-05-03",206349,832,112405],["Hall","2021-05-04",206349,1189,113594],["Hall","2021-05-05",206349,1060,114654],["Hall","2021-05-06",206349,1088,115742],["Hall","2021-05-07",206349,1202,116944],["Hall","2021-05-08",206349,514,117458],["Hall","2021-05-09",206349,146,117604],["Hall","2021-05-10",206349,517,118121],["Hall","2021-05-11",206349,755,118876],["Hall","2021-05-12",206349,656,119532],["Hall","2021-05-13",206349,834,120366],["Hall","2021-05-14",206349,900,121266],["Hall","2021-05-15",206349,768,122034],["Hall","2021-05-16",206349,339,122373],["Hall","2021-05-17",206349,636,123009],["Hall","2021-05-18",206349,891,123900],["Hall","2021-05-19",206349,916,124816],["Hall","2021-05-20",206349,922,125738],["Hall","2021-05-21",206349,638,126376],["Hall","2021-05-22",206349,497,126873],["Hall","2021-05-23",206349,314,127187],["Hall","2021-05-24",206349,480,127667],["Hall","2021-05-25",206349,658,128325],["Hall","2021-05-26",206349,679,129004],["Hall","2021-05-27",206349,714,129718],["Hall","2021-05-28",206349,839,130557],["Hall","2021-05-29",206349,311,130868],["Hall","2021-05-30",206349,156,131024],["Hall","2021-05-31",206349,91,131115],["Hall","2021-06-01",206349,570,131685],["Hall","2021-06-02",206349,457,132142],["Hall","2021-06-03",206349,508,132650],["Hall","2021-06-04",206349,608,133258],["Hall","2021-06-05",206349,372,133630],["Hall","2021-06-06",206349,299,133929],["Hall","2021-06-07",206349,368,134297],["Hall","2021-06-08",206349,480,134777],["Hall","2021-06-09",206349,447,135224],["Hall","2021-06-10",206349,427,135651],["Hall","2021-06-11",206349,496,136147],["Hall","2021-06-12",206349,244,136391],["Hall","2021-06-13",206349,196,136587],["Hall","2021-06-14",206349,330,136917],["Hall","2021-06-15",206349,384,137301],["Hall","2021-06-16",206349,338,137639],["Hall","2021-06-17",206349,344,137983],["Hall","2021-06-18",206349,474,138457],["Hall","2021-06-19",206349,218,138675],["Hall","2021-06-20",206349,169,138844],["Hall","2021-06-21",206349,187,139031],["Hall","2021-06-22",206349,345,139376],["Hall","2021-06-23",206349,332,139708],["Hall","2021-06-24",206349,482,140190],["Hall","2021-06-25",206349,393,140583],["Hall","2021-06-26",206349,232,140815],["Hall","2021-06-27",206349,217,141032],["Hall","2021-06-28",206349,234,141266],["Hall","2021-06-29",206349,286,141552],["Hall","2021-06-30",206349,313,141865],["Hall","2021-07-01",206349,269,142134],["Hall","2021-07-02",206349,368,142502],["Hall","2021-07-03",206349,139,142641],["Hall","2021-07-04",206349,18,142659],["Hall","2021-07-05",206349,164,142823],["Hall","2021-07-06",206349,216,143039],["Hall","2021-07-07",206349,273,143312],["Hall","2021-07-08",206349,209,143521],["Hall","2021-07-09",206349,300,143821],["Hall","2021-07-10",206349,197,144018],["Hall","2021-07-11",206349,140,144158],["Hall","2021-07-12",206349,204,144362],["Hall","2021-07-13",206349,205,144567],["Hall","2021-07-14",206349,267,144834],["Hall","2021-07-15",206349,295,145129],["Hall","2021-07-16",206349,296,145425],["Hall","2021-07-17",206349,194,145619],["Hall","2021-07-18",206349,299,145918],["Hall","2021-07-19",206349,246,146164],["Hall","2021-07-20",206349,313,146477],["Hall","2021-07-21",206349,295,146772],["Hall","2021-07-22",206349,341,147113],["Hall","2021-07-23",206349,462,147575],["Hall","2021-07-24",206349,250,147825],["Hall","2021-07-25",206349,171,147996],["Hall","2021-07-26",206349,336,148332],["Hall","2021-07-27",206349,324,148656],["Hall","2021-07-28",206349,441,149097],["Hall","2021-07-29",206349,412,149509],["Hall","2021-07-30",206349,538,150047],["Hall","2021-07-31",206349,359,150406],["Hall","2021-08-01",206349,213,150619],["Hall","2021-08-02",206349,409,151028],["Hall","2021-08-03",206349,489,151517],["Hall","2021-08-04",206349,467,151984],["Hall","2021-08-05",206349,503,152487],["Hall","2021-08-06",206349,528,153015],["Hall","2021-08-07",206349,454,153469],["Hall","2021-08-08",206349,418,153887],["Hall","2021-08-09",206349,436,154323],["Hall","2021-08-10",206349,481,154804],["Hall","2021-08-11",206349,442,155246],["Hall","2021-08-12",206349,459,155705],["Hall","2021-08-13",206349,574,156279],["Hall","2021-08-14",206349,395,156674],["Hall","2021-08-15",206349,320,156994],["Hall","2021-08-16",206349,480,157474],["Hall","2021-08-17",206349,545,158019],["Hall","2021-08-18",206349,503,158522],["Hall","2021-08-19",206349,542,159064],["Hall","2021-08-20",206349,772,159836],["Hall","2021-08-21",206349,474,160310],["Hall","2021-08-22",206349,277,160587],["Hall","2021-08-23",206349,523,161110],["Hall","2021-08-24",206349,543,161653],["Hall","2021-08-25",206349,576,162229],["Hall","2021-08-26",206349,729,162958],["Hall","2021-08-27",206349,736,163694],["Hall","2021-08-28",206349,555,164249],["Hall","2021-08-29",206349,494,164743],["Hall","2021-08-30",206349,571,165314],["Hall","2021-08-31",206349,561,165875],["Hall","2021-09-01",206349,574,166449],["Hall","2021-09-02",206349,599,167048],["Hall","2021-09-03",206349,686,167734],["Hall","2021-09-04",206349,406,168140],["Hall","2021-09-05",206349,235,168375],["Hall","2021-09-06",206349,97,168472],["Hall","2021-09-07",206349,562,169034],["Hall","2021-09-08",206349,499,169533],["Hall","2021-09-09",206349,509,170042],["Hall","2021-09-10",206349,638,170680],["Hall","2021-09-11",206349,355,171035],["Hall","2021-09-12",206349,252,171287],["Hall","2021-09-13",206349,421,171708],["Hall","2021-09-14",206349,440,172148],["Hall","2021-09-15",206349,414,172562],["Hall","2021-09-16",206349,456,173018],["Hall","2021-09-17",206349,558,173576],["Hall","2021-09-18",206349,325,173901],["Hall","2021-09-19",206349,335,174236],["Hall","2021-09-20",206349,454,174690],["Hall","2021-09-21",206349,386,175076],["Hall","2021-09-22",206349,385,175461],["Hall","2021-09-23",206349,341,175802],["Hall","2021-09-24",206349,627,176429],["Hall","2021-09-25",206349,357,176786],["Hall","2021-09-26",206349,211,176997],["Hall","2021-09-27",206349,500,177497],["Hall","2021-09-28",206349,540,178037],["Hall","2021-09-29",206349,545,178582],["Hall","2021-09-30",206349,576,179158],["Hall","2021-10-01",206349,622,179780],["Hall","2021-10-02",206349,233,180013],["Hall","2021-10-03",206349,158,180171],["Hall","2021-10-04",206349,412,180583],["Hall","2021-10-05",206349,432,181015],["Hall","2021-10-06",206349,587,181602],["Hall","2021-10-07",206349,449,182051],["Hall","2021-10-08",206349,576,182627],["Hall","2021-10-09",206349,256,182883],["Hall","2021-10-10",206349,183,183066],["Hall","2021-10-11",206349,358,183424],["Hall","2021-10-12",206349,388,183812],["Hall","2021-10-13",206349,353,184165],["Hall","2021-10-14",206349,551,184716],["Hall","2021-10-15",206349,465,185181],["Hall","2021-10-16",206349,205,185386],["Hall","2021-10-17",206349,93,185479],["Hall","2021-10-18",206349,316,185795],["Hall","2021-10-19",206349,303,186098],["Hall","2021-10-20",206349,279,186377],["Hall","2021-10-21",206349,312,186689],["Hall","2021-10-22",206349,510,187199],["Hall","2021-10-23",206349,337,187536],["Hall","2021-10-24",206349,231,187767],["Hall","2021-10-25",206349,699,188466],["Hall","2021-10-26",206349,533,188999],["Hall","2021-10-27",206349,652,189651],["Hall","2021-10-28",206349,591,190242],["Hall","2021-10-29",206349,619,190861],["Hall","2021-10-30",206349,264,191125],["Hall","2021-10-31",206349,164,191289],["Hall","2021-11-01",206349,472,191761],["Hall","2021-11-02",206349,511,192272],["Hall","2021-11-03",206349,450,192722],["Hall","2021-11-04",206349,471,193193],["Hall","2021-11-05",206349,580,193773],["Hall","2021-11-06",206349,250,194023],["Hall","2021-11-07",206349,173,194196],["Hall","2021-11-08",206349,426,194622],["Hall","2021-11-09",206349,489,195111],["Hall","2021-11-10",206349,752,195863],["Hall","2021-11-11",206349,578,196441],["Hall","2021-11-12",206349,542,196983],["Hall","2021-11-13",206349,250,197233],["Hall","2021-11-14",206349,169,197402],["Hall","2021-11-15",206349,412,197814],["Hall","2021-11-16",206349,505,198319],["Hall","2021-11-17",206349,483,198802],["Hall","2021-11-18",206349,506,199308],["Hall","2021-11-19",206349,717,200025],["Hall","2021-11-20",206349,326,200351],["Hall","2021-11-21",206349,179,200530],["Hall","2021-11-22",206349,539,201069],["Hall","2021-11-23",206349,450,201519],["Hall","2021-11-24",206349,360,201879],["Hall","2021-11-25",206349,3,201882],["Hall","2021-11-26",206349,347,202229],["Hall","2021-11-27",206349,266,202495],["Hall","2021-11-28",206349,200,202695],["Hall","2021-11-29",206349,603,203298],["Hall","2021-11-30",206349,640,203938],["Hall","2021-12-01",206349,692,204630],["Hall","2021-12-02",206349,655,205285],["Hall","2021-12-03",206349,739,206024],["Hall","2021-12-04",206349,361,206385],["Hall","2021-12-05",206349,216,206601],["Hall","2021-12-06",206349,510,207111],["Hall","2021-12-07",206349,650,207761],["Hall","2021-12-08",206349,634,208395],["Hall","2021-12-09",206349,627,209022],["Hall","2021-12-10",206349,523,209545],["Hall","2021-12-11",206349,324,209869],["Hall","2021-12-12",206349,207,210076],["Hall","2021-12-13",206349,515,210591],["Hall","2021-12-14",206349,437,211028],["Hall","2021-12-15",206349,433,211461],["Hall","2021-12-16",206349,464,211925],["Hall","2021-12-17",206349,536,212461],["Hall","2021-12-18",206349,306,212767],["Hall","2021-12-19",206349,207,212974],["Hall","2021-12-20",206349,514,213488],["Hall","2021-12-21",206349,616,214104],["Hall","2021-12-22",206349,572,214676],["Hall","2021-12-23",206349,488,215164],["Hall","2021-12-24",206349,127,215291],["Hall","2021-12-26",206349,143,215434],["Hall","2021-12-27",206349,491,215925],["Hall","2021-12-28",206349,565,216490],["Hall","2021-12-29",206349,582,217072],["Hall","2021-12-30",206349,596,217668],["Hall","2021-12-31",206349,199,217867],["Hall","2022-01-01",206349,52,217919],["Hall","2022-01-02",206349,153,218072],["Hall","2022-01-03",206349,231,218303],["Hancock","2020-12-17",8193,2,2],["Hancock","2020-12-21",8193,2,4],["Hancock","2020-12-22",8193,1,5],["Hancock","2020-12-23",8193,6,11],["Hancock","2020-12-24",8193,1,12],["Hancock","2020-12-27",8193,1,13],["Hancock","2020-12-28",8193,34,47],["Hancock","2020-12-29",8193,4,51],["Hancock","2020-12-30",8193,5,56],["Hancock","2020-12-31",8193,1,57],["Hancock","2021-01-01",8193,1,58],["Hancock","2021-01-04",8193,15,73],["Hancock","2021-01-05",8193,8,81],["Hancock","2021-01-06",8193,6,87],["Hancock","2021-01-07",8193,46,133],["Hancock","2021-01-08",8193,8,141],["Hancock","2021-01-09",8193,1,142],["Hancock","2021-01-10",8193,21,163],["Hancock","2021-01-11",8193,8,171],["Hancock","2021-01-12",8193,20,191],["Hancock","2021-01-13",8193,16,207],["Hancock","2021-01-14",8193,22,229],["Hancock","2021-01-15",8193,15,244],["Hancock","2021-01-16",8193,5,249],["Hancock","2021-01-17",8193,1,250],["Hancock","2021-01-18",8193,50,300],["Hancock","2021-01-19",8193,79,379],["Hancock","2021-01-20",8193,26,405],["Hancock","2021-01-21",8193,55,460],["Hancock","2021-01-22",8193,32,492],["Hancock","2021-01-23",8193,10,502],["Hancock","2021-01-24",8193,6,508],["Hancock","2021-01-25",8193,44,552],["Hancock","2021-01-26",8193,19,571],["Hancock","2021-01-27",8193,33,604],["Hancock","2021-01-28",8193,71,675],["Hancock","2021-01-29",8193,49,724],["Hancock","2021-01-30",8193,2,726],["Hancock","2021-01-31",8193,32,758],["Hancock","2021-02-01",8193,61,819],["Hancock","2021-02-02",8193,52,871],["Hancock","2021-02-03",8193,48,919],["Hancock","2021-02-04",8193,84,1003],["Hancock","2021-02-05",8193,108,1111],["Hancock","2021-02-06",8193,2,1113],["Hancock","2021-02-07",8193,2,1115],["Hancock","2021-02-08",8193,33,1148],["Hancock","2021-02-09",8193,56,1204],["Hancock","2021-02-10",8193,34,1238],["Hancock","2021-02-11",8193,65,1303],["Hancock","2021-02-12",8193,28,1331],["Hancock","2021-02-13",8193,6,1337],["Hancock","2021-02-14",8193,1,1338],["Hancock","2021-02-15",8193,23,1361],["Hancock","2021-02-16",8193,105,1466],["Hancock","2021-02-17",8193,48,1514],["Hancock","2021-02-18",8193,87,1601],["Hancock","2021-02-19",8193,29,1630],["Hancock","2021-02-20",8193,18,1648],["Hancock","2021-02-21",8193,3,1651],["Hancock","2021-02-22",8193,36,1687],["Hancock","2021-02-23",8193,24,1711],["Hancock","2021-02-24",8193,34,1745],["Hancock","2021-02-25",8193,105,1850],["Hancock","2021-02-26",8193,68,1918],["Hancock","2021-02-27",8193,2,1920],["Hancock","2021-02-28",8193,6,1926],["Hancock","2021-03-01",8193,54,1980],["Hancock","2021-03-02",8193,85,2065],["Hancock","2021-03-03",8193,58,2123],["Hancock","2021-03-04",8193,69,2192],["Hancock","2021-03-05",8193,131,2323],["Hancock","2021-03-06",8193,6,2329],["Hancock","2021-03-07",8193,3,2332],["Hancock","2021-03-08",8193,32,2364],["Hancock","2021-03-09",8193,117,2481],["Hancock","2021-03-10",8193,44,2525],["Hancock","2021-03-11",8193,110,2635],["Hancock","2021-03-12",8193,47,2682],["Hancock","2021-03-13",8193,6,2688],["Hancock","2021-03-14",8193,2,2690],["Hancock","2021-03-15",8193,29,2719],["Hancock","2021-03-16",8193,168,2887],["Hancock","2021-03-17",8193,55,2942],["Hancock","2021-03-18",8193,30,2972],["Hancock","2021-03-19",8193,134,3106],["Hancock","2021-03-20",8193,12,3118],["Hancock","2021-03-21",8193,1,3119],["Hancock","2021-03-22",8193,14,3133],["Hancock","2021-03-23",8193,79,3212],["Hancock","2021-03-24",8193,33,3245],["Hancock","2021-03-25",8193,107,3352],["Hancock","2021-03-26",8193,79,3431],["Hancock","2021-03-27",8193,18,3449],["Hancock","2021-03-28",8193,6,3455],["Hancock","2021-03-29",8193,23,3478],["Hancock","2021-03-30",8193,132,3610],["Hancock","2021-03-31",8193,35,3645],["Hancock","2021-04-01",8193,107,3752],["Hancock","2021-04-02",8193,116,3868],["Hancock","2021-04-03",8193,17,3885],["Hancock","2021-04-04",8193,2,3887],["Hancock","2021-04-05",8193,26,3913],["Hancock","2021-04-06",8193,111,4024],["Hancock","2021-04-07",8193,35,4059],["Hancock","2021-04-08",8193,113,4172],["Hancock","2021-04-09",8193,49,4221],["Hancock","2021-04-10",8193,16,4237],["Hancock","2021-04-11",8193,7,4244],["Hancock","2021-04-12",8193,24,4268],["Hancock","2021-04-13",8193,146,4414],["Hancock","2021-04-14",8193,41,4455],["Hancock","2021-04-15",8193,32,4487],["Hancock","2021-04-16",8193,53,4540],["Hancock","2021-04-17",8193,15,4555],["Hancock","2021-04-18",8193,1,4556],["Hancock","2021-04-19",8193,17,4573],["Hancock","2021-04-20",8193,140,4713],["Hancock","2021-04-21",8193,37,4750],["Hancock","2021-04-22",8193,83,4833],["Hancock","2021-04-23",8193,57,4890],["Hancock","2021-04-24",8193,12,4902],["Hancock","2021-04-25",8193,2,4904],["Hancock","2021-04-26",8193,23,4927],["Hancock","2021-04-27",8193,99,5026],["Hancock","2021-04-28",8193,18,5044],["Hancock","2021-04-29",8193,74,5118],["Hancock","2021-04-30",8193,106,5224],["Hancock","2021-05-01",8193,18,5242],["Hancock","2021-05-02",8193,5,5247],["Hancock","2021-05-03",8193,8,5255],["Hancock","2021-05-04",8193,67,5322],["Hancock","2021-05-05",8193,24,5346],["Hancock","2021-05-06",8193,60,5406],["Hancock","2021-05-07",8193,19,5425],["Hancock","2021-05-08",8193,12,5437],["Hancock","2021-05-09",8193,6,5443],["Hancock","2021-05-10",8193,8,5451],["Hancock","2021-05-11",8193,80,5531],["Hancock","2021-05-12",8193,23,5554],["Hancock","2021-05-13",8193,23,5577],["Hancock","2021-05-14",8193,10,5587],["Hancock","2021-05-15",8193,14,5601],["Hancock","2021-05-16",8193,3,5604],["Hancock","2021-05-17",8193,18,5622],["Hancock","2021-05-18",8193,66,5688],["Hancock","2021-05-19",8193,18,5706],["Hancock","2021-05-20",8193,20,5726],["Hancock","2021-05-21",8193,21,5747],["Hancock","2021-05-22",8193,4,5751],["Hancock","2021-05-23",8193,2,5753],["Hancock","2021-05-24",8193,12,5765],["Hancock","2021-05-25",8193,51,5816],["Hancock","2021-05-26",8193,15,5831],["Hancock","2021-05-27",8193,16,5847],["Hancock","2021-05-28",8193,14,5861],["Hancock","2021-05-29",8193,6,5867],["Hancock","2021-05-30",8193,3,5870],["Hancock","2021-05-31",8193,2,5872],["Hancock","2021-06-01",8193,44,5916],["Hancock","2021-06-02",8193,27,5943],["Hancock","2021-06-03",8193,11,5954],["Hancock","2021-06-04",8193,23,5977],["Hancock","2021-06-05",8193,5,5982],["Hancock","2021-06-06",8193,5,5987],["Hancock","2021-06-07",8193,8,5995],["Hancock","2021-06-08",8193,46,6041],["Hancock","2021-06-09",8193,16,6057],["Hancock","2021-06-10",8193,14,6071],["Hancock","2021-06-11",8193,8,6079],["Hancock","2021-06-12",8193,5,6084],["Hancock","2021-06-13",8193,2,6086],["Hancock","2021-06-14",8193,11,6097],["Hancock","2021-06-15",8193,46,6143],["Hancock","2021-06-16",8193,23,6166],["Hancock","2021-06-17",8193,20,6186],["Hancock","2021-06-18",8193,19,6205],["Hancock","2021-06-19",8193,16,6221],["Hancock","2021-06-20",8193,2,6223],["Hancock","2021-06-21",8193,6,6229],["Hancock","2021-06-22",8193,27,6256],["Hancock","2021-06-23",8193,9,6265],["Hancock","2021-06-24",8193,12,6277],["Hancock","2021-06-25",8193,15,6292],["Hancock","2021-06-26",8193,7,6299],["Hancock","2021-06-27",8193,2,6301],["Hancock","2021-06-28",8193,5,6306],["Hancock","2021-06-29",8193,20,6326],["Hancock","2021-06-30",8193,14,6340],["Hancock","2021-07-01",8193,15,6355],["Hancock","2021-07-02",8193,12,6367],["Hancock","2021-07-03",8193,4,6371],["Hancock","2021-07-05",8193,4,6375],["Hancock","2021-07-06",8193,23,6398],["Hancock","2021-07-07",8193,13,6411],["Hancock","2021-07-08",8193,6,6417],["Hancock","2021-07-09",8193,11,6428],["Hancock","2021-07-10",8193,4,6432],["Hancock","2021-07-11",8193,1,6433],["Hancock","2021-07-12",8193,2,6435],["Hancock","2021-07-13",8193,20,6455],["Hancock","2021-07-14",8193,6,6461],["Hancock","2021-07-15",8193,15,6476],["Hancock","2021-07-16",8193,9,6485],["Hancock","2021-07-17",8193,2,6487],["Hancock","2021-07-18",8193,2,6489],["Hancock","2021-07-19",8193,5,6494],["Hancock","2021-07-20",8193,24,6518],["Hancock","2021-07-21",8193,18,6536],["Hancock","2021-07-22",8193,13,6549],["Hancock","2021-07-23",8193,15,6564],["Hancock","2021-07-24",8193,8,6572],["Hancock","2021-07-25",8193,5,6577],["Hancock","2021-07-26",8193,16,6593],["Hancock","2021-07-27",8193,56,6649],["Hancock","2021-07-28",8193,19,6668],["Hancock","2021-07-29",8193,21,6689],["Hancock","2021-07-30",8193,47,6736],["Hancock","2021-07-31",8193,9,6745],["Hancock","2021-08-01",8193,4,6749],["Hancock","2021-08-02",8193,8,6757],["Hancock","2021-08-03",8193,35,6792],["Hancock","2021-08-04",8193,14,6806],["Hancock","2021-08-05",8193,10,6816],["Hancock","2021-08-06",8193,13,6829],["Hancock","2021-08-07",8193,6,6835],["Hancock","2021-08-08",8193,2,6837],["Hancock","2021-08-09",8193,16,6853],["Hancock","2021-08-10",8193,23,6876],["Hancock","2021-08-11",8193,28,6904],["Hancock","2021-08-12",8193,19,6923],["Hancock","2021-08-13",8193,15,6938],["Hancock","2021-08-14",8193,9,6947],["Hancock","2021-08-15",8193,7,6954],["Hancock","2021-08-16",8193,12,6966],["Hancock","2021-08-17",8193,34,7000],["Hancock","2021-08-18",8193,15,7015],["Hancock","2021-08-19",8193,20,7035],["Hancock","2021-08-20",8193,10,7045],["Hancock","2021-08-21",8193,18,7063],["Hancock","2021-08-22",8193,7,7070],["Hancock","2021-08-23",8193,12,7082],["Hancock","2021-08-24",8193,68,7150],["Hancock","2021-08-25",8193,28,7178],["Hancock","2021-08-26",8193,16,7194],["Hancock","2021-08-27",8193,40,7234],["Hancock","2021-08-28",8193,12,7246],["Hancock","2021-08-29",8193,9,7255],["Hancock","2021-08-30",8193,15,7270],["Hancock","2021-08-31",8193,56,7326],["Hancock","2021-09-01",8193,24,7350],["Hancock","2021-09-02",8193,18,7368],["Hancock","2021-09-03",8193,19,7387],["Hancock","2021-09-04",8193,9,7396],["Hancock","2021-09-05",8193,7,7403],["Hancock","2021-09-06",8193,2,7405],["Hancock","2021-09-07",8193,41,7446],["Hancock","2021-09-08",8193,21,7467],["Hancock","2021-09-09",8193,14,7481],["Hancock","2021-09-10",8193,19,7500],["Hancock","2021-09-11",8193,7,7507],["Hancock","2021-09-12",8193,6,7513],["Hancock","2021-09-13",8193,12,7525],["Hancock","2021-09-14",8193,71,7596],["Hancock","2021-09-15",8193,15,7611],["Hancock","2021-09-16",8193,12,7623],["Hancock","2021-09-17",8193,14,7637],["Hancock","2021-09-18",8193,13,7650],["Hancock","2021-09-19",8193,5,7655],["Hancock","2021-09-20",8193,8,7663],["Hancock","2021-09-21",8193,62,7725],["Hancock","2021-09-22",8193,18,7743],["Hancock","2021-09-23",8193,7,7750],["Hancock","2021-09-24",8193,16,7766],["Hancock","2021-09-25",8193,4,7770],["Hancock","2021-09-26",8193,3,7773],["Hancock","2021-09-27",8193,7,7780],["Hancock","2021-09-28",8193,41,7821],["Hancock","2021-09-29",8193,14,7835],["Hancock","2021-09-30",8193,10,7845],["Hancock","2021-10-01",8193,14,7859],["Hancock","2021-10-02",8193,2,7861],["Hancock","2021-10-03",8193,2,7863],["Hancock","2021-10-04",8193,11,7874],["Hancock","2021-10-05",8193,37,7911],["Hancock","2021-10-06",8193,10,7921],["Hancock","2021-10-07",8193,10,7931],["Hancock","2021-10-08",8193,7,7938],["Hancock","2021-10-09",8193,5,7943],["Hancock","2021-10-10",8193,3,7946],["Hancock","2021-10-11",8193,9,7955],["Hancock","2021-10-12",8193,34,7989],["Hancock","2021-10-13",8193,7,7996],["Hancock","2021-10-14",8193,7,8003],["Hancock","2021-10-15",8193,6,8009],["Hancock","2021-10-16",8193,11,8020],["Hancock","2021-10-17",8193,3,8023],["Hancock","2021-10-18",8193,6,8029],["Hancock","2021-10-19",8193,29,8058],["Hancock","2021-10-20",8193,9,8067],["Hancock","2021-10-21",8193,10,8077],["Hancock","2021-10-22",8193,5,8082],["Hancock","2021-10-23",8193,10,8092],["Hancock","2021-10-24",8193,2,8094],["Hancock","2021-10-25",8193,14,8108],["Hancock","2021-10-26",8193,94,8202],["Hancock","2021-10-27",8193,23,8225],["Hancock","2021-10-28",8193,24,8249],["Hancock","2021-10-29",8193,38,8287],["Hancock","2021-10-30",8193,8,8295],["Hancock","2021-10-31",8193,5,8300],["Hancock","2021-11-01",8193,13,8313],["Hancock","2021-11-02",8193,164,8477],["Hancock","2021-11-03",8193,38,8515],["Hancock","2021-11-04",8193,12,8527],["Hancock","2021-11-05",8193,75,8602],["Hancock","2021-11-06",8193,5,8607],["Hancock","2021-11-07",8193,2,8609],["Hancock","2021-11-08",8193,11,8620],["Hancock","2021-11-09",8193,138,8758],["Hancock","2021-11-10",8193,25,8783],["Hancock","2021-11-11",8193,13,8796],["Hancock","2021-11-12",8193,40,8836],["Hancock","2021-11-13",8193,4,8840],["Hancock","2021-11-14",8193,5,8845],["Hancock","2021-11-15",8193,8,8853],["Hancock","2021-11-16",8193,115,8968],["Hancock","2021-11-17",8193,29,8997],["Hancock","2021-11-18",8193,33,9030],["Hancock","2021-11-19",8193,15,9045],["Hancock","2021-11-20",8193,5,9050],["Hancock","2021-11-21",8193,4,9054],["Hancock","2021-11-22",8193,29,9083],["Hancock","2021-11-23",8193,115,9198],["Hancock","2021-11-24",8193,9,9207],["Hancock","2021-11-26",8193,6,9213],["Hancock","2021-11-27",8193,4,9217],["Hancock","2021-11-28",8193,7,9224],["Hancock","2021-11-29",8193,8,9232],["Hancock","2021-11-30",8193,110,9342],["Hancock","2021-12-01",8193,30,9372],["Hancock","2021-12-02",8193,22,9394],["Hancock","2021-12-03",8193,18,9412],["Hancock","2021-12-04",8193,64,9476],["Hancock","2021-12-05",8193,10,9486],["Hancock","2021-12-06",8193,7,9493],["Hancock","2021-12-07",8193,78,9571],["Hancock","2021-12-08",8193,29,9600],["Hancock","2021-12-09",8193,14,9614],["Hancock","2021-12-10",8193,7,9621],["Hancock","2021-12-11",8193,9,9630],["Hancock","2021-12-12",8193,2,9632],["Hancock","2021-12-13",8193,9,9641],["Hancock","2021-12-14",8193,59,9700],["Hancock","2021-12-15",8193,32,9732],["Hancock","2021-12-16",8193,11,9743],["Hancock","2021-12-17",8193,11,9754],["Hancock","2021-12-18",8193,3,9757],["Hancock","2021-12-19",8193,2,9759],["Hancock","2021-12-20",8193,2,9761],["Hancock","2021-12-21",8193,84,9845],["Hancock","2021-12-22",8193,23,9868],["Hancock","2021-12-23",8193,28,9896],["Hancock","2021-12-24",8193,1,9897],["Hancock","2021-12-26",8193,6,9903],["Hancock","2021-12-27",8193,11,9914],["Hancock","2021-12-28",8193,83,9997],["Hancock","2021-12-29",8193,29,10026],["Hancock","2021-12-30",8193,15,10041],["Hancock","2021-12-31",8193,6,10047],["Hancock","2022-01-01",8193,1,10048],["Hancock","2022-01-02",8193,4,10052],["Hancock","2022-01-03",8193,2,10054],["Haralson","2020-12-19",30722,2,2],["Haralson","2020-12-20",30722,1,3],["Haralson","2020-12-21",30722,1,4],["Haralson","2020-12-22",30722,21,25],["Haralson","2020-12-23",30722,39,64],["Haralson","2020-12-24",30722,5,69],["Haralson","2020-12-28",30722,20,89],["Haralson","2020-12-29",30722,24,113],["Haralson","2020-12-30",30722,40,153],["Haralson","2020-12-31",30722,19,172],["Haralson","2021-01-01",30722,2,174],["Haralson","2021-01-02",30722,4,178],["Haralson","2021-01-03",30722,7,185],["Haralson","2021-01-04",30722,46,231],["Haralson","2021-01-05",30722,35,266],["Haralson","2021-01-06",30722,90,356],["Haralson","2021-01-07",30722,94,450],["Haralson","2021-01-08",30722,76,526],["Haralson","2021-01-09",30722,1,527],["Haralson","2021-01-10",30722,62,589],["Haralson","2021-01-11",30722,98,687],["Haralson","2021-01-12",30722,160,847],["Haralson","2021-01-13",30722,146,993],["Haralson","2021-01-14",30722,209,1202],["Haralson","2021-01-15",30722,134,1336],["Haralson","2021-01-16",30722,22,1358],["Haralson","2021-01-17",30722,5,1363],["Haralson","2021-01-18",30722,189,1552],["Haralson","2021-01-19",30722,145,1697],["Haralson","2021-01-20",30722,190,1887],["Haralson","2021-01-21",30722,106,1993],["Haralson","2021-01-22",30722,20,2013],["Haralson","2021-01-23",30722,8,2021],["Haralson","2021-01-24",30722,16,2037],["Haralson","2021-01-25",30722,93,2130],["Haralson","2021-01-26",30722,76,2206],["Haralson","2021-01-27",30722,190,2396],["Haralson","2021-01-28",30722,177,2573],["Haralson","2021-01-29",30722,94,2667],["Haralson","2021-01-30",30722,4,2671],["Haralson","2021-01-31",30722,61,2732],["Haralson","2021-02-01",30722,92,2824],["Haralson","2021-02-02",30722,74,2898],["Haralson","2021-02-03",30722,139,3037],["Haralson","2021-02-04",30722,187,3224],["Haralson","2021-02-05",30722,95,3319],["Haralson","2021-02-06",30722,6,3325],["Haralson","2021-02-07",30722,2,3327],["Haralson","2021-02-08",30722,112,3439],["Haralson","2021-02-09",30722,151,3590],["Haralson","2021-02-10",30722,163,3753],["Haralson","2021-02-11",30722,190,3943],["Haralson","2021-02-12",30722,137,4080],["Haralson","2021-02-13",30722,33,4113],["Haralson","2021-02-14",30722,2,4115],["Haralson","2021-02-15",30722,188,4303],["Haralson","2021-02-16",30722,21,4324],["Haralson","2021-02-17",30722,309,4633],["Haralson","2021-02-18",30722,103,4736],["Haralson","2021-02-19",30722,33,4769],["Haralson","2021-02-20",30722,11,4780],["Haralson","2021-02-21",30722,7,4787],["Haralson","2021-02-22",30722,67,4854],["Haralson","2021-02-23",30722,133,4987],["Haralson","2021-02-24",30722,132,5119],["Haralson","2021-02-25",30722,135,5254],["Haralson","2021-02-26",30722,136,5390],["Haralson","2021-02-27",30722,27,5417],["Haralson","2021-02-28",30722,20,5437],["Haralson","2021-03-01",30722,87,5524],["Haralson","2021-03-02",30722,173,5697],["Haralson","2021-03-03",30722,138,5835],["Haralson","2021-03-04",30722,104,5939],["Haralson","2021-03-05",30722,93,6032],["Haralson","2021-03-06",30722,24,6056],["Haralson","2021-03-07",30722,24,6080],["Haralson","2021-03-08",30722,83,6163],["Haralson","2021-03-09",30722,86,6249],["Haralson","2021-03-10",30722,166,6415],["Haralson","2021-03-11",30722,85,6500],["Haralson","2021-03-12",30722,168,6668],["Haralson","2021-03-13",30722,49,6717],["Haralson","2021-03-14",30722,23,6740],["Haralson","2021-03-15",30722,143,6883],["Haralson","2021-03-16",30722,197,7080],["Haralson","2021-03-17",30722,226,7306],["Haralson","2021-03-18",30722,102,7408],["Haralson","2021-03-19",30722,125,7533],["Haralson","2021-03-20",30722,23,7556],["Haralson","2021-03-21",30722,14,7570],["Haralson","2021-03-22",30722,64,7634],["Haralson","2021-03-23",30722,107,7741],["Haralson","2021-03-24",30722,93,7834],["Haralson","2021-03-25",30722,105,7939],["Haralson","2021-03-26",30722,106,8045],["Haralson","2021-03-27",30722,46,8091],["Haralson","2021-03-28",30722,39,8130],["Haralson","2021-03-29",30722,132,8262],["Haralson","2021-03-30",30722,170,8432],["Haralson","2021-03-31",30722,268,8700],["Haralson","2021-04-01",30722,152,8852],["Haralson","2021-04-02",30722,97,8949],["Haralson","2021-04-03",30722,46,8995],["Haralson","2021-04-04",30722,41,9036],["Haralson","2021-04-05",30722,171,9207],["Haralson","2021-04-06",30722,139,9346],["Haralson","2021-04-07",30722,143,9489],["Haralson","2021-04-08",30722,125,9614],["Haralson","2021-04-09",30722,103,9717],["Haralson","2021-04-10",30722,51,9768],["Haralson","2021-04-11",30722,46,9814],["Haralson","2021-04-12",30722,231,10045],["Haralson","2021-04-13",30722,123,10168],["Haralson","2021-04-14",30722,312,10480],["Haralson","2021-04-15",30722,144,10624],["Haralson","2021-04-16",30722,155,10779],["Haralson","2021-04-17",30722,26,10805],["Haralson","2021-04-18",30722,15,10820],["Haralson","2021-04-19",30722,137,10957],["Haralson","2021-04-20",30722,97,11054],["Haralson","2021-04-21",30722,227,11281],["Haralson","2021-04-22",30722,128,11409],["Haralson","2021-04-23",30722,103,11512],["Haralson","2021-04-24",30722,38,11550],["Haralson","2021-04-25",30722,20,11570],["Haralson","2021-04-26",30722,121,11691],["Haralson","2021-04-27",30722,88,11779],["Haralson","2021-04-28",30722,129,11908],["Haralson","2021-04-29",30722,103,12011],["Haralson","2021-04-30",30722,135,12146],["Haralson","2021-05-01",30722,45,12191],["Haralson","2021-05-02",30722,21,12212],["Haralson","2021-05-03",30722,96,12308],["Haralson","2021-05-04",30722,57,12365],["Haralson","2021-05-05",30722,96,12461],["Haralson","2021-05-06",30722,81,12542],["Haralson","2021-05-07",30722,79,12621],["Haralson","2021-05-08",30722,34,12655],["Haralson","2021-05-09",30722,12,12667],["Haralson","2021-05-10",30722,93,12760],["Haralson","2021-05-11",30722,58,12818],["Haralson","2021-05-12",30722,107,12925],["Haralson","2021-05-13",30722,82,13007],["Haralson","2021-05-14",30722,57,13064],["Haralson","2021-05-15",30722,48,13112],["Haralson","2021-05-16",30722,25,13137],["Haralson","2021-05-17",30722,66,13203],["Haralson","2021-05-18",30722,71,13274],["Haralson","2021-05-19",30722,107,13381],["Haralson","2021-05-20",30722,44,13425],["Haralson","2021-05-21",30722,73,13498],["Haralson","2021-05-22",30722,40,13538],["Haralson","2021-05-23",30722,17,13555],["Haralson","2021-05-24",30722,47,13602],["Haralson","2021-05-25",30722,50,13652],["Haralson","2021-05-26",30722,67,13719],["Haralson","2021-05-27",30722,44,13763],["Haralson","2021-05-28",30722,53,13816],["Haralson","2021-05-29",30722,23,13839],["Haralson","2021-05-30",30722,11,13850],["Haralson","2021-05-31",30722,6,13856],["Haralson","2021-06-01",30722,40,13896],["Haralson","2021-06-02",30722,50,13946],["Haralson","2021-06-03",30722,31,13977],["Haralson","2021-06-04",30722,29,14006],["Haralson","2021-06-05",30722,24,14030],["Haralson","2021-06-06",30722,17,14047],["Haralson","2021-06-07",30722,37,14084],["Haralson","2021-06-08",30722,28,14112],["Haralson","2021-06-09",30722,49,14161],["Haralson","2021-06-10",30722,40,14201],["Haralson","2021-06-11",30722,46,14247],["Haralson","2021-06-12",30722,31,14278],["Haralson","2021-06-13",30722,17,14295],["Haralson","2021-06-14",30722,30,14325],["Haralson","2021-06-15",30722,45,14370],["Haralson","2021-06-16",30722,27,14397],["Haralson","2021-06-17",30722,41,14438],["Haralson","2021-06-18",30722,40,14478],["Haralson","2021-06-19",30722,21,14499],["Haralson","2021-06-20",30722,13,14512],["Haralson","2021-06-21",30722,32,14544],["Haralson","2021-06-22",30722,43,14587],["Haralson","2021-06-23",30722,33,14620],["Haralson","2021-06-24",30722,20,14640],["Haralson","2021-06-25",30722,26,14666],["Haralson","2021-06-26",30722,19,14685],["Haralson","2021-06-27",30722,5,14690],["Haralson","2021-06-28",30722,33,14723],["Haralson","2021-06-29",30722,27,14750],["Haralson","2021-06-30",30722,13,14763],["Haralson","2021-07-01",30722,23,14786],["Haralson","2021-07-02",30722,24,14810],["Haralson","2021-07-03",30722,12,14822],["Haralson","2021-07-05",30722,10,14832],["Haralson","2021-07-06",30722,19,14851],["Haralson","2021-07-07",30722,24,14875],["Haralson","2021-07-08",30722,33,14908],["Haralson","2021-07-09",30722,28,14936],["Haralson","2021-07-10",30722,15,14951],["Haralson","2021-07-11",30722,1,14952],["Haralson","2021-07-12",30722,20,14972],["Haralson","2021-07-13",30722,29,15001],["Haralson","2021-07-14",30722,27,15028],["Haralson","2021-07-15",30722,38,15066],["Haralson","2021-07-16",30722,27,15093],["Haralson","2021-07-17",30722,28,15121],["Haralson","2021-07-18",30722,10,15131],["Haralson","2021-07-19",30722,25,15156],["Haralson","2021-07-20",30722,35,15191],["Haralson","2021-07-21",30722,34,15225],["Haralson","2021-07-22",30722,39,15264],["Haralson","2021-07-23",30722,43,15307],["Haralson","2021-07-24",30722,42,15349],["Haralson","2021-07-25",30722,13,15362],["Haralson","2021-07-26",30722,31,15393],["Haralson","2021-07-27",30722,49,15442],["Haralson","2021-07-28",30722,45,15487],["Haralson","2021-07-29",30722,63,15550],["Haralson","2021-07-30",30722,58,15608],["Haralson","2021-07-31",30722,24,15632],["Haralson","2021-08-01",30722,17,15649],["Haralson","2021-08-02",30722,40,15689],["Haralson","2021-08-03",30722,58,15747],["Haralson","2021-08-04",30722,52,15799],["Haralson","2021-08-05",30722,62,15861],["Haralson","2021-08-06",30722,86,15947],["Haralson","2021-08-07",30722,39,15986],["Haralson","2021-08-08",30722,19,16005],["Haralson","2021-08-09",30722,59,16064],["Haralson","2021-08-10",30722,70,16134],["Haralson","2021-08-11",30722,45,16179],["Haralson","2021-08-12",30722,84,16263],["Haralson","2021-08-13",30722,70,16333],["Haralson","2021-08-14",30722,56,16389],["Haralson","2021-08-15",30722,21,16410],["Haralson","2021-08-16",30722,57,16467],["Haralson","2021-08-17",30722,51,16518],["Haralson","2021-08-18",30722,62,16580],["Haralson","2021-08-19",30722,65,16645],["Haralson","2021-08-20",30722,90,16735],["Haralson","2021-08-21",30722,54,16789],["Haralson","2021-08-22",30722,33,16822],["Haralson","2021-08-23",30722,74,16896],["Haralson","2021-08-24",30722,91,16987],["Haralson","2021-08-25",30722,78,17065],["Haralson","2021-08-26",30722,81,17146],["Haralson","2021-08-27",30722,107,17253],["Haralson","2021-08-28",30722,48,17301],["Haralson","2021-08-29",30722,42,17343],["Haralson","2021-08-30",30722,75,17418],["Haralson","2021-08-31",30722,87,17505],["Haralson","2021-09-01",30722,71,17576],["Haralson","2021-09-02",30722,88,17664],["Haralson","2021-09-03",30722,82,17746],["Haralson","2021-09-04",30722,48,17794],["Haralson","2021-09-05",30722,40,17834],["Haralson","2021-09-06",30722,31,17865],["Haralson","2021-09-07",30722,45,17910],["Haralson","2021-09-08",30722,64,17974],["Haralson","2021-09-09",30722,73,18047],["Haralson","2021-09-10",30722,75,18122],["Haralson","2021-09-11",30722,53,18175],["Haralson","2021-09-12",30722,32,18207],["Haralson","2021-09-13",30722,72,18279],["Haralson","2021-09-14",30722,75,18354],["Haralson","2021-09-15",30722,66,18420],["Haralson","2021-09-16",30722,67,18487],["Haralson","2021-09-17",30722,90,18577],["Haralson","2021-09-18",30722,37,18614],["Haralson","2021-09-19",30722,24,18638],["Haralson","2021-09-20",30722,62,18700],["Haralson","2021-09-21",30722,78,18778],["Haralson","2021-09-22",30722,40,18818],["Haralson","2021-09-23",30722,63,18881],["Haralson","2021-09-24",30722,55,18936],["Haralson","2021-09-25",30722,30,18966],["Haralson","2021-09-26",30722,40,19006],["Haralson","2021-09-27",30722,49,19055],["Haralson","2021-09-28",30722,53,19108],["Haralson","2021-09-29",30722,65,19173],["Haralson","2021-09-30",30722,44,19217],["Haralson","2021-10-01",30722,62,19279],["Haralson","2021-10-02",30722,14,19293],["Haralson","2021-10-03",30722,19,19312],["Haralson","2021-10-04",30722,44,19356],["Haralson","2021-10-05",30722,40,19396],["Haralson","2021-10-06",30722,51,19447],["Haralson","2021-10-07",30722,32,19479],["Haralson","2021-10-08",30722,43,19522],["Haralson","2021-10-09",30722,24,19546],["Haralson","2021-10-10",30722,4,19550],["Haralson","2021-10-11",30722,28,19578],["Haralson","2021-10-12",30722,36,19614],["Haralson","2021-10-13",30722,24,19638],["Haralson","2021-10-14",30722,30,19668],["Haralson","2021-10-15",30722,37,19705],["Haralson","2021-10-16",30722,15,19720],["Haralson","2021-10-17",30722,10,19730],["Haralson","2021-10-18",30722,35,19765],["Haralson","2021-10-19",30722,29,19794],["Haralson","2021-10-20",30722,18,19812],["Haralson","2021-10-21",30722,31,19843],["Haralson","2021-10-22",30722,46,19889],["Haralson","2021-10-23",30722,36,19925],["Haralson","2021-10-24",30722,35,19960],["Haralson","2021-10-25",30722,57,20017],["Haralson","2021-10-26",30722,118,20135],["Haralson","2021-10-27",30722,139,20274],["Haralson","2021-10-28",30722,127,20401],["Haralson","2021-10-29",30722,104,20505],["Haralson","2021-10-30",30722,36,20541],["Haralson","2021-10-31",30722,22,20563],["Haralson","2021-11-01",30722,104,20667],["Haralson","2021-11-02",30722,94,20761],["Haralson","2021-11-03",30722,100,20861],["Haralson","2021-11-04",30722,98,20959],["Haralson","2021-11-05",30722,76,21035],["Haralson","2021-11-06",30722,26,21061],["Haralson","2021-11-07",30722,20,21081],["Haralson","2021-11-08",30722,83,21164],["Haralson","2021-11-09",30722,66,21230],["Haralson","2021-11-10",30722,62,21292],["Haralson","2021-11-11",30722,22,21314],["Haralson","2021-11-12",30722,86,21400],["Haralson","2021-11-13",30722,22,21422],["Haralson","2021-11-14",30722,11,21433],["Haralson","2021-11-15",30722,79,21512],["Haralson","2021-11-16",30722,61,21573],["Haralson","2021-11-17",30722,85,21658],["Haralson","2021-11-18",30722,74,21732],["Haralson","2021-11-19",30722,66,21798],["Haralson","2021-11-20",30722,25,21823],["Haralson","2021-11-21",30722,18,21841],["Haralson","2021-11-22",30722,41,21882],["Haralson","2021-11-23",30722,41,21923],["Haralson","2021-11-24",30722,50,21973],["Haralson","2021-11-26",30722,47,22020],["Haralson","2021-11-27",30722,24,22044],["Haralson","2021-11-28",30722,16,22060],["Haralson","2021-11-29",30722,73,22133],["Haralson","2021-11-30",30722,90,22223],["Haralson","2021-12-01",30722,90,22313],["Haralson","2021-12-02",30722,67,22380],["Haralson","2021-12-03",30722,114,22494],["Haralson","2021-12-04",30722,38,22532],["Haralson","2021-12-05",30722,10,22542],["Haralson","2021-12-06",30722,42,22584],["Haralson","2021-12-07",30722,73,22657],["Haralson","2021-12-08",30722,52,22709],["Haralson","2021-12-09",30722,66,22775],["Haralson","2021-12-10",30722,79,22854],["Haralson","2021-12-11",30722,25,22879],["Haralson","2021-12-12",30722,8,22887],["Haralson","2021-12-13",30722,33,22920],["Haralson","2021-12-14",30722,58,22978],["Haralson","2021-12-15",30722,38,23016],["Haralson","2021-12-16",30722,44,23060],["Haralson","2021-12-17",30722,60,23120],["Haralson","2021-12-18",30722,30,23150],["Haralson","2021-12-19",30722,10,23160],["Haralson","2021-12-20",30722,49,23209],["Haralson","2021-12-21",30722,79,23288],["Haralson","2021-12-22",30722,47,23335],["Haralson","2021-12-23",30722,23,23358],["Haralson","2021-12-24",30722,10,23368],["Haralson","2021-12-26",30722,22,23390],["Haralson","2021-12-27",30722,59,23449],["Haralson","2021-12-28",30722,57,23506],["Haralson","2021-12-29",30722,50,23556],["Haralson","2021-12-30",30722,62,23618],["Haralson","2021-12-31",30722,32,23650],["Haralson","2022-01-01",30722,17,23667],["Haralson","2022-01-02",30722,12,23679],["Haralson","2022-01-03",30722,6,23685],["Harris","2020-12-17",34712,1,1],["Harris","2020-12-18",34712,3,4],["Harris","2020-12-19",34712,4,8],["Harris","2020-12-20",34712,6,14],["Harris","2020-12-21",34712,17,31],["Harris","2020-12-22",34712,20,51],["Harris","2020-12-23",34712,40,91],["Harris","2020-12-26",34712,9,100],["Harris","2020-12-27",34712,3,103],["Harris","2020-12-28",34712,46,149],["Harris","2020-12-29",34712,78,227],["Harris","2020-12-30",34712,60,287],["Harris","2020-12-31",34712,50,337],["Harris","2021-01-01",34712,3,340],["Harris","2021-01-02",34712,3,343],["Harris","2021-01-03",34712,3,346],["Harris","2021-01-04",34712,43,389],["Harris","2021-01-05",34712,86,475],["Harris","2021-01-06",34712,68,543],["Harris","2021-01-07",34712,85,628],["Harris","2021-01-08",34712,58,686],["Harris","2021-01-09",34712,7,693],["Harris","2021-01-10",34712,10,703],["Harris","2021-01-11",34712,120,823],["Harris","2021-01-12",34712,141,964],["Harris","2021-01-13",34712,179,1143],["Harris","2021-01-14",34712,148,1291],["Harris","2021-01-15",34712,58,1349],["Harris","2021-01-16",34712,168,1517],["Harris","2021-01-17",34712,23,1540],["Harris","2021-01-18",34712,119,1659],["Harris","2021-01-19",34712,146,1805],["Harris","2021-01-20",34712,191,1996],["Harris","2021-01-21",34712,122,2118],["Harris","2021-01-22",34712,79,2197],["Harris","2021-01-23",34712,91,2288],["Harris","2021-01-24",34712,5,2293],["Harris","2021-01-25",34712,76,2369],["Harris","2021-01-26",34712,134,2503],["Harris","2021-01-27",34712,138,2641],["Harris","2021-01-28",34712,181,2822],["Harris","2021-01-29",34712,203,3025],["Harris","2021-01-30",34712,31,3056],["Harris","2021-01-31",34712,9,3065],["Harris","2021-02-01",34712,129,3194],["Harris","2021-02-02",34712,132,3326],["Harris","2021-02-03",34712,107,3433],["Harris","2021-02-04",34712,152,3585],["Harris","2021-02-05",34712,90,3675],["Harris","2021-02-06",34712,6,3681],["Harris","2021-02-07",34712,7,3688],["Harris","2021-02-08",34712,112,3800],["Harris","2021-02-09",34712,625,4425],["Harris","2021-02-10",34712,227,4652],["Harris","2021-02-11",34712,222,4874],["Harris","2021-02-12",34712,153,5027],["Harris","2021-02-13",34712,56,5083],["Harris","2021-02-14",34712,25,5108],["Harris","2021-02-15",34712,120,5228],["Harris","2021-02-16",34712,222,5450],["Harris","2021-02-17",34712,289,5739],["Harris","2021-02-18",34712,202,5941],["Harris","2021-02-19",34712,145,6086],["Harris","2021-02-20",34712,77,6163],["Harris","2021-02-21",34712,5,6168],["Harris","2021-02-22",34712,137,6305],["Harris","2021-02-23",34712,83,6388],["Harris","2021-02-24",34712,94,6482],["Harris","2021-02-25",34712,157,6639],["Harris","2021-02-26",34712,383,7022],["Harris","2021-02-27",34712,60,7082],["Harris","2021-02-28",34712,15,7097],["Harris","2021-03-01",34712,102,7199],["Harris","2021-03-02",34712,88,7287],["Harris","2021-03-03",34712,173,7460],["Harris","2021-03-04",34712,144,7604],["Harris","2021-03-05",34712,176,7780],["Harris","2021-03-06",34712,42,7822],["Harris","2021-03-07",34712,18,7840],["Harris","2021-03-08",34712,148,7988],["Harris","2021-03-09",34712,557,8545],["Harris","2021-03-10",34712,175,8720],["Harris","2021-03-11",34712,279,8999],["Harris","2021-03-12",34712,187,9186],["Harris","2021-03-13",34712,75,9261],["Harris","2021-03-14",34712,25,9286],["Harris","2021-03-15",34712,261,9547],["Harris","2021-03-16",34712,159,9706],["Harris","2021-03-17",34712,310,10016],["Harris","2021-03-18",34712,210,10226],["Harris","2021-03-19",34712,263,10489],["Harris","2021-03-20",34712,121,10610],["Harris","2021-03-21",34712,49,10659],["Harris","2021-03-22",34712,149,10808],["Harris","2021-03-23",34712,168,10976],["Harris","2021-03-24",34712,241,11217],["Harris","2021-03-25",34712,385,11602],["Harris","2021-03-26",34712,548,12150],["Harris","2021-03-27",34712,91,12241],["Harris","2021-03-28",34712,52,12293],["Harris","2021-03-29",34712,237,12530],["Harris","2021-03-30",34712,329,12859],["Harris","2021-03-31",34712,292,13151],["Harris","2021-04-01",34712,268,13419],["Harris","2021-04-02",34712,244,13663],["Harris","2021-04-03",34712,48,13711],["Harris","2021-04-04",34712,34,13745],["Harris","2021-04-05",34712,230,13975],["Harris","2021-04-06",34712,220,14195],["Harris","2021-04-07",34712,346,14541],["Harris","2021-04-08",34712,249,14790],["Harris","2021-04-09",34712,349,15139],["Harris","2021-04-10",34712,101,15240],["Harris","2021-04-11",34712,38,15278],["Harris","2021-04-12",34712,325,15603],["Harris","2021-04-13",34712,253,15856],["Harris","2021-04-14",34712,289,16145],["Harris","2021-04-15",34712,232,16377],["Harris","2021-04-16",34712,289,16666],["Harris","2021-04-17",34712,116,16782],["Harris","2021-04-18",34712,43,16825],["Harris","2021-04-19",34712,210,17035],["Harris","2021-04-20",34712,203,17238],["Harris","2021-04-21",34712,271,17509],["Harris","2021-04-22",34712,214,17723],["Harris","2021-04-23",34712,285,18008],["Harris","2021-04-24",34712,56,18064],["Harris","2021-04-25",34712,29,18093],["Harris","2021-04-26",34712,212,18305],["Harris","2021-04-27",34712,185,18490],["Harris","2021-04-28",34712,226,18716],["Harris","2021-04-29",34712,148,18864],["Harris","2021-04-30",34712,312,19176],["Harris","2021-05-01",34712,59,19235],["Harris","2021-05-02",34712,48,19283],["Harris","2021-05-03",34712,134,19417],["Harris","2021-05-04",34712,131,19548],["Harris","2021-05-05",34712,170,19718],["Harris","2021-05-06",34712,133,19851],["Harris","2021-05-07",34712,148,19999],["Harris","2021-05-08",34712,46,20045],["Harris","2021-05-09",34712,12,20057],["Harris","2021-05-10",34712,78,20135],["Harris","2021-05-11",34712,103,20238],["Harris","2021-05-12",34712,86,20324],["Harris","2021-05-13",34712,92,20416],["Harris","2021-05-14",34712,121,20537],["Harris","2021-05-15",34712,49,20586],["Harris","2021-05-16",34712,31,20617],["Harris","2021-05-17",34712,128,20745],["Harris","2021-05-18",34712,204,20949],["Harris","2021-05-19",34712,108,21057],["Harris","2021-05-20",34712,92,21149],["Harris","2021-05-21",34712,150,21299],["Harris","2021-05-22",34712,43,21342],["Harris","2021-05-23",34712,32,21374],["Harris","2021-05-24",34712,66,21440],["Harris","2021-05-25",34712,62,21502],["Harris","2021-05-26",34712,63,21565],["Harris","2021-05-27",34712,49,21614],["Harris","2021-05-28",34712,84,21698],["Harris","2021-05-29",34712,59,21757],["Harris","2021-05-30",34712,15,21772],["Harris","2021-05-31",34712,13,21785],["Harris","2021-06-01",34712,107,21892],["Harris","2021-06-02",34712,90,21982],["Harris","2021-06-03",34712,65,22047],["Harris","2021-06-04",34712,109,22156],["Harris","2021-06-05",34712,45,22201],["Harris","2021-06-06",34712,18,22219],["Harris","2021-06-07",34712,71,22290],["Harris","2021-06-08",34712,100,22390],["Harris","2021-06-09",34712,70,22460],["Harris","2021-06-10",34712,47,22507],["Harris","2021-06-11",34712,93,22600],["Harris","2021-06-12",34712,51,22651],["Harris","2021-06-13",34712,45,22696],["Harris","2021-06-14",34712,63,22759],["Harris","2021-06-15",34712,90,22849],["Harris","2021-06-16",34712,45,22894],["Harris","2021-06-17",34712,90,22984],["Harris","2021-06-18",34712,126,23110],["Harris","2021-06-19",34712,44,23154],["Harris","2021-06-20",34712,16,23170],["Harris","2021-06-21",34712,37,23207],["Harris","2021-06-22",34712,78,23285],["Harris","2021-06-23",34712,71,23356],["Harris","2021-06-24",34712,51,23407],["Harris","2021-06-25",34712,77,23484],["Harris","2021-06-26",34712,47,23531],["Harris","2021-06-27",34712,13,23544],["Harris","2021-06-28",34712,54,23598],["Harris","2021-06-29",34712,38,23636],["Harris","2021-06-30",34712,65,23701],["Harris","2021-07-01",34712,60,23761],["Harris","2021-07-02",34712,70,23831],["Harris","2021-07-03",34712,36,23867],["Harris","2021-07-05",34712,27,23894],["Harris","2021-07-06",34712,70,23964],["Harris","2021-07-07",34712,62,24026],["Harris","2021-07-08",34712,82,24108],["Harris","2021-07-09",34712,72,24180],["Harris","2021-07-10",34712,26,24206],["Harris","2021-07-11",34712,14,24220],["Harris","2021-07-12",34712,42,24262],["Harris","2021-07-13",34712,52,24314],["Harris","2021-07-14",34712,38,24352],["Harris","2021-07-15",34712,53,24405],["Harris","2021-07-16",34712,83,24488],["Harris","2021-07-17",34712,35,24523],["Harris","2021-07-18",34712,23,24546],["Harris","2021-07-19",34712,65,24611],["Harris","2021-07-20",34712,44,24655],["Harris","2021-07-21",34712,64,24719],["Harris","2021-07-22",34712,81,24800],["Harris","2021-07-23",34712,118,24918],["Harris","2021-07-24",34712,62,24980],["Harris","2021-07-25",34712,35,25015],["Harris","2021-07-26",34712,95,25110],["Harris","2021-07-27",34712,62,25172],["Harris","2021-07-28",34712,59,25231],["Harris","2021-07-29",34712,69,25300],["Harris","2021-07-30",34712,98,25398],["Harris","2021-07-31",34712,42,25440],["Harris","2021-08-01",34712,30,25470],["Harris","2021-08-02",34712,60,25530],["Harris","2021-08-03",34712,117,25647],["Harris","2021-08-04",34712,65,25712],["Harris","2021-08-05",34712,77,25789],["Harris","2021-08-06",34712,102,25891],["Harris","2021-08-07",34712,46,25937],["Harris","2021-08-08",34712,33,25970],["Harris","2021-08-09",34712,55,26025],["Harris","2021-08-10",34712,59,26084],["Harris","2021-08-11",34712,59,26143],["Harris","2021-08-12",34712,73,26216],["Harris","2021-08-13",34712,119,26335],["Harris","2021-08-14",34712,68,26403],["Harris","2021-08-15",34712,33,26436],["Harris","2021-08-16",34712,74,26510],["Harris","2021-08-17",34712,88,26598],["Harris","2021-08-18",34712,73,26671],["Harris","2021-08-19",34712,82,26753],["Harris","2021-08-20",34712,127,26880],["Harris","2021-08-21",34712,43,26923],["Harris","2021-08-22",34712,42,26965],["Harris","2021-08-23",34712,82,27047],["Harris","2021-08-24",34712,111,27158],["Harris","2021-08-25",34712,85,27243],["Harris","2021-08-26",34712,87,27330],["Harris","2021-08-27",34712,153,27483],["Harris","2021-08-28",34712,42,27525],["Harris","2021-08-29",34712,36,27561],["Harris","2021-08-30",34712,87,27648],["Harris","2021-08-31",34712,78,27726],["Harris","2021-09-01",34712,82,27808],["Harris","2021-09-02",34712,92,27900],["Harris","2021-09-03",34712,112,28012],["Harris","2021-09-04",34712,48,28060],["Harris","2021-09-05",34712,41,28101],["Harris","2021-09-06",34712,11,28112],["Harris","2021-09-07",34712,52,28164],["Harris","2021-09-08",34712,71,28235],["Harris","2021-09-09",34712,65,28300],["Harris","2021-09-10",34712,108,28408],["Harris","2021-09-11",34712,40,28448],["Harris","2021-09-12",34712,27,28475],["Harris","2021-09-13",34712,77,28552],["Harris","2021-09-14",34712,76,28628],["Harris","2021-09-15",34712,57,28685],["Harris","2021-09-16",34712,51,28736],["Harris","2021-09-17",34712,110,28846],["Harris","2021-09-18",34712,40,28886],["Harris","2021-09-19",34712,19,28905],["Harris","2021-09-20",34712,36,28941],["Harris","2021-09-21",34712,49,28990],["Harris","2021-09-22",34712,47,29037],["Harris","2021-09-23",34712,42,29079],["Harris","2021-09-24",34712,51,29130],["Harris","2021-09-25",34712,26,29156],["Harris","2021-09-26",34712,26,29182],["Harris","2021-09-27",34712,65,29247],["Harris","2021-09-28",34712,54,29301],["Harris","2021-09-29",34712,75,29376],["Harris","2021-09-30",34712,74,29450],["Harris","2021-10-01",34712,105,29555],["Harris","2021-10-02",34712,24,29579],["Harris","2021-10-03",34712,17,29596],["Harris","2021-10-04",34712,56,29652],["Harris","2021-10-05",34712,63,29715],["Harris","2021-10-06",34712,58,29773],["Harris","2021-10-07",34712,69,29842],["Harris","2021-10-08",34712,87,29929],["Harris","2021-10-09",34712,30,29959],["Harris","2021-10-10",34712,14,29973],["Harris","2021-10-11",34712,44,30017],["Harris","2021-10-12",34712,41,30058],["Harris","2021-10-13",34712,35,30093],["Harris","2021-10-14",34712,47,30140],["Harris","2021-10-15",34712,64,30204],["Harris","2021-10-16",34712,24,30228],["Harris","2021-10-17",34712,15,30243],["Harris","2021-10-18",34712,40,30283],["Harris","2021-10-19",34712,35,30318],["Harris","2021-10-20",34712,30,30348],["Harris","2021-10-21",34712,45,30393],["Harris","2021-10-22",34712,89,30482],["Harris","2021-10-23",34712,82,30564],["Harris","2021-10-24",34712,38,30602],["Harris","2021-10-25",34712,115,30717],["Harris","2021-10-26",34712,80,30797],["Harris","2021-10-27",34712,154,30951],["Harris","2021-10-28",34712,131,31082],["Harris","2021-10-29",34712,151,31233],["Harris","2021-10-30",34712,43,31276],["Harris","2021-10-31",34712,28,31304],["Harris","2021-11-01",34712,86,31390],["Harris","2021-11-02",34712,108,31498],["Harris","2021-11-03",34712,96,31594],["Harris","2021-11-04",34712,68,31662],["Harris","2021-11-05",34712,191,31853],["Harris","2021-11-06",34712,48,31901],["Harris","2021-11-07",34712,25,31926],["Harris","2021-11-08",34712,130,32056],["Harris","2021-11-09",34712,98,32154],["Harris","2021-11-10",34712,90,32244],["Harris","2021-11-11",34712,94,32338],["Harris","2021-11-12",34712,153,32491],["Harris","2021-11-13",34712,44,32535],["Harris","2021-11-14",34712,15,32550],["Harris","2021-11-15",34712,73,32623],["Harris","2021-11-16",34712,88,32711],["Harris","2021-11-17",34712,112,32823],["Harris","2021-11-18",34712,106,32929],["Harris","2021-11-19",34712,139,33068],["Harris","2021-11-20",34712,50,33118],["Harris","2021-11-21",34712,37,33155],["Harris","2021-11-22",34712,121,33276],["Harris","2021-11-23",34712,75,33351],["Harris","2021-11-24",34712,62,33413],["Harris","2021-11-26",34712,56,33469],["Harris","2021-11-27",34712,46,33515],["Harris","2021-11-28",34712,41,33556],["Harris","2021-11-29",34712,90,33646],["Harris","2021-11-30",34712,109,33755],["Harris","2021-12-01",34712,133,33888],["Harris","2021-12-02",34712,128,34016],["Harris","2021-12-03",34712,210,34226],["Harris","2021-12-04",34712,47,34273],["Harris","2021-12-05",34712,31,34304],["Harris","2021-12-06",34712,96,34400],["Harris","2021-12-07",34712,127,34527],["Harris","2021-12-08",34712,85,34612],["Harris","2021-12-09",34712,68,34680],["Harris","2021-12-10",34712,134,34814],["Harris","2021-12-11",34712,41,34855],["Harris","2021-12-12",34712,28,34883],["Harris","2021-12-13",34712,64,34947],["Harris","2021-12-14",34712,71,35018],["Harris","2021-12-15",34712,43,35061],["Harris","2021-12-16",34712,90,35151],["Harris","2021-12-17",34712,92,35243],["Harris","2021-12-18",34712,53,35296],["Harris","2021-12-19",34712,42,35338],["Harris","2021-12-20",34712,88,35426],["Harris","2021-12-21",34712,84,35510],["Harris","2021-12-22",34712,89,35599],["Harris","2021-12-23",34712,55,35654],["Harris","2021-12-24",34712,18,35672],["Harris","2021-12-26",34712,16,35688],["Harris","2021-12-27",34712,78,35766],["Harris","2021-12-28",34712,100,35866],["Harris","2021-12-29",34712,83,35949],["Harris","2021-12-30",34712,89,36038],["Harris","2021-12-31",34712,57,36095],["Harris","2022-01-01",34712,8,36103],["Harris","2022-01-02",34712,17,36120],["Harris","2022-01-03",34712,30,36150],["Hart","2020-12-15",26107,1,1],["Hart","2020-12-17",26107,1,2],["Hart","2020-12-18",26107,5,7],["Hart","2020-12-19",26107,1,8],["Hart","2020-12-21",26107,8,16],["Hart","2020-12-22",26107,12,28],["Hart","2020-12-23",26107,15,43],["Hart","2020-12-24",26107,22,65],["Hart","2020-12-28",26107,13,78],["Hart","2020-12-29",26107,73,151],["Hart","2020-12-30",26107,36,187],["Hart","2020-12-31",26107,4,191],["Hart","2021-01-01",26107,3,194],["Hart","2021-01-02",26107,2,196],["Hart","2021-01-03",26107,1,197],["Hart","2021-01-04",26107,30,227],["Hart","2021-01-05",26107,40,267],["Hart","2021-01-06",26107,54,321],["Hart","2021-01-07",26107,26,347],["Hart","2021-01-08",26107,31,378],["Hart","2021-01-09",26107,1,379],["Hart","2021-01-10",26107,6,385],["Hart","2021-01-11",26107,104,489],["Hart","2021-01-12",26107,72,561],["Hart","2021-01-13",26107,76,637],["Hart","2021-01-14",26107,109,746],["Hart","2021-01-15",26107,155,901],["Hart","2021-01-16",26107,35,936],["Hart","2021-01-17",26107,24,960],["Hart","2021-01-18",26107,112,1072],["Hart","2021-01-19",26107,151,1223],["Hart","2021-01-20",26107,214,1437],["Hart","2021-01-21",26107,111,1548],["Hart","2021-01-22",26107,102,1650],["Hart","2021-01-23",26107,15,1665],["Hart","2021-01-24",26107,30,1695],["Hart","2021-01-25",26107,141,1836],["Hart","2021-01-26",26107,206,2042],["Hart","2021-01-27",26107,150,2192],["Hart","2021-01-28",26107,135,2327],["Hart","2021-01-29",26107,51,2378],["Hart","2021-01-30",26107,2,2380],["Hart","2021-01-31",26107,13,2393],["Hart","2021-02-01",26107,175,2568],["Hart","2021-02-02",26107,137,2705],["Hart","2021-02-03",26107,140,2845],["Hart","2021-02-04",26107,133,2978],["Hart","2021-02-05",26107,142,3120],["Hart","2021-02-06",26107,11,3131],["Hart","2021-02-07",26107,1,3132],["Hart","2021-02-08",26107,115,3247],["Hart","2021-02-09",26107,136,3383],["Hart","2021-02-10",26107,135,3518],["Hart","2021-02-11",26107,121,3639],["Hart","2021-02-12",26107,229,3868],["Hart","2021-02-13",26107,53,3921],["Hart","2021-02-14",26107,47,3968],["Hart","2021-02-15",26107,126,4094],["Hart","2021-02-16",26107,116,4210],["Hart","2021-02-17",26107,161,4371],["Hart","2021-02-18",26107,221,4592],["Hart","2021-02-19",26107,190,4782],["Hart","2021-02-20",26107,25,4807],["Hart","2021-02-21",26107,19,4826],["Hart","2021-02-22",26107,68,4894],["Hart","2021-02-23",26107,377,5271],["Hart","2021-02-24",26107,169,5440],["Hart","2021-02-25",26107,153,5593],["Hart","2021-02-26",26107,93,5686],["Hart","2021-02-27",26107,36,5722],["Hart","2021-02-28",26107,25,5747],["Hart","2021-03-01",26107,178,5925],["Hart","2021-03-02",26107,151,6076],["Hart","2021-03-03",26107,180,6256],["Hart","2021-03-04",26107,143,6399],["Hart","2021-03-05",26107,299,6698],["Hart","2021-03-06",26107,24,6722],["Hart","2021-03-07",26107,17,6739],["Hart","2021-03-08",26107,128,6867],["Hart","2021-03-09",26107,161,7028],["Hart","2021-03-10",26107,162,7190],["Hart","2021-03-11",26107,144,7334],["Hart","2021-03-12",26107,156,7490],["Hart","2021-03-13",26107,38,7528],["Hart","2021-03-14",26107,22,7550],["Hart","2021-03-15",26107,116,7666],["Hart","2021-03-16",26107,187,7853],["Hart","2021-03-17",26107,143,7996],["Hart","2021-03-18",26107,217,8213],["Hart","2021-03-19",26107,282,8495],["Hart","2021-03-20",26107,41,8536],["Hart","2021-03-21",26107,21,8557],["Hart","2021-03-22",26107,98,8655],["Hart","2021-03-23",26107,124,8779],["Hart","2021-03-24",26107,119,8898],["Hart","2021-03-25",26107,136,9034],["Hart","2021-03-26",26107,161,9195],["Hart","2021-03-27",26107,35,9230],["Hart","2021-03-28",26107,33,9263],["Hart","2021-03-29",26107,120,9383],["Hart","2021-03-30",26107,156,9539],["Hart","2021-03-31",26107,162,9701],["Hart","2021-04-01",26107,144,9845],["Hart","2021-04-02",26107,219,10064],["Hart","2021-04-03",26107,29,10093],["Hart","2021-04-04",26107,33,10126],["Hart","2021-04-05",26107,136,10262],["Hart","2021-04-06",26107,172,10434],["Hart","2021-04-07",26107,159,10593],["Hart","2021-04-08",26107,205,10798],["Hart","2021-04-09",26107,166,10964],["Hart","2021-04-10",26107,30,10994],["Hart","2021-04-11",26107,17,11011],["Hart","2021-04-12",26107,139,11150],["Hart","2021-04-13",26107,237,11387],["Hart","2021-04-14",26107,143,11530],["Hart","2021-04-15",26107,115,11645],["Hart","2021-04-16",26107,248,11893],["Hart","2021-04-17",26107,44,11937],["Hart","2021-04-18",26107,13,11950],["Hart","2021-04-19",26107,108,12058],["Hart","2021-04-20",26107,96,12154],["Hart","2021-04-21",26107,164,12318],["Hart","2021-04-22",26107,150,12468],["Hart","2021-04-23",26107,161,12629],["Hart","2021-04-24",26107,31,12660],["Hart","2021-04-25",26107,12,12672],["Hart","2021-04-26",26107,116,12788],["Hart","2021-04-27",26107,130,12918],["Hart","2021-04-28",26107,115,13033],["Hart","2021-04-29",26107,105,13138],["Hart","2021-04-30",26107,91,13229],["Hart","2021-05-01",26107,43,13272],["Hart","2021-05-02",26107,13,13285],["Hart","2021-05-03",26107,57,13342],["Hart","2021-05-04",26107,122,13464],["Hart","2021-05-05",26107,77,13541],["Hart","2021-05-06",26107,94,13635],["Hart","2021-05-07",26107,106,13741],["Hart","2021-05-08",26107,44,13785],["Hart","2021-05-09",26107,7,13792],["Hart","2021-05-10",26107,71,13863],["Hart","2021-05-11",26107,67,13930],["Hart","2021-05-12",26107,70,14000],["Hart","2021-05-13",26107,129,14129],["Hart","2021-05-14",26107,98,14227],["Hart","2021-05-15",26107,32,14259],["Hart","2021-05-16",26107,13,14272],["Hart","2021-05-17",26107,46,14318],["Hart","2021-05-18",26107,59,14377],["Hart","2021-05-19",26107,70,14447],["Hart","2021-05-20",26107,74,14521],["Hart","2021-05-21",26107,110,14631],["Hart","2021-05-22",26107,30,14661],["Hart","2021-05-23",26107,11,14672],["Hart","2021-05-24",26107,39,14711],["Hart","2021-05-25",26107,40,14751],["Hart","2021-05-26",26107,46,14797],["Hart","2021-05-27",26107,57,14854],["Hart","2021-05-28",26107,24,14878],["Hart","2021-05-29",26107,27,14905],["Hart","2021-05-30",26107,9,14914],["Hart","2021-05-31",26107,7,14921],["Hart","2021-06-01",26107,42,14963],["Hart","2021-06-02",26107,30,14993],["Hart","2021-06-03",26107,37,15030],["Hart","2021-06-04",26107,46,15076],["Hart","2021-06-05",26107,21,15097],["Hart","2021-06-06",26107,18,15115],["Hart","2021-06-07",26107,47,15162],["Hart","2021-06-08",26107,26,15188],["Hart","2021-06-09",26107,52,15240],["Hart","2021-06-10",26107,22,15262],["Hart","2021-06-11",26107,52,15314],["Hart","2021-06-12",26107,29,15343],["Hart","2021-06-13",26107,6,15349],["Hart","2021-06-14",26107,25,15374],["Hart","2021-06-15",26107,35,15409],["Hart","2021-06-16",26107,39,15448],["Hart","2021-06-17",26107,22,15470],["Hart","2021-06-18",26107,58,15528],["Hart","2021-06-19",26107,17,15545],["Hart","2021-06-20",26107,3,15548],["Hart","2021-06-21",26107,19,15567],["Hart","2021-06-22",26107,34,15601],["Hart","2021-06-23",26107,24,15625],["Hart","2021-06-24",26107,25,15650],["Hart","2021-06-25",26107,28,15678],["Hart","2021-06-26",26107,13,15691],["Hart","2021-06-27",26107,5,15696],["Hart","2021-06-28",26107,13,15709],["Hart","2021-06-29",26107,30,15739],["Hart","2021-06-30",26107,25,15764],["Hart","2021-07-01",26107,28,15792],["Hart","2021-07-02",26107,21,15813],["Hart","2021-07-03",26107,10,15823],["Hart","2021-07-04",26107,1,15824],["Hart","2021-07-05",26107,19,15843],["Hart","2021-07-06",26107,20,15863],["Hart","2021-07-07",26107,26,15889],["Hart","2021-07-08",26107,15,15904],["Hart","2021-07-09",26107,22,15926],["Hart","2021-07-10",26107,15,15941],["Hart","2021-07-11",26107,4,15945],["Hart","2021-07-12",26107,11,15956],["Hart","2021-07-13",26107,16,15972],["Hart","2021-07-14",26107,37,16009],["Hart","2021-07-15",26107,16,16025],["Hart","2021-07-16",26107,59,16084],["Hart","2021-07-17",26107,7,16091],["Hart","2021-07-18",26107,5,16096],["Hart","2021-07-19",26107,26,16122],["Hart","2021-07-20",26107,26,16148],["Hart","2021-07-21",26107,60,16208],["Hart","2021-07-22",26107,25,16233],["Hart","2021-07-23",26107,32,16265],["Hart","2021-07-24",26107,21,16286],["Hart","2021-07-25",26107,15,16301],["Hart","2021-07-26",26107,24,16325],["Hart","2021-07-27",26107,30,16355],["Hart","2021-07-28",26107,40,16395],["Hart","2021-07-29",26107,39,16434],["Hart","2021-07-30",26107,37,16471],["Hart","2021-07-31",26107,30,16501],["Hart","2021-08-01",26107,16,16517],["Hart","2021-08-02",26107,34,16551],["Hart","2021-08-03",26107,39,16590],["Hart","2021-08-04",26107,41,16631],["Hart","2021-08-05",26107,62,16693],["Hart","2021-08-06",26107,46,16739],["Hart","2021-08-07",26107,18,16757],["Hart","2021-08-08",26107,13,16770],["Hart","2021-08-09",26107,39,16809],["Hart","2021-08-10",26107,66,16875],["Hart","2021-08-11",26107,52,16927],["Hart","2021-08-12",26107,45,16972],["Hart","2021-08-13",26107,81,17053],["Hart","2021-08-14",26107,31,17084],["Hart","2021-08-15",26107,27,17111],["Hart","2021-08-16",26107,48,17159],["Hart","2021-08-17",26107,54,17213],["Hart","2021-08-18",26107,83,17296],["Hart","2021-08-19",26107,57,17353],["Hart","2021-08-20",26107,55,17408],["Hart","2021-08-21",26107,36,17444],["Hart","2021-08-22",26107,28,17472],["Hart","2021-08-23",26107,56,17528],["Hart","2021-08-24",26107,69,17597],["Hart","2021-08-25",26107,58,17655],["Hart","2021-08-26",26107,89,17744],["Hart","2021-08-27",26107,94,17838],["Hart","2021-08-28",26107,46,17884],["Hart","2021-08-29",26107,19,17903],["Hart","2021-08-30",26107,74,17977],["Hart","2021-08-31",26107,56,18033],["Hart","2021-09-01",26107,91,18124],["Hart","2021-09-02",26107,62,18186],["Hart","2021-09-03",26107,65,18251],["Hart","2021-09-04",26107,23,18274],["Hart","2021-09-05",26107,12,18286],["Hart","2021-09-06",26107,11,18297],["Hart","2021-09-07",26107,68,18365],["Hart","2021-09-08",26107,63,18428],["Hart","2021-09-09",26107,60,18488],["Hart","2021-09-10",26107,74,18562],["Hart","2021-09-11",26107,25,18587],["Hart","2021-09-12",26107,25,18612],["Hart","2021-09-13",26107,56,18668],["Hart","2021-09-14",26107,31,18699],["Hart","2021-09-15",26107,50,18749],["Hart","2021-09-16",26107,52,18801],["Hart","2021-09-17",26107,74,18875],["Hart","2021-09-18",26107,18,18893],["Hart","2021-09-19",26107,20,18913],["Hart","2021-09-20",26107,50,18963],["Hart","2021-09-21",26107,42,19005],["Hart","2021-09-22",26107,78,19083],["Hart","2021-09-23",26107,47,19130],["Hart","2021-09-24",26107,55,19185],["Hart","2021-09-25",26107,19,19204],["Hart","2021-09-26",26107,13,19217],["Hart","2021-09-27",26107,47,19264],["Hart","2021-09-28",26107,57,19321],["Hart","2021-09-29",26107,65,19386],["Hart","2021-09-30",26107,32,19418],["Hart","2021-10-01",26107,53,19471],["Hart","2021-10-02",26107,12,19483],["Hart","2021-10-03",26107,7,19490],["Hart","2021-10-04",26107,70,19560],["Hart","2021-10-05",26107,29,19589],["Hart","2021-10-06",26107,40,19629],["Hart","2021-10-07",26107,25,19654],["Hart","2021-10-08",26107,42,19696],["Hart","2021-10-09",26107,11,19707],["Hart","2021-10-10",26107,12,19719],["Hart","2021-10-11",26107,25,19744],["Hart","2021-10-12",26107,27,19771],["Hart","2021-10-13",26107,37,19808],["Hart","2021-10-14",26107,33,19841],["Hart","2021-10-15",26107,37,19878],["Hart","2021-10-16",26107,5,19883],["Hart","2021-10-17",26107,6,19889],["Hart","2021-10-18",26107,21,19910],["Hart","2021-10-19",26107,58,19968],["Hart","2021-10-20",26107,46,20014],["Hart","2021-10-21",26107,23,20037],["Hart","2021-10-22",26107,38,20075],["Hart","2021-10-23",26107,57,20132],["Hart","2021-10-24",26107,29,20161],["Hart","2021-10-25",26107,100,20261],["Hart","2021-10-26",26107,162,20423],["Hart","2021-10-27",26107,149,20572],["Hart","2021-10-28",26107,103,20675],["Hart","2021-10-29",26107,109,20784],["Hart","2021-10-30",26107,24,20808],["Hart","2021-10-31",26107,29,20837],["Hart","2021-11-01",26107,111,20948],["Hart","2021-11-02",26107,145,21093],["Hart","2021-11-03",26107,90,21183],["Hart","2021-11-04",26107,73,21256],["Hart","2021-11-05",26107,68,21324],["Hart","2021-11-06",26107,29,21353],["Hart","2021-11-07",26107,14,21367],["Hart","2021-11-08",26107,56,21423],["Hart","2021-11-09",26107,105,21528],["Hart","2021-11-10",26107,80,21608],["Hart","2021-11-11",26107,42,21650],["Hart","2021-11-12",26107,69,21719],["Hart","2021-11-13",26107,26,21745],["Hart","2021-11-14",26107,9,21754],["Hart","2021-11-15",26107,56,21810],["Hart","2021-11-16",26107,73,21883],["Hart","2021-11-17",26107,56,21939],["Hart","2021-11-18",26107,64,22003],["Hart","2021-11-19",26107,77,22080],["Hart","2021-11-20",26107,22,22102],["Hart","2021-11-21",26107,22,22124],["Hart","2021-11-22",26107,68,22192],["Hart","2021-11-23",26107,89,22281],["Hart","2021-11-24",26107,44,22325],["Hart","2021-11-26",26107,34,22359],["Hart","2021-11-27",26107,27,22386],["Hart","2021-11-28",26107,15,22401],["Hart","2021-11-29",26107,67,22468],["Hart","2021-11-30",26107,107,22575],["Hart","2021-12-01",26107,81,22656],["Hart","2021-12-02",26107,98,22754],["Hart","2021-12-03",26107,100,22854],["Hart","2021-12-04",26107,30,22884],["Hart","2021-12-05",26107,12,22896],["Hart","2021-12-06",26107,54,22950],["Hart","2021-12-07",26107,55,23005],["Hart","2021-12-08",26107,84,23089],["Hart","2021-12-09",26107,58,23147],["Hart","2021-12-10",26107,84,23231],["Hart","2021-12-11",26107,16,23247],["Hart","2021-12-12",26107,11,23258],["Hart","2021-12-13",26107,35,23293],["Hart","2021-12-14",26107,96,23389],["Hart","2021-12-15",26107,55,23444],["Hart","2021-12-16",26107,47,23491],["Hart","2021-12-17",26107,61,23552],["Hart","2021-12-18",26107,23,23575],["Hart","2021-12-19",26107,16,23591],["Hart","2021-12-20",26107,68,23659],["Hart","2021-12-21",26107,73,23732],["Hart","2021-12-22",26107,76,23808],["Hart","2021-12-23",26107,45,23853],["Hart","2021-12-24",26107,15,23868],["Hart","2021-12-26",26107,8,23876],["Hart","2021-12-27",26107,64,23940],["Hart","2021-12-28",26107,74,24014],["Hart","2021-12-29",26107,55,24069],["Hart","2021-12-30",26107,69,24138],["Hart","2021-12-31",26107,50,24188],["Hart","2022-01-01",26107,7,24195],["Hart","2022-01-02",26107,17,24212],["Hart","2022-01-03",26107,13,24225],["Heard","2020-12-21",12370,3,3],["Heard","2020-12-22",12370,4,7],["Heard","2020-12-23",12370,13,20],["Heard","2020-12-24",12370,2,22],["Heard","2020-12-26",12370,1,23],["Heard","2020-12-27",12370,1,24],["Heard","2020-12-28",12370,11,35],["Heard","2020-12-29",12370,12,47],["Heard","2020-12-30",12370,25,72],["Heard","2020-12-31",12370,10,82],["Heard","2021-01-01",12370,4,86],["Heard","2021-01-02",12370,1,87],["Heard","2021-01-03",12370,2,89],["Heard","2021-01-04",12370,10,99],["Heard","2021-01-05",12370,4,103],["Heard","2021-01-06",12370,22,125],["Heard","2021-01-07",12370,4,129],["Heard","2021-01-08",12370,14,143],["Heard","2021-01-09",12370,5,148],["Heard","2021-01-10",12370,18,166],["Heard","2021-01-11",12370,8,174],["Heard","2021-01-12",12370,26,200],["Heard","2021-01-13",12370,20,220],["Heard","2021-01-14",12370,157,377],["Heard","2021-01-15",12370,21,398],["Heard","2021-01-16",12370,6,404],["Heard","2021-01-17",12370,2,406],["Heard","2021-01-18",12370,13,419],["Heard","2021-01-19",12370,23,442],["Heard","2021-01-20",12370,55,497],["Heard","2021-01-21",12370,24,521],["Heard","2021-01-22",12370,21,542],["Heard","2021-01-23",12370,16,558],["Heard","2021-01-24",12370,2,560],["Heard","2021-01-25",12370,19,579],["Heard","2021-01-26",12370,18,597],["Heard","2021-01-27",12370,32,629],["Heard","2021-01-28",12370,21,650],["Heard","2021-01-29",12370,23,673],["Heard","2021-01-30",12370,1,674],["Heard","2021-01-31",12370,32,706],["Heard","2021-02-01",12370,9,715],["Heard","2021-02-02",12370,46,761],["Heard","2021-02-03",12370,21,782],["Heard","2021-02-04",12370,32,814],["Heard","2021-02-05",12370,14,828],["Heard","2021-02-08",12370,11,839],["Heard","2021-02-09",12370,31,870],["Heard","2021-02-10",12370,22,892],["Heard","2021-02-11",12370,8,900],["Heard","2021-02-12",12370,182,1082],["Heard","2021-02-13",12370,7,1089],["Heard","2021-02-14",12370,2,1091],["Heard","2021-02-15",12370,21,1112],["Heard","2021-02-16",12370,40,1152],["Heard","2021-02-17",12370,70,1222],["Heard","2021-02-18",12370,37,1259],["Heard","2021-02-19",12370,14,1273],["Heard","2021-02-20",12370,14,1287],["Heard","2021-02-22",12370,18,1305],["Heard","2021-02-23",12370,40,1345],["Heard","2021-02-24",12370,36,1381],["Heard","2021-02-25",12370,30,1411],["Heard","2021-02-26",12370,20,1431],["Heard","2021-02-27",12370,3,1434],["Heard","2021-02-28",12370,1,1435],["Heard","2021-03-01",12370,13,1448],["Heard","2021-03-02",12370,55,1503],["Heard","2021-03-03",12370,44,1547],["Heard","2021-03-04",12370,37,1584],["Heard","2021-03-05",12370,17,1601],["Heard","2021-03-06",12370,1,1602],["Heard","2021-03-07",12370,2,1604],["Heard","2021-03-08",12370,10,1614],["Heard","2021-03-09",12370,26,1640],["Heard","2021-03-10",12370,55,1695],["Heard","2021-03-11",12370,38,1733],["Heard","2021-03-12",12370,26,1759],["Heard","2021-03-13",12370,2,1761],["Heard","2021-03-14",12370,5,1766],["Heard","2021-03-15",12370,44,1810],["Heard","2021-03-16",12370,82,1892],["Heard","2021-03-17",12370,34,1926],["Heard","2021-03-18",12370,40,1966],["Heard","2021-03-19",12370,102,2068],["Heard","2021-03-20",12370,6,2074],["Heard","2021-03-21",12370,9,2083],["Heard","2021-03-22",12370,31,2114],["Heard","2021-03-23",12370,43,2157],["Heard","2021-03-24",12370,50,2207],["Heard","2021-03-25",12370,40,2247],["Heard","2021-03-26",12370,33,2280],["Heard","2021-03-27",12370,37,2317],["Heard","2021-03-28",12370,6,2323],["Heard","2021-03-29",12370,9,2332],["Heard","2021-03-30",12370,70,2402],["Heard","2021-03-31",12370,101,2503],["Heard","2021-04-01",12370,54,2557],["Heard","2021-04-02",12370,30,2587],["Heard","2021-04-03",12370,21,2608],["Heard","2021-04-04",12370,15,2623],["Heard","2021-04-05",12370,37,2660],["Heard","2021-04-06",12370,46,2706],["Heard","2021-04-07",12370,40,2746],["Heard","2021-04-08",12370,61,2807],["Heard","2021-04-09",12370,35,2842],["Heard","2021-04-10",12370,24,2866],["Heard","2021-04-11",12370,14,2880],["Heard","2021-04-12",12370,40,2920],["Heard","2021-04-13",12370,86,3006],["Heard","2021-04-14",12370,45,3051],["Heard","2021-04-15",12370,26,3077],["Heard","2021-04-16",12370,57,3134],["Heard","2021-04-17",12370,29,3163],["Heard","2021-04-18",12370,6,3169],["Heard","2021-04-19",12370,37,3206],["Heard","2021-04-20",12370,64,3270],["Heard","2021-04-21",12370,68,3338],["Heard","2021-04-22",12370,35,3373],["Heard","2021-04-23",12370,39,3412],["Heard","2021-04-24",12370,25,3437],["Heard","2021-04-25",12370,7,3444],["Heard","2021-04-26",12370,19,3463],["Heard","2021-04-27",12370,73,3536],["Heard","2021-04-28",12370,45,3581],["Heard","2021-04-29",12370,31,3612],["Heard","2021-04-30",12370,22,3634],["Heard","2021-05-01",12370,15,3649],["Heard","2021-05-02",12370,9,3658],["Heard","2021-05-03",12370,32,3690],["Heard","2021-05-04",12370,44,3734],["Heard","2021-05-05",12370,43,3777],["Heard","2021-05-06",12370,19,3796],["Heard","2021-05-07",12370,26,3822],["Heard","2021-05-08",12370,18,3840],["Heard","2021-05-09",12370,8,3848],["Heard","2021-05-10",12370,31,3879],["Heard","2021-05-11",12370,44,3923],["Heard","2021-05-12",12370,41,3964],["Heard","2021-05-13",12370,42,4006],["Heard","2021-05-14",12370,21,4027],["Heard","2021-05-15",12370,18,4045],["Heard","2021-05-16",12370,10,4055],["Heard","2021-05-17",12370,23,4078],["Heard","2021-05-18",12370,62,4140],["Heard","2021-05-19",12370,45,4185],["Heard","2021-05-20",12370,31,4216],["Heard","2021-05-21",12370,42,4258],["Heard","2021-05-22",12370,15,4273],["Heard","2021-05-23",12370,8,4281],["Heard","2021-05-24",12370,23,4304],["Heard","2021-05-25",12370,46,4350],["Heard","2021-05-26",12370,24,4374],["Heard","2021-05-27",12370,29,4403],["Heard","2021-05-28",12370,17,4420],["Heard","2021-05-29",12370,13,4433],["Heard","2021-05-30",12370,5,4438],["Heard","2021-05-31",12370,3,4441],["Heard","2021-06-01",12370,12,4453],["Heard","2021-06-02",12370,19,4472],["Heard","2021-06-03",12370,19,4491],["Heard","2021-06-04",12370,23,4514],["Heard","2021-06-05",12370,15,4529],["Heard","2021-06-06",12370,7,4536],["Heard","2021-06-07",12370,12,4548],["Heard","2021-06-08",12370,22,4570],["Heard","2021-06-09",12370,25,4595],["Heard","2021-06-10",12370,27,4622],["Heard","2021-06-11",12370,22,4644],["Heard","2021-06-12",12370,18,4662],["Heard","2021-06-13",12370,3,4665],["Heard","2021-06-14",12370,32,4697],["Heard","2021-06-15",12370,22,4719],["Heard","2021-06-16",12370,20,4739],["Heard","2021-06-17",12370,13,4752],["Heard","2021-06-18",12370,28,4780],["Heard","2021-06-19",12370,13,4793],["Heard","2021-06-20",12370,4,4797],["Heard","2021-06-21",12370,13,4810],["Heard","2021-06-22",12370,12,4822],["Heard","2021-06-23",12370,9,4831],["Heard","2021-06-24",12370,6,4837],["Heard","2021-06-25",12370,17,4854],["Heard","2021-06-26",12370,7,4861],["Heard","2021-06-27",12370,2,4863],["Heard","2021-06-28",12370,8,4871],["Heard","2021-06-29",12370,12,4883],["Heard","2021-06-30",12370,10,4893],["Heard","2021-07-01",12370,15,4908],["Heard","2021-07-02",12370,18,4926],["Heard","2021-07-03",12370,5,4931],["Heard","2021-07-05",12370,4,4935],["Heard","2021-07-06",12370,8,4943],["Heard","2021-07-07",12370,13,4956],["Heard","2021-07-08",12370,11,4967],["Heard","2021-07-09",12370,9,4976],["Heard","2021-07-10",12370,6,4982],["Heard","2021-07-11",12370,4,4986],["Heard","2021-07-12",12370,16,5002],["Heard","2021-07-13",12370,13,5015],["Heard","2021-07-14",12370,12,5027],["Heard","2021-07-15",12370,9,5036],["Heard","2021-07-16",12370,11,5047],["Heard","2021-07-17",12370,3,5050],["Heard","2021-07-18",12370,1,5051],["Heard","2021-07-19",12370,15,5066],["Heard","2021-07-20",12370,8,5074],["Heard","2021-07-21",12370,6,5080],["Heard","2021-07-22",12370,8,5088],["Heard","2021-07-23",12370,19,5107],["Heard","2021-07-24",12370,12,5119],["Heard","2021-07-25",12370,3,5122],["Heard","2021-07-26",12370,13,5135],["Heard","2021-07-27",12370,14,5149],["Heard","2021-07-28",12370,16,5165],["Heard","2021-07-29",12370,14,5179],["Heard","2021-07-30",12370,31,5210],["Heard","2021-07-31",12370,9,5219],["Heard","2021-08-01",12370,3,5222],["Heard","2021-08-02",12370,12,5234],["Heard","2021-08-03",12370,23,5257],["Heard","2021-08-04",12370,28,5285],["Heard","2021-08-05",12370,26,5311],["Heard","2021-08-06",12370,19,5330],["Heard","2021-08-07",12370,14,5344],["Heard","2021-08-08",12370,7,5351],["Heard","2021-08-09",12370,18,5369],["Heard","2021-08-10",12370,23,5392],["Heard","2021-08-11",12370,28,5420],["Heard","2021-08-12",12370,15,5435],["Heard","2021-08-13",12370,26,5461],["Heard","2021-08-14",12370,17,5478],["Heard","2021-08-15",12370,5,5483],["Heard","2021-08-16",12370,12,5495],["Heard","2021-08-17",12370,22,5517],["Heard","2021-08-18",12370,25,5542],["Heard","2021-08-19",12370,21,5563],["Heard","2021-08-20",12370,43,5606],["Heard","2021-08-21",12370,18,5624],["Heard","2021-08-22",12370,6,5630],["Heard","2021-08-23",12370,26,5656],["Heard","2021-08-24",12370,18,5674],["Heard","2021-08-25",12370,23,5697],["Heard","2021-08-26",12370,34,5731],["Heard","2021-08-27",12370,42,5773],["Heard","2021-08-28",12370,17,5790],["Heard","2021-08-29",12370,14,5804],["Heard","2021-08-30",12370,25,5829],["Heard","2021-08-31",12370,26,5855],["Heard","2021-09-01",12370,41,5896],["Heard","2021-09-02",12370,42,5938],["Heard","2021-09-03",12370,24,5962],["Heard","2021-09-04",12370,20,5982],["Heard","2021-09-05",12370,13,5995],["Heard","2021-09-06",12370,4,5999],["Heard","2021-09-07",12370,26,6025],["Heard","2021-09-08",12370,30,6055],["Heard","2021-09-09",12370,24,6079],["Heard","2021-09-10",12370,31,6110],["Heard","2021-09-11",12370,12,6122],["Heard","2021-09-12",12370,5,6127],["Heard","2021-09-13",12370,25,6152],["Heard","2021-09-14",12370,20,6172],["Heard","2021-09-15",12370,27,6199],["Heard","2021-09-16",12370,34,6233],["Heard","2021-09-17",12370,42,6275],["Heard","2021-09-18",12370,16,6291],["Heard","2021-09-19",12370,7,6298],["Heard","2021-09-20",12370,14,6312],["Heard","2021-09-21",12370,14,6326],["Heard","2021-09-22",12370,20,6346],["Heard","2021-09-23",12370,24,6370],["Heard","2021-09-24",12370,34,6404],["Heard","2021-09-25",12370,13,6417],["Heard","2021-09-26",12370,3,6420],["Heard","2021-09-27",12370,19,6439],["Heard","2021-09-28",12370,21,6460],["Heard","2021-09-29",12370,32,6492],["Heard","2021-09-30",12370,19,6511],["Heard","2021-10-01",12370,26,6537],["Heard","2021-10-02",12370,7,6544],["Heard","2021-10-03",12370,4,6548],["Heard","2021-10-04",12370,17,6565],["Heard","2021-10-05",12370,22,6587],["Heard","2021-10-06",12370,17,6604],["Heard","2021-10-07",12370,21,6625],["Heard","2021-10-08",12370,17,6642],["Heard","2021-10-09",12370,8,6650],["Heard","2021-10-10",12370,7,6657],["Heard","2021-10-11",12370,8,6665],["Heard","2021-10-12",12370,5,6670],["Heard","2021-10-13",12370,8,6678],["Heard","2021-10-14",12370,11,6689],["Heard","2021-10-15",12370,27,6716],["Heard","2021-10-16",12370,5,6721],["Heard","2021-10-17",12370,5,6726],["Heard","2021-10-18",12370,10,6736],["Heard","2021-10-19",12370,8,6744],["Heard","2021-10-20",12370,9,6753],["Heard","2021-10-21",12370,12,6765],["Heard","2021-10-22",12370,14,6779],["Heard","2021-10-23",12370,15,6794],["Heard","2021-10-24",12370,7,6801],["Heard","2021-10-25",12370,22,6823],["Heard","2021-10-26",12370,36,6859],["Heard","2021-10-27",12370,28,6887],["Heard","2021-10-28",12370,34,6921],["Heard","2021-10-29",12370,26,6947],["Heard","2021-10-30",12370,6,6953],["Heard","2021-10-31",12370,5,6958],["Heard","2021-11-01",12370,14,6972],["Heard","2021-11-02",12370,16,6988],["Heard","2021-11-03",12370,27,7015],["Heard","2021-11-04",12370,26,7041],["Heard","2021-11-05",12370,36,7077],["Heard","2021-11-06",12370,6,7083],["Heard","2021-11-07",12370,6,7089],["Heard","2021-11-08",12370,11,7100],["Heard","2021-11-09",12370,11,7111],["Heard","2021-11-10",12370,34,7145],["Heard","2021-11-11",12370,15,7160],["Heard","2021-11-12",12370,28,7188],["Heard","2021-11-13",12370,7,7195],["Heard","2021-11-14",12370,3,7198],["Heard","2021-11-15",12370,13,7211],["Heard","2021-11-16",12370,16,7227],["Heard","2021-11-17",12370,25,7252],["Heard","2021-11-18",12370,22,7274],["Heard","2021-11-19",12370,48,7322],["Heard","2021-11-20",12370,4,7326],["Heard","2021-11-21",12370,7,7333],["Heard","2021-11-22",12370,27,7360],["Heard","2021-11-23",12370,23,7383],["Heard","2021-11-24",12370,12,7395],["Heard","2021-11-26",12370,10,7405],["Heard","2021-11-27",12370,8,7413],["Heard","2021-11-28",12370,2,7415],["Heard","2021-11-29",12370,17,7432],["Heard","2021-11-30",12370,29,7461],["Heard","2021-12-01",12370,29,7490],["Heard","2021-12-02",12370,31,7521],["Heard","2021-12-03",12370,37,7558],["Heard","2021-12-04",12370,9,7567],["Heard","2021-12-05",12370,3,7570],["Heard","2021-12-06",12370,13,7583],["Heard","2021-12-07",12370,17,7600],["Heard","2021-12-08",12370,21,7621],["Heard","2021-12-09",12370,30,7651],["Heard","2021-12-10",12370,26,7677],["Heard","2021-12-11",12370,9,7686],["Heard","2021-12-12",12370,3,7689],["Heard","2021-12-13",12370,9,7698],["Heard","2021-12-14",12370,6,7704],["Heard","2021-12-15",12370,15,7719],["Heard","2021-12-16",12370,21,7740],["Heard","2021-12-17",12370,18,7758],["Heard","2021-12-18",12370,6,7764],["Heard","2021-12-19",12370,1,7765],["Heard","2021-12-20",12370,32,7797],["Heard","2021-12-21",12370,15,7812],["Heard","2021-12-22",12370,24,7836],["Heard","2021-12-23",12370,20,7856],["Heard","2021-12-24",12370,3,7859],["Heard","2021-12-26",12370,7,7866],["Heard","2021-12-27",12370,17,7883],["Heard","2021-12-28",12370,13,7896],["Heard","2021-12-29",12370,33,7929],["Heard","2021-12-30",12370,21,7950],["Heard","2021-12-31",12370,10,7960],["Heard","2022-01-02",12370,4,7964],["Heard","2022-01-03",12370,3,7967],["Henry","2020-12-16",239866,5,5],["Henry","2020-12-17",239866,10,15],["Henry","2020-12-18",239866,101,116],["Henry","2020-12-19",239866,42,158],["Henry","2020-12-20",239866,36,194],["Henry","2020-12-21",239866,72,266],["Henry","2020-12-22",239866,118,384],["Henry","2020-12-23",239866,133,517],["Henry","2020-12-24",239866,31,548],["Henry","2020-12-25",239866,1,549],["Henry","2020-12-26",239866,12,561],["Henry","2020-12-27",239866,16,577],["Henry","2020-12-28",239866,334,911],["Henry","2020-12-29",239866,429,1340],["Henry","2020-12-30",239866,277,1617],["Henry","2020-12-31",239866,157,1774],["Henry","2021-01-01",239866,53,1827],["Henry","2021-01-02",239866,28,1855],["Henry","2021-01-03",239866,33,1888],["Henry","2021-01-04",239866,155,2043],["Henry","2021-01-05",239866,243,2286],["Henry","2021-01-06",239866,276,2562],["Henry","2021-01-07",239866,186,2748],["Henry","2021-01-08",239866,325,3073],["Henry","2021-01-09",239866,148,3221],["Henry","2021-01-10",239866,83,3304],["Henry","2021-01-11",239866,380,3684],["Henry","2021-01-12",239866,808,4492],["Henry","2021-01-13",239866,535,5027],["Henry","2021-01-14",239866,613,5640],["Henry","2021-01-15",239866,872,6512],["Henry","2021-01-16",239866,428,6940],["Henry","2021-01-17",239866,178,7118],["Henry","2021-01-18",239866,637,7755],["Henry","2021-01-19",239866,639,8394],["Henry","2021-01-20",239866,672,9066],["Henry","2021-01-21",239866,556,9622],["Henry","2021-01-22",239866,634,10256],["Henry","2021-01-23",239866,260,10516],["Henry","2021-01-24",239866,88,10604],["Henry","2021-01-25",239866,512,11116],["Henry","2021-01-26",239866,612,11728],["Henry","2021-01-27",239866,604,12332],["Henry","2021-01-28",239866,751,13083],["Henry","2021-01-29",239866,643,13726],["Henry","2021-01-30",239866,193,13919],["Henry","2021-01-31",239866,64,13983],["Henry","2021-02-01",239866,445,14428],["Henry","2021-02-02",239866,516,14944],["Henry","2021-02-03",239866,499,15443],["Henry","2021-02-04",239866,700,16143],["Henry","2021-02-05",239866,805,16948],["Henry","2021-02-06",239866,324,17272],["Henry","2021-02-07",239866,87,17359],["Henry","2021-02-08",239866,456,17815],["Henry","2021-02-09",239866,1042,18857],["Henry","2021-02-10",239866,728,19585],["Henry","2021-02-11",239866,837,20422],["Henry","2021-02-12",239866,1041,21463],["Henry","2021-02-13",239866,455,21918],["Henry","2021-02-14",239866,210,22128],["Henry","2021-02-15",239866,676,22804],["Henry","2021-02-16",239866,1014,23818],["Henry","2021-02-17",239866,923,24741],["Henry","2021-02-18",239866,644,25385],["Henry","2021-02-19",239866,789,26174],["Henry","2021-02-20",239866,283,26457],["Henry","2021-02-21",239866,130,26587],["Henry","2021-02-22",239866,469,27056],["Henry","2021-02-23",239866,1042,28098],["Henry","2021-02-24",239866,875,28973],["Henry","2021-02-25",239866,1150,30123],["Henry","2021-02-26",239866,1232,31355],["Henry","2021-02-27",239866,303,31658],["Henry","2021-02-28",239866,208,31866],["Henry","2021-03-01",239866,674,32540],["Henry","2021-03-02",239866,1067,33607],["Henry","2021-03-03",239866,1071,34678],["Henry","2021-03-04",239866,1191,35869],["Henry","2021-03-05",239866,1288,37157],["Henry","2021-03-06",239866,382,37539],["Henry","2021-03-07",239866,293,37832],["Henry","2021-03-08",239866,988,38820],["Henry","2021-03-09",239866,1410,40230],["Henry","2021-03-10",239866,1415,41645],["Henry","2021-03-11",239866,1495,43140],["Henry","2021-03-12",239866,1837,44977],["Henry","2021-03-13",239866,750,45727],["Henry","2021-03-14",239866,523,46250],["Henry","2021-03-15",239866,1304,47554],["Henry","2021-03-16",239866,1962,49516],["Henry","2021-03-17",239866,1613,51129],["Henry","2021-03-18",239866,1373,52502],["Henry","2021-03-19",239866,1841,54343],["Henry","2021-03-20",239866,679,55022],["Henry","2021-03-21",239866,490,55512],["Henry","2021-03-22",239866,1065,56577],["Henry","2021-03-23",239866,1688,58265],["Henry","2021-03-24",239866,1713,59978],["Henry","2021-03-25",239866,2320,62298],["Henry","2021-03-26",239866,1883,64181],["Henry","2021-03-27",239866,791,64972],["Henry","2021-03-28",239866,633,65605],["Henry","2021-03-29",239866,1564,67169],["Henry","2021-03-30",239866,2294,69463],["Henry","2021-03-31",239866,1983,71446],["Henry","2021-04-01",239866,2352,73798],["Henry","2021-04-02",239866,1675,75473],["Henry","2021-04-03",239866,842,76315],["Henry","2021-04-04",239866,481,76796],["Henry","2021-04-05",239866,1615,78411],["Henry","2021-04-06",239866,2652,81063],["Henry","2021-04-07",239866,2155,83218],["Henry","2021-04-08",239866,1813,85031],["Henry","2021-04-09",239866,2615,87646],["Henry","2021-04-10",239866,1189,88835],["Henry","2021-04-11",239866,599,89434],["Henry","2021-04-12",239866,1622,91056],["Henry","2021-04-13",239866,1948,93004],["Henry","2021-04-14",239866,1963,94967],["Henry","2021-04-15",239866,2367,97334],["Henry","2021-04-16",239866,1944,99278],["Henry","2021-04-17",239866,698,99976],["Henry","2021-04-18",239866,642,100618],["Henry","2021-04-19",239866,1520,102138],["Henry","2021-04-20",239866,2311,104449],["Henry","2021-04-21",239866,1624,106073],["Henry","2021-04-22",239866,1628,107701],["Henry","2021-04-23",239866,1855,109556],["Henry","2021-04-24",239866,809,110365],["Henry","2021-04-25",239866,417,110782],["Henry","2021-04-26",239866,1246,112028],["Henry","2021-04-27",239866,1873,113901],["Henry","2021-04-28",239866,1619,115520],["Henry","2021-04-29",239866,1395,116915],["Henry","2021-04-30",239866,2091,119006],["Henry","2021-05-01",239866,1015,120021],["Henry","2021-05-02",239866,428,120449],["Henry","2021-05-03",239866,998,121447],["Henry","2021-05-04",239866,1427,122874],["Henry","2021-05-05",239866,1336,124210],["Henry","2021-05-06",239866,1135,125345],["Henry","2021-05-07",239866,1632,126977],["Henry","2021-05-08",239866,558,127535],["Henry","2021-05-09",239866,294,127829],["Henry","2021-05-10",239866,766,128595],["Henry","2021-05-11",239866,1137,129732],["Henry","2021-05-12",239866,851,130583],["Henry","2021-05-13",239866,875,131458],["Henry","2021-05-14",239866,1203,132661],["Henry","2021-05-15",239866,782,133443],["Henry","2021-05-16",239866,499,133942],["Henry","2021-05-17",239866,911,134853],["Henry","2021-05-18",239866,1076,135929],["Henry","2021-05-19",239866,928,136857],["Henry","2021-05-20",239866,871,137728],["Henry","2021-05-21",239866,947,138675],["Henry","2021-05-22",239866,605,139280],["Henry","2021-05-23",239866,363,139643],["Henry","2021-05-24",239866,581,140224],["Henry","2021-05-25",239866,744,140968],["Henry","2021-05-26",239866,683,141651],["Henry","2021-05-27",239866,686,142337],["Henry","2021-05-28",239866,692,143029],["Henry","2021-05-29",239866,363,143392],["Henry","2021-05-30",239866,272,143664],["Henry","2021-05-31",239866,71,143735],["Henry","2021-06-01",239866,781,144516],["Henry","2021-06-02",239866,681,145197],["Henry","2021-06-03",239866,588,145785],["Henry","2021-06-04",239866,728,146513],["Henry","2021-06-05",239866,461,146974],["Henry","2021-06-06",239866,357,147331],["Henry","2021-06-07",239866,625,147956],["Henry","2021-06-08",239866,666,148622],["Henry","2021-06-09",239866,533,149155],["Henry","2021-06-10",239866,522,149677],["Henry","2021-06-11",239866,604,150281],["Henry","2021-06-12",239866,423,150704],["Henry","2021-06-13",239866,213,150917],["Henry","2021-06-14",239866,473,151390],["Henry","2021-06-15",239866,489,151879],["Henry","2021-06-16",239866,440,152319],["Henry","2021-06-17",239866,458,152777],["Henry","2021-06-18",239866,491,153268],["Henry","2021-06-19",239866,292,153560],["Henry","2021-06-20",239866,217,153777],["Henry","2021-06-21",239866,329,154106],["Henry","2021-06-22",239866,444,154550],["Henry","2021-06-23",239866,431,154981],["Henry","2021-06-24",239866,384,155365],["Henry","2021-06-25",239866,483,155848],["Henry","2021-06-26",239866,307,156155],["Henry","2021-06-27",239866,220,156375],["Henry","2021-06-28",239866,345,156720],["Henry","2021-06-29",239866,309,157029],["Henry","2021-06-30",239866,330,157359],["Henry","2021-07-01",239866,347,157706],["Henry","2021-07-02",239866,354,158060],["Henry","2021-07-03",239866,213,158273],["Henry","2021-07-04",239866,29,158302],["Henry","2021-07-05",239866,283,158585],["Henry","2021-07-06",239866,322,158907],["Henry","2021-07-07",239866,318,159225],["Henry","2021-07-08",239866,322,159547],["Henry","2021-07-09",239866,360,159907],["Henry","2021-07-10",239866,273,160180],["Henry","2021-07-11",239866,193,160373],["Henry","2021-07-12",239866,340,160713],["Henry","2021-07-13",239866,300,161013],["Henry","2021-07-14",239866,288,161301],["Henry","2021-07-15",239866,299,161600],["Henry","2021-07-16",239866,381,161981],["Henry","2021-07-17",239866,264,162245],["Henry","2021-07-18",239866,202,162447],["Henry","2021-07-19",239866,343,162790],["Henry","2021-07-20",239866,368,163158],["Henry","2021-07-21",239866,388,163546],["Henry","2021-07-22",239866,435,163981],["Henry","2021-07-23",239866,453,164434],["Henry","2021-07-24",239866,320,164754],["Henry","2021-07-25",239866,205,164959],["Henry","2021-07-26",239866,444,165403],["Henry","2021-07-27",239866,469,165872],["Henry","2021-07-28",239866,452,166324],["Henry","2021-07-29",239866,474,166798],["Henry","2021-07-30",239866,567,167365],["Henry","2021-07-31",239866,422,167787],["Henry","2021-08-01",239866,326,168113],["Henry","2021-08-02",239866,526,168639],["Henry","2021-08-03",239866,548,169187],["Henry","2021-08-04",239866,500,169687],["Henry","2021-08-05",239866,575,170262],["Henry","2021-08-06",239866,687,170949],["Henry","2021-08-07",239866,487,171436],["Henry","2021-08-08",239866,339,171775],["Henry","2021-08-09",239866,572,172347],["Henry","2021-08-10",239866,601,172948],["Henry","2021-08-11",239866,568,173516],["Henry","2021-08-12",239866,549,174065],["Henry","2021-08-13",239866,658,174723],["Henry","2021-08-14",239866,498,175221],["Henry","2021-08-15",239866,358,175579],["Henry","2021-08-16",239866,527,176106],["Henry","2021-08-17",239866,491,176597],["Henry","2021-08-18",239866,507,177104],["Henry","2021-08-19",239866,522,177626],["Henry","2021-08-20",239866,628,178254],["Henry","2021-08-21",239866,478,178732],["Henry","2021-08-22",239866,300,179032],["Henry","2021-08-23",239866,568,179600],["Henry","2021-08-24",239866,549,180149],["Henry","2021-08-25",239866,561,180710],["Henry","2021-08-26",239866,631,181341],["Henry","2021-08-27",239866,722,182063],["Henry","2021-08-28",239866,623,182686],["Henry","2021-08-29",239866,351,183037],["Henry","2021-08-30",239866,612,183649],["Henry","2021-08-31",239866,582,184231],["Henry","2021-09-01",239866,639,184870],["Henry","2021-09-02",239866,559,185429],["Henry","2021-09-03",239866,699,186128],["Henry","2021-09-04",239866,399,186527],["Henry","2021-09-05",239866,340,186867],["Henry","2021-09-06",239866,92,186959],["Henry","2021-09-07",239866,572,187531],["Henry","2021-09-08",239866,553,188084],["Henry","2021-09-09",239866,515,188599],["Henry","2021-09-10",239866,583,189182],["Henry","2021-09-11",239866,426,189608],["Henry","2021-09-12",239866,250,189858],["Henry","2021-09-13",239866,474,190332],["Henry","2021-09-14",239866,411,190743],["Henry","2021-09-15",239866,406,191149],["Henry","2021-09-16",239866,374,191523],["Henry","2021-09-17",239866,483,192006],["Henry","2021-09-18",239866,362,192368],["Henry","2021-09-19",239866,213,192581],["Henry","2021-09-20",239866,407,192988],["Henry","2021-09-21",239866,375,193363],["Henry","2021-09-22",239866,397,193760],["Henry","2021-09-23",239866,419,194179],["Henry","2021-09-24",239866,452,194631],["Henry","2021-09-25",239866,297,194928],["Henry","2021-09-26",239866,240,195168],["Henry","2021-09-27",239866,480,195648],["Henry","2021-09-28",239866,527,196175],["Henry","2021-09-29",239866,489,196664],["Henry","2021-09-30",239866,531,197195],["Henry","2021-10-01",239866,614,197809],["Henry","2021-10-02",239866,350,198159],["Henry","2021-10-03",239866,203,198362],["Henry","2021-10-04",239866,397,198759],["Henry","2021-10-05",239866,440,199199],["Henry","2021-10-06",239866,436,199635],["Henry","2021-10-07",239866,452,200087],["Henry","2021-10-08",239866,481,200568],["Henry","2021-10-09",239866,347,200915],["Henry","2021-10-10",239866,167,201082],["Henry","2021-10-11",239866,414,201496],["Henry","2021-10-12",239866,383,201879],["Henry","2021-10-13",239866,423,202302],["Henry","2021-10-14",239866,418,202720],["Henry","2021-10-15",239866,459,203179],["Henry","2021-10-16",239866,284,203463],["Henry","2021-10-17",239866,155,203618],["Henry","2021-10-18",239866,382,204000],["Henry","2021-10-19",239866,379,204379],["Henry","2021-10-20",239866,379,204758],["Henry","2021-10-21",239866,394,205152],["Henry","2021-10-22",239866,580,205732],["Henry","2021-10-23",239866,433,206165],["Henry","2021-10-24",239866,261,206426],["Henry","2021-10-25",239866,644,207070],["Henry","2021-10-26",239866,574,207644],["Henry","2021-10-27",239866,649,208293],["Henry","2021-10-28",239866,647,208940],["Henry","2021-10-29",239866,740,209680],["Henry","2021-10-30",239866,445,210125],["Henry","2021-10-31",239866,190,210315],["Henry","2021-11-01",239866,536,210851],["Henry","2021-11-02",239866,584,211435],["Henry","2021-11-03",239866,548,211983],["Henry","2021-11-04",239866,540,212523],["Henry","2021-11-05",239866,617,213140],["Henry","2021-11-06",239866,393,213533],["Henry","2021-11-07",239866,274,213807],["Henry","2021-11-08",239866,457,214264],["Henry","2021-11-09",239866,560,214824],["Henry","2021-11-10",239866,505,215329],["Henry","2021-11-11",239866,548,215877],["Henry","2021-11-12",239866,626,216503],["Henry","2021-11-13",239866,441,216944],["Henry","2021-11-14",239866,230,217174],["Henry","2021-11-15",239866,467,217641],["Henry","2021-11-16",239866,574,218215],["Henry","2021-11-17",239866,562,218777],["Henry","2021-11-18",239866,535,219312],["Henry","2021-11-19",239866,750,220062],["Henry","2021-11-20",239866,505,220567],["Henry","2021-11-21",239866,313,220880],["Henry","2021-11-22",239866,661,221541],["Henry","2021-11-23",239866,626,222167],["Henry","2021-11-24",239866,517,222684],["Henry","2021-11-25",239866,2,222686],["Henry","2021-11-26",239866,539,223225],["Henry","2021-11-27",239866,411,223636],["Henry","2021-11-28",239866,281,223917],["Henry","2021-11-29",239866,572,224489],["Henry","2021-11-30",239866,704,225193],["Henry","2021-12-01",239866,757,225950],["Henry","2021-12-02",239866,838,226788],["Henry","2021-12-03",239866,928,227716],["Henry","2021-12-04",239866,593,228309],["Henry","2021-12-05",239866,320,228629],["Henry","2021-12-06",239866,662,229291],["Henry","2021-12-07",239866,645,229936],["Henry","2021-12-08",239866,697,230633],["Henry","2021-12-09",239866,720,231353],["Henry","2021-12-10",239866,787,232140],["Henry","2021-12-11",239866,551,232691],["Henry","2021-12-12",239866,312,233003],["Henry","2021-12-13",239866,580,233583],["Henry","2021-12-14",239866,548,234131],["Henry","2021-12-15",239866,538,234669],["Henry","2021-12-16",239866,535,235204],["Henry","2021-12-17",239866,765,235969],["Henry","2021-12-18",239866,510,236479],["Henry","2021-12-19",239866,323,236802],["Henry","2021-12-20",239866,608,237410],["Henry","2021-12-21",239866,753,238163],["Henry","2021-12-22",239866,733,238896],["Henry","2021-12-23",239866,676,239572],["Henry","2021-12-24",239866,222,239794],["Henry","2021-12-25",239866,2,239796],["Henry","2021-12-26",239866,214,240010],["Henry","2021-12-27",239866,643,240653],["Henry","2021-12-28",239866,637,241290],["Henry","2021-12-29",239866,695,241985],["Henry","2021-12-30",239866,542,242527],["Henry","2021-12-31",239866,319,242846],["Henry","2022-01-01",239866,51,242897],["Henry","2022-01-02",239866,163,243060],["Henry","2022-01-03",239866,196,243256],["Houston","2020-12-16",157039,3,3],["Houston","2020-12-17",157039,6,9],["Houston","2020-12-18",157039,10,19],["Houston","2020-12-19",157039,4,23],["Houston","2020-12-20",157039,5,28],["Houston","2020-12-21",157039,12,40],["Houston","2020-12-22",157039,62,102],["Houston","2020-12-23",157039,217,319],["Houston","2020-12-24",157039,152,471],["Houston","2020-12-25",157039,13,484],["Houston","2020-12-26",157039,75,559],["Houston","2020-12-27",157039,25,584],["Houston","2020-12-28",157039,207,791],["Houston","2020-12-29",157039,344,1135],["Houston","2020-12-30",157039,211,1346],["Houston","2020-12-31",157039,102,1448],["Houston","2021-01-01",157039,29,1477],["Houston","2021-01-02",157039,35,1512],["Houston","2021-01-03",157039,29,1541],["Houston","2021-01-04",157039,128,1669],["Houston","2021-01-05",157039,335,2004],["Houston","2021-01-06",157039,214,2218],["Houston","2021-01-07",157039,310,2528],["Houston","2021-01-08",157039,132,2660],["Houston","2021-01-09",157039,44,2704],["Houston","2021-01-10",157039,14,2718],["Houston","2021-01-11",157039,213,2931],["Houston","2021-01-12",157039,474,3405],["Houston","2021-01-13",157039,654,4059],["Houston","2021-01-14",157039,574,4633],["Houston","2021-01-15",157039,410,5043],["Houston","2021-01-16",157039,284,5327],["Houston","2021-01-17",157039,92,5419],["Houston","2021-01-18",157039,564,5983],["Houston","2021-01-19",157039,332,6315],["Houston","2021-01-20",157039,901,7216],["Houston","2021-01-21",157039,402,7618],["Houston","2021-01-22",157039,758,8376],["Houston","2021-01-23",157039,141,8517],["Houston","2021-01-24",157039,59,8576],["Houston","2021-01-25",157039,688,9264],["Houston","2021-01-26",157039,580,9844],["Houston","2021-01-27",157039,1129,10973],["Houston","2021-01-28",157039,664,11637],["Houston","2021-01-29",157039,919,12556],["Houston","2021-01-30",157039,73,12629],["Houston","2021-01-31",157039,14,12643],["Houston","2021-02-01",157039,536,13179],["Houston","2021-02-02",157039,302,13481],["Houston","2021-02-03",157039,740,14221],["Houston","2021-02-04",157039,403,14624],["Houston","2021-02-05",157039,594,15218],["Houston","2021-02-06",157039,113,15331],["Houston","2021-02-07",157039,37,15368],["Houston","2021-02-08",157039,714,16082],["Houston","2021-02-09",157039,454,16536],["Houston","2021-02-10",157039,841,17377],["Houston","2021-02-11",157039,612,17989],["Houston","2021-02-12",157039,806,18795],["Houston","2021-02-13",157039,260,19055],["Houston","2021-02-14",157039,85,19140],["Houston","2021-02-15",157039,756,19896],["Houston","2021-02-16",157039,484,20380],["Houston","2021-02-17",157039,723,21103],["Houston","2021-02-18",157039,544,21647],["Houston","2021-02-19",157039,706,22353],["Houston","2021-02-20",157039,108,22461],["Houston","2021-02-21",157039,44,22505],["Houston","2021-02-22",157039,266,22771],["Houston","2021-02-23",157039,300,23071],["Houston","2021-02-24",157039,900,23971],["Houston","2021-02-25",157039,801,24772],["Houston","2021-02-26",157039,1315,26087],["Houston","2021-02-27",157039,112,26199],["Houston","2021-02-28",157039,105,26304],["Houston","2021-03-01",157039,1377,27681],["Houston","2021-03-02",157039,653,28334],["Houston","2021-03-03",157039,1111,29445],["Houston","2021-03-04",157039,769,30214],["Houston","2021-03-05",157039,1022,31236],["Houston","2021-03-06",157039,100,31336],["Houston","2021-03-07",157039,122,31458],["Houston","2021-03-08",157039,1176,32634],["Houston","2021-03-09",157039,909,33543],["Houston","2021-03-10",157039,1309,34852],["Houston","2021-03-11",157039,821,35673],["Houston","2021-03-12",157039,1143,36816],["Houston","2021-03-13",157039,217,37033],["Houston","2021-03-14",157039,169,37202],["Houston","2021-03-15",157039,1845,39047],["Houston","2021-03-16",157039,1224,40271],["Houston","2021-03-17",157039,1441,41712],["Houston","2021-03-18",157039,898,42610],["Houston","2021-03-19",157039,1568,44178],["Houston","2021-03-20",157039,235,44413],["Houston","2021-03-21",157039,191,44604],["Houston","2021-03-22",157039,1076,45680],["Houston","2021-03-23",157039,744,46424],["Houston","2021-03-24",157039,1034,47458],["Houston","2021-03-25",157039,1187,48645],["Houston","2021-03-26",157039,1358,50003],["Houston","2021-03-27",157039,331,50334],["Houston","2021-03-28",157039,239,50573],["Houston","2021-03-29",157039,1434,52007],["Houston","2021-03-30",157039,1097,53104],["Houston","2021-03-31",157039,1494,54598],["Houston","2021-04-01",157039,1359,55957],["Houston","2021-04-02",157039,1074,57031],["Houston","2021-04-03",157039,419,57450],["Houston","2021-04-04",157039,234,57684],["Houston","2021-04-05",157039,1707,59391],["Houston","2021-04-06",157039,1430,60821],["Houston","2021-04-07",157039,1654,62475],["Houston","2021-04-08",157039,1214,63689],["Houston","2021-04-09",157039,1654,65343],["Houston","2021-04-10",157039,360,65703],["Houston","2021-04-11",157039,249,65952],["Houston","2021-04-12",157039,1701,67653],["Houston","2021-04-13",157039,1080,68733],["Houston","2021-04-14",157039,1357,70090],["Houston","2021-04-15",157039,1089,71179],["Houston","2021-04-16",157039,1319,72498],["Houston","2021-04-17",157039,298,72796],["Houston","2021-04-18",157039,186,72982],["Houston","2021-04-19",157039,1135,74117],["Houston","2021-04-20",157039,848,74965],["Houston","2021-04-21",157039,935,75900],["Houston","2021-04-22",157039,972,76872],["Houston","2021-04-23",157039,1433,78305],["Houston","2021-04-24",157039,341,78646],["Houston","2021-04-25",157039,134,78780],["Houston","2021-04-26",157039,1083,79863],["Houston","2021-04-27",157039,800,80663],["Houston","2021-04-28",157039,999,81662],["Houston","2021-04-29",157039,760,82422],["Houston","2021-04-30",157039,937,83359],["Houston","2021-05-01",157039,339,83698],["Houston","2021-05-02",157039,136,83834],["Houston","2021-05-03",157039,616,84450],["Houston","2021-05-04",157039,595,85045],["Houston","2021-05-05",157039,828,85873],["Houston","2021-05-06",157039,580,86453],["Houston","2021-05-07",157039,824,87277],["Houston","2021-05-08",157039,219,87496],["Houston","2021-05-09",157039,91,87587],["Houston","2021-05-10",157039,423,88010],["Houston","2021-05-11",157039,465,88475],["Houston","2021-05-12",157039,466,88941],["Houston","2021-05-13",157039,514,89455],["Houston","2021-05-14",157039,649,90104],["Houston","2021-05-15",157039,257,90361],["Houston","2021-05-16",157039,199,90560],["Houston","2021-05-17",157039,609,91169],["Houston","2021-05-18",157039,594,91763],["Houston","2021-05-19",157039,731,92494],["Houston","2021-05-20",157039,578,93072],["Houston","2021-05-21",157039,613,93685],["Houston","2021-05-22",157039,234,93919],["Houston","2021-05-23",157039,140,94059],["Houston","2021-05-24",157039,349,94408],["Houston","2021-05-25",157039,342,94750],["Houston","2021-05-26",157039,388,95138],["Houston","2021-05-27",157039,251,95389],["Houston","2021-05-28",157039,311,95700],["Houston","2021-05-29",157039,157,95857],["Houston","2021-05-30",157039,112,95969],["Houston","2021-05-31",157039,57,96026],["Houston","2021-06-01",157039,332,96358],["Houston","2021-06-02",157039,397,96755],["Houston","2021-06-03",157039,283,97038],["Houston","2021-06-04",157039,377,97415],["Houston","2021-06-05",157039,201,97616],["Houston","2021-06-06",157039,153,97769],["Houston","2021-06-07",157039,412,98181],["Houston","2021-06-08",157039,286,98467],["Houston","2021-06-09",157039,442,98909],["Houston","2021-06-10",157039,364,99273],["Houston","2021-06-11",157039,396,99669],["Houston","2021-06-12",157039,232,99901],["Houston","2021-06-13",157039,103,100004],["Houston","2021-06-14",157039,339,100343],["Houston","2021-06-15",157039,281,100624],["Houston","2021-06-16",157039,257,100881],["Houston","2021-06-17",157039,282,101163],["Houston","2021-06-18",157039,272,101435],["Houston","2021-06-19",157039,146,101581],["Houston","2021-06-20",157039,87,101668],["Houston","2021-06-21",157039,210,101878],["Houston","2021-06-22",157039,209,102087],["Houston","2021-06-23",157039,300,102387],["Houston","2021-06-24",157039,200,102587],["Houston","2021-06-25",157039,255,102842],["Houston","2021-06-26",157039,137,102979],["Houston","2021-06-27",157039,81,103060],["Houston","2021-06-28",157039,218,103278],["Houston","2021-06-29",157039,185,103463],["Houston","2021-06-30",157039,212,103675],["Houston","2021-07-01",157039,199,103874],["Houston","2021-07-02",157039,176,104050],["Houston","2021-07-03",157039,123,104173],["Houston","2021-07-04",157039,25,104198],["Houston","2021-07-05",157039,138,104336],["Houston","2021-07-06",157039,158,104494],["Houston","2021-07-07",157039,213,104707],["Houston","2021-07-08",157039,165,104872],["Houston","2021-07-09",157039,191,105063],["Houston","2021-07-10",157039,113,105176],["Houston","2021-07-11",157039,68,105244],["Houston","2021-07-12",157039,171,105415],["Houston","2021-07-13",157039,136,105551],["Houston","2021-07-14",157039,206,105757],["Houston","2021-07-15",157039,193,105950],["Houston","2021-07-16",157039,206,106156],["Houston","2021-07-17",157039,157,106313],["Houston","2021-07-18",157039,66,106379],["Houston","2021-07-19",157039,199,106578],["Houston","2021-07-20",157039,209,106787],["Houston","2021-07-21",157039,311,107098],["Houston","2021-07-22",157039,257,107355],["Houston","2021-07-23",157039,354,107709],["Houston","2021-07-24",157039,251,107960],["Houston","2021-07-25",157039,124,108084],["Houston","2021-07-26",157039,324,108408],["Houston","2021-07-27",157039,287,108695],["Houston","2021-07-28",157039,362,109057],["Houston","2021-07-29",157039,373,109430],["Houston","2021-07-30",157039,473,109903],["Houston","2021-07-31",157039,268,110171],["Houston","2021-08-01",157039,203,110374],["Houston","2021-08-02",157039,274,110648],["Houston","2021-08-03",157039,302,110950],["Houston","2021-08-04",157039,338,111288],["Houston","2021-08-05",157039,297,111585],["Houston","2021-08-06",157039,439,112024],["Houston","2021-08-07",157039,276,112300],["Houston","2021-08-08",157039,218,112518],["Houston","2021-08-09",157039,383,112901],["Houston","2021-08-10",157039,385,113286],["Houston","2021-08-11",157039,406,113692],["Houston","2021-08-12",157039,424,114116],["Houston","2021-08-13",157039,536,114652],["Houston","2021-08-14",157039,350,115002],["Houston","2021-08-15",157039,232,115234],["Houston","2021-08-16",157039,449,115683],["Houston","2021-08-17",157039,376,116059],["Houston","2021-08-18",157039,451,116510],["Houston","2021-08-19",157039,397,116907],["Houston","2021-08-20",157039,576,117483],["Houston","2021-08-21",157039,347,117830],["Houston","2021-08-22",157039,220,118050],["Houston","2021-08-23",157039,457,118507],["Houston","2021-08-24",157039,449,118956],["Houston","2021-08-25",157039,456,119412],["Houston","2021-08-26",157039,437,119849],["Houston","2021-08-27",157039,594,120443],["Houston","2021-08-28",157039,361,120804],["Houston","2021-08-29",157039,269,121073],["Houston","2021-08-30",157039,479,121552],["Houston","2021-08-31",157039,450,122002],["Houston","2021-09-01",157039,480,122482],["Houston","2021-09-02",157039,407,122889],["Houston","2021-09-03",157039,552,123441],["Houston","2021-09-04",157039,325,123766],["Houston","2021-09-05",157039,199,123965],["Houston","2021-09-06",157039,81,124046],["Houston","2021-09-07",157039,476,124522],["Houston","2021-09-08",157039,407,124929],["Houston","2021-09-09",157039,426,125355],["Houston","2021-09-10",157039,541,125896],["Houston","2021-09-11",157039,276,126172],["Houston","2021-09-12",157039,178,126350],["Houston","2021-09-13",157039,418,126768],["Houston","2021-09-14",157039,320,127088],["Houston","2021-09-15",157039,317,127405],["Houston","2021-09-16",157039,351,127756],["Houston","2021-09-17",157039,404,128160],["Houston","2021-09-18",157039,223,128383],["Houston","2021-09-19",157039,132,128515],["Houston","2021-09-20",157039,295,128810],["Houston","2021-09-21",157039,273,129083],["Houston","2021-09-22",157039,279,129362],["Houston","2021-09-23",157039,270,129632],["Houston","2021-09-24",157039,406,130038],["Houston","2021-09-25",157039,182,130220],["Houston","2021-09-26",157039,112,130332],["Houston","2021-09-27",157039,303,130635],["Houston","2021-09-28",157039,338,130973],["Houston","2021-09-29",157039,435,131408],["Houston","2021-09-30",157039,314,131722],["Houston","2021-10-01",157039,460,132182],["Houston","2021-10-02",157039,142,132324],["Houston","2021-10-03",157039,96,132420],["Houston","2021-10-04",157039,295,132715],["Houston","2021-10-05",157039,353,133068],["Houston","2021-10-06",157039,277,133345],["Houston","2021-10-07",157039,328,133673],["Houston","2021-10-08",157039,360,134033],["Houston","2021-10-09",157039,143,134176],["Houston","2021-10-10",157039,97,134273],["Houston","2021-10-11",157039,261,134534],["Houston","2021-10-12",157039,255,134789],["Houston","2021-10-13",157039,232,135021],["Houston","2021-10-14",157039,259,135280],["Houston","2021-10-15",157039,316,135596],["Houston","2021-10-16",157039,103,135699],["Houston","2021-10-17",157039,76,135775],["Houston","2021-10-18",157039,279,136054],["Houston","2021-10-19",157039,203,136257],["Houston","2021-10-20",157039,218,136475],["Houston","2021-10-21",157039,195,136670],["Houston","2021-10-22",157039,470,137140],["Houston","2021-10-23",157039,294,137434],["Houston","2021-10-24",157039,133,137567],["Houston","2021-10-25",157039,603,138170],["Houston","2021-10-26",157039,588,138758],["Houston","2021-10-27",157039,594,139352],["Houston","2021-10-28",157039,473,139825],["Houston","2021-10-29",157039,642,140467],["Houston","2021-10-30",157039,220,140687],["Houston","2021-10-31",157039,111,140798],["Houston","2021-11-01",157039,478,141276],["Houston","2021-11-02",157039,431,141707],["Houston","2021-11-03",157039,473,142180],["Houston","2021-11-04",157039,445,142625],["Houston","2021-11-05",157039,514,143139],["Houston","2021-11-06",157039,221,143360],["Houston","2021-11-07",157039,136,143496],["Houston","2021-11-08",157039,484,143980],["Houston","2021-11-09",157039,390,144370],["Houston","2021-11-10",157039,460,144830],["Houston","2021-11-11",157039,416,145246],["Houston","2021-11-12",157039,594,145840],["Houston","2021-11-13",157039,230,146070],["Houston","2021-11-14",157039,117,146187],["Houston","2021-11-15",157039,416,146603],["Houston","2021-11-16",157039,462,147065],["Houston","2021-11-17",157039,449,147514],["Houston","2021-11-18",157039,456,147970],["Houston","2021-11-19",157039,493,148463],["Houston","2021-11-20",157039,269,148732],["Houston","2021-11-21",157039,172,148904],["Houston","2021-11-22",157039,540,149444],["Houston","2021-11-23",157039,411,149855],["Houston","2021-11-24",157039,276,150131],["Houston","2021-11-25",157039,1,150132],["Houston","2021-11-26",157039,329,150461],["Houston","2021-11-27",157039,251,150712],["Houston","2021-11-28",157039,150,150862],["Houston","2021-11-29",157039,533,151395],["Houston","2021-11-30",157039,594,151989],["Houston","2021-12-01",157039,588,152577],["Houston","2021-12-02",157039,610,153187],["Houston","2021-12-03",157039,732,153919],["Houston","2021-12-04",157039,366,154285],["Houston","2021-12-05",157039,188,154473],["Houston","2021-12-06",157039,415,154888],["Houston","2021-12-07",157039,459,155347],["Houston","2021-12-08",157039,413,155760],["Houston","2021-12-09",157039,484,156244],["Houston","2021-12-10",157039,528,156772],["Houston","2021-12-11",157039,260,157032],["Houston","2021-12-12",157039,132,157164],["Houston","2021-12-13",157039,309,157473],["Houston","2021-12-14",157039,427,157900],["Houston","2021-12-15",157039,368,158268],["Houston","2021-12-16",157039,367,158635],["Houston","2021-12-17",157039,501,159136],["Houston","2021-12-18",157039,220,159356],["Houston","2021-12-19",157039,142,159498],["Houston","2021-12-20",157039,481,159979],["Houston","2021-12-21",157039,446,160425],["Houston","2021-12-22",157039,459,160884],["Houston","2021-12-23",157039,380,161264],["Houston","2021-12-24",157039,110,161374],["Houston","2021-12-26",157039,135,161509],["Houston","2021-12-27",157039,452,161961],["Houston","2021-12-28",157039,451,162412],["Houston","2021-12-29",157039,464,162876],["Houston","2021-12-30",157039,408,163284],["Houston","2021-12-31",157039,286,163570],["Houston","2022-01-01",157039,20,163590],["Houston","2022-01-02",157039,103,163693],["Houston","2022-01-03",157039,132,163825],["Irwin","2020-12-18",9433,1,1],["Irwin","2020-12-19",9433,1,2],["Irwin","2020-12-21",9433,1,3],["Irwin","2020-12-22",9433,6,9],["Irwin","2020-12-23",9433,12,21],["Irwin","2020-12-24",9433,1,22],["Irwin","2020-12-26",9433,1,23],["Irwin","2020-12-28",9433,38,61],["Irwin","2020-12-29",9433,20,81],["Irwin","2020-12-30",9433,15,96],["Irwin","2020-12-31",9433,14,110],["Irwin","2021-01-03",9433,1,111],["Irwin","2021-01-04",9433,29,140],["Irwin","2021-01-05",9433,20,160],["Irwin","2021-01-06",9433,26,186],["Irwin","2021-01-07",9433,20,206],["Irwin","2021-01-08",9433,25,231],["Irwin","2021-01-09",9433,1,232],["Irwin","2021-01-10",9433,4,236],["Irwin","2021-01-11",9433,46,282],["Irwin","2021-01-12",9433,64,346],["Irwin","2021-01-13",9433,71,417],["Irwin","2021-01-14",9433,89,506],["Irwin","2021-01-15",9433,52,558],["Irwin","2021-01-16",9433,3,561],["Irwin","2021-01-18",9433,63,624],["Irwin","2021-01-19",9433,53,677],["Irwin","2021-01-20",9433,53,730],["Irwin","2021-01-21",9433,46,776],["Irwin","2021-01-22",9433,53,829],["Irwin","2021-01-24",9433,5,834],["Irwin","2021-01-25",9433,33,867],["Irwin","2021-01-26",9433,84,951],["Irwin","2021-01-27",9433,70,1021],["Irwin","2021-01-28",9433,65,1086],["Irwin","2021-01-29",9433,30,1116],["Irwin","2021-01-30",9433,1,1117],["Irwin","2021-01-31",9433,2,1119],["Irwin","2021-02-01",9433,45,1164],["Irwin","2021-02-02",9433,26,1190],["Irwin","2021-02-03",9433,72,1262],["Irwin","2021-02-04",9433,44,1306],["Irwin","2021-02-05",9433,39,1345],["Irwin","2021-02-06",9433,3,1348],["Irwin","2021-02-08",9433,69,1417],["Irwin","2021-02-09",9433,68,1485],["Irwin","2021-02-10",9433,75,1560],["Irwin","2021-02-11",9433,96,1656],["Irwin","2021-02-12",9433,46,1702],["Irwin","2021-02-14",9433,1,1703],["Irwin","2021-02-15",9433,71,1774],["Irwin","2021-02-16",9433,67,1841],["Irwin","2021-02-17",9433,69,1910],["Irwin","2021-02-18",9433,53,1963],["Irwin","2021-02-19",9433,51,2014],["Irwin","2021-02-21",9433,3,2017],["Irwin","2021-02-22",9433,32,2049],["Irwin","2021-02-23",9433,81,2130],["Irwin","2021-02-24",9433,63,2193],["Irwin","2021-02-25",9433,83,2276],["Irwin","2021-02-26",9433,20,2296],["Irwin","2021-02-27",9433,4,2300],["Irwin","2021-03-01",9433,41,2341],["Irwin","2021-03-02",9433,20,2361],["Irwin","2021-03-03",9433,37,2398],["Irwin","2021-03-04",9433,29,2427],["Irwin","2021-03-05",9433,15,2442],["Irwin","2021-03-06",9433,2,2444],["Irwin","2021-03-07",9433,1,2445],["Irwin","2021-03-08",9433,34,2479],["Irwin","2021-03-09",9433,37,2516],["Irwin","2021-03-10",9433,53,2569],["Irwin","2021-03-11",9433,98,2667],["Irwin","2021-03-12",9433,37,2704],["Irwin","2021-03-13",9433,2,2706],["Irwin","2021-03-15",9433,54,2760],["Irwin","2021-03-16",9433,45,2805],["Irwin","2021-03-17",9433,71,2876],["Irwin","2021-03-18",9433,67,2943],["Irwin","2021-03-19",9433,53,2996],["Irwin","2021-03-20",9433,5,3001],["Irwin","2021-03-22",9433,31,3032],["Irwin","2021-03-23",9433,64,3096],["Irwin","2021-03-24",9433,36,3132],["Irwin","2021-03-25",9433,72,3204],["Irwin","2021-03-26",9433,57,3261],["Irwin","2021-03-27",9433,15,3276],["Irwin","2021-03-29",9433,42,3318],["Irwin","2021-03-30",9433,37,3355],["Irwin","2021-03-31",9433,43,3398],["Irwin","2021-04-01",9433,38,3436],["Irwin","2021-04-02",9433,37,3473],["Irwin","2021-04-03",9433,4,3477],["Irwin","2021-04-04",9433,2,3479],["Irwin","2021-04-05",9433,49,3528],["Irwin","2021-04-06",9433,67,3595],["Irwin","2021-04-07",9433,53,3648],["Irwin","2021-04-08",9433,48,3696],["Irwin","2021-04-09",9433,67,3763],["Irwin","2021-04-10",9433,2,3765],["Irwin","2021-04-12",9433,37,3802],["Irwin","2021-04-13",9433,43,3845],["Irwin","2021-04-14",9433,45,3890],["Irwin","2021-04-15",9433,50,3940],["Irwin","2021-04-16",9433,59,3999],["Irwin","2021-04-17",9433,12,4011],["Irwin","2021-04-18",9433,1,4012],["Irwin","2021-04-19",9433,54,4066],["Irwin","2021-04-20",9433,25,4091],["Irwin","2021-04-21",9433,28,4119],["Irwin","2021-04-22",9433,34,4153],["Irwin","2021-04-23",9433,54,4207],["Irwin","2021-04-24",9433,4,4211],["Irwin","2021-04-26",9433,27,4238],["Irwin","2021-04-27",9433,29,4267],["Irwin","2021-04-28",9433,33,4300],["Irwin","2021-04-29",9433,21,4321],["Irwin","2021-04-30",9433,24,4345],["Irwin","2021-05-01",9433,6,4351],["Irwin","2021-05-02",9433,1,4352],["Irwin","2021-05-03",9433,36,4388],["Irwin","2021-05-04",9433,18,4406],["Irwin","2021-05-05",9433,26,4432],["Irwin","2021-05-06",9433,20,4452],["Irwin","2021-05-07",9433,18,4470],["Irwin","2021-05-08",9433,4,4474],["Irwin","2021-05-10",9433,16,4490],["Irwin","2021-05-11",9433,14,4504],["Irwin","2021-05-12",9433,26,4530],["Irwin","2021-05-13",9433,6,4536],["Irwin","2021-05-14",9433,28,4564],["Irwin","2021-05-15",9433,3,4567],["Irwin","2021-05-16",9433,2,4569],["Irwin","2021-05-17",9433,18,4587],["Irwin","2021-05-18",9433,30,4617],["Irwin","2021-05-19",9433,13,4630],["Irwin","2021-05-20",9433,13,4643],["Irwin","2021-05-21",9433,19,4662],["Irwin","2021-05-22",9433,7,4669],["Irwin","2021-05-23",9433,2,4671],["Irwin","2021-05-24",9433,32,4703],["Irwin","2021-05-25",9433,9,4712],["Irwin","2021-05-26",9433,27,4739],["Irwin","2021-05-27",9433,12,4751],["Irwin","2021-05-28",9433,11,4762],["Irwin","2021-05-29",9433,1,4763],["Irwin","2021-05-31",9433,3,4766],["Irwin","2021-06-01",9433,8,4774],["Irwin","2021-06-02",9433,8,4782],["Irwin","2021-06-03",9433,12,4794],["Irwin","2021-06-04",9433,27,4821],["Irwin","2021-06-05",9433,2,4823],["Irwin","2021-06-06",9433,1,4824],["Irwin","2021-06-07",9433,15,4839],["Irwin","2021-06-08",9433,7,4846],["Irwin","2021-06-09",9433,16,4862],["Irwin","2021-06-10",9433,9,4871],["Irwin","2021-06-11",9433,13,4884],["Irwin","2021-06-12",9433,6,4890],["Irwin","2021-06-13",9433,1,4891],["Irwin","2021-06-14",9433,18,4909],["Irwin","2021-06-15",9433,7,4916],["Irwin","2021-06-16",9433,12,4928],["Irwin","2021-06-17",9433,8,4936],["Irwin","2021-06-18",9433,12,4948],["Irwin","2021-06-19",9433,7,4955],["Irwin","2021-06-20",9433,3,4958],["Irwin","2021-06-21",9433,21,4979],["Irwin","2021-06-22",9433,8,4987],["Irwin","2021-06-23",9433,13,5000],["Irwin","2021-06-24",9433,12,5012],["Irwin","2021-06-25",9433,14,5026],["Irwin","2021-06-26",9433,7,5033],["Irwin","2021-06-28",9433,9,5042],["Irwin","2021-06-29",9433,4,5046],["Irwin","2021-06-30",9433,6,5052],["Irwin","2021-07-01",9433,7,5059],["Irwin","2021-07-02",9433,7,5066],["Irwin","2021-07-03",9433,1,5067],["Irwin","2021-07-05",9433,3,5070],["Irwin","2021-07-06",9433,14,5084],["Irwin","2021-07-07",9433,4,5088],["Irwin","2021-07-08",9433,2,5090],["Irwin","2021-07-09",9433,9,5099],["Irwin","2021-07-10",9433,4,5103],["Irwin","2021-07-11",9433,1,5104],["Irwin","2021-07-12",9433,15,5119],["Irwin","2021-07-13",9433,4,5123],["Irwin","2021-07-14",9433,7,5130],["Irwin","2021-07-15",9433,10,5140],["Irwin","2021-07-16",9433,7,5147],["Irwin","2021-07-17",9433,9,5156],["Irwin","2021-07-18",9433,5,5161],["Irwin","2021-07-19",9433,14,5175],["Irwin","2021-07-20",9433,7,5182],["Irwin","2021-07-21",9433,19,5201],["Irwin","2021-07-22",9433,8,5209],["Irwin","2021-07-23",9433,25,5234],["Irwin","2021-07-24",9433,27,5261],["Irwin","2021-07-25",9433,1,5262],["Irwin","2021-07-26",9433,19,5281],["Irwin","2021-07-27",9433,29,5310],["Irwin","2021-07-28",9433,19,5329],["Irwin","2021-07-29",9433,11,5340],["Irwin","2021-07-30",9433,40,5380],["Irwin","2021-07-31",9433,9,5389],["Irwin","2021-08-01",9433,7,5396],["Irwin","2021-08-02",9433,29,5425],["Irwin","2021-08-03",9433,19,5444],["Irwin","2021-08-04",9433,39,5483],["Irwin","2021-08-05",9433,33,5516],["Irwin","2021-08-06",9433,41,5557],["Irwin","2021-08-07",9433,24,5581],["Irwin","2021-08-08",9433,3,5584],["Irwin","2021-08-09",9433,31,5615],["Irwin","2021-08-10",9433,23,5638],["Irwin","2021-08-11",9433,28,5666],["Irwin","2021-08-12",9433,25,5691],["Irwin","2021-08-13",9433,37,5728],["Irwin","2021-08-14",9433,22,5750],["Irwin","2021-08-15",9433,7,5757],["Irwin","2021-08-16",9433,27,5784],["Irwin","2021-08-17",9433,41,5825],["Irwin","2021-08-18",9433,39,5864],["Irwin","2021-08-19",9433,16,5880],["Irwin","2021-08-20",9433,53,5933],["Irwin","2021-08-21",9433,29,5962],["Irwin","2021-08-22",9433,9,5971],["Irwin","2021-08-23",9433,31,6002],["Irwin","2021-08-24",9433,35,6037],["Irwin","2021-08-25",9433,38,6075],["Irwin","2021-08-26",9433,25,6100],["Irwin","2021-08-27",9433,55,6155],["Irwin","2021-08-28",9433,16,6171],["Irwin","2021-08-29",9433,15,6186],["Irwin","2021-08-30",9433,40,6226],["Irwin","2021-08-31",9433,25,6251],["Irwin","2021-09-01",9433,21,6272],["Irwin","2021-09-02",9433,18,6290],["Irwin","2021-09-03",9433,28,6318],["Irwin","2021-09-04",9433,12,6330],["Irwin","2021-09-05",9433,4,6334],["Irwin","2021-09-06",9433,2,6336],["Irwin","2021-09-07",9433,23,6359],["Irwin","2021-09-08",9433,23,6382],["Irwin","2021-09-09",9433,21,6403],["Irwin","2021-09-10",9433,48,6451],["Irwin","2021-09-11",9433,11,6462],["Irwin","2021-09-12",9433,9,6471],["Irwin","2021-09-13",9433,23,6494],["Irwin","2021-09-14",9433,30,6524],["Irwin","2021-09-15",9433,47,6571],["Irwin","2021-09-16",9433,17,6588],["Irwin","2021-09-17",9433,33,6621],["Irwin","2021-09-18",9433,8,6629],["Irwin","2021-09-19",9433,3,6632],["Irwin","2021-09-20",9433,16,6648],["Irwin","2021-09-21",9433,13,6661],["Irwin","2021-09-22",9433,13,6674],["Irwin","2021-09-23",9433,8,6682],["Irwin","2021-09-24",9433,19,6701],["Irwin","2021-09-25",9433,2,6703],["Irwin","2021-09-26",9433,6,6709],["Irwin","2021-09-27",9433,18,6727],["Irwin","2021-09-28",9433,17,6744],["Irwin","2021-09-29",9433,16,6760],["Irwin","2021-09-30",9433,15,6775],["Irwin","2021-10-01",9433,12,6787],["Irwin","2021-10-02",9433,12,6799],["Irwin","2021-10-03",9433,1,6800],["Irwin","2021-10-04",9433,5,6805],["Irwin","2021-10-05",9433,16,6821],["Irwin","2021-10-06",9433,10,6831],["Irwin","2021-10-07",9433,8,6839],["Irwin","2021-10-08",9433,13,6852],["Irwin","2021-10-09",9433,1,6853],["Irwin","2021-10-10",9433,1,6854],["Irwin","2021-10-11",9433,8,6862],["Irwin","2021-10-12",9433,8,6870],["Irwin","2021-10-13",9433,15,6885],["Irwin","2021-10-14",9433,11,6896],["Irwin","2021-10-15",9433,15,6911],["Irwin","2021-10-16",9433,2,6913],["Irwin","2021-10-18",9433,5,6918],["Irwin","2021-10-19",9433,5,6923],["Irwin","2021-10-20",9433,14,6937],["Irwin","2021-10-21",9433,25,6962],["Irwin","2021-10-22",9433,10,6972],["Irwin","2021-10-23",9433,10,6982],["Irwin","2021-10-24",9433,3,6985],["Irwin","2021-10-25",9433,7,6992],["Irwin","2021-10-26",9433,9,7001],["Irwin","2021-10-27",9433,12,7013],["Irwin","2021-10-28",9433,19,7032],["Irwin","2021-10-29",9433,10,7042],["Irwin","2021-10-30",9433,5,7047],["Irwin","2021-11-01",9433,26,7073],["Irwin","2021-11-02",9433,12,7085],["Irwin","2021-11-03",9433,28,7113],["Irwin","2021-11-04",9433,19,7132],["Irwin","2021-11-05",9433,10,7142],["Irwin","2021-11-06",9433,3,7145],["Irwin","2021-11-07",9433,1,7146],["Irwin","2021-11-08",9433,63,7209],["Irwin","2021-11-09",9433,20,7229],["Irwin","2021-11-10",9433,31,7260],["Irwin","2021-11-11",9433,6,7266],["Irwin","2021-11-12",9433,12,7278],["Irwin","2021-11-13",9433,2,7280],["Irwin","2021-11-14",9433,6,7286],["Irwin","2021-11-15",9433,30,7316],["Irwin","2021-11-16",9433,9,7325],["Irwin","2021-11-17",9433,20,7345],["Irwin","2021-11-18",9433,30,7375],["Irwin","2021-11-19",9433,28,7403],["Irwin","2021-11-20",9433,7,7410],["Irwin","2021-11-21",9433,2,7412],["Irwin","2021-11-22",9433,14,7426],["Irwin","2021-11-23",9433,27,7453],["Irwin","2021-11-24",9433,20,7473],["Irwin","2021-11-26",9433,1,7474],["Irwin","2021-11-27",9433,2,7476],["Irwin","2021-11-28",9433,4,7480],["Irwin","2021-11-29",9433,13,7493],["Irwin","2021-11-30",9433,28,7521],["Irwin","2021-12-01",9433,33,7554],["Irwin","2021-12-02",9433,29,7583],["Irwin","2021-12-03",9433,40,7623],["Irwin","2021-12-04",9433,8,7631],["Irwin","2021-12-05",9433,9,7640],["Irwin","2021-12-06",9433,24,7664],["Irwin","2021-12-07",9433,13,7677],["Irwin","2021-12-08",9433,25,7702],["Irwin","2021-12-09",9433,13,7715],["Irwin","2021-12-10",9433,15,7730],["Irwin","2021-12-11",9433,4,7734],["Irwin","2021-12-12",9433,2,7736],["Irwin","2021-12-13",9433,24,7760],["Irwin","2021-12-14",9433,8,7768],["Irwin","2021-12-15",9433,40,7808],["Irwin","2021-12-16",9433,20,7828],["Irwin","2021-12-17",9433,19,7847],["Irwin","2021-12-18",9433,3,7850],["Irwin","2021-12-19",9433,1,7851],["Irwin","2021-12-20",9433,28,7879],["Irwin","2021-12-21",9433,22,7901],["Irwin","2021-12-22",9433,17,7918],["Irwin","2021-12-23",9433,5,7923],["Irwin","2021-12-24",9433,3,7926],["Irwin","2021-12-26",9433,1,7927],["Irwin","2021-12-27",9433,13,7940],["Irwin","2021-12-28",9433,19,7959],["Irwin","2021-12-29",9433,20,7979],["Irwin","2021-12-30",9433,28,8007],["Irwin","2021-12-31",9433,5,8012],["Irwin","2022-01-01",9433,1,8013],["Irwin","2022-01-02",9433,5,8018],["Irwin","2022-01-03",9433,6,8024],["Jackson","2020-12-16",74700,2,2],["Jackson","2020-12-17",74700,1,3],["Jackson","2020-12-18",74700,29,32],["Jackson","2020-12-19",74700,27,59],["Jackson","2020-12-20",74700,11,70],["Jackson","2020-12-21",74700,45,115],["Jackson","2020-12-22",74700,61,176],["Jackson","2020-12-23",74700,96,272],["Jackson","2020-12-24",74700,14,286],["Jackson","2020-12-25",74700,1,287],["Jackson","2020-12-26",74700,9,296],["Jackson","2020-12-27",74700,8,304],["Jackson","2020-12-28",74700,123,427],["Jackson","2020-12-29",74700,109,536],["Jackson","2020-12-30",74700,80,616],["Jackson","2020-12-31",74700,60,676],["Jackson","2021-01-01",74700,13,689],["Jackson","2021-01-02",74700,21,710],["Jackson","2021-01-03",74700,9,719],["Jackson","2021-01-04",74700,82,801],["Jackson","2021-01-05",74700,71,872],["Jackson","2021-01-06",74700,115,987],["Jackson","2021-01-07",74700,62,1049],["Jackson","2021-01-08",74700,96,1145],["Jackson","2021-01-09",74700,47,1192],["Jackson","2021-01-10",74700,24,1216],["Jackson","2021-01-11",74700,136,1352],["Jackson","2021-01-12",74700,189,1541],["Jackson","2021-01-13",74700,167,1708],["Jackson","2021-01-14",74700,328,2036],["Jackson","2021-01-15",74700,216,2252],["Jackson","2021-01-16",74700,159,2411],["Jackson","2021-01-17",74700,71,2482],["Jackson","2021-01-18",74700,227,2709],["Jackson","2021-01-19",74700,306,3015],["Jackson","2021-01-20",74700,338,3353],["Jackson","2021-01-21",74700,276,3629],["Jackson","2021-01-22",74700,235,3864],["Jackson","2021-01-23",74700,191,4055],["Jackson","2021-01-24",74700,43,4098],["Jackson","2021-01-25",74700,200,4298],["Jackson","2021-01-26",74700,327,4625],["Jackson","2021-01-27",74700,465,5090],["Jackson","2021-01-28",74700,311,5401],["Jackson","2021-01-29",74700,427,5828],["Jackson","2021-01-30",74700,90,5918],["Jackson","2021-01-31",74700,33,5951],["Jackson","2021-02-01",74700,183,6134],["Jackson","2021-02-02",74700,181,6315],["Jackson","2021-02-03",74700,366,6681],["Jackson","2021-02-04",74700,380,7061],["Jackson","2021-02-05",74700,184,7245],["Jackson","2021-02-06",74700,83,7328],["Jackson","2021-02-07",74700,11,7339],["Jackson","2021-02-08",74700,152,7491],["Jackson","2021-02-09",74700,225,7716],["Jackson","2021-02-10",74700,362,8078],["Jackson","2021-02-11",74700,333,8411],["Jackson","2021-02-12",74700,219,8630],["Jackson","2021-02-13",74700,251,8881],["Jackson","2021-02-14",74700,83,8964],["Jackson","2021-02-15",74700,295,9259],["Jackson","2021-02-16",74700,284,9543],["Jackson","2021-02-17",74700,720,10263],["Jackson","2021-02-18",74700,312,10575],["Jackson","2021-02-19",74700,409,10984],["Jackson","2021-02-20",74700,196,11180],["Jackson","2021-02-21",74700,42,11222],["Jackson","2021-02-22",74700,183,11405],["Jackson","2021-02-23",74700,248,11653],["Jackson","2021-02-24",74700,698,12351],["Jackson","2021-02-25",74700,453,12804],["Jackson","2021-02-26",74700,232,13036],["Jackson","2021-02-27",74700,130,13166],["Jackson","2021-02-28",74700,65,13231],["Jackson","2021-03-01",74700,302,13533],["Jackson","2021-03-02",74700,347,13880],["Jackson","2021-03-03",74700,685,14565],["Jackson","2021-03-04",74700,413,14978],["Jackson","2021-03-05",74700,242,15220],["Jackson","2021-03-06",74700,116,15336],["Jackson","2021-03-07",74700,86,15422],["Jackson","2021-03-08",74700,315,15737],["Jackson","2021-03-09",74700,313,16050],["Jackson","2021-03-10",74700,793,16843],["Jackson","2021-03-11",74700,497,17340],["Jackson","2021-03-12",74700,325,17665],["Jackson","2021-03-13",74700,459,18124],["Jackson","2021-03-14",74700,69,18193],["Jackson","2021-03-15",74700,376,18569],["Jackson","2021-03-16",74700,407,18976],["Jackson","2021-03-17",74700,827,19803],["Jackson","2021-03-18",74700,461,20264],["Jackson","2021-03-19",74700,323,20587],["Jackson","2021-03-20",74700,145,20732],["Jackson","2021-03-21",74700,96,20828],["Jackson","2021-03-22",74700,290,21118],["Jackson","2021-03-23",74700,447,21565],["Jackson","2021-03-24",74700,504,22069],["Jackson","2021-03-25",74700,739,22808],["Jackson","2021-03-26",74700,347,23155],["Jackson","2021-03-27",74700,213,23368],["Jackson","2021-03-28",74700,136,23504],["Jackson","2021-03-29",74700,469,23973],["Jackson","2021-03-30",74700,576,24549],["Jackson","2021-03-31",74700,702,25251],["Jackson","2021-04-01",74700,711,25962],["Jackson","2021-04-02",74700,466,26428],["Jackson","2021-04-03",74700,198,26626],["Jackson","2021-04-04",74700,131,26757],["Jackson","2021-04-05",74700,468,27225],["Jackson","2021-04-06",74700,608,27833],["Jackson","2021-04-07",74700,561,28394],["Jackson","2021-04-08",74700,556,28950],["Jackson","2021-04-09",74700,441,29391],["Jackson","2021-04-10",74700,247,29638],["Jackson","2021-04-11",74700,156,29794],["Jackson","2021-04-12",74700,507,30301],["Jackson","2021-04-13",74700,523,30824],["Jackson","2021-04-14",74700,585,31409],["Jackson","2021-04-15",74700,565,31974],["Jackson","2021-04-16",74700,483,32457],["Jackson","2021-04-17",74700,181,32638],["Jackson","2021-04-18",74700,109,32747],["Jackson","2021-04-19",74700,395,33142],["Jackson","2021-04-20",74700,625,33767],["Jackson","2021-04-21",74700,569,34336],["Jackson","2021-04-22",74700,590,34926],["Jackson","2021-04-23",74700,497,35423],["Jackson","2021-04-24",74700,165,35588],["Jackson","2021-04-25",74700,85,35673],["Jackson","2021-04-26",74700,406,36079],["Jackson","2021-04-27",74700,508,36587],["Jackson","2021-04-28",74700,500,37087],["Jackson","2021-04-29",74700,484,37571],["Jackson","2021-04-30",74700,431,38002],["Jackson","2021-05-01",74700,179,38181],["Jackson","2021-05-02",74700,88,38269],["Jackson","2021-05-03",74700,315,38584],["Jackson","2021-05-04",74700,371,38955],["Jackson","2021-05-05",74700,373,39328],["Jackson","2021-05-06",74700,348,39676],["Jackson","2021-05-07",74700,318,39994],["Jackson","2021-05-08",74700,162,40156],["Jackson","2021-05-09",74700,55,40211],["Jackson","2021-05-10",74700,216,40427],["Jackson","2021-05-11",74700,263,40690],["Jackson","2021-05-12",74700,221,40911],["Jackson","2021-05-13",74700,283,41194],["Jackson","2021-05-14",74700,299,41493],["Jackson","2021-05-15",74700,142,41635],["Jackson","2021-05-16",74700,110,41745],["Jackson","2021-05-17",74700,222,41967],["Jackson","2021-05-18",74700,275,42242],["Jackson","2021-05-19",74700,292,42534],["Jackson","2021-05-20",74700,253,42787],["Jackson","2021-05-21",74700,210,42997],["Jackson","2021-05-22",74700,110,43107],["Jackson","2021-05-23",74700,83,43190],["Jackson","2021-05-24",74700,204,43394],["Jackson","2021-05-25",74700,209,43603],["Jackson","2021-05-26",74700,179,43782],["Jackson","2021-05-27",74700,196,43978],["Jackson","2021-05-28",74700,204,44182],["Jackson","2021-05-29",74700,84,44266],["Jackson","2021-05-30",74700,36,44302],["Jackson","2021-05-31",74700,39,44341],["Jackson","2021-06-01",74700,217,44558],["Jackson","2021-06-02",74700,168,44726],["Jackson","2021-06-03",74700,199,44925],["Jackson","2021-06-04",74700,198,45123],["Jackson","2021-06-05",74700,114,45237],["Jackson","2021-06-06",74700,79,45316],["Jackson","2021-06-07",74700,167,45483],["Jackson","2021-06-08",74700,167,45650],["Jackson","2021-06-09",74700,138,45788],["Jackson","2021-06-10",74700,140,45928],["Jackson","2021-06-11",74700,148,46076],["Jackson","2021-06-12",74700,95,46171],["Jackson","2021-06-13",74700,58,46229],["Jackson","2021-06-14",74700,127,46356],["Jackson","2021-06-15",74700,147,46503],["Jackson","2021-06-16",74700,92,46595],["Jackson","2021-06-17",74700,131,46726],["Jackson","2021-06-18",74700,149,46875],["Jackson","2021-06-19",74700,69,46944],["Jackson","2021-06-20",74700,41,46985],["Jackson","2021-06-21",74700,80,47065],["Jackson","2021-06-22",74700,111,47176],["Jackson","2021-06-23",74700,92,47268],["Jackson","2021-06-24",74700,95,47363],["Jackson","2021-06-25",74700,125,47488],["Jackson","2021-06-26",74700,55,47543],["Jackson","2021-06-27",74700,33,47576],["Jackson","2021-06-28",74700,94,47670],["Jackson","2021-06-29",74700,72,47742],["Jackson","2021-06-30",74700,105,47847],["Jackson","2021-07-01",74700,94,47941],["Jackson","2021-07-02",74700,96,48037],["Jackson","2021-07-03",74700,42,48079],["Jackson","2021-07-04",74700,5,48084],["Jackson","2021-07-05",74700,62,48146],["Jackson","2021-07-06",74700,65,48211],["Jackson","2021-07-07",74700,65,48276],["Jackson","2021-07-08",74700,115,48391],["Jackson","2021-07-09",74700,92,48483],["Jackson","2021-07-10",74700,68,48551],["Jackson","2021-07-11",74700,31,48582],["Jackson","2021-07-12",74700,70,48652],["Jackson","2021-07-13",74700,60,48712],["Jackson","2021-07-14",74700,69,48781],["Jackson","2021-07-15",74700,69,48850],["Jackson","2021-07-16",74700,92,48942],["Jackson","2021-07-17",74700,64,49006],["Jackson","2021-07-18",74700,49,49055],["Jackson","2021-07-19",74700,88,49143],["Jackson","2021-07-20",74700,84,49227],["Jackson","2021-07-21",74700,94,49321],["Jackson","2021-07-22",74700,100,49421],["Jackson","2021-07-23",74700,107,49528],["Jackson","2021-07-24",74700,93,49621],["Jackson","2021-07-25",74700,51,49672],["Jackson","2021-07-26",74700,109,49781],["Jackson","2021-07-27",74700,115,49896],["Jackson","2021-07-28",74700,80,49976],["Jackson","2021-07-29",74700,136,50112],["Jackson","2021-07-30",74700,155,50267],["Jackson","2021-07-31",74700,99,50366],["Jackson","2021-08-01",74700,79,50445],["Jackson","2021-08-02",74700,103,50548],["Jackson","2021-08-03",74700,112,50660],["Jackson","2021-08-04",74700,132,50792],["Jackson","2021-08-05",74700,144,50936],["Jackson","2021-08-06",74700,196,51132],["Jackson","2021-08-07",74700,122,51254],["Jackson","2021-08-08",74700,89,51343],["Jackson","2021-08-09",74700,154,51497],["Jackson","2021-08-10",74700,169,51666],["Jackson","2021-08-11",74700,176,51842],["Jackson","2021-08-12",74700,163,52005],["Jackson","2021-08-13",74700,182,52187],["Jackson","2021-08-14",74700,130,52317],["Jackson","2021-08-15",74700,96,52413],["Jackson","2021-08-16",74700,168,52581],["Jackson","2021-08-17",74700,142,52723],["Jackson","2021-08-18",74700,156,52879],["Jackson","2021-08-19",74700,166,53045],["Jackson","2021-08-20",74700,232,53277],["Jackson","2021-08-21",74700,138,53415],["Jackson","2021-08-22",74700,82,53497],["Jackson","2021-08-23",74700,162,53659],["Jackson","2021-08-24",74700,180,53839],["Jackson","2021-08-25",74700,218,54057],["Jackson","2021-08-26",74700,219,54276],["Jackson","2021-08-27",74700,293,54569],["Jackson","2021-08-28",74700,180,54749],["Jackson","2021-08-29",74700,110,54859],["Jackson","2021-08-30",74700,203,55062],["Jackson","2021-08-31",74700,228,55290],["Jackson","2021-09-01",74700,200,55490],["Jackson","2021-09-02",74700,209,55699],["Jackson","2021-09-03",74700,215,55914],["Jackson","2021-09-04",74700,144,56058],["Jackson","2021-09-05",74700,87,56145],["Jackson","2021-09-06",74700,29,56174],["Jackson","2021-09-07",74700,180,56354],["Jackson","2021-09-08",74700,187,56541],["Jackson","2021-09-09",74700,182,56723],["Jackson","2021-09-10",74700,212,56935],["Jackson","2021-09-11",74700,123,57058],["Jackson","2021-09-12",74700,79,57137],["Jackson","2021-09-13",74700,168,57305],["Jackson","2021-09-14",74700,151,57456],["Jackson","2021-09-15",74700,179,57635],["Jackson","2021-09-16",74700,164,57799],["Jackson","2021-09-17",74700,222,58021],["Jackson","2021-09-18",74700,115,58136],["Jackson","2021-09-19",74700,79,58215],["Jackson","2021-09-20",74700,146,58361],["Jackson","2021-09-21",74700,148,58509],["Jackson","2021-09-22",74700,146,58655],["Jackson","2021-09-23",74700,139,58794],["Jackson","2021-09-24",74700,194,58988],["Jackson","2021-09-25",74700,96,59084],["Jackson","2021-09-26",74700,70,59154],["Jackson","2021-09-27",74700,162,59316],["Jackson","2021-09-28",74700,181,59497],["Jackson","2021-09-29",74700,210,59707],["Jackson","2021-09-30",74700,186,59893],["Jackson","2021-10-01",74700,186,60079],["Jackson","2021-10-02",74700,90,60169],["Jackson","2021-10-03",74700,61,60230],["Jackson","2021-10-04",74700,166,60396],["Jackson","2021-10-05",74700,113,60509],["Jackson","2021-10-06",74700,149,60658],["Jackson","2021-10-07",74700,155,60813],["Jackson","2021-10-08",74700,172,60985],["Jackson","2021-10-09",74700,77,61062],["Jackson","2021-10-10",74700,41,61103],["Jackson","2021-10-11",74700,96,61199],["Jackson","2021-10-12",74700,127,61326],["Jackson","2021-10-13",74700,166,61492],["Jackson","2021-10-14",74700,162,61654],["Jackson","2021-10-15",74700,162,61816],["Jackson","2021-10-16",74700,39,61855],["Jackson","2021-10-17",74700,33,61888],["Jackson","2021-10-18",74700,122,62010],["Jackson","2021-10-19",74700,105,62115],["Jackson","2021-10-20",74700,113,62228],["Jackson","2021-10-21",74700,103,62331],["Jackson","2021-10-22",74700,148,62479],["Jackson","2021-10-23",74700,104,62583],["Jackson","2021-10-24",74700,78,62661],["Jackson","2021-10-25",74700,219,62880],["Jackson","2021-10-26",74700,220,63100],["Jackson","2021-10-27",74700,276,63376],["Jackson","2021-10-28",74700,206,63582],["Jackson","2021-10-29",74700,255,63837],["Jackson","2021-10-30",74700,90,63927],["Jackson","2021-10-31",74700,72,63999],["Jackson","2021-11-01",74700,188,64187],["Jackson","2021-11-02",74700,183,64370],["Jackson","2021-11-03",74700,248,64618],["Jackson","2021-11-04",74700,176,64794],["Jackson","2021-11-05",74700,203,64997],["Jackson","2021-11-06",74700,74,65071],["Jackson","2021-11-07",74700,54,65125],["Jackson","2021-11-08",74700,161,65286],["Jackson","2021-11-09",74700,186,65472],["Jackson","2021-11-10",74700,199,65671],["Jackson","2021-11-11",74700,177,65848],["Jackson","2021-11-12",74700,180,66028],["Jackson","2021-11-13",74700,81,66109],["Jackson","2021-11-14",74700,57,66166],["Jackson","2021-11-15",74700,155,66321],["Jackson","2021-11-16",74700,169,66490],["Jackson","2021-11-17",74700,168,66658],["Jackson","2021-11-18",74700,151,66809],["Jackson","2021-11-19",74700,255,67064],["Jackson","2021-11-20",74700,114,67178],["Jackson","2021-11-21",74700,68,67246],["Jackson","2021-11-22",74700,176,67422],["Jackson","2021-11-23",74700,173,67595],["Jackson","2021-11-24",74700,114,67709],["Jackson","2021-11-26",74700,140,67849],["Jackson","2021-11-27",74700,89,67938],["Jackson","2021-11-28",74700,74,68012],["Jackson","2021-11-29",74700,181,68193],["Jackson","2021-11-30",74700,206,68399],["Jackson","2021-12-01",74700,267,68666],["Jackson","2021-12-02",74700,247,68913],["Jackson","2021-12-03",74700,288,69201],["Jackson","2021-12-04",74700,134,69335],["Jackson","2021-12-05",74700,87,69422],["Jackson","2021-12-06",74700,194,69616],["Jackson","2021-12-07",74700,190,69806],["Jackson","2021-12-08",74700,238,70044],["Jackson","2021-12-09",74700,163,70207],["Jackson","2021-12-10",74700,206,70413],["Jackson","2021-12-11",74700,106,70519],["Jackson","2021-12-12",74700,66,70585],["Jackson","2021-12-13",74700,140,70725],["Jackson","2021-12-14",74700,126,70851],["Jackson","2021-12-15",74700,169,71020],["Jackson","2021-12-16",74700,172,71192],["Jackson","2021-12-17",74700,209,71401],["Jackson","2021-12-18",74700,115,71516],["Jackson","2021-12-19",74700,88,71604],["Jackson","2021-12-20",74700,211,71815],["Jackson","2021-12-21",74700,221,72036],["Jackson","2021-12-22",74700,230,72266],["Jackson","2021-12-23",74700,140,72406],["Jackson","2021-12-24",74700,47,72453],["Jackson","2021-12-26",74700,68,72521],["Jackson","2021-12-27",74700,164,72685],["Jackson","2021-12-28",74700,199,72884],["Jackson","2021-12-29",74700,230,73114],["Jackson","2021-12-30",74700,141,73255],["Jackson","2021-12-31",74700,94,73349],["Jackson","2022-01-01",74700,24,73373],["Jackson","2022-01-02",74700,54,73427],["Jackson","2022-01-03",74700,78,73505],["Jasper","2020-12-16",14199,1,1],["Jasper","2020-12-17",14199,5,6],["Jasper","2020-12-18",14199,1,7],["Jasper","2020-12-19",14199,1,8],["Jasper","2020-12-21",14199,1,9],["Jasper","2020-12-22",14199,5,14],["Jasper","2020-12-23",14199,13,27],["Jasper","2020-12-24",14199,1,28],["Jasper","2020-12-26",14199,4,32],["Jasper","2020-12-27",14199,1,33],["Jasper","2020-12-28",14199,16,49],["Jasper","2020-12-29",14199,26,75],["Jasper","2020-12-30",14199,10,85],["Jasper","2020-12-31",14199,15,100],["Jasper","2021-01-01",14199,1,101],["Jasper","2021-01-03",14199,2,103],["Jasper","2021-01-04",14199,19,122],["Jasper","2021-01-05",14199,12,134],["Jasper","2021-01-06",14199,21,155],["Jasper","2021-01-07",14199,16,171],["Jasper","2021-01-08",14199,17,188],["Jasper","2021-01-09",14199,6,194],["Jasper","2021-01-10",14199,1,195],["Jasper","2021-01-11",14199,38,233],["Jasper","2021-01-12",14199,30,263],["Jasper","2021-01-13",14199,46,309],["Jasper","2021-01-14",14199,38,347],["Jasper","2021-01-15",14199,71,418],["Jasper","2021-01-16",14199,25,443],["Jasper","2021-01-17",14199,5,448],["Jasper","2021-01-18",14199,52,500],["Jasper","2021-01-19",14199,18,518],["Jasper","2021-01-20",14199,55,573],["Jasper","2021-01-21",14199,23,596],["Jasper","2021-01-22",14199,27,623],["Jasper","2021-01-23",14199,8,631],["Jasper","2021-01-24",14199,4,635],["Jasper","2021-01-25",14199,40,675],["Jasper","2021-01-26",14199,30,705],["Jasper","2021-01-27",14199,53,758],["Jasper","2021-01-28",14199,30,788],["Jasper","2021-01-29",14199,34,822],["Jasper","2021-01-30",14199,14,836],["Jasper","2021-02-01",14199,44,880],["Jasper","2021-02-02",14199,18,898],["Jasper","2021-02-03",14199,94,992],["Jasper","2021-02-04",14199,29,1021],["Jasper","2021-02-05",14199,34,1055],["Jasper","2021-02-06",14199,15,1070],["Jasper","2021-02-07",14199,1,1071],["Jasper","2021-02-08",14199,72,1143],["Jasper","2021-02-09",14199,85,1228],["Jasper","2021-02-10",14199,69,1297],["Jasper","2021-02-11",14199,65,1362],["Jasper","2021-02-12",14199,88,1450],["Jasper","2021-02-13",14199,18,1468],["Jasper","2021-02-14",14199,3,1471],["Jasper","2021-02-15",14199,74,1545],["Jasper","2021-02-16",14199,43,1588],["Jasper","2021-02-17",14199,106,1694],["Jasper","2021-02-18",14199,41,1735],["Jasper","2021-02-19",14199,45,1780],["Jasper","2021-02-20",14199,22,1802],["Jasper","2021-02-21",14199,2,1804],["Jasper","2021-02-22",14199,32,1836],["Jasper","2021-02-23",14199,24,1860],["Jasper","2021-02-24",14199,61,1921],["Jasper","2021-02-25",14199,45,1966],["Jasper","2021-02-26",14199,70,2036],["Jasper","2021-02-27",14199,9,2045],["Jasper","2021-02-28",14199,4,2049],["Jasper","2021-03-01",14199,50,2099],["Jasper","2021-03-02",14199,68,2167],["Jasper","2021-03-03",14199,94,2261],["Jasper","2021-03-04",14199,35,2296],["Jasper","2021-03-05",14199,53,2349],["Jasper","2021-03-06",14199,4,2353],["Jasper","2021-03-07",14199,4,2357],["Jasper","2021-03-08",14199,91,2448],["Jasper","2021-03-09",14199,74,2522],["Jasper","2021-03-10",14199,110,2632],["Jasper","2021-03-11",14199,78,2710],["Jasper","2021-03-12",14199,80,2790],["Jasper","2021-03-13",14199,6,2796],["Jasper","2021-03-15",14199,70,2866],["Jasper","2021-03-16",14199,174,3040],["Jasper","2021-03-17",14199,131,3171],["Jasper","2021-03-18",14199,51,3222],["Jasper","2021-03-19",14199,194,3416],["Jasper","2021-03-20",14199,23,3439],["Jasper","2021-03-21",14199,3,3442],["Jasper","2021-03-22",14199,72,3514],["Jasper","2021-03-23",14199,92,3606],["Jasper","2021-03-24",14199,117,3723],["Jasper","2021-03-25",14199,70,3793],["Jasper","2021-03-26",14199,78,3871],["Jasper","2021-03-27",14199,9,3880],["Jasper","2021-03-28",14199,5,3885],["Jasper","2021-03-29",14199,92,3977],["Jasper","2021-03-30",14199,118,4095],["Jasper","2021-03-31",14199,73,4168],["Jasper","2021-04-01",14199,68,4236],["Jasper","2021-04-02",14199,58,4294],["Jasper","2021-04-03",14199,7,4301],["Jasper","2021-04-04",14199,7,4308],["Jasper","2021-04-05",14199,108,4416],["Jasper","2021-04-06",14199,63,4479],["Jasper","2021-04-07",14199,124,4603],["Jasper","2021-04-08",14199,64,4667],["Jasper","2021-04-09",14199,81,4748],["Jasper","2021-04-10",14199,20,4768],["Jasper","2021-04-11",14199,7,4775],["Jasper","2021-04-12",14199,63,4838],["Jasper","2021-04-13",14199,148,4986],["Jasper","2021-04-14",14199,100,5086],["Jasper","2021-04-15",14199,70,5156],["Jasper","2021-04-16",14199,122,5278],["Jasper","2021-04-17",14199,15,5293],["Jasper","2021-04-18",14199,8,5301],["Jasper","2021-04-19",14199,79,5380],["Jasper","2021-04-20",14199,99,5479],["Jasper","2021-04-21",14199,101,5580],["Jasper","2021-04-22",14199,59,5639],["Jasper","2021-04-23",14199,67,5706],["Jasper","2021-04-24",14199,20,5726],["Jasper","2021-04-25",14199,6,5732],["Jasper","2021-04-26",14199,74,5806],["Jasper","2021-04-27",14199,63,5869],["Jasper","2021-04-28",14199,105,5974],["Jasper","2021-04-29",14199,52,6026],["Jasper","2021-04-30",14199,58,6084],["Jasper","2021-05-01",14199,14,6098],["Jasper","2021-05-02",14199,8,6106],["Jasper","2021-05-03",14199,72,6178],["Jasper","2021-05-04",14199,38,6216],["Jasper","2021-05-05",14199,46,6262],["Jasper","2021-05-06",14199,50,6312],["Jasper","2021-05-07",14199,44,6356],["Jasper","2021-05-08",14199,15,6371],["Jasper","2021-05-09",14199,4,6375],["Jasper","2021-05-10",14199,55,6430],["Jasper","2021-05-11",14199,32,6462],["Jasper","2021-05-12",14199,26,6488],["Jasper","2021-05-13",14199,44,6532],["Jasper","2021-05-14",14199,43,6575],["Jasper","2021-05-15",14199,13,6588],["Jasper","2021-05-16",14199,10,6598],["Jasper","2021-05-17",14199,36,6634],["Jasper","2021-05-18",14199,25,6659],["Jasper","2021-05-19",14199,44,6703],["Jasper","2021-05-20",14199,36,6739],["Jasper","2021-05-21",14199,33,6772],["Jasper","2021-05-22",14199,19,6791],["Jasper","2021-05-23",14199,4,6795],["Jasper","2021-05-24",14199,31,6826],["Jasper","2021-05-25",14199,20,6846],["Jasper","2021-05-26",14199,18,6864],["Jasper","2021-05-27",14199,20,6884],["Jasper","2021-05-28",14199,26,6910],["Jasper","2021-05-29",14199,11,6921],["Jasper","2021-05-30",14199,7,6928],["Jasper","2021-05-31",14199,5,6933],["Jasper","2021-06-01",14199,17,6950],["Jasper","2021-06-02",14199,39,6989],["Jasper","2021-06-03",14199,28,7017],["Jasper","2021-06-04",14199,32,7049],["Jasper","2021-06-05",14199,18,7067],["Jasper","2021-06-06",14199,4,7071],["Jasper","2021-06-07",14199,30,7101],["Jasper","2021-06-08",14199,29,7130],["Jasper","2021-06-09",14199,16,7146],["Jasper","2021-06-10",14199,12,7158],["Jasper","2021-06-11",14199,31,7189],["Jasper","2021-06-12",14199,14,7203],["Jasper","2021-06-13",14199,3,7206],["Jasper","2021-06-14",14199,16,7222],["Jasper","2021-06-15",14199,12,7234],["Jasper","2021-06-16",14199,18,7252],["Jasper","2021-06-17",14199,12,7264],["Jasper","2021-06-18",14199,28,7292],["Jasper","2021-06-19",14199,15,7307],["Jasper","2021-06-20",14199,1,7308],["Jasper","2021-06-21",14199,10,7318],["Jasper","2021-06-22",14199,12,7330],["Jasper","2021-06-23",14199,25,7355],["Jasper","2021-06-24",14199,9,7364],["Jasper","2021-06-25",14199,11,7375],["Jasper","2021-06-26",14199,4,7379],["Jasper","2021-06-27",14199,3,7382],["Jasper","2021-06-28",14199,14,7396],["Jasper","2021-06-29",14199,13,7409],["Jasper","2021-06-30",14199,17,7426],["Jasper","2021-07-01",14199,7,7433],["Jasper","2021-07-02",14199,19,7452],["Jasper","2021-07-03",14199,7,7459],["Jasper","2021-07-04",14199,1,7460],["Jasper","2021-07-05",14199,5,7465],["Jasper","2021-07-06",14199,9,7474],["Jasper","2021-07-07",14199,17,7491],["Jasper","2021-07-08",14199,9,7500],["Jasper","2021-07-09",14199,15,7515],["Jasper","2021-07-10",14199,7,7522],["Jasper","2021-07-11",14199,1,7523],["Jasper","2021-07-12",14199,11,7534],["Jasper","2021-07-13",14199,14,7548],["Jasper","2021-07-14",14199,12,7560],["Jasper","2021-07-15",14199,11,7571],["Jasper","2021-07-16",14199,13,7584],["Jasper","2021-07-17",14199,12,7596],["Jasper","2021-07-18",14199,3,7599],["Jasper","2021-07-19",14199,10,7609],["Jasper","2021-07-20",14199,4,7613],["Jasper","2021-07-21",14199,26,7639],["Jasper","2021-07-22",14199,9,7648],["Jasper","2021-07-23",14199,27,7675],["Jasper","2021-07-24",14199,9,7684],["Jasper","2021-07-25",14199,7,7691],["Jasper","2021-07-26",14199,16,7707],["Jasper","2021-07-27",14199,22,7729],["Jasper","2021-07-28",14199,17,7746],["Jasper","2021-07-29",14199,14,7760],["Jasper","2021-07-30",14199,33,7793],["Jasper","2021-07-31",14199,6,7799],["Jasper","2021-08-01",14199,11,7810],["Jasper","2021-08-02",14199,24,7834],["Jasper","2021-08-03",14199,15,7849],["Jasper","2021-08-04",14199,31,7880],["Jasper","2021-08-05",14199,11,7891],["Jasper","2021-08-06",14199,30,7921],["Jasper","2021-08-07",14199,27,7948],["Jasper","2021-08-08",14199,11,7959],["Jasper","2021-08-09",14199,32,7991],["Jasper","2021-08-10",14199,19,8010],["Jasper","2021-08-11",14199,51,8061],["Jasper","2021-08-12",14199,20,8081],["Jasper","2021-08-13",14199,43,8124],["Jasper","2021-08-14",14199,28,8152],["Jasper","2021-08-15",14199,10,8162],["Jasper","2021-08-16",14199,34,8196],["Jasper","2021-08-17",14199,15,8211],["Jasper","2021-08-18",14199,35,8246],["Jasper","2021-08-19",14199,30,8276],["Jasper","2021-08-20",14199,66,8342],["Jasper","2021-08-21",14199,20,8362],["Jasper","2021-08-22",14199,13,8375],["Jasper","2021-08-23",14199,34,8409],["Jasper","2021-08-24",14199,18,8427],["Jasper","2021-08-25",14199,47,8474],["Jasper","2021-08-26",14199,41,8515],["Jasper","2021-08-27",14199,69,8584],["Jasper","2021-08-28",14199,31,8615],["Jasper","2021-08-29",14199,11,8626],["Jasper","2021-08-30",14199,50,8676],["Jasper","2021-08-31",14199,33,8709],["Jasper","2021-09-01",14199,70,8779],["Jasper","2021-09-02",14199,29,8808],["Jasper","2021-09-03",14199,35,8843],["Jasper","2021-09-04",14199,20,8863],["Jasper","2021-09-05",14199,12,8875],["Jasper","2021-09-06",14199,5,8880],["Jasper","2021-09-07",14199,24,8904],["Jasper","2021-09-08",14199,48,8952],["Jasper","2021-09-09",14199,23,8975],["Jasper","2021-09-10",14199,58,9033],["Jasper","2021-09-11",14199,39,9072],["Jasper","2021-09-12",14199,8,9080],["Jasper","2021-09-13",14199,40,9120],["Jasper","2021-09-14",14199,21,9141],["Jasper","2021-09-15",14199,39,9180],["Jasper","2021-09-16",14199,25,9205],["Jasper","2021-09-17",14199,30,9235],["Jasper","2021-09-18",14199,34,9269],["Jasper","2021-09-19",14199,9,9278],["Jasper","2021-09-20",14199,39,9317],["Jasper","2021-09-21",14199,15,9332],["Jasper","2021-09-22",14199,42,9374],["Jasper","2021-09-23",14199,22,9396],["Jasper","2021-09-24",14199,27,9423],["Jasper","2021-09-25",14199,11,9434],["Jasper","2021-09-26",14199,7,9441],["Jasper","2021-09-27",14199,19,9460],["Jasper","2021-09-28",14199,16,9476],["Jasper","2021-09-29",14199,35,9511],["Jasper","2021-09-30",14199,19,9530],["Jasper","2021-10-01",14199,27,9557],["Jasper","2021-10-02",14199,20,9577],["Jasper","2021-10-03",14199,7,9584],["Jasper","2021-10-04",14199,23,9607],["Jasper","2021-10-05",14199,12,9619],["Jasper","2021-10-06",14199,30,9649],["Jasper","2021-10-07",14199,17,9666],["Jasper","2021-10-08",14199,13,9679],["Jasper","2021-10-09",14199,14,9693],["Jasper","2021-10-10",14199,4,9697],["Jasper","2021-10-11",14199,4,9701],["Jasper","2021-10-12",14199,16,9717],["Jasper","2021-10-13",14199,15,9732],["Jasper","2021-10-14",14199,18,9750],["Jasper","2021-10-15",14199,24,9774],["Jasper","2021-10-16",14199,7,9781],["Jasper","2021-10-17",14199,3,9784],["Jasper","2021-10-18",14199,10,9794],["Jasper","2021-10-19",14199,8,9802],["Jasper","2021-10-20",14199,27,9829],["Jasper","2021-10-21",14199,11,9840],["Jasper","2021-10-22",14199,17,9857],["Jasper","2021-10-23",14199,10,9867],["Jasper","2021-10-24",14199,7,9874],["Jasper","2021-10-25",14199,22,9896],["Jasper","2021-10-26",14199,35,9931],["Jasper","2021-10-27",14199,44,9975],["Jasper","2021-10-28",14199,30,10005],["Jasper","2021-10-29",14199,35,10040],["Jasper","2021-10-30",14199,12,10052],["Jasper","2021-10-31",14199,5,10057],["Jasper","2021-11-01",14199,56,10113],["Jasper","2021-11-02",14199,18,10131],["Jasper","2021-11-03",14199,53,10184],["Jasper","2021-11-04",14199,35,10219],["Jasper","2021-11-05",14199,28,10247],["Jasper","2021-11-06",14199,5,10252],["Jasper","2021-11-07",14199,3,10255],["Jasper","2021-11-08",14199,63,10318],["Jasper","2021-11-09",14199,16,10334],["Jasper","2021-11-10",14199,25,10359],["Jasper","2021-11-11",14199,15,10374],["Jasper","2021-11-12",14199,71,10445],["Jasper","2021-11-13",14199,13,10458],["Jasper","2021-11-14",14199,6,10464],["Jasper","2021-11-15",14199,54,10518],["Jasper","2021-11-16",14199,12,10530],["Jasper","2021-11-17",14199,39,10569],["Jasper","2021-11-18",14199,17,10586],["Jasper","2021-11-19",14199,51,10637],["Jasper","2021-11-20",14199,19,10656],["Jasper","2021-11-21",14199,8,10664],["Jasper","2021-11-22",14199,76,10740],["Jasper","2021-11-23",14199,15,10755],["Jasper","2021-11-24",14199,22,10777],["Jasper","2021-11-26",14199,8,10785],["Jasper","2021-11-27",14199,5,10790],["Jasper","2021-11-28",14199,5,10795],["Jasper","2021-11-29",14199,58,10853],["Jasper","2021-11-30",14199,20,10873],["Jasper","2021-12-01",14199,48,10921],["Jasper","2021-12-02",14199,13,10934],["Jasper","2021-12-03",14199,58,10992],["Jasper","2021-12-04",14199,15,11007],["Jasper","2021-12-05",14199,7,11014],["Jasper","2021-12-06",14199,76,11090],["Jasper","2021-12-07",14199,9,11099],["Jasper","2021-12-08",14199,53,11152],["Jasper","2021-12-09",14199,13,11165],["Jasper","2021-12-10",14199,36,11201],["Jasper","2021-12-11",14199,13,11214],["Jasper","2021-12-12",14199,9,11223],["Jasper","2021-12-13",14199,69,11292],["Jasper","2021-12-14",14199,15,11307],["Jasper","2021-12-15",14199,28,11335],["Jasper","2021-12-16",14199,6,11341],["Jasper","2021-12-17",14199,38,11379],["Jasper","2021-12-18",14199,11,11390],["Jasper","2021-12-19",14199,8,11398],["Jasper","2021-12-20",14199,63,11461],["Jasper","2021-12-21",14199,20,11481],["Jasper","2021-12-22",14199,26,11507],["Jasper","2021-12-23",14199,19,11526],["Jasper","2021-12-24",14199,2,11528],["Jasper","2021-12-26",14199,9,11537],["Jasper","2021-12-27",14199,81,11618],["Jasper","2021-12-28",14199,14,11632],["Jasper","2021-12-29",14199,20,11652],["Jasper","2021-12-30",14199,20,11672],["Jasper","2021-12-31",14199,5,11677],["Jasper","2022-01-01",14199,3,11680],["Jasper","2022-01-02",14199,1,11681],["Jasper","2022-01-03",14199,26,11707],["Jeff Davis","2020-12-17",15148,1,1],["Jeff Davis","2020-12-18",15148,2,3],["Jeff Davis","2020-12-19",15148,1,4],["Jeff Davis","2020-12-21",15148,1,5],["Jeff Davis","2020-12-22",15148,4,9],["Jeff Davis","2020-12-23",15148,8,17],["Jeff Davis","2020-12-24",15148,11,28],["Jeff Davis","2020-12-26",15148,1,29],["Jeff Davis","2020-12-28",15148,19,48],["Jeff Davis","2020-12-29",15148,9,57],["Jeff Davis","2020-12-30",15148,27,84],["Jeff Davis","2020-12-31",15148,4,88],["Jeff Davis","2021-01-01",15148,2,90],["Jeff Davis","2021-01-02",15148,1,91],["Jeff Davis","2021-01-03",15148,2,93],["Jeff Davis","2021-01-04",15148,27,120],["Jeff Davis","2021-01-05",15148,8,128],["Jeff Davis","2021-01-06",15148,39,167],["Jeff Davis","2021-01-07",15148,10,177],["Jeff Davis","2021-01-08",15148,8,185],["Jeff Davis","2021-01-10",15148,5,190],["Jeff Davis","2021-01-11",15148,51,241],["Jeff Davis","2021-01-12",15148,12,253],["Jeff Davis","2021-01-13",15148,102,355],["Jeff Davis","2021-01-14",15148,60,415],["Jeff Davis","2021-01-15",15148,25,440],["Jeff Davis","2021-01-16",15148,4,444],["Jeff Davis","2021-01-17",15148,1,445],["Jeff Davis","2021-01-18",15148,125,570],["Jeff Davis","2021-01-19",15148,46,616],["Jeff Davis","2021-01-20",15148,63,679],["Jeff Davis","2021-01-21",15148,86,765],["Jeff Davis","2021-01-22",15148,19,784],["Jeff Davis","2021-01-23",15148,13,797],["Jeff Davis","2021-01-24",15148,1,798],["Jeff Davis","2021-01-25",15148,136,934],["Jeff Davis","2021-01-26",15148,30,964],["Jeff Davis","2021-01-27",15148,49,1013],["Jeff Davis","2021-01-28",15148,75,1088],["Jeff Davis","2021-01-29",15148,17,1105],["Jeff Davis","2021-01-30",15148,1,1106],["Jeff Davis","2021-01-31",15148,5,1111],["Jeff Davis","2021-02-01",15148,85,1196],["Jeff Davis","2021-02-02",15148,54,1250],["Jeff Davis","2021-02-03",15148,41,1291],["Jeff Davis","2021-02-04",15148,38,1329],["Jeff Davis","2021-02-05",15148,16,1345],["Jeff Davis","2021-02-06",15148,15,1360],["Jeff Davis","2021-02-07",15148,2,1362],["Jeff Davis","2021-02-08",15148,110,1472],["Jeff Davis","2021-02-09",15148,62,1534],["Jeff Davis","2021-02-10",15148,117,1651],["Jeff Davis","2021-02-11",15148,93,1744],["Jeff Davis","2021-02-12",15148,40,1784],["Jeff Davis","2021-02-13",15148,19,1803],["Jeff Davis","2021-02-14",15148,9,1812],["Jeff Davis","2021-02-15",15148,174,1986],["Jeff Davis","2021-02-16",15148,105,2091],["Jeff Davis","2021-02-17",15148,64,2155],["Jeff Davis","2021-02-18",15148,52,2207],["Jeff Davis","2021-02-19",15148,60,2267],["Jeff Davis","2021-02-20",15148,24,2291],["Jeff Davis","2021-02-21",15148,2,2293],["Jeff Davis","2021-02-22",15148,113,2406],["Jeff Davis","2021-02-23",15148,64,2470],["Jeff Davis","2021-02-24",15148,51,2521],["Jeff Davis","2021-02-25",15148,76,2597],["Jeff Davis","2021-02-26",15148,15,2612],["Jeff Davis","2021-02-27",15148,9,2621],["Jeff Davis","2021-02-28",15148,2,2623],["Jeff Davis","2021-03-01",15148,93,2716],["Jeff Davis","2021-03-02",15148,75,2791],["Jeff Davis","2021-03-03",15148,62,2853],["Jeff Davis","2021-03-04",15148,36,2889],["Jeff Davis","2021-03-05",15148,13,2902],["Jeff Davis","2021-03-06",15148,3,2905],["Jeff Davis","2021-03-07",15148,8,2913],["Jeff Davis","2021-03-08",15148,56,2969],["Jeff Davis","2021-03-09",15148,86,3055],["Jeff Davis","2021-03-10",15148,48,3103],["Jeff Davis","2021-03-11",15148,73,3176],["Jeff Davis","2021-03-12",15148,39,3215],["Jeff Davis","2021-03-13",15148,13,3228],["Jeff Davis","2021-03-14",15148,9,3237],["Jeff Davis","2021-03-15",15148,91,3328],["Jeff Davis","2021-03-16",15148,89,3417],["Jeff Davis","2021-03-17",15148,123,3540],["Jeff Davis","2021-03-18",15148,75,3615],["Jeff Davis","2021-03-19",15148,47,3662],["Jeff Davis","2021-03-20",15148,18,3680],["Jeff Davis","2021-03-21",15148,11,3691],["Jeff Davis","2021-03-22",15148,58,3749],["Jeff Davis","2021-03-23",15148,81,3830],["Jeff Davis","2021-03-24",15148,35,3865],["Jeff Davis","2021-03-25",15148,87,3952],["Jeff Davis","2021-03-26",15148,21,3973],["Jeff Davis","2021-03-27",15148,29,4002],["Jeff Davis","2021-03-28",15148,7,4009],["Jeff Davis","2021-03-29",15148,76,4085],["Jeff Davis","2021-03-30",15148,54,4139],["Jeff Davis","2021-03-31",15148,29,4168],["Jeff Davis","2021-04-01",15148,59,4227],["Jeff Davis","2021-04-02",15148,29,4256],["Jeff Davis","2021-04-03",15148,10,4266],["Jeff Davis","2021-04-04",15148,11,4277],["Jeff Davis","2021-04-05",15148,51,4328],["Jeff Davis","2021-04-06",15148,123,4451],["Jeff Davis","2021-04-07",15148,35,4486],["Jeff Davis","2021-04-08",15148,80,4566],["Jeff Davis","2021-04-09",15148,35,4601],["Jeff Davis","2021-04-10",15148,10,4611],["Jeff Davis","2021-04-11",15148,3,4614],["Jeff Davis","2021-04-12",15148,61,4675],["Jeff Davis","2021-04-13",15148,56,4731],["Jeff Davis","2021-04-14",15148,40,4771],["Jeff Davis","2021-04-15",15148,116,4887],["Jeff Davis","2021-04-16",15148,67,4954],["Jeff Davis","2021-04-17",15148,13,4967],["Jeff Davis","2021-04-18",15148,11,4978],["Jeff Davis","2021-04-19",15148,67,5045],["Jeff Davis","2021-04-20",15148,52,5097],["Jeff Davis","2021-04-21",15148,35,5132],["Jeff Davis","2021-04-22",15148,59,5191],["Jeff Davis","2021-04-23",15148,23,5214],["Jeff Davis","2021-04-24",15148,18,5232],["Jeff Davis","2021-04-25",15148,7,5239],["Jeff Davis","2021-04-26",15148,56,5295],["Jeff Davis","2021-04-27",15148,27,5322],["Jeff Davis","2021-04-28",15148,26,5348],["Jeff Davis","2021-04-29",15148,41,5389],["Jeff Davis","2021-04-30",15148,27,5416],["Jeff Davis","2021-05-01",15148,8,5424],["Jeff Davis","2021-05-02",15148,7,5431],["Jeff Davis","2021-05-03",15148,48,5479],["Jeff Davis","2021-05-04",15148,36,5515],["Jeff Davis","2021-05-05",15148,30,5545],["Jeff Davis","2021-05-06",15148,35,5580],["Jeff Davis","2021-05-07",15148,21,5601],["Jeff Davis","2021-05-08",15148,12,5613],["Jeff Davis","2021-05-09",15148,1,5614],["Jeff Davis","2021-05-10",15148,33,5647],["Jeff Davis","2021-05-11",15148,33,5680],["Jeff Davis","2021-05-12",15148,26,5706],["Jeff Davis","2021-05-13",15148,24,5730],["Jeff Davis","2021-05-14",15148,25,5755],["Jeff Davis","2021-05-15",15148,10,5765],["Jeff Davis","2021-05-16",15148,2,5767],["Jeff Davis","2021-05-17",15148,41,5808],["Jeff Davis","2021-05-18",15148,42,5850],["Jeff Davis","2021-05-19",15148,35,5885],["Jeff Davis","2021-05-20",15148,18,5903],["Jeff Davis","2021-05-21",15148,8,5911],["Jeff Davis","2021-05-22",15148,15,5926],["Jeff Davis","2021-05-23",15148,12,5938],["Jeff Davis","2021-05-24",15148,29,5967],["Jeff Davis","2021-05-25",15148,29,5996],["Jeff Davis","2021-05-26",15148,27,6023],["Jeff Davis","2021-05-27",15148,20,6043],["Jeff Davis","2021-05-28",15148,8,6051],["Jeff Davis","2021-05-29",15148,5,6056],["Jeff Davis","2021-05-30",15148,7,6063],["Jeff Davis","2021-05-31",15148,8,6071],["Jeff Davis","2021-06-01",15148,18,6089],["Jeff Davis","2021-06-02",15148,17,6106],["Jeff Davis","2021-06-03",15148,32,6138],["Jeff Davis","2021-06-04",15148,14,6152],["Jeff Davis","2021-06-05",15148,7,6159],["Jeff Davis","2021-06-06",15148,4,6163],["Jeff Davis","2021-06-07",15148,34,6197],["Jeff Davis","2021-06-08",15148,9,6206],["Jeff Davis","2021-06-09",15148,17,6223],["Jeff Davis","2021-06-10",15148,13,6236],["Jeff Davis","2021-06-11",15148,10,6246],["Jeff Davis","2021-06-12",15148,16,6262],["Jeff Davis","2021-06-13",15148,3,6265],["Jeff Davis","2021-06-14",15148,15,6280],["Jeff Davis","2021-06-15",15148,16,6296],["Jeff Davis","2021-06-16",15148,11,6307],["Jeff Davis","2021-06-17",15148,18,6325],["Jeff Davis","2021-06-18",15148,16,6341],["Jeff Davis","2021-06-19",15148,15,6356],["Jeff Davis","2021-06-20",15148,10,6366],["Jeff Davis","2021-06-21",15148,15,6381],["Jeff Davis","2021-06-22",15148,12,6393],["Jeff Davis","2021-06-23",15148,10,6403],["Jeff Davis","2021-06-24",15148,14,6417],["Jeff Davis","2021-06-25",15148,14,6431],["Jeff Davis","2021-06-26",15148,12,6443],["Jeff Davis","2021-06-27",15148,6,6449],["Jeff Davis","2021-06-28",15148,10,6459],["Jeff Davis","2021-06-29",15148,6,6465],["Jeff Davis","2021-06-30",15148,13,6478],["Jeff Davis","2021-07-01",15148,19,6497],["Jeff Davis","2021-07-02",15148,3,6500],["Jeff Davis","2021-07-03",15148,4,6504],["Jeff Davis","2021-07-04",15148,1,6505],["Jeff Davis","2021-07-05",15148,8,6513],["Jeff Davis","2021-07-06",15148,11,6524],["Jeff Davis","2021-07-07",15148,7,6531],["Jeff Davis","2021-07-08",15148,9,6540],["Jeff Davis","2021-07-09",15148,6,6546],["Jeff Davis","2021-07-10",15148,9,6555],["Jeff Davis","2021-07-11",15148,5,6560],["Jeff Davis","2021-07-12",15148,21,6581],["Jeff Davis","2021-07-13",15148,8,6589],["Jeff Davis","2021-07-14",15148,19,6608],["Jeff Davis","2021-07-15",15148,14,6622],["Jeff Davis","2021-07-16",15148,11,6633],["Jeff Davis","2021-07-17",15148,6,6639],["Jeff Davis","2021-07-18",15148,7,6646],["Jeff Davis","2021-07-19",15148,29,6675],["Jeff Davis","2021-07-20",15148,15,6690],["Jeff Davis","2021-07-21",15148,25,6715],["Jeff Davis","2021-07-22",15148,15,6730],["Jeff Davis","2021-07-23",15148,16,6746],["Jeff Davis","2021-07-24",15148,21,6767],["Jeff Davis","2021-07-25",15148,4,6771],["Jeff Davis","2021-07-26",15148,25,6796],["Jeff Davis","2021-07-27",15148,43,6839],["Jeff Davis","2021-07-28",15148,33,6872],["Jeff Davis","2021-07-29",15148,35,6907],["Jeff Davis","2021-07-30",15148,67,6974],["Jeff Davis","2021-07-31",15148,18,6992],["Jeff Davis","2021-08-01",15148,8,7000],["Jeff Davis","2021-08-02",15148,52,7052],["Jeff Davis","2021-08-03",15148,31,7083],["Jeff Davis","2021-08-04",15148,37,7120],["Jeff Davis","2021-08-05",15148,51,7171],["Jeff Davis","2021-08-06",15148,49,7220],["Jeff Davis","2021-08-07",15148,27,7247],["Jeff Davis","2021-08-08",15148,18,7265],["Jeff Davis","2021-08-09",15148,43,7308],["Jeff Davis","2021-08-10",15148,41,7349],["Jeff Davis","2021-08-11",15148,58,7407],["Jeff Davis","2021-08-12",15148,38,7445],["Jeff Davis","2021-08-13",15148,56,7501],["Jeff Davis","2021-08-14",15148,20,7521],["Jeff Davis","2021-08-15",15148,13,7534],["Jeff Davis","2021-08-16",15148,54,7588],["Jeff Davis","2021-08-17",15148,55,7643],["Jeff Davis","2021-08-18",15148,45,7688],["Jeff Davis","2021-08-19",15148,44,7732],["Jeff Davis","2021-08-20",15148,48,7780],["Jeff Davis","2021-08-21",15148,25,7805],["Jeff Davis","2021-08-22",15148,19,7824],["Jeff Davis","2021-08-23",15148,37,7861],["Jeff Davis","2021-08-24",15148,48,7909],["Jeff Davis","2021-08-25",15148,38,7947],["Jeff Davis","2021-08-26",15148,66,8013],["Jeff Davis","2021-08-27",15148,73,8086],["Jeff Davis","2021-08-28",15148,24,8110],["Jeff Davis","2021-08-29",15148,18,8128],["Jeff Davis","2021-08-30",15148,44,8172],["Jeff Davis","2021-08-31",15148,55,8227],["Jeff Davis","2021-09-01",15148,57,8284],["Jeff Davis","2021-09-02",15148,38,8322],["Jeff Davis","2021-09-03",15148,58,8380],["Jeff Davis","2021-09-04",15148,24,8404],["Jeff Davis","2021-09-05",15148,17,8421],["Jeff Davis","2021-09-06",15148,10,8431],["Jeff Davis","2021-09-07",15148,42,8473],["Jeff Davis","2021-09-08",15148,60,8533],["Jeff Davis","2021-09-09",15148,34,8567],["Jeff Davis","2021-09-10",15148,69,8636],["Jeff Davis","2021-09-11",15148,24,8660],["Jeff Davis","2021-09-12",15148,20,8680],["Jeff Davis","2021-09-13",15148,29,8709],["Jeff Davis","2021-09-14",15148,37,8746],["Jeff Davis","2021-09-15",15148,38,8784],["Jeff Davis","2021-09-16",15148,27,8811],["Jeff Davis","2021-09-17",15148,51,8862],["Jeff Davis","2021-09-18",15148,14,8876],["Jeff Davis","2021-09-19",15148,14,8890],["Jeff Davis","2021-09-20",15148,22,8912],["Jeff Davis","2021-09-21",15148,30,8942],["Jeff Davis","2021-09-22",15148,24,8966],["Jeff Davis","2021-09-23",15148,29,8995],["Jeff Davis","2021-09-24",15148,35,9030],["Jeff Davis","2021-09-25",15148,12,9042],["Jeff Davis","2021-09-26",15148,10,9052],["Jeff Davis","2021-09-27",15148,13,9065],["Jeff Davis","2021-09-28",15148,30,9095],["Jeff Davis","2021-09-29",15148,18,9113],["Jeff Davis","2021-09-30",15148,16,9129],["Jeff Davis","2021-10-01",15148,27,9156],["Jeff Davis","2021-10-02",15148,7,9163],["Jeff Davis","2021-10-03",15148,7,9170],["Jeff Davis","2021-10-04",15148,21,9191],["Jeff Davis","2021-10-05",15148,11,9202],["Jeff Davis","2021-10-06",15148,11,9213],["Jeff Davis","2021-10-07",15148,10,9223],["Jeff Davis","2021-10-08",15148,15,9238],["Jeff Davis","2021-10-09",15148,5,9243],["Jeff Davis","2021-10-10",15148,8,9251],["Jeff Davis","2021-10-11",15148,6,9257],["Jeff Davis","2021-10-12",15148,17,9274],["Jeff Davis","2021-10-13",15148,13,9287],["Jeff Davis","2021-10-14",15148,5,9292],["Jeff Davis","2021-10-15",15148,20,9312],["Jeff Davis","2021-10-16",15148,3,9315],["Jeff Davis","2021-10-17",15148,1,9316],["Jeff Davis","2021-10-18",15148,6,9322],["Jeff Davis","2021-10-19",15148,9,9331],["Jeff Davis","2021-10-20",15148,9,9340],["Jeff Davis","2021-10-21",15148,9,9349],["Jeff Davis","2021-10-22",15148,17,9366],["Jeff Davis","2021-10-23",15148,4,9370],["Jeff Davis","2021-10-24",15148,4,9374],["Jeff Davis","2021-10-25",15148,31,9405],["Jeff Davis","2021-10-26",15148,29,9434],["Jeff Davis","2021-10-27",15148,44,9478],["Jeff Davis","2021-10-28",15148,20,9498],["Jeff Davis","2021-10-29",15148,36,9534],["Jeff Davis","2021-10-30",15148,11,9545],["Jeff Davis","2021-10-31",15148,4,9549],["Jeff Davis","2021-11-01",15148,29,9578],["Jeff Davis","2021-11-02",15148,64,9642],["Jeff Davis","2021-11-03",15148,38,9680],["Jeff Davis","2021-11-04",15148,38,9718],["Jeff Davis","2021-11-05",15148,30,9748],["Jeff Davis","2021-11-06",15148,9,9757],["Jeff Davis","2021-11-07",15148,3,9760],["Jeff Davis","2021-11-08",15148,26,9786],["Jeff Davis","2021-11-09",15148,37,9823],["Jeff Davis","2021-11-10",15148,46,9869],["Jeff Davis","2021-11-11",15148,14,9883],["Jeff Davis","2021-11-12",15148,30,9913],["Jeff Davis","2021-11-13",15148,4,9917],["Jeff Davis","2021-11-14",15148,4,9921],["Jeff Davis","2021-11-15",15148,26,9947],["Jeff Davis","2021-11-16",15148,30,9977],["Jeff Davis","2021-11-17",15148,29,10006],["Jeff Davis","2021-11-18",15148,26,10032],["Jeff Davis","2021-11-19",15148,44,10076],["Jeff Davis","2021-11-20",15148,9,10085],["Jeff Davis","2021-11-21",15148,8,10093],["Jeff Davis","2021-11-22",15148,27,10120],["Jeff Davis","2021-11-23",15148,37,10157],["Jeff Davis","2021-11-24",15148,20,10177],["Jeff Davis","2021-11-26",15148,8,10185],["Jeff Davis","2021-11-27",15148,8,10193],["Jeff Davis","2021-11-28",15148,3,10196],["Jeff Davis","2021-11-29",15148,28,10224],["Jeff Davis","2021-11-30",15148,67,10291],["Jeff Davis","2021-12-01",15148,45,10336],["Jeff Davis","2021-12-02",15148,34,10370],["Jeff Davis","2021-12-03",15148,38,10408],["Jeff Davis","2021-12-04",15148,14,10422],["Jeff Davis","2021-12-05",15148,7,10429],["Jeff Davis","2021-12-06",15148,21,10450],["Jeff Davis","2021-12-07",15148,22,10472],["Jeff Davis","2021-12-08",15148,20,10492],["Jeff Davis","2021-12-09",15148,14,10506],["Jeff Davis","2021-12-10",15148,27,10533],["Jeff Davis","2021-12-11",15148,13,10546],["Jeff Davis","2021-12-12",15148,4,10550],["Jeff Davis","2021-12-13",15148,27,10577],["Jeff Davis","2021-12-14",15148,27,10604],["Jeff Davis","2021-12-15",15148,25,10629],["Jeff Davis","2021-12-16",15148,28,10657],["Jeff Davis","2021-12-17",15148,20,10677],["Jeff Davis","2021-12-18",15148,9,10686],["Jeff Davis","2021-12-20",15148,24,10710],["Jeff Davis","2021-12-21",15148,33,10743],["Jeff Davis","2021-12-22",15148,25,10768],["Jeff Davis","2021-12-23",15148,17,10785],["Jeff Davis","2021-12-24",15148,7,10792],["Jeff Davis","2021-12-27",15148,25,10817],["Jeff Davis","2021-12-28",15148,30,10847],["Jeff Davis","2021-12-29",15148,24,10871],["Jeff Davis","2021-12-30",15148,34,10905],["Jeff Davis","2021-12-31",15148,17,10922],["Jeff Davis","2022-01-01",15148,6,10928],["Jeff Davis","2022-01-02",15148,3,10931],["Jeff Davis","2022-01-03",15148,16,10947],["Jefferson","2020-12-17",15313,3,3],["Jefferson","2020-12-18",15313,4,7],["Jefferson","2020-12-19",15313,3,10],["Jefferson","2020-12-22",15313,15,25],["Jefferson","2020-12-23",15313,17,42],["Jefferson","2020-12-24",15313,3,45],["Jefferson","2020-12-28",15313,8,53],["Jefferson","2020-12-29",15313,29,82],["Jefferson","2020-12-30",15313,13,95],["Jefferson","2020-12-31",15313,14,109],["Jefferson","2021-01-01",15313,2,111],["Jefferson","2021-01-02",15313,4,115],["Jefferson","2021-01-03",15313,1,116],["Jefferson","2021-01-04",15313,9,125],["Jefferson","2021-01-05",15313,16,141],["Jefferson","2021-01-06",15313,29,170],["Jefferson","2021-01-07",15313,136,306],["Jefferson","2021-01-08",15313,31,337],["Jefferson","2021-01-09",15313,8,345],["Jefferson","2021-01-11",15313,33,378],["Jefferson","2021-01-12",15313,66,444],["Jefferson","2021-01-13",15313,177,621],["Jefferson","2021-01-14",15313,79,700],["Jefferson","2021-01-15",15313,30,730],["Jefferson","2021-01-16",15313,5,735],["Jefferson","2021-01-17",15313,1,736],["Jefferson","2021-01-18",15313,20,756],["Jefferson","2021-01-19",15313,60,816],["Jefferson","2021-01-20",15313,222,1038],["Jefferson","2021-01-21",15313,226,1264],["Jefferson","2021-01-22",15313,9,1273],["Jefferson","2021-01-23",15313,6,1279],["Jefferson","2021-01-24",15313,2,1281],["Jefferson","2021-01-25",15313,40,1321],["Jefferson","2021-01-26",15313,52,1373],["Jefferson","2021-01-27",15313,128,1501],["Jefferson","2021-01-28",15313,66,1567],["Jefferson","2021-01-29",15313,21,1588],["Jefferson","2021-01-30",15313,11,1599],["Jefferson","2021-01-31",15313,5,1604],["Jefferson","2021-02-01",15313,51,1655],["Jefferson","2021-02-02",15313,85,1740],["Jefferson","2021-02-03",15313,195,1935],["Jefferson","2021-02-04",15313,295,2230],["Jefferson","2021-02-05",15313,43,2273],["Jefferson","2021-02-06",15313,6,2279],["Jefferson","2021-02-07",15313,2,2281],["Jefferson","2021-02-08",15313,42,2323],["Jefferson","2021-02-09",15313,67,2390],["Jefferson","2021-02-10",15313,215,2605],["Jefferson","2021-02-11",15313,114,2719],["Jefferson","2021-02-12",15313,37,2756],["Jefferson","2021-02-13",15313,8,2764],["Jefferson","2021-02-14",15313,3,2767],["Jefferson","2021-02-15",15313,38,2805],["Jefferson","2021-02-16",15313,67,2872],["Jefferson","2021-02-17",15313,275,3147],["Jefferson","2021-02-18",15313,245,3392],["Jefferson","2021-02-19",15313,23,3415],["Jefferson","2021-02-20",15313,10,3425],["Jefferson","2021-02-22",15313,35,3460],["Jefferson","2021-02-23",15313,55,3515],["Jefferson","2021-02-24",15313,111,3626],["Jefferson","2021-02-25",15313,77,3703],["Jefferson","2021-02-26",15313,56,3759],["Jefferson","2021-02-27",15313,10,3769],["Jefferson","2021-02-28",15313,1,3770],["Jefferson","2021-03-01",15313,58,3828],["Jefferson","2021-03-02",15313,66,3894],["Jefferson","2021-03-03",15313,249,4143],["Jefferson","2021-03-04",15313,178,4321],["Jefferson","2021-03-05",15313,22,4343],["Jefferson","2021-03-06",15313,19,4362],["Jefferson","2021-03-07",15313,3,4365],["Jefferson","2021-03-08",15313,48,4413],["Jefferson","2021-03-09",15313,48,4461],["Jefferson","2021-03-10",15313,210,4671],["Jefferson","2021-03-11",15313,134,4805],["Jefferson","2021-03-12",15313,70,4875],["Jefferson","2021-03-13",15313,13,4888],["Jefferson","2021-03-14",15313,9,4897],["Jefferson","2021-03-15",15313,70,4967],["Jefferson","2021-03-16",15313,50,5017],["Jefferson","2021-03-17",15313,217,5234],["Jefferson","2021-03-18",15313,186,5420],["Jefferson","2021-03-19",15313,124,5544],["Jefferson","2021-03-20",15313,18,5562],["Jefferson","2021-03-21",15313,8,5570],["Jefferson","2021-03-22",15313,94,5664],["Jefferson","2021-03-23",15313,57,5721],["Jefferson","2021-03-24",15313,148,5869],["Jefferson","2021-03-25",15313,180,6049],["Jefferson","2021-03-26",15313,41,6090],["Jefferson","2021-03-27",15313,26,6116],["Jefferson","2021-03-28",15313,14,6130],["Jefferson","2021-03-29",15313,63,6193],["Jefferson","2021-03-30",15313,90,6283],["Jefferson","2021-03-31",15313,189,6472],["Jefferson","2021-04-01",15313,202,6674],["Jefferson","2021-04-02",15313,41,6715],["Jefferson","2021-04-03",15313,80,6795],["Jefferson","2021-04-04",15313,14,6809],["Jefferson","2021-04-05",15313,78,6887],["Jefferson","2021-04-06",15313,100,6987],["Jefferson","2021-04-07",15313,248,7235],["Jefferson","2021-04-08",15313,76,7311],["Jefferson","2021-04-09",15313,75,7386],["Jefferson","2021-04-10",15313,19,7405],["Jefferson","2021-04-11",15313,6,7411],["Jefferson","2021-04-12",15313,116,7527],["Jefferson","2021-04-13",15313,85,7612],["Jefferson","2021-04-14",15313,198,7810],["Jefferson","2021-04-15",15313,215,8025],["Jefferson","2021-04-16",15313,104,8129],["Jefferson","2021-04-17",15313,25,8154],["Jefferson","2021-04-18",15313,7,8161],["Jefferson","2021-04-19",15313,98,8259],["Jefferson","2021-04-20",15313,78,8337],["Jefferson","2021-04-21",15313,253,8590],["Jefferson","2021-04-22",15313,168,8758],["Jefferson","2021-04-23",15313,46,8804],["Jefferson","2021-04-24",15313,22,8826],["Jefferson","2021-04-25",15313,9,8835],["Jefferson","2021-04-26",15313,77,8912],["Jefferson","2021-04-27",15313,99,9011],["Jefferson","2021-04-28",15313,161,9172],["Jefferson","2021-04-29",15313,87,9259],["Jefferson","2021-04-30",15313,70,9329],["Jefferson","2021-05-01",15313,32,9361],["Jefferson","2021-05-02",15313,8,9369],["Jefferson","2021-05-03",15313,48,9417],["Jefferson","2021-05-04",15313,62,9479],["Jefferson","2021-05-05",15313,118,9597],["Jefferson","2021-05-06",15313,98,9695],["Jefferson","2021-05-07",15313,55,9750],["Jefferson","2021-05-08",15313,57,9807],["Jefferson","2021-05-09",15313,4,9811],["Jefferson","2021-05-10",15313,76,9887],["Jefferson","2021-05-11",15313,44,9931],["Jefferson","2021-05-12",15313,82,10013],["Jefferson","2021-05-13",15313,87,10100],["Jefferson","2021-05-14",15313,28,10128],["Jefferson","2021-05-15",15313,26,10154],["Jefferson","2021-05-16",15313,7,10161],["Jefferson","2021-05-17",15313,59,10220],["Jefferson","2021-05-18",15313,60,10280],["Jefferson","2021-05-19",15313,143,10423],["Jefferson","2021-05-20",15313,72,10495],["Jefferson","2021-05-21",15313,42,10537],["Jefferson","2021-05-22",15313,11,10548],["Jefferson","2021-05-23",15313,9,10557],["Jefferson","2021-05-24",15313,33,10590],["Jefferson","2021-05-25",15313,46,10636],["Jefferson","2021-05-26",15313,67,10703],["Jefferson","2021-05-27",15313,67,10770],["Jefferson","2021-05-28",15313,32,10802],["Jefferson","2021-05-29",15313,12,10814],["Jefferson","2021-05-30",15313,6,10820],["Jefferson","2021-05-31",15313,3,10823],["Jefferson","2021-06-01",15313,36,10859],["Jefferson","2021-06-02",15313,51,10910],["Jefferson","2021-06-03",15313,71,10981],["Jefferson","2021-06-04",15313,21,11002],["Jefferson","2021-06-05",15313,67,11069],["Jefferson","2021-06-06",15313,6,11075],["Jefferson","2021-06-07",15313,54,11129],["Jefferson","2021-06-08",15313,19,11148],["Jefferson","2021-06-09",15313,71,11219],["Jefferson","2021-06-10",15313,36,11255],["Jefferson","2021-06-11",15313,33,11288],["Jefferson","2021-06-12",15313,17,11305],["Jefferson","2021-06-13",15313,10,11315],["Jefferson","2021-06-14",15313,51,11366],["Jefferson","2021-06-15",15313,23,11389],["Jefferson","2021-06-16",15313,37,11426],["Jefferson","2021-06-17",15313,52,11478],["Jefferson","2021-06-18",15313,13,11491],["Jefferson","2021-06-19",15313,3,11494],["Jefferson","2021-06-20",15313,1,11495],["Jefferson","2021-06-21",15313,17,11512],["Jefferson","2021-06-22",15313,19,11531],["Jefferson","2021-06-23",15313,27,11558],["Jefferson","2021-06-24",15313,36,11594],["Jefferson","2021-06-25",15313,7,11601],["Jefferson","2021-06-26",15313,25,11626],["Jefferson","2021-06-27",15313,3,11629],["Jefferson","2021-06-28",15313,23,11652],["Jefferson","2021-06-29",15313,27,11679],["Jefferson","2021-06-30",15313,30,11709],["Jefferson","2021-07-01",15313,17,11726],["Jefferson","2021-07-02",15313,16,11742],["Jefferson","2021-07-03",15313,9,11751],["Jefferson","2021-07-04",15313,2,11753],["Jefferson","2021-07-05",15313,17,11770],["Jefferson","2021-07-06",15313,7,11777],["Jefferson","2021-07-07",15313,41,11818],["Jefferson","2021-07-08",15313,44,11862],["Jefferson","2021-07-09",15313,15,11877],["Jefferson","2021-07-10",15313,28,11905],["Jefferson","2021-07-11",15313,2,11907],["Jefferson","2021-07-12",15313,20,11927],["Jefferson","2021-07-13",15313,13,11940],["Jefferson","2021-07-14",15313,20,11960],["Jefferson","2021-07-15",15313,36,11996],["Jefferson","2021-07-16",15313,17,12013],["Jefferson","2021-07-17",15313,8,12021],["Jefferson","2021-07-18",15313,3,12024],["Jefferson","2021-07-19",15313,26,12050],["Jefferson","2021-07-20",15313,22,12072],["Jefferson","2021-07-21",15313,48,12120],["Jefferson","2021-07-22",15313,30,12150],["Jefferson","2021-07-23",15313,21,12171],["Jefferson","2021-07-24",15313,13,12184],["Jefferson","2021-07-25",15313,7,12191],["Jefferson","2021-07-26",15313,36,12227],["Jefferson","2021-07-27",15313,46,12273],["Jefferson","2021-07-28",15313,56,12329],["Jefferson","2021-07-29",15313,86,12415],["Jefferson","2021-07-30",15313,55,12470],["Jefferson","2021-07-31",15313,26,12496],["Jefferson","2021-08-01",15313,4,12500],["Jefferson","2021-08-02",15313,60,12560],["Jefferson","2021-08-03",15313,29,12589],["Jefferson","2021-08-04",15313,56,12645],["Jefferson","2021-08-05",15313,86,12731],["Jefferson","2021-08-06",15313,45,12776],["Jefferson","2021-08-07",15313,45,12821],["Jefferson","2021-08-08",15313,7,12828],["Jefferson","2021-08-09",15313,67,12895],["Jefferson","2021-08-10",15313,43,12938],["Jefferson","2021-08-11",15313,53,12991],["Jefferson","2021-08-12",15313,112,13103],["Jefferson","2021-08-13",15313,61,13164],["Jefferson","2021-08-14",15313,20,13184],["Jefferson","2021-08-15",15313,13,13197],["Jefferson","2021-08-16",15313,67,13264],["Jefferson","2021-08-17",15313,41,13305],["Jefferson","2021-08-18",15313,55,13360],["Jefferson","2021-08-19",15313,97,13457],["Jefferson","2021-08-20",15313,58,13515],["Jefferson","2021-08-21",15313,18,13533],["Jefferson","2021-08-22",15313,8,13541],["Jefferson","2021-08-23",15313,64,13605],["Jefferson","2021-08-24",15313,52,13657],["Jefferson","2021-08-25",15313,86,13743],["Jefferson","2021-08-26",15313,125,13868],["Jefferson","2021-08-27",15313,82,13950],["Jefferson","2021-08-28",15313,33,13983],["Jefferson","2021-08-29",15313,12,13995],["Jefferson","2021-08-30",15313,89,14084],["Jefferson","2021-08-31",15313,84,14168],["Jefferson","2021-09-01",15313,73,14241],["Jefferson","2021-09-02",15313,90,14331],["Jefferson","2021-09-03",15313,85,14416],["Jefferson","2021-09-04",15313,17,14433],["Jefferson","2021-09-05",15313,8,14441],["Jefferson","2021-09-06",15313,5,14446],["Jefferson","2021-09-07",15313,53,14499],["Jefferson","2021-09-08",15313,85,14584],["Jefferson","2021-09-09",15313,81,14665],["Jefferson","2021-09-10",15313,77,14742],["Jefferson","2021-09-11",15313,33,14775],["Jefferson","2021-09-12",15313,10,14785],["Jefferson","2021-09-13",15313,56,14841],["Jefferson","2021-09-14",15313,49,14890],["Jefferson","2021-09-15",15313,67,14957],["Jefferson","2021-09-16",15313,65,15022],["Jefferson","2021-09-17",15313,69,15091],["Jefferson","2021-09-18",15313,12,15103],["Jefferson","2021-09-19",15313,6,15109],["Jefferson","2021-09-20",15313,64,15173],["Jefferson","2021-09-21",15313,63,15236],["Jefferson","2021-09-22",15313,62,15298],["Jefferson","2021-09-23",15313,73,15371],["Jefferson","2021-09-24",15313,46,15417],["Jefferson","2021-09-25",15313,17,15434],["Jefferson","2021-09-26",15313,9,15443],["Jefferson","2021-09-27",15313,43,15486],["Jefferson","2021-09-28",15313,48,15534],["Jefferson","2021-09-29",15313,70,15604],["Jefferson","2021-09-30",15313,50,15654],["Jefferson","2021-10-01",15313,54,15708],["Jefferson","2021-10-02",15313,16,15724],["Jefferson","2021-10-03",15313,3,15727],["Jefferson","2021-10-04",15313,33,15760],["Jefferson","2021-10-05",15313,21,15781],["Jefferson","2021-10-06",15313,57,15838],["Jefferson","2021-10-07",15313,36,15874],["Jefferson","2021-10-08",15313,54,15928],["Jefferson","2021-10-09",15313,10,15938],["Jefferson","2021-10-10",15313,8,15946],["Jefferson","2021-10-11",15313,17,15963],["Jefferson","2021-10-12",15313,16,15979],["Jefferson","2021-10-13",15313,37,16016],["Jefferson","2021-10-14",15313,30,16046],["Jefferson","2021-10-15",15313,36,16082],["Jefferson","2021-10-16",15313,5,16087],["Jefferson","2021-10-17",15313,7,16094],["Jefferson","2021-10-18",15313,27,16121],["Jefferson","2021-10-19",15313,30,16151],["Jefferson","2021-10-20",15313,41,16192],["Jefferson","2021-10-21",15313,27,16219],["Jefferson","2021-10-22",15313,43,16262],["Jefferson","2021-10-23",15313,8,16270],["Jefferson","2021-10-24",15313,4,16274],["Jefferson","2021-10-25",15313,66,16340],["Jefferson","2021-10-26",15313,103,16443],["Jefferson","2021-10-27",15313,142,16585],["Jefferson","2021-10-28",15313,38,16623],["Jefferson","2021-10-29",15313,71,16694],["Jefferson","2021-10-30",15313,8,16702],["Jefferson","2021-10-31",15313,7,16709],["Jefferson","2021-11-01",15313,88,16797],["Jefferson","2021-11-02",15313,80,16877],["Jefferson","2021-11-03",15313,135,17012],["Jefferson","2021-11-04",15313,47,17059],["Jefferson","2021-11-05",15313,39,17098],["Jefferson","2021-11-06",15313,12,17110],["Jefferson","2021-11-07",15313,11,17121],["Jefferson","2021-11-08",15313,65,17186],["Jefferson","2021-11-09",15313,70,17256],["Jefferson","2021-11-10",15313,133,17389],["Jefferson","2021-11-11",15313,34,17423],["Jefferson","2021-11-12",15313,54,17477],["Jefferson","2021-11-13",15313,5,17482],["Jefferson","2021-11-14",15313,9,17491],["Jefferson","2021-11-15",15313,83,17574],["Jefferson","2021-11-16",15313,72,17646],["Jefferson","2021-11-17",15313,120,17766],["Jefferson","2021-11-18",15313,51,17817],["Jefferson","2021-11-19",15313,84,17901],["Jefferson","2021-11-20",15313,11,17912],["Jefferson","2021-11-21",15313,7,17919],["Jefferson","2021-11-22",15313,90,18009],["Jefferson","2021-11-23",15313,64,18073],["Jefferson","2021-11-24",15313,51,18124],["Jefferson","2021-11-26",15313,9,18133],["Jefferson","2021-11-27",15313,7,18140],["Jefferson","2021-11-28",15313,7,18147],["Jefferson","2021-11-29",15313,69,18216],["Jefferson","2021-11-30",15313,78,18294],["Jefferson","2021-12-01",15313,169,18463],["Jefferson","2021-12-02",15313,45,18508],["Jefferson","2021-12-03",15313,67,18575],["Jefferson","2021-12-04",15313,9,18584],["Jefferson","2021-12-05",15313,7,18591],["Jefferson","2021-12-06",15313,49,18640],["Jefferson","2021-12-07",15313,72,18712],["Jefferson","2021-12-08",15313,146,18858],["Jefferson","2021-12-09",15313,49,18907],["Jefferson","2021-12-10",15313,69,18976],["Jefferson","2021-12-11",15313,8,18984],["Jefferson","2021-12-12",15313,5,18989],["Jefferson","2021-12-13",15313,51,19040],["Jefferson","2021-12-14",15313,55,19095],["Jefferson","2021-12-15",15313,120,19215],["Jefferson","2021-12-16",15313,30,19245],["Jefferson","2021-12-17",15313,68,19313],["Jefferson","2021-12-18",15313,9,19322],["Jefferson","2021-12-19",15313,2,19324],["Jefferson","2021-12-20",15313,60,19384],["Jefferson","2021-12-21",15313,54,19438],["Jefferson","2021-12-22",15313,81,19519],["Jefferson","2021-12-23",15313,42,19561],["Jefferson","2021-12-24",15313,1,19562],["Jefferson","2021-12-25",15313,1,19563],["Jefferson","2021-12-26",15313,4,19567],["Jefferson","2021-12-27",15313,28,19595],["Jefferson","2021-12-28",15313,42,19637],["Jefferson","2021-12-29",15313,114,19751],["Jefferson","2021-12-30",15313,41,19792],["Jefferson","2021-12-31",15313,22,19814],["Jefferson","2022-01-01",15313,1,19815],["Jefferson","2022-01-02",15313,7,19822],["Jefferson","2022-01-03",15313,21,19843],["Jenkins","2020-12-17",8576,1,1],["Jenkins","2020-12-19",8576,1,2],["Jenkins","2020-12-20",8576,1,3],["Jenkins","2020-12-22",8576,2,5],["Jenkins","2020-12-23",8576,8,13],["Jenkins","2020-12-28",8576,12,25],["Jenkins","2020-12-29",8576,14,39],["Jenkins","2020-12-30",8576,20,59],["Jenkins","2020-12-31",8576,6,65],["Jenkins","2021-01-01",8576,1,66],["Jenkins","2021-01-04",8576,9,75],["Jenkins","2021-01-05",8576,21,96],["Jenkins","2021-01-06",8576,30,126],["Jenkins","2021-01-07",8576,21,147],["Jenkins","2021-01-08",8576,19,166],["Jenkins","2021-01-09",8576,1,167],["Jenkins","2021-01-10",8576,1,168],["Jenkins","2021-01-11",8576,45,213],["Jenkins","2021-01-12",8576,29,242],["Jenkins","2021-01-13",8576,73,315],["Jenkins","2021-01-14",8576,45,360],["Jenkins","2021-01-15",8576,25,385],["Jenkins","2021-01-16",8576,3,388],["Jenkins","2021-01-17",8576,2,390],["Jenkins","2021-01-18",8576,9,399],["Jenkins","2021-01-19",8576,21,420],["Jenkins","2021-01-20",8576,20,440],["Jenkins","2021-01-21",8576,90,530],["Jenkins","2021-01-22",8576,7,537],["Jenkins","2021-01-23",8576,6,543],["Jenkins","2021-01-25",8576,40,583],["Jenkins","2021-01-26",8576,109,692],["Jenkins","2021-01-27",8576,47,739],["Jenkins","2021-01-28",8576,31,770],["Jenkins","2021-01-29",8576,12,782],["Jenkins","2021-02-01",8576,59,841],["Jenkins","2021-02-02",8576,33,874],["Jenkins","2021-02-03",8576,64,938],["Jenkins","2021-02-04",8576,101,1039],["Jenkins","2021-02-05",8576,50,1089],["Jenkins","2021-02-06",8576,7,1096],["Jenkins","2021-02-08",8576,38,1134],["Jenkins","2021-02-09",8576,42,1176],["Jenkins","2021-02-10",8576,75,1251],["Jenkins","2021-02-11",8576,64,1315],["Jenkins","2021-02-12",8576,34,1349],["Jenkins","2021-02-13",8576,8,1357],["Jenkins","2021-02-14",8576,1,1358],["Jenkins","2021-02-15",8576,8,1366],["Jenkins","2021-02-16",8576,35,1401],["Jenkins","2021-02-17",8576,36,1437],["Jenkins","2021-02-18",8576,132,1569],["Jenkins","2021-02-19",8576,28,1597],["Jenkins","2021-02-20",8576,3,1600],["Jenkins","2021-02-21",8576,2,1602],["Jenkins","2021-02-22",8576,75,1677],["Jenkins","2021-02-23",8576,109,1786],["Jenkins","2021-02-24",8576,55,1841],["Jenkins","2021-02-25",8576,13,1854],["Jenkins","2021-02-26",8576,20,1874],["Jenkins","2021-02-27",8576,1,1875],["Jenkins","2021-02-28",8576,3,1878],["Jenkins","2021-03-01",8576,12,1890],["Jenkins","2021-03-02",8576,34,1924],["Jenkins","2021-03-03",8576,49,1973],["Jenkins","2021-03-04",8576,86,2059],["Jenkins","2021-03-05",8576,26,2085],["Jenkins","2021-03-06",8576,11,2096],["Jenkins","2021-03-07",8576,1,2097],["Jenkins","2021-03-08",8576,29,2126],["Jenkins","2021-03-09",8576,28,2154],["Jenkins","2021-03-10",8576,45,2199],["Jenkins","2021-03-11",8576,74,2273],["Jenkins","2021-03-12",8576,39,2312],["Jenkins","2021-03-13",8576,6,2318],["Jenkins","2021-03-14",8576,2,2320],["Jenkins","2021-03-15",8576,12,2332],["Jenkins","2021-03-16",8576,36,2368],["Jenkins","2021-03-17",8576,62,2430],["Jenkins","2021-03-18",8576,57,2487],["Jenkins","2021-03-19",8576,39,2526],["Jenkins","2021-03-20",8576,3,2529],["Jenkins","2021-03-21",8576,2,2531],["Jenkins","2021-03-22",8576,45,2576],["Jenkins","2021-03-23",8576,82,2658],["Jenkins","2021-03-24",8576,70,2728],["Jenkins","2021-03-25",8576,50,2778],["Jenkins","2021-03-26",8576,30,2808],["Jenkins","2021-03-27",8576,12,2820],["Jenkins","2021-03-28",8576,4,2824],["Jenkins","2021-03-29",8576,12,2836],["Jenkins","2021-03-30",8576,25,2861],["Jenkins","2021-03-31",8576,51,2912],["Jenkins","2021-04-01",8576,42,2954],["Jenkins","2021-04-02",8576,35,2989],["Jenkins","2021-04-03",8576,7,2996],["Jenkins","2021-04-05",8576,13,3009],["Jenkins","2021-04-06",8576,29,3038],["Jenkins","2021-04-07",8576,52,3090],["Jenkins","2021-04-08",8576,60,3150],["Jenkins","2021-04-09",8576,39,3189],["Jenkins","2021-04-10",8576,8,3197],["Jenkins","2021-04-11",8576,1,3198],["Jenkins","2021-04-12",8576,15,3213],["Jenkins","2021-04-13",8576,39,3252],["Jenkins","2021-04-14",8576,41,3293],["Jenkins","2021-04-15",8576,39,3332],["Jenkins","2021-04-16",8576,44,3376],["Jenkins","2021-04-17",8576,7,3383],["Jenkins","2021-04-18",8576,1,3384],["Jenkins","2021-04-19",8576,33,3417],["Jenkins","2021-04-20",8576,67,3484],["Jenkins","2021-04-21",8576,56,3540],["Jenkins","2021-04-22",8576,48,3588],["Jenkins","2021-04-23",8576,33,3621],["Jenkins","2021-04-24",8576,11,3632],["Jenkins","2021-04-25",8576,1,3633],["Jenkins","2021-04-26",8576,9,3642],["Jenkins","2021-04-27",8576,19,3661],["Jenkins","2021-04-28",8576,37,3698],["Jenkins","2021-04-29",8576,41,3739],["Jenkins","2021-04-30",8576,36,3775],["Jenkins","2021-05-01",8576,12,3787],["Jenkins","2021-05-02",8576,2,3789],["Jenkins","2021-05-03",8576,11,3800],["Jenkins","2021-05-04",8576,22,3822],["Jenkins","2021-05-05",8576,28,3850],["Jenkins","2021-05-06",8576,29,3879],["Jenkins","2021-05-07",8576,27,3906],["Jenkins","2021-05-08",8576,2,3908],["Jenkins","2021-05-09",8576,1,3909],["Jenkins","2021-05-10",8576,9,3918],["Jenkins","2021-05-11",8576,21,3939],["Jenkins","2021-05-12",8576,18,3957],["Jenkins","2021-05-13",8576,23,3980],["Jenkins","2021-05-14",8576,14,3994],["Jenkins","2021-05-15",8576,3,3997],["Jenkins","2021-05-16",8576,2,3999],["Jenkins","2021-05-17",8576,10,4009],["Jenkins","2021-05-18",8576,30,4039],["Jenkins","2021-05-19",8576,25,4064],["Jenkins","2021-05-20",8576,35,4099],["Jenkins","2021-05-21",8576,18,4117],["Jenkins","2021-05-22",8576,10,4127],["Jenkins","2021-05-23",8576,2,4129],["Jenkins","2021-05-24",8576,10,4139],["Jenkins","2021-05-25",8576,30,4169],["Jenkins","2021-05-26",8576,20,4189],["Jenkins","2021-05-27",8576,11,4200],["Jenkins","2021-05-28",8576,15,4215],["Jenkins","2021-05-29",8576,4,4219],["Jenkins","2021-05-30",8576,2,4221],["Jenkins","2021-06-01",8576,16,4237],["Jenkins","2021-06-02",8576,13,4250],["Jenkins","2021-06-03",8576,14,4264],["Jenkins","2021-06-04",8576,15,4279],["Jenkins","2021-06-05",8576,10,4289],["Jenkins","2021-06-06",8576,2,4291],["Jenkins","2021-06-07",8576,4,4295],["Jenkins","2021-06-08",8576,14,4309],["Jenkins","2021-06-09",8576,13,4322],["Jenkins","2021-06-10",8576,15,4337],["Jenkins","2021-06-11",8576,14,4351],["Jenkins","2021-06-12",8576,9,4360],["Jenkins","2021-06-13",8576,2,4362],["Jenkins","2021-06-14",8576,4,4366],["Jenkins","2021-06-15",8576,15,4381],["Jenkins","2021-06-16",8576,11,4392],["Jenkins","2021-06-17",8576,8,4400],["Jenkins","2021-06-18",8576,13,4413],["Jenkins","2021-06-19",8576,8,4421],["Jenkins","2021-06-20",8576,1,4422],["Jenkins","2021-06-21",8576,3,4425],["Jenkins","2021-06-22",8576,14,4439],["Jenkins","2021-06-23",8576,16,4455],["Jenkins","2021-06-24",8576,11,4466],["Jenkins","2021-06-25",8576,14,4480],["Jenkins","2021-06-26",8576,3,4483],["Jenkins","2021-06-28",8576,4,4487],["Jenkins","2021-06-29",8576,11,4498],["Jenkins","2021-06-30",8576,8,4506],["Jenkins","2021-07-01",8576,8,4514],["Jenkins","2021-07-02",8576,8,4522],["Jenkins","2021-07-03",8576,3,4525],["Jenkins","2021-07-06",8576,10,4535],["Jenkins","2021-07-07",8576,6,4541],["Jenkins","2021-07-08",8576,1,4542],["Jenkins","2021-07-09",8576,3,4545],["Jenkins","2021-07-10",8576,8,4553],["Jenkins","2021-07-12",8576,4,4557],["Jenkins","2021-07-13",8576,15,4572],["Jenkins","2021-07-14",8576,12,4584],["Jenkins","2021-07-15",8576,11,4595],["Jenkins","2021-07-16",8576,10,4605],["Jenkins","2021-07-19",8576,7,4612],["Jenkins","2021-07-20",8576,26,4638],["Jenkins","2021-07-21",8576,17,4655],["Jenkins","2021-07-22",8576,14,4669],["Jenkins","2021-07-23",8576,30,4699],["Jenkins","2021-07-24",8576,2,4701],["Jenkins","2021-07-25",8576,6,4707],["Jenkins","2021-07-26",8576,8,4715],["Jenkins","2021-07-27",8576,19,4734],["Jenkins","2021-07-28",8576,18,4752],["Jenkins","2021-07-29",8576,28,4780],["Jenkins","2021-07-30",8576,17,4797],["Jenkins","2021-07-31",8576,7,4804],["Jenkins","2021-08-01",8576,2,4806],["Jenkins","2021-08-02",8576,13,4819],["Jenkins","2021-08-03",8576,16,4835],["Jenkins","2021-08-04",8576,19,4854],["Jenkins","2021-08-05",8576,14,4868],["Jenkins","2021-08-06",8576,15,4883],["Jenkins","2021-08-07",8576,11,4894],["Jenkins","2021-08-08",8576,3,4897],["Jenkins","2021-08-09",8576,14,4911],["Jenkins","2021-08-10",8576,54,4965],["Jenkins","2021-08-11",8576,35,5000],["Jenkins","2021-08-12",8576,54,5054],["Jenkins","2021-08-13",8576,31,5085],["Jenkins","2021-08-14",8576,11,5096],["Jenkins","2021-08-15",8576,6,5102],["Jenkins","2021-08-16",8576,17,5119],["Jenkins","2021-08-17",8576,40,5159],["Jenkins","2021-08-18",8576,33,5192],["Jenkins","2021-08-19",8576,27,5219],["Jenkins","2021-08-20",8576,43,5262],["Jenkins","2021-08-21",8576,11,5273],["Jenkins","2021-08-22",8576,6,5279],["Jenkins","2021-08-23",8576,24,5303],["Jenkins","2021-08-24",8576,50,5353],["Jenkins","2021-08-25",8576,22,5375],["Jenkins","2021-08-26",8576,36,5411],["Jenkins","2021-08-27",8576,31,5442],["Jenkins","2021-08-28",8576,13,5455],["Jenkins","2021-08-29",8576,6,5461],["Jenkins","2021-08-30",8576,34,5495],["Jenkins","2021-08-31",8576,37,5532],["Jenkins","2021-09-01",8576,27,5559],["Jenkins","2021-09-02",8576,33,5592],["Jenkins","2021-09-03",8576,34,5626],["Jenkins","2021-09-04",8576,9,5635],["Jenkins","2021-09-05",8576,9,5644],["Jenkins","2021-09-06",8576,6,5650],["Jenkins","2021-09-07",8576,40,5690],["Jenkins","2021-09-08",8576,28,5718],["Jenkins","2021-09-09",8576,32,5750],["Jenkins","2021-09-10",8576,64,5814],["Jenkins","2021-09-11",8576,7,5821],["Jenkins","2021-09-12",8576,4,5825],["Jenkins","2021-09-13",8576,25,5850],["Jenkins","2021-09-14",8576,37,5887],["Jenkins","2021-09-15",8576,44,5931],["Jenkins","2021-09-16",8576,22,5953],["Jenkins","2021-09-17",8576,39,5992],["Jenkins","2021-09-18",8576,4,5996],["Jenkins","2021-09-19",8576,2,5998],["Jenkins","2021-09-20",8576,31,6029],["Jenkins","2021-09-21",8576,41,6070],["Jenkins","2021-09-22",8576,11,6081],["Jenkins","2021-09-23",8576,23,6104],["Jenkins","2021-09-24",8576,30,6134],["Jenkins","2021-09-25",8576,6,6140],["Jenkins","2021-09-26",8576,2,6142],["Jenkins","2021-09-27",8576,19,6161],["Jenkins","2021-09-28",8576,15,6176],["Jenkins","2021-09-29",8576,22,6198],["Jenkins","2021-09-30",8576,12,6210],["Jenkins","2021-10-01",8576,22,6232],["Jenkins","2021-10-02",8576,8,6240],["Jenkins","2021-10-03",8576,1,6241],["Jenkins","2021-10-04",8576,14,6255],["Jenkins","2021-10-05",8576,29,6284],["Jenkins","2021-10-06",8576,18,6302],["Jenkins","2021-10-07",8576,18,6320],["Jenkins","2021-10-08",8576,20,6340],["Jenkins","2021-10-09",8576,5,6345],["Jenkins","2021-10-11",8576,12,6357],["Jenkins","2021-10-12",8576,17,6374],["Jenkins","2021-10-13",8576,6,6380],["Jenkins","2021-10-14",8576,11,6391],["Jenkins","2021-10-15",8576,12,6403],["Jenkins","2021-10-16",8576,5,6408],["Jenkins","2021-10-17",8576,2,6410],["Jenkins","2021-10-18",8576,6,6416],["Jenkins","2021-10-19",8576,5,6421],["Jenkins","2021-10-20",8576,12,6433],["Jenkins","2021-10-21",8576,16,6449],["Jenkins","2021-10-22",8576,20,6469],["Jenkins","2021-10-23",8576,9,6478],["Jenkins","2021-10-25",8576,35,6513],["Jenkins","2021-10-26",8576,45,6558],["Jenkins","2021-10-27",8576,42,6600],["Jenkins","2021-10-28",8576,33,6633],["Jenkins","2021-10-29",8576,37,6670],["Jenkins","2021-10-30",8576,6,6676],["Jenkins","2021-10-31",8576,1,6677],["Jenkins","2021-11-01",8576,35,6712],["Jenkins","2021-11-02",8576,33,6745],["Jenkins","2021-11-03",8576,36,6781],["Jenkins","2021-11-04",8576,16,6797],["Jenkins","2021-11-05",8576,24,6821],["Jenkins","2021-11-06",8576,21,6842],["Jenkins","2021-11-07",8576,3,6845],["Jenkins","2021-11-08",8576,45,6890],["Jenkins","2021-11-09",8576,19,6909],["Jenkins","2021-11-10",8576,30,6939],["Jenkins","2021-11-11",8576,37,6976],["Jenkins","2021-11-12",8576,33,7009],["Jenkins","2021-11-13",8576,8,7017],["Jenkins","2021-11-14",8576,2,7019],["Jenkins","2021-11-15",8576,28,7047],["Jenkins","2021-11-16",8576,29,7076],["Jenkins","2021-11-17",8576,28,7104],["Jenkins","2021-11-18",8576,30,7134],["Jenkins","2021-11-19",8576,26,7160],["Jenkins","2021-11-20",8576,7,7167],["Jenkins","2021-11-21",8576,2,7169],["Jenkins","2021-11-22",8576,29,7198],["Jenkins","2021-11-23",8576,22,7220],["Jenkins","2021-11-24",8576,13,7233],["Jenkins","2021-11-26",8576,8,7241],["Jenkins","2021-11-27",8576,4,7245],["Jenkins","2021-11-28",8576,3,7248],["Jenkins","2021-11-29",8576,44,7292],["Jenkins","2021-11-30",8576,21,7313],["Jenkins","2021-12-01",8576,30,7343],["Jenkins","2021-12-02",8576,26,7369],["Jenkins","2021-12-03",8576,36,7405],["Jenkins","2021-12-04",8576,11,7416],["Jenkins","2021-12-05",8576,3,7419],["Jenkins","2021-12-06",8576,26,7445],["Jenkins","2021-12-07",8576,27,7472],["Jenkins","2021-12-08",8576,28,7500],["Jenkins","2021-12-09",8576,38,7538],["Jenkins","2021-12-10",8576,29,7567],["Jenkins","2021-12-11",8576,3,7570],["Jenkins","2021-12-12",8576,2,7572],["Jenkins","2021-12-13",8576,22,7594],["Jenkins","2021-12-14",8576,14,7608],["Jenkins","2021-12-15",8576,12,7620],["Jenkins","2021-12-16",8576,21,7641],["Jenkins","2021-12-17",8576,22,7663],["Jenkins","2021-12-18",8576,3,7666],["Jenkins","2021-12-19",8576,1,7667],["Jenkins","2021-12-20",8576,26,7693],["Jenkins","2021-12-21",8576,33,7726],["Jenkins","2021-12-22",8576,22,7748],["Jenkins","2021-12-23",8576,13,7761],["Jenkins","2021-12-24",8576,4,7765],["Jenkins","2021-12-26",8576,3,7768],["Jenkins","2021-12-27",8576,12,7780],["Jenkins","2021-12-28",8576,46,7826],["Jenkins","2021-12-29",8576,17,7843],["Jenkins","2021-12-30",8576,19,7862],["Jenkins","2021-12-31",8576,8,7870],["Jenkins","2022-01-01",8576,1,7871],["Jenkins","2022-01-02",8576,1,7872],["Jenkins","2022-01-03",8576,21,7893],["Johnson","2020-12-17",9661,1,1],["Johnson","2020-12-18",9661,1,2],["Johnson","2020-12-19",9661,1,3],["Johnson","2020-12-21",9661,1,4],["Johnson","2020-12-22",9661,9,13],["Johnson","2020-12-23",9661,6,19],["Johnson","2020-12-24",9661,4,23],["Johnson","2020-12-26",9661,1,24],["Johnson","2020-12-28",9661,29,53],["Johnson","2020-12-29",9661,8,61],["Johnson","2020-12-30",9661,7,68],["Johnson","2020-12-31",9661,7,75],["Johnson","2021-01-02",9661,2,77],["Johnson","2021-01-04",9661,10,87],["Johnson","2021-01-05",9661,30,117],["Johnson","2021-01-06",9661,10,127],["Johnson","2021-01-07",9661,30,157],["Johnson","2021-01-08",9661,32,189],["Johnson","2021-01-09",9661,1,190],["Johnson","2021-01-11",9661,10,200],["Johnson","2021-01-12",9661,35,235],["Johnson","2021-01-13",9661,36,271],["Johnson","2021-01-14",9661,27,298],["Johnson","2021-01-15",9661,143,441],["Johnson","2021-01-16",9661,2,443],["Johnson","2021-01-17",9661,3,446],["Johnson","2021-01-18",9661,21,467],["Johnson","2021-01-19",9661,58,525],["Johnson","2021-01-20",9661,67,592],["Johnson","2021-01-21",9661,27,619],["Johnson","2021-01-22",9661,126,745],["Johnson","2021-01-23",9661,2,747],["Johnson","2021-01-24",9661,1,748],["Johnson","2021-01-25",9661,45,793],["Johnson","2021-01-26",9661,26,819],["Johnson","2021-01-27",9661,17,836],["Johnson","2021-01-28",9661,12,848],["Johnson","2021-01-29",9661,146,994],["Johnson","2021-01-30",9661,3,997],["Johnson","2021-02-01",9661,5,1002],["Johnson","2021-02-02",9661,25,1027],["Johnson","2021-02-03",9661,35,1062],["Johnson","2021-02-04",9661,32,1094],["Johnson","2021-02-05",9661,113,1207],["Johnson","2021-02-06",9661,2,1209],["Johnson","2021-02-07",9661,6,1215],["Johnson","2021-02-08",9661,23,1238],["Johnson","2021-02-09",9661,125,1363],["Johnson","2021-02-10",9661,47,1410],["Johnson","2021-02-11",9661,21,1431],["Johnson","2021-02-12",9661,176,1607],["Johnson","2021-02-13",9661,3,1610],["Johnson","2021-02-14",9661,9,1619],["Johnson","2021-02-15",9661,33,1652],["Johnson","2021-02-16",9661,13,1665],["Johnson","2021-02-17",9661,151,1816],["Johnson","2021-02-18",9661,15,1831],["Johnson","2021-02-19",9661,5,1836],["Johnson","2021-02-22",9661,5,1841],["Johnson","2021-02-23",9661,20,1861],["Johnson","2021-02-24",9661,161,2022],["Johnson","2021-02-25",9661,38,2060],["Johnson","2021-02-26",9661,6,2066],["Johnson","2021-02-27",9661,1,2067],["Johnson","2021-03-01",9661,5,2072],["Johnson","2021-03-02",9661,27,2099],["Johnson","2021-03-03",9661,135,2234],["Johnson","2021-03-04",9661,16,2250],["Johnson","2021-03-05",9661,15,2265],["Johnson","2021-03-08",9661,13,2278],["Johnson","2021-03-09",9661,56,2334],["Johnson","2021-03-10",9661,71,2405],["Johnson","2021-03-11",9661,17,2422],["Johnson","2021-03-12",9661,41,2463],["Johnson","2021-03-13",9661,2,2465],["Johnson","2021-03-15",9661,25,2490],["Johnson","2021-03-16",9661,18,2508],["Johnson","2021-03-17",9661,193,2701],["Johnson","2021-03-18",9661,23,2724],["Johnson","2021-03-19",9661,28,2752],["Johnson","2021-03-20",9661,4,2756],["Johnson","2021-03-21",9661,1,2757],["Johnson","2021-03-22",9661,9,2766],["Johnson","2021-03-23",9661,15,2781],["Johnson","2021-03-24",9661,93,2874],["Johnson","2021-03-25",9661,29,2903],["Johnson","2021-03-26",9661,29,2932],["Johnson","2021-03-27",9661,11,2943],["Johnson","2021-03-28",9661,2,2945],["Johnson","2021-03-29",9661,6,2951],["Johnson","2021-03-30",9661,31,2982],["Johnson","2021-03-31",9661,68,3050],["Johnson","2021-04-01",9661,30,3080],["Johnson","2021-04-02",9661,25,3105],["Johnson","2021-04-03",9661,5,3110],["Johnson","2021-04-05",9661,19,3129],["Johnson","2021-04-06",9661,63,3192],["Johnson","2021-04-07",9661,84,3276],["Johnson","2021-04-08",9661,17,3293],["Johnson","2021-04-09",9661,81,3374],["Johnson","2021-04-10",9661,7,3381],["Johnson","2021-04-11",9661,1,3382],["Johnson","2021-04-12",9661,7,3389],["Johnson","2021-04-13",9661,23,3412],["Johnson","2021-04-14",9661,114,3526],["Johnson","2021-04-15",9661,20,3546],["Johnson","2021-04-16",9661,27,3573],["Johnson","2021-04-17",9661,9,3582],["Johnson","2021-04-18",9661,1,3583],["Johnson","2021-04-19",9661,6,3589],["Johnson","2021-04-20",9661,18,3607],["Johnson","2021-04-21",9661,108,3715],["Johnson","2021-04-22",9661,19,3734],["Johnson","2021-04-23",9661,22,3756],["Johnson","2021-04-24",9661,13,3769],["Johnson","2021-04-25",9661,1,3770],["Johnson","2021-04-26",9661,10,3780],["Johnson","2021-04-27",9661,36,3816],["Johnson","2021-04-28",9661,56,3872],["Johnson","2021-04-29",9661,12,3884],["Johnson","2021-04-30",9661,32,3916],["Johnson","2021-05-01",9661,12,3928],["Johnson","2021-05-02",9661,1,3929],["Johnson","2021-05-03",9661,3,3932],["Johnson","2021-05-04",9661,53,3985],["Johnson","2021-05-05",9661,21,4006],["Johnson","2021-05-06",9661,17,4023],["Johnson","2021-05-07",9661,40,4063],["Johnson","2021-05-08",9661,8,4071],["Johnson","2021-05-10",9661,8,4079],["Johnson","2021-05-11",9661,37,4116],["Johnson","2021-05-12",9661,20,4136],["Johnson","2021-05-13",9661,78,4214],["Johnson","2021-05-14",9661,14,4228],["Johnson","2021-05-15",9661,5,4233],["Johnson","2021-05-16",9661,1,4234],["Johnson","2021-05-17",9661,18,4252],["Johnson","2021-05-18",9661,37,4289],["Johnson","2021-05-19",9661,19,4308],["Johnson","2021-05-20",9661,21,4329],["Johnson","2021-05-21",9661,11,4340],["Johnson","2021-05-22",9661,4,4344],["Johnson","2021-05-23",9661,1,4345],["Johnson","2021-05-24",9661,5,4350],["Johnson","2021-05-25",9661,31,4381],["Johnson","2021-05-26",9661,19,4400],["Johnson","2021-05-27",9661,14,4414],["Johnson","2021-05-28",9661,7,4421],["Johnson","2021-05-29",9661,4,4425],["Johnson","2021-05-30",9661,2,4427],["Johnson","2021-05-31",9661,1,4428],["Johnson","2021-06-01",9661,27,4455],["Johnson","2021-06-02",9661,28,4483],["Johnson","2021-06-03",9661,12,4495],["Johnson","2021-06-04",9661,10,4505],["Johnson","2021-06-05",9661,2,4507],["Johnson","2021-06-07",9661,15,4522],["Johnson","2021-06-08",9661,13,4535],["Johnson","2021-06-09",9661,14,4549],["Johnson","2021-06-10",9661,5,4554],["Johnson","2021-06-11",9661,13,4567],["Johnson","2021-06-12",9661,9,4576],["Johnson","2021-06-13",9661,1,4577],["Johnson","2021-06-14",9661,11,4588],["Johnson","2021-06-15",9661,25,4613],["Johnson","2021-06-16",9661,26,4639],["Johnson","2021-06-17",9661,7,4646],["Johnson","2021-06-18",9661,10,4656],["Johnson","2021-06-19",9661,2,4658],["Johnson","2021-06-20",9661,1,4659],["Johnson","2021-06-21",9661,8,4667],["Johnson","2021-06-22",9661,10,4677],["Johnson","2021-06-23",9661,12,4689],["Johnson","2021-06-24",9661,8,4697],["Johnson","2021-06-25",9661,8,4705],["Johnson","2021-06-26",9661,4,4709],["Johnson","2021-06-27",9661,1,4710],["Johnson","2021-06-28",9661,2,4712],["Johnson","2021-06-29",9661,16,4728],["Johnson","2021-06-30",9661,15,4743],["Johnson","2021-07-01",9661,6,4749],["Johnson","2021-07-02",9661,6,4755],["Johnson","2021-07-03",9661,3,4758],["Johnson","2021-07-05",9661,1,4759],["Johnson","2021-07-06",9661,4,4763],["Johnson","2021-07-07",9661,8,4771],["Johnson","2021-07-08",9661,15,4786],["Johnson","2021-07-09",9661,8,4794],["Johnson","2021-07-10",9661,1,4795],["Johnson","2021-07-11",9661,1,4796],["Johnson","2021-07-12",9661,4,4800],["Johnson","2021-07-13",9661,8,4808],["Johnson","2021-07-14",9661,15,4823],["Johnson","2021-07-15",9661,5,4828],["Johnson","2021-07-16",9661,8,4836],["Johnson","2021-07-17",9661,4,4840],["Johnson","2021-07-19",9661,6,4846],["Johnson","2021-07-20",9661,11,4857],["Johnson","2021-07-21",9661,6,4863],["Johnson","2021-07-22",9661,13,4876],["Johnson","2021-07-23",9661,14,4890],["Johnson","2021-07-24",9661,8,4898],["Johnson","2021-07-25",9661,5,4903],["Johnson","2021-07-26",9661,15,4918],["Johnson","2021-07-27",9661,11,4929],["Johnson","2021-07-28",9661,28,4957],["Johnson","2021-07-29",9661,16,4973],["Johnson","2021-07-30",9661,15,4988],["Johnson","2021-07-31",9661,7,4995],["Johnson","2021-08-01",9661,6,5001],["Johnson","2021-08-02",9661,20,5021],["Johnson","2021-08-03",9661,21,5042],["Johnson","2021-08-04",9661,23,5065],["Johnson","2021-08-05",9661,10,5075],["Johnson","2021-08-06",9661,27,5102],["Johnson","2021-08-07",9661,10,5112],["Johnson","2021-08-08",9661,6,5118],["Johnson","2021-08-09",9661,33,5151],["Johnson","2021-08-10",9661,25,5176],["Johnson","2021-08-11",9661,26,5202],["Johnson","2021-08-12",9661,20,5222],["Johnson","2021-08-13",9661,25,5247],["Johnson","2021-08-14",9661,13,5260],["Johnson","2021-08-15",9661,8,5268],["Johnson","2021-08-16",9661,29,5297],["Johnson","2021-08-17",9661,33,5330],["Johnson","2021-08-18",9661,26,5356],["Johnson","2021-08-19",9661,36,5392],["Johnson","2021-08-20",9661,39,5431],["Johnson","2021-08-21",9661,19,5450],["Johnson","2021-08-22",9661,5,5455],["Johnson","2021-08-23",9661,37,5492],["Johnson","2021-08-24",9661,31,5523],["Johnson","2021-08-25",9661,65,5588],["Johnson","2021-08-26",9661,33,5621],["Johnson","2021-08-27",9661,39,5660],["Johnson","2021-08-28",9661,11,5671],["Johnson","2021-08-29",9661,7,5678],["Johnson","2021-08-30",9661,44,5722],["Johnson","2021-08-31",9661,30,5752],["Johnson","2021-09-01",9661,63,5815],["Johnson","2021-09-02",9661,34,5849],["Johnson","2021-09-03",9661,21,5870],["Johnson","2021-09-04",9661,13,5883],["Johnson","2021-09-05",9661,9,5892],["Johnson","2021-09-06",9661,4,5896],["Johnson","2021-09-07",9661,32,5928],["Johnson","2021-09-08",9661,43,5971],["Johnson","2021-09-09",9661,52,6023],["Johnson","2021-09-10",9661,31,6054],["Johnson","2021-09-11",9661,17,6071],["Johnson","2021-09-12",9661,6,6077],["Johnson","2021-09-13",9661,37,6114],["Johnson","2021-09-14",9661,31,6145],["Johnson","2021-09-15",9661,38,6183],["Johnson","2021-09-16",9661,21,6204],["Johnson","2021-09-17",9661,32,6236],["Johnson","2021-09-18",9661,12,6248],["Johnson","2021-09-19",9661,2,6250],["Johnson","2021-09-20",9661,49,6299],["Johnson","2021-09-21",9661,21,6320],["Johnson","2021-09-22",9661,56,6376],["Johnson","2021-09-23",9661,22,6398],["Johnson","2021-09-24",9661,29,6427],["Johnson","2021-09-25",9661,6,6433],["Johnson","2021-09-26",9661,2,6435],["Johnson","2021-09-27",9661,29,6464],["Johnson","2021-09-28",9661,18,6482],["Johnson","2021-09-29",9661,31,6513],["Johnson","2021-09-30",9661,18,6531],["Johnson","2021-10-01",9661,21,6552],["Johnson","2021-10-02",9661,5,6557],["Johnson","2021-10-03",9661,2,6559],["Johnson","2021-10-04",9661,20,6579],["Johnson","2021-10-05",9661,10,6589],["Johnson","2021-10-06",9661,17,6606],["Johnson","2021-10-07",9661,53,6659],["Johnson","2021-10-08",9661,17,6676],["Johnson","2021-10-09",9661,4,6680],["Johnson","2021-10-10",9661,3,6683],["Johnson","2021-10-11",9661,8,6691],["Johnson","2021-10-12",9661,11,6702],["Johnson","2021-10-13",9661,32,6734],["Johnson","2021-10-14",9661,6,6740],["Johnson","2021-10-15",9661,19,6759],["Johnson","2021-10-16",9661,2,6761],["Johnson","2021-10-18",9661,16,6777],["Johnson","2021-10-19",9661,9,6786],["Johnson","2021-10-20",9661,11,6797],["Johnson","2021-10-21",9661,11,6808],["Johnson","2021-10-22",9661,14,6822],["Johnson","2021-10-23",9661,3,6825],["Johnson","2021-10-24",9661,3,6828],["Johnson","2021-10-25",9661,14,6842],["Johnson","2021-10-26",9661,9,6851],["Johnson","2021-10-27",9661,54,6905],["Johnson","2021-10-28",9661,24,6929],["Johnson","2021-10-29",9661,15,6944],["Johnson","2021-10-30",9661,2,6946],["Johnson","2021-10-31",9661,1,6947],["Johnson","2021-11-01",9661,39,6986],["Johnson","2021-11-02",9661,36,7022],["Johnson","2021-11-03",9661,48,7070],["Johnson","2021-11-04",9661,15,7085],["Johnson","2021-11-05",9661,19,7104],["Johnson","2021-11-06",9661,5,7109],["Johnson","2021-11-07",9661,1,7110],["Johnson","2021-11-08",9661,24,7134],["Johnson","2021-11-09",9661,12,7146],["Johnson","2021-11-10",9661,61,7207],["Johnson","2021-11-11",9661,8,7215],["Johnson","2021-11-12",9661,18,7233],["Johnson","2021-11-13",9661,1,7234],["Johnson","2021-11-14",9661,2,7236],["Johnson","2021-11-15",9661,46,7282],["Johnson","2021-11-16",9661,25,7307],["Johnson","2021-11-17",9661,23,7330],["Johnson","2021-11-18",9661,32,7362],["Johnson","2021-11-19",9661,14,7376],["Johnson","2021-11-20",9661,8,7384],["Johnson","2021-11-21",9661,3,7387],["Johnson","2021-11-22",9661,19,7406],["Johnson","2021-11-23",9661,15,7421],["Johnson","2021-11-24",9661,10,7431],["Johnson","2021-11-26",9661,5,7436],["Johnson","2021-11-27",9661,3,7439],["Johnson","2021-11-29",9661,44,7483],["Johnson","2021-11-30",9661,25,7508],["Johnson","2021-12-01",9661,92,7600],["Johnson","2021-12-02",9661,30,7630],["Johnson","2021-12-03",9661,27,7657],["Johnson","2021-12-04",9661,3,7660],["Johnson","2021-12-05",9661,2,7662],["Johnson","2021-12-06",9661,36,7698],["Johnson","2021-12-07",9661,21,7719],["Johnson","2021-12-08",9661,35,7754],["Johnson","2021-12-09",9661,17,7771],["Johnson","2021-12-10",9661,18,7789],["Johnson","2021-12-12",9661,2,7791],["Johnson","2021-12-13",9661,32,7823],["Johnson","2021-12-14",9661,11,7834],["Johnson","2021-12-15",9661,28,7862],["Johnson","2021-12-16",9661,21,7883],["Johnson","2021-12-17",9661,18,7901],["Johnson","2021-12-18",9661,2,7903],["Johnson","2021-12-19",9661,1,7904],["Johnson","2021-12-20",9661,31,7935],["Johnson","2021-12-21",9661,16,7951],["Johnson","2021-12-22",9661,19,7970],["Johnson","2021-12-23",9661,10,7980],["Johnson","2021-12-24",9661,1,7981],["Johnson","2021-12-26",9661,4,7985],["Johnson","2021-12-27",9661,9,7994],["Johnson","2021-12-28",9661,17,8011],["Johnson","2021-12-29",9661,45,8056],["Johnson","2021-12-30",9661,30,8086],["Johnson","2021-12-31",9661,14,8100],["Johnson","2022-01-02",9661,2,8102],["Johnson","2022-01-03",9661,14,8116],["Jones","2020-12-17",28591,2,2],["Jones","2020-12-18",28591,1,3],["Jones","2020-12-19",28591,1,4],["Jones","2020-12-20",28591,1,5],["Jones","2020-12-21",28591,6,11],["Jones","2020-12-22",28591,14,25],["Jones","2020-12-23",28591,23,48],["Jones","2020-12-24",28591,35,83],["Jones","2020-12-26",28591,21,104],["Jones","2020-12-27",28591,7,111],["Jones","2020-12-28",28591,83,194],["Jones","2020-12-29",28591,43,237],["Jones","2020-12-30",28591,48,285],["Jones","2020-12-31",28591,6,291],["Jones","2021-01-01",28591,2,293],["Jones","2021-01-02",28591,2,295],["Jones","2021-01-03",28591,3,298],["Jones","2021-01-04",28591,42,340],["Jones","2021-01-05",28591,94,434],["Jones","2021-01-06",28591,56,490],["Jones","2021-01-07",28591,49,539],["Jones","2021-01-08",28591,32,571],["Jones","2021-01-09",28591,6,577],["Jones","2021-01-10",28591,4,581],["Jones","2021-01-11",28591,71,652],["Jones","2021-01-12",28591,76,728],["Jones","2021-01-13",28591,82,810],["Jones","2021-01-14",28591,141,951],["Jones","2021-01-15",28591,97,1048],["Jones","2021-01-16",28591,20,1068],["Jones","2021-01-17",28591,16,1084],["Jones","2021-01-18",28591,96,1180],["Jones","2021-01-19",28591,142,1322],["Jones","2021-01-20",28591,158,1480],["Jones","2021-01-21",28591,172,1652],["Jones","2021-01-22",28591,169,1821],["Jones","2021-01-23",28591,89,1910],["Jones","2021-01-24",28591,22,1932],["Jones","2021-01-25",28591,151,2083],["Jones","2021-01-26",28591,123,2206],["Jones","2021-01-27",28591,192,2398],["Jones","2021-01-28",28591,92,2490],["Jones","2021-01-29",28591,163,2653],["Jones","2021-01-30",28591,13,2666],["Jones","2021-01-31",28591,7,2673],["Jones","2021-02-01",28591,90,2763],["Jones","2021-02-02",28591,112,2875],["Jones","2021-02-03",28591,102,2977],["Jones","2021-02-04",28591,227,3204],["Jones","2021-02-05",28591,145,3349],["Jones","2021-02-06",28591,16,3365],["Jones","2021-02-07",28591,4,3369],["Jones","2021-02-08",28591,78,3447],["Jones","2021-02-09",28591,93,3540],["Jones","2021-02-10",28591,212,3752],["Jones","2021-02-11",28591,133,3885],["Jones","2021-02-12",28591,167,4052],["Jones","2021-02-13",28591,35,4087],["Jones","2021-02-14",28591,26,4113],["Jones","2021-02-15",28591,127,4240],["Jones","2021-02-16",28591,176,4416],["Jones","2021-02-17",28591,191,4607],["Jones","2021-02-18",28591,212,4819],["Jones","2021-02-19",28591,130,4949],["Jones","2021-02-20",28591,54,5003],["Jones","2021-02-21",28591,21,5024],["Jones","2021-02-22",28591,126,5150],["Jones","2021-02-23",28591,102,5252],["Jones","2021-02-24",28591,261,5513],["Jones","2021-02-25",28591,221,5734],["Jones","2021-02-26",28591,236,5970],["Jones","2021-02-27",28591,39,6009],["Jones","2021-02-28",28591,26,6035],["Jones","2021-03-01",28591,229,6264],["Jones","2021-03-02",28591,173,6437],["Jones","2021-03-03",28591,192,6629],["Jones","2021-03-04",28591,279,6908],["Jones","2021-03-05",28591,218,7126],["Jones","2021-03-06",28591,26,7152],["Jones","2021-03-07",28591,32,7184],["Jones","2021-03-08",28591,186,7370],["Jones","2021-03-09",28591,153,7523],["Jones","2021-03-10",28591,269,7792],["Jones","2021-03-11",28591,195,7987],["Jones","2021-03-12",28591,190,8177],["Jones","2021-03-13",28591,81,8258],["Jones","2021-03-14",28591,41,8299],["Jones","2021-03-15",28591,226,8525],["Jones","2021-03-16",28591,254,8779],["Jones","2021-03-17",28591,238,9017],["Jones","2021-03-18",28591,180,9197],["Jones","2021-03-19",28591,226,9423],["Jones","2021-03-20",28591,83,9506],["Jones","2021-03-21",28591,32,9538],["Jones","2021-03-22",28591,201,9739],["Jones","2021-03-23",28591,142,9881],["Jones","2021-03-24",28591,143,10024],["Jones","2021-03-25",28591,215,10239],["Jones","2021-03-26",28591,177,10416],["Jones","2021-03-27",28591,37,10453],["Jones","2021-03-28",28591,47,10500],["Jones","2021-03-29",28591,258,10758],["Jones","2021-03-30",28591,198,10956],["Jones","2021-03-31",28591,203,11159],["Jones","2021-04-01",28591,290,11449],["Jones","2021-04-02",28591,223,11672],["Jones","2021-04-03",28591,81,11753],["Jones","2021-04-04",28591,50,11803],["Jones","2021-04-05",28591,183,11986],["Jones","2021-04-06",28591,206,12192],["Jones","2021-04-07",28591,213,12405],["Jones","2021-04-08",28591,213,12618],["Jones","2021-04-09",28591,231,12849],["Jones","2021-04-10",28591,58,12907],["Jones","2021-04-11",28591,42,12949],["Jones","2021-04-12",28591,159,13108],["Jones","2021-04-13",28591,200,13308],["Jones","2021-04-14",28591,179,13487],["Jones","2021-04-15",28591,195,13682],["Jones","2021-04-16",28591,196,13878],["Jones","2021-04-17",28591,38,13916],["Jones","2021-04-18",28591,26,13942],["Jones","2021-04-19",28591,141,14083],["Jones","2021-04-20",28591,186,14269],["Jones","2021-04-21",28591,133,14402],["Jones","2021-04-22",28591,202,14604],["Jones","2021-04-23",28591,189,14793],["Jones","2021-04-24",28591,30,14823],["Jones","2021-04-25",28591,18,14841],["Jones","2021-04-26",28591,176,15017],["Jones","2021-04-27",28591,125,15142],["Jones","2021-04-28",28591,122,15264],["Jones","2021-04-29",28591,213,15477],["Jones","2021-04-30",28591,144,15621],["Jones","2021-05-01",28591,38,15659],["Jones","2021-05-02",28591,25,15684],["Jones","2021-05-03",28591,67,15751],["Jones","2021-05-04",28591,96,15847],["Jones","2021-05-05",28591,105,15952],["Jones","2021-05-06",28591,96,16048],["Jones","2021-05-07",28591,79,16127],["Jones","2021-05-08",28591,30,16157],["Jones","2021-05-09",28591,9,16166],["Jones","2021-05-10",28591,50,16216],["Jones","2021-05-11",28591,85,16301],["Jones","2021-05-12",28591,55,16356],["Jones","2021-05-13",28591,86,16442],["Jones","2021-05-14",28591,89,16531],["Jones","2021-05-15",28591,37,16568],["Jones","2021-05-16",28591,31,16599],["Jones","2021-05-17",28591,53,16652],["Jones","2021-05-18",28591,68,16720],["Jones","2021-05-19",28591,76,16796],["Jones","2021-05-20",28591,71,16867],["Jones","2021-05-21",28591,82,16949],["Jones","2021-05-22",28591,27,16976],["Jones","2021-05-23",28591,17,16993],["Jones","2021-05-24",28591,53,17046],["Jones","2021-05-25",28591,67,17113],["Jones","2021-05-26",28591,58,17171],["Jones","2021-05-27",28591,58,17229],["Jones","2021-05-28",28591,50,17279],["Jones","2021-05-29",28591,31,17310],["Jones","2021-05-30",28591,21,17331],["Jones","2021-05-31",28591,12,17343],["Jones","2021-06-01",28591,57,17400],["Jones","2021-06-02",28591,50,17450],["Jones","2021-06-03",28591,47,17497],["Jones","2021-06-04",28591,44,17541],["Jones","2021-06-05",28591,37,17578],["Jones","2021-06-06",28591,32,17610],["Jones","2021-06-07",28591,44,17654],["Jones","2021-06-08",28591,55,17709],["Jones","2021-06-09",28591,40,17749],["Jones","2021-06-10",28591,50,17799],["Jones","2021-06-11",28591,40,17839],["Jones","2021-06-12",28591,23,17862],["Jones","2021-06-13",28591,23,17885],["Jones","2021-06-14",28591,36,17921],["Jones","2021-06-15",28591,41,17962],["Jones","2021-06-16",28591,30,17992],["Jones","2021-06-17",28591,32,18024],["Jones","2021-06-18",28591,34,18058],["Jones","2021-06-19",28591,21,18079],["Jones","2021-06-20",28591,16,18095],["Jones","2021-06-21",28591,25,18120],["Jones","2021-06-22",28591,27,18147],["Jones","2021-06-23",28591,39,18186],["Jones","2021-06-24",28591,31,18217],["Jones","2021-06-25",28591,39,18256],["Jones","2021-06-26",28591,18,18274],["Jones","2021-06-27",28591,12,18286],["Jones","2021-06-28",28591,30,18316],["Jones","2021-06-29",28591,35,18351],["Jones","2021-06-30",28591,29,18380],["Jones","2021-07-01",28591,30,18410],["Jones","2021-07-02",28591,25,18435],["Jones","2021-07-03",28591,16,18451],["Jones","2021-07-04",28591,6,18457],["Jones","2021-07-05",28591,22,18479],["Jones","2021-07-06",28591,33,18512],["Jones","2021-07-07",28591,29,18541],["Jones","2021-07-08",28591,26,18567],["Jones","2021-07-09",28591,32,18599],["Jones","2021-07-10",28591,25,18624],["Jones","2021-07-11",28591,17,18641],["Jones","2021-07-12",28591,24,18665],["Jones","2021-07-13",28591,36,18701],["Jones","2021-07-14",28591,34,18735],["Jones","2021-07-15",28591,24,18759],["Jones","2021-07-16",28591,29,18788],["Jones","2021-07-17",28591,20,18808],["Jones","2021-07-18",28591,17,18825],["Jones","2021-07-19",28591,39,18864],["Jones","2021-07-20",28591,38,18902],["Jones","2021-07-21",28591,43,18945],["Jones","2021-07-22",28591,38,18983],["Jones","2021-07-23",28591,63,19046],["Jones","2021-07-24",28591,43,19089],["Jones","2021-07-25",28591,24,19113],["Jones","2021-07-26",28591,47,19160],["Jones","2021-07-27",28591,55,19215],["Jones","2021-07-28",28591,60,19275],["Jones","2021-07-29",28591,72,19347],["Jones","2021-07-30",28591,88,19435],["Jones","2021-07-31",28591,54,19489],["Jones","2021-08-01",28591,29,19518],["Jones","2021-08-02",28591,81,19599],["Jones","2021-08-03",28591,55,19654],["Jones","2021-08-04",28591,68,19722],["Jones","2021-08-05",28591,68,19790],["Jones","2021-08-06",28591,99,19889],["Jones","2021-08-07",28591,66,19955],["Jones","2021-08-08",28591,33,19988],["Jones","2021-08-09",28591,94,20082],["Jones","2021-08-10",28591,90,20172],["Jones","2021-08-11",28591,89,20261],["Jones","2021-08-12",28591,96,20357],["Jones","2021-08-13",28591,101,20458],["Jones","2021-08-14",28591,54,20512],["Jones","2021-08-15",28591,39,20551],["Jones","2021-08-16",28591,98,20649],["Jones","2021-08-17",28591,74,20723],["Jones","2021-08-18",28591,81,20804],["Jones","2021-08-19",28591,93,20897],["Jones","2021-08-20",28591,131,21028],["Jones","2021-08-21",28591,87,21115],["Jones","2021-08-22",28591,45,21160],["Jones","2021-08-23",28591,90,21250],["Jones","2021-08-24",28591,104,21354],["Jones","2021-08-25",28591,96,21450],["Jones","2021-08-26",28591,106,21556],["Jones","2021-08-27",28591,108,21664],["Jones","2021-08-28",28591,77,21741],["Jones","2021-08-29",28591,64,21805],["Jones","2021-08-30",28591,89,21894],["Jones","2021-08-31",28591,84,21978],["Jones","2021-09-01",28591,123,22101],["Jones","2021-09-02",28591,86,22187],["Jones","2021-09-03",28591,142,22329],["Jones","2021-09-04",28591,63,22392],["Jones","2021-09-05",28591,45,22437],["Jones","2021-09-06",28591,26,22463],["Jones","2021-09-07",28591,78,22541],["Jones","2021-09-08",28591,104,22645],["Jones","2021-09-09",28591,105,22750],["Jones","2021-09-10",28591,95,22845],["Jones","2021-09-11",28591,66,22911],["Jones","2021-09-12",28591,47,22958],["Jones","2021-09-13",28591,67,23025],["Jones","2021-09-14",28591,98,23123],["Jones","2021-09-15",28591,63,23186],["Jones","2021-09-16",28591,72,23258],["Jones","2021-09-17",28591,99,23357],["Jones","2021-09-18",28591,63,23420],["Jones","2021-09-19",28591,31,23451],["Jones","2021-09-20",28591,63,23514],["Jones","2021-09-21",28591,65,23579],["Jones","2021-09-22",28591,74,23653],["Jones","2021-09-23",28591,70,23723],["Jones","2021-09-24",28591,63,23786],["Jones","2021-09-25",28591,50,23836],["Jones","2021-09-26",28591,29,23865],["Jones","2021-09-27",28591,54,23919],["Jones","2021-09-28",28591,59,23978],["Jones","2021-09-29",28591,75,24053],["Jones","2021-09-30",28591,66,24119],["Jones","2021-10-01",28591,90,24209],["Jones","2021-10-02",28591,28,24237],["Jones","2021-10-03",28591,30,24267],["Jones","2021-10-04",28591,46,24313],["Jones","2021-10-05",28591,51,24364],["Jones","2021-10-06",28591,48,24412],["Jones","2021-10-07",28591,63,24475],["Jones","2021-10-08",28591,85,24560],["Jones","2021-10-09",28591,21,24581],["Jones","2021-10-10",28591,18,24599],["Jones","2021-10-11",28591,37,24636],["Jones","2021-10-12",28591,46,24682],["Jones","2021-10-13",28591,38,24720],["Jones","2021-10-14",28591,47,24767],["Jones","2021-10-15",28591,46,24813],["Jones","2021-10-16",28591,17,24830],["Jones","2021-10-17",28591,14,24844],["Jones","2021-10-18",28591,25,24869],["Jones","2021-10-19",28591,35,24904],["Jones","2021-10-20",28591,45,24949],["Jones","2021-10-21",28591,43,24992],["Jones","2021-10-22",28591,61,25053],["Jones","2021-10-23",28591,26,25079],["Jones","2021-10-24",28591,17,25096],["Jones","2021-10-25",28591,59,25155],["Jones","2021-10-26",28591,135,25290],["Jones","2021-10-27",28591,111,25401],["Jones","2021-10-28",28591,86,25487],["Jones","2021-10-29",28591,122,25609],["Jones","2021-10-30",28591,38,25647],["Jones","2021-10-31",28591,33,25680],["Jones","2021-11-01",28591,92,25772],["Jones","2021-11-02",28591,193,25965],["Jones","2021-11-03",28591,107,26072],["Jones","2021-11-04",28591,101,26173],["Jones","2021-11-05",28591,93,26266],["Jones","2021-11-06",28591,39,26305],["Jones","2021-11-07",28591,29,26334],["Jones","2021-11-08",28591,116,26450],["Jones","2021-11-09",28591,139,26589],["Jones","2021-11-10",28591,98,26687],["Jones","2021-11-11",28591,72,26759],["Jones","2021-11-12",28591,84,26843],["Jones","2021-11-13",28591,41,26884],["Jones","2021-11-14",28591,30,26914],["Jones","2021-11-15",28591,59,26973],["Jones","2021-11-16",28591,208,27181],["Jones","2021-11-17",28591,81,27262],["Jones","2021-11-18",28591,75,27337],["Jones","2021-11-19",28591,73,27410],["Jones","2021-11-20",28591,40,27450],["Jones","2021-11-21",28591,31,27481],["Jones","2021-11-22",28591,65,27546],["Jones","2021-11-23",28591,132,27678],["Jones","2021-11-24",28591,68,27746],["Jones","2021-11-26",28591,34,27780],["Jones","2021-11-27",28591,30,27810],["Jones","2021-11-28",28591,30,27840],["Jones","2021-11-29",28591,59,27899],["Jones","2021-11-30",28591,135,28034],["Jones","2021-12-01",28591,102,28136],["Jones","2021-12-02",28591,104,28240],["Jones","2021-12-03",28591,93,28333],["Jones","2021-12-04",28591,47,28380],["Jones","2021-12-05",28591,24,28404],["Jones","2021-12-06",28591,73,28477],["Jones","2021-12-07",28591,121,28598],["Jones","2021-12-08",28591,86,28684],["Jones","2021-12-09",28591,74,28758],["Jones","2021-12-10",28591,98,28856],["Jones","2021-12-11",28591,50,28906],["Jones","2021-12-12",28591,30,28936],["Jones","2021-12-13",28591,40,28976],["Jones","2021-12-14",28591,103,29079],["Jones","2021-12-15",28591,66,29145],["Jones","2021-12-16",28591,56,29201],["Jones","2021-12-17",28591,74,29275],["Jones","2021-12-18",28591,24,29299],["Jones","2021-12-19",28591,27,29326],["Jones","2021-12-20",28591,57,29383],["Jones","2021-12-21",28591,114,29497],["Jones","2021-12-22",28591,87,29584],["Jones","2021-12-23",28591,62,29646],["Jones","2021-12-24",28591,17,29663],["Jones","2021-12-26",28591,28,29691],["Jones","2021-12-27",28591,48,29739],["Jones","2021-12-28",28591,105,29844],["Jones","2021-12-29",28591,82,29926],["Jones","2021-12-30",28591,70,29996],["Jones","2021-12-31",28591,45,30041],["Jones","2022-01-01",28591,18,30059],["Jones","2022-01-02",28591,20,30079],["Jones","2022-01-03",28591,7,30086],["Lamar","2020-12-18",19347,3,3],["Lamar","2020-12-19",19347,5,8],["Lamar","2020-12-21",19347,24,32],["Lamar","2020-12-22",19347,12,44],["Lamar","2020-12-23",19347,27,71],["Lamar","2020-12-28",19347,32,103],["Lamar","2020-12-29",19347,18,121],["Lamar","2020-12-30",19347,34,155],["Lamar","2020-12-31",19347,10,165],["Lamar","2021-01-01",19347,6,171],["Lamar","2021-01-02",19347,1,172],["Lamar","2021-01-03",19347,3,175],["Lamar","2021-01-04",19347,7,182],["Lamar","2021-01-05",19347,16,198],["Lamar","2021-01-06",19347,26,224],["Lamar","2021-01-07",19347,14,238],["Lamar","2021-01-08",19347,10,248],["Lamar","2021-01-09",19347,17,265],["Lamar","2021-01-10",19347,32,297],["Lamar","2021-01-11",19347,56,353],["Lamar","2021-01-12",19347,24,377],["Lamar","2021-01-13",19347,192,569],["Lamar","2021-01-14",19347,36,605],["Lamar","2021-01-15",19347,186,791],["Lamar","2021-01-16",19347,52,843],["Lamar","2021-01-17",19347,15,858],["Lamar","2021-01-18",19347,41,899],["Lamar","2021-01-19",19347,34,933],["Lamar","2021-01-20",19347,151,1084],["Lamar","2021-01-21",19347,61,1145],["Lamar","2021-01-22",19347,94,1239],["Lamar","2021-01-23",19347,47,1286],["Lamar","2021-01-24",19347,7,1293],["Lamar","2021-01-25",19347,45,1338],["Lamar","2021-01-26",19347,41,1379],["Lamar","2021-01-27",19347,126,1505],["Lamar","2021-01-28",19347,57,1562],["Lamar","2021-01-29",19347,32,1594],["Lamar","2021-01-30",19347,7,1601],["Lamar","2021-01-31",19347,33,1634],["Lamar","2021-02-01",19347,11,1645],["Lamar","2021-02-02",19347,38,1683],["Lamar","2021-02-03",19347,237,1920],["Lamar","2021-02-04",19347,70,1990],["Lamar","2021-02-05",19347,49,2039],["Lamar","2021-02-06",19347,8,2047],["Lamar","2021-02-07",19347,5,2052],["Lamar","2021-02-08",19347,19,2071],["Lamar","2021-02-09",19347,15,2086],["Lamar","2021-02-10",19347,282,2368],["Lamar","2021-02-11",19347,89,2457],["Lamar","2021-02-12",19347,79,2536],["Lamar","2021-02-13",19347,54,2590],["Lamar","2021-02-14",19347,11,2601],["Lamar","2021-02-15",19347,46,2647],["Lamar","2021-02-16",19347,31,2678],["Lamar","2021-02-17",19347,155,2833],["Lamar","2021-02-18",19347,97,2930],["Lamar","2021-02-19",19347,74,3004],["Lamar","2021-02-20",19347,52,3056],["Lamar","2021-02-21",19347,5,3061],["Lamar","2021-02-22",19347,42,3103],["Lamar","2021-02-23",19347,56,3159],["Lamar","2021-02-24",19347,104,3263],["Lamar","2021-02-25",19347,80,3343],["Lamar","2021-02-26",19347,73,3416],["Lamar","2021-02-27",19347,22,3438],["Lamar","2021-02-28",19347,13,3451],["Lamar","2021-03-01",19347,39,3490],["Lamar","2021-03-02",19347,61,3551],["Lamar","2021-03-03",19347,90,3641],["Lamar","2021-03-04",19347,88,3729],["Lamar","2021-03-05",19347,117,3846],["Lamar","2021-03-06",19347,19,3865],["Lamar","2021-03-07",19347,9,3874],["Lamar","2021-03-08",19347,64,3938],["Lamar","2021-03-09",19347,52,3990],["Lamar","2021-03-10",19347,115,4105],["Lamar","2021-03-11",19347,94,4199],["Lamar","2021-03-12",19347,89,4288],["Lamar","2021-03-13",19347,18,4306],["Lamar","2021-03-14",19347,13,4319],["Lamar","2021-03-15",19347,85,4404],["Lamar","2021-03-16",19347,54,4458],["Lamar","2021-03-17",19347,135,4593],["Lamar","2021-03-18",19347,124,4717],["Lamar","2021-03-19",19347,81,4798],["Lamar","2021-03-20",19347,14,4812],["Lamar","2021-03-21",19347,17,4829],["Lamar","2021-03-22",19347,59,4888],["Lamar","2021-03-23",19347,72,4960],["Lamar","2021-03-24",19347,125,5085],["Lamar","2021-03-25",19347,168,5253],["Lamar","2021-03-26",19347,116,5369],["Lamar","2021-03-27",19347,33,5402],["Lamar","2021-03-28",19347,26,5428],["Lamar","2021-03-29",19347,90,5518],["Lamar","2021-03-30",19347,89,5607],["Lamar","2021-03-31",19347,136,5743],["Lamar","2021-04-01",19347,185,5928],["Lamar","2021-04-02",19347,156,6084],["Lamar","2021-04-03",19347,28,6112],["Lamar","2021-04-04",19347,19,6131],["Lamar","2021-04-05",19347,96,6227],["Lamar","2021-04-06",19347,71,6298],["Lamar","2021-04-07",19347,140,6438],["Lamar","2021-04-08",19347,147,6585],["Lamar","2021-04-09",19347,114,6699],["Lamar","2021-04-10",19347,30,6729],["Lamar","2021-04-11",19347,27,6756],["Lamar","2021-04-12",19347,72,6828],["Lamar","2021-04-13",19347,56,6884],["Lamar","2021-04-14",19347,116,7000],["Lamar","2021-04-15",19347,167,7167],["Lamar","2021-04-16",19347,129,7296],["Lamar","2021-04-17",19347,26,7322],["Lamar","2021-04-18",19347,11,7333],["Lamar","2021-04-19",19347,52,7385],["Lamar","2021-04-20",19347,70,7455],["Lamar","2021-04-21",19347,103,7558],["Lamar","2021-04-22",19347,166,7724],["Lamar","2021-04-23",19347,86,7810],["Lamar","2021-04-24",19347,26,7836],["Lamar","2021-04-25",19347,17,7853],["Lamar","2021-04-26",19347,77,7930],["Lamar","2021-04-27",19347,52,7982],["Lamar","2021-04-28",19347,96,8078],["Lamar","2021-04-29",19347,107,8185],["Lamar","2021-04-30",19347,87,8272],["Lamar","2021-05-01",19347,25,8297],["Lamar","2021-05-02",19347,17,8314],["Lamar","2021-05-03",19347,73,8387],["Lamar","2021-05-04",19347,53,8440],["Lamar","2021-05-05",19347,57,8497],["Lamar","2021-05-06",19347,88,8585],["Lamar","2021-05-07",19347,95,8680],["Lamar","2021-05-08",19347,19,8699],["Lamar","2021-05-09",19347,13,8712],["Lamar","2021-05-10",19347,29,8741],["Lamar","2021-05-11",19347,30,8771],["Lamar","2021-05-12",19347,51,8822],["Lamar","2021-05-13",19347,101,8923],["Lamar","2021-05-14",19347,68,8991],["Lamar","2021-05-15",19347,50,9041],["Lamar","2021-05-16",19347,18,9059],["Lamar","2021-05-17",19347,30,9089],["Lamar","2021-05-18",19347,38,9127],["Lamar","2021-05-19",19347,36,9163],["Lamar","2021-05-20",19347,62,9225],["Lamar","2021-05-21",19347,45,9270],["Lamar","2021-05-22",19347,30,9300],["Lamar","2021-05-23",19347,12,9312],["Lamar","2021-05-24",19347,37,9349],["Lamar","2021-05-25",19347,42,9391],["Lamar","2021-05-26",19347,16,9407],["Lamar","2021-05-27",19347,32,9439],["Lamar","2021-05-28",19347,39,9478],["Lamar","2021-05-29",19347,13,9491],["Lamar","2021-05-30",19347,5,9496],["Lamar","2021-05-31",19347,1,9497],["Lamar","2021-06-01",19347,31,9528],["Lamar","2021-06-02",19347,27,9555],["Lamar","2021-06-03",19347,32,9587],["Lamar","2021-06-04",19347,33,9620],["Lamar","2021-06-05",19347,21,9641],["Lamar","2021-06-06",19347,10,9651],["Lamar","2021-06-07",19347,43,9694],["Lamar","2021-06-08",19347,21,9715],["Lamar","2021-06-09",19347,22,9737],["Lamar","2021-06-10",19347,33,9770],["Lamar","2021-06-11",19347,32,9802],["Lamar","2021-06-12",19347,21,9823],["Lamar","2021-06-13",19347,4,9827],["Lamar","2021-06-14",19347,13,9840],["Lamar","2021-06-15",19347,31,9871],["Lamar","2021-06-16",19347,16,9887],["Lamar","2021-06-17",19347,24,9911],["Lamar","2021-06-18",19347,19,9930],["Lamar","2021-06-19",19347,11,9941],["Lamar","2021-06-20",19347,6,9947],["Lamar","2021-06-21",19347,13,9960],["Lamar","2021-06-22",19347,21,9981],["Lamar","2021-06-23",19347,19,10000],["Lamar","2021-06-24",19347,32,10032],["Lamar","2021-06-25",19347,18,10050],["Lamar","2021-06-26",19347,30,10080],["Lamar","2021-06-27",19347,5,10085],["Lamar","2021-06-28",19347,18,10103],["Lamar","2021-06-29",19347,15,10118],["Lamar","2021-06-30",19347,17,10135],["Lamar","2021-07-01",19347,21,10156],["Lamar","2021-07-02",19347,16,10172],["Lamar","2021-07-03",19347,11,10183],["Lamar","2021-07-05",19347,10,10193],["Lamar","2021-07-06",19347,16,10209],["Lamar","2021-07-07",19347,20,10229],["Lamar","2021-07-08",19347,21,10250],["Lamar","2021-07-09",19347,20,10270],["Lamar","2021-07-10",19347,9,10279],["Lamar","2021-07-11",19347,6,10285],["Lamar","2021-07-12",19347,17,10302],["Lamar","2021-07-13",19347,18,10320],["Lamar","2021-07-14",19347,7,10327],["Lamar","2021-07-15",19347,13,10340],["Lamar","2021-07-16",19347,17,10357],["Lamar","2021-07-17",19347,10,10367],["Lamar","2021-07-18",19347,4,10371],["Lamar","2021-07-19",19347,29,10400],["Lamar","2021-07-20",19347,19,10419],["Lamar","2021-07-21",19347,22,10441],["Lamar","2021-07-22",19347,29,10470],["Lamar","2021-07-23",19347,26,10496],["Lamar","2021-07-24",19347,27,10523],["Lamar","2021-07-25",19347,6,10529],["Lamar","2021-07-26",19347,37,10566],["Lamar","2021-07-27",19347,55,10621],["Lamar","2021-07-28",19347,31,10652],["Lamar","2021-07-29",19347,24,10676],["Lamar","2021-07-30",19347,46,10722],["Lamar","2021-07-31",19347,19,10741],["Lamar","2021-08-01",19347,6,10747],["Lamar","2021-08-02",19347,28,10775],["Lamar","2021-08-03",19347,25,10800],["Lamar","2021-08-04",19347,35,10835],["Lamar","2021-08-05",19347,28,10863],["Lamar","2021-08-06",19347,43,10906],["Lamar","2021-08-07",19347,23,10929],["Lamar","2021-08-08",19347,20,10949],["Lamar","2021-08-09",19347,36,10985],["Lamar","2021-08-10",19347,50,11035],["Lamar","2021-08-11",19347,32,11067],["Lamar","2021-08-12",19347,41,11108],["Lamar","2021-08-13",19347,62,11170],["Lamar","2021-08-14",19347,30,11200],["Lamar","2021-08-15",19347,16,11216],["Lamar","2021-08-16",19347,49,11265],["Lamar","2021-08-17",19347,61,11326],["Lamar","2021-08-18",19347,43,11369],["Lamar","2021-08-19",19347,50,11419],["Lamar","2021-08-20",19347,75,11494],["Lamar","2021-08-21",19347,36,11530],["Lamar","2021-08-22",19347,20,11550],["Lamar","2021-08-23",19347,67,11617],["Lamar","2021-08-24",19347,62,11679],["Lamar","2021-08-25",19347,62,11741],["Lamar","2021-08-26",19347,61,11802],["Lamar","2021-08-27",19347,77,11879],["Lamar","2021-08-28",19347,36,11915],["Lamar","2021-08-29",19347,32,11947],["Lamar","2021-08-30",19347,63,12010],["Lamar","2021-08-31",19347,48,12058],["Lamar","2021-09-01",19347,58,12116],["Lamar","2021-09-02",19347,51,12167],["Lamar","2021-09-03",19347,71,12238],["Lamar","2021-09-04",19347,38,12276],["Lamar","2021-09-05",19347,15,12291],["Lamar","2021-09-06",19347,11,12302],["Lamar","2021-09-07",19347,68,12370],["Lamar","2021-09-08",19347,45,12415],["Lamar","2021-09-09",19347,43,12458],["Lamar","2021-09-10",19347,85,12543],["Lamar","2021-09-11",19347,32,12575],["Lamar","2021-09-12",19347,22,12597],["Lamar","2021-09-13",19347,50,12647],["Lamar","2021-09-14",19347,42,12689],["Lamar","2021-09-15",19347,32,12721],["Lamar","2021-09-16",19347,40,12761],["Lamar","2021-09-17",19347,55,12816],["Lamar","2021-09-18",19347,22,12838],["Lamar","2021-09-19",19347,11,12849],["Lamar","2021-09-20",19347,57,12906],["Lamar","2021-09-21",19347,35,12941],["Lamar","2021-09-22",19347,33,12974],["Lamar","2021-09-23",19347,39,13013],["Lamar","2021-09-24",19347,66,13079],["Lamar","2021-09-25",19347,39,13118],["Lamar","2021-09-26",19347,26,13144],["Lamar","2021-09-27",19347,75,13219],["Lamar","2021-09-28",19347,79,13298],["Lamar","2021-09-29",19347,66,13364],["Lamar","2021-09-30",19347,56,13420],["Lamar","2021-10-01",19347,82,13502],["Lamar","2021-10-02",19347,28,13530],["Lamar","2021-10-03",19347,8,13538],["Lamar","2021-10-04",19347,71,13609],["Lamar","2021-10-05",19347,60,13669],["Lamar","2021-10-06",19347,37,13706],["Lamar","2021-10-07",19347,44,13750],["Lamar","2021-10-08",19347,56,13806],["Lamar","2021-10-09",19347,26,13832],["Lamar","2021-10-10",19347,7,13839],["Lamar","2021-10-11",19347,27,13866],["Lamar","2021-10-12",19347,55,13921],["Lamar","2021-10-13",19347,28,13949],["Lamar","2021-10-14",19347,40,13989],["Lamar","2021-10-15",19347,34,14023],["Lamar","2021-10-16",19347,12,14035],["Lamar","2021-10-17",19347,10,14045],["Lamar","2021-10-18",19347,49,14094],["Lamar","2021-10-19",19347,36,14130],["Lamar","2021-10-20",19347,30,14160],["Lamar","2021-10-21",19347,36,14196],["Lamar","2021-10-22",19347,60,14256],["Lamar","2021-10-23",19347,20,14276],["Lamar","2021-10-24",19347,10,14286],["Lamar","2021-10-25",19347,51,14337],["Lamar","2021-10-26",19347,43,14380],["Lamar","2021-10-27",19347,56,14436],["Lamar","2021-10-28",19347,46,14482],["Lamar","2021-10-29",19347,97,14579],["Lamar","2021-10-30",19347,24,14603],["Lamar","2021-10-31",19347,4,14607],["Lamar","2021-11-01",19347,39,14646],["Lamar","2021-11-02",19347,24,14670],["Lamar","2021-11-03",19347,21,14691],["Lamar","2021-11-04",19347,28,14719],["Lamar","2021-11-05",19347,44,14763],["Lamar","2021-11-06",19347,5,14768],["Lamar","2021-11-07",19347,25,14793],["Lamar","2021-11-08",19347,23,14816],["Lamar","2021-11-09",19347,32,14848],["Lamar","2021-11-10",19347,37,14885],["Lamar","2021-11-11",19347,34,14919],["Lamar","2021-11-12",19347,56,14975],["Lamar","2021-11-13",19347,13,14988],["Lamar","2021-11-14",19347,16,15004],["Lamar","2021-11-15",19347,18,15022],["Lamar","2021-11-16",19347,49,15071],["Lamar","2021-11-17",19347,34,15105],["Lamar","2021-11-18",19347,32,15137],["Lamar","2021-11-19",19347,53,15190],["Lamar","2021-11-20",19347,26,15216],["Lamar","2021-11-21",19347,9,15225],["Lamar","2021-11-22",19347,34,15259],["Lamar","2021-11-23",19347,45,15304],["Lamar","2021-11-24",19347,16,15320],["Lamar","2021-11-25",19347,1,15321],["Lamar","2021-11-26",19347,22,15343],["Lamar","2021-11-27",19347,18,15361],["Lamar","2021-11-28",19347,12,15373],["Lamar","2021-11-29",19347,47,15420],["Lamar","2021-11-30",19347,62,15482],["Lamar","2021-12-01",19347,50,15532],["Lamar","2021-12-02",19347,37,15569],["Lamar","2021-12-03",19347,73,15642],["Lamar","2021-12-04",19347,21,15663],["Lamar","2021-12-05",19347,19,15682],["Lamar","2021-12-06",19347,33,15715],["Lamar","2021-12-07",19347,31,15746],["Lamar","2021-12-08",19347,27,15773],["Lamar","2021-12-09",19347,34,15807],["Lamar","2021-12-10",19347,52,15859],["Lamar","2021-12-11",19347,9,15868],["Lamar","2021-12-12",19347,8,15876],["Lamar","2021-12-13",19347,30,15906],["Lamar","2021-12-14",19347,28,15934],["Lamar","2021-12-15",19347,19,15953],["Lamar","2021-12-16",19347,31,15984],["Lamar","2021-12-17",19347,49,16033],["Lamar","2021-12-18",19347,21,16054],["Lamar","2021-12-19",19347,11,16065],["Lamar","2021-12-20",19347,39,16104],["Lamar","2021-12-21",19347,48,16152],["Lamar","2021-12-22",19347,39,16191],["Lamar","2021-12-23",19347,29,16220],["Lamar","2021-12-24",19347,14,16234],["Lamar","2021-12-26",19347,11,16245],["Lamar","2021-12-27",19347,36,16281],["Lamar","2021-12-28",19347,57,16338],["Lamar","2021-12-29",19347,21,16359],["Lamar","2021-12-30",19347,44,16403],["Lamar","2021-12-31",19347,43,16446],["Lamar","2022-01-01",19347,5,16451],["Lamar","2022-01-02",19347,14,16465],["Lamar","2022-01-03",19347,8,16473],["Lanier","2020-12-18",10351,1,1],["Lanier","2020-12-21",10351,3,4],["Lanier","2020-12-22",10351,16,20],["Lanier","2020-12-23",10351,9,29],["Lanier","2020-12-24",10351,8,37],["Lanier","2020-12-26",10351,1,38],["Lanier","2020-12-28",10351,16,54],["Lanier","2020-12-29",10351,7,61],["Lanier","2020-12-30",10351,8,69],["Lanier","2020-12-31",10351,8,77],["Lanier","2021-01-01",10351,3,80],["Lanier","2021-01-03",10351,2,82],["Lanier","2021-01-04",10351,15,97],["Lanier","2021-01-05",10351,6,103],["Lanier","2021-01-06",10351,13,116],["Lanier","2021-01-07",10351,3,119],["Lanier","2021-01-08",10351,10,129],["Lanier","2021-01-11",10351,21,150],["Lanier","2021-01-12",10351,57,207],["Lanier","2021-01-13",10351,46,253],["Lanier","2021-01-14",10351,34,287],["Lanier","2021-01-15",10351,74,361],["Lanier","2021-01-17",10351,2,363],["Lanier","2021-01-18",10351,27,390],["Lanier","2021-01-19",10351,24,414],["Lanier","2021-01-20",10351,31,445],["Lanier","2021-01-21",10351,26,471],["Lanier","2021-01-22",10351,26,497],["Lanier","2021-01-23",10351,1,498],["Lanier","2021-01-24",10351,2,500],["Lanier","2021-01-25",10351,21,521],["Lanier","2021-01-26",10351,44,565],["Lanier","2021-01-27",10351,27,592],["Lanier","2021-01-28",10351,20,612],["Lanier","2021-01-29",10351,52,664],["Lanier","2021-02-01",10351,28,692],["Lanier","2021-02-02",10351,58,750],["Lanier","2021-02-03",10351,17,767],["Lanier","2021-02-04",10351,26,793],["Lanier","2021-02-05",10351,16,809],["Lanier","2021-02-06",10351,5,814],["Lanier","2021-02-07",10351,1,815],["Lanier","2021-02-08",10351,17,832],["Lanier","2021-02-09",10351,37,869],["Lanier","2021-02-10",10351,86,955],["Lanier","2021-02-11",10351,59,1014],["Lanier","2021-02-12",10351,95,1109],["Lanier","2021-02-13",10351,3,1112],["Lanier","2021-02-15",10351,21,1133],["Lanier","2021-02-16",10351,27,1160],["Lanier","2021-02-17",10351,77,1237],["Lanier","2021-02-18",10351,46,1283],["Lanier","2021-02-19",10351,39,1322],["Lanier","2021-02-20",10351,2,1324],["Lanier","2021-02-22",10351,15,1339],["Lanier","2021-02-23",10351,47,1386],["Lanier","2021-02-24",10351,24,1410],["Lanier","2021-02-25",10351,27,1437],["Lanier","2021-02-26",10351,78,1515],["Lanier","2021-02-27",10351,2,1517],["Lanier","2021-03-01",10351,22,1539],["Lanier","2021-03-02",10351,51,1590],["Lanier","2021-03-03",10351,31,1621],["Lanier","2021-03-04",10351,14,1635],["Lanier","2021-03-05",10351,23,1658],["Lanier","2021-03-06",10351,4,1662],["Lanier","2021-03-08",10351,17,1679],["Lanier","2021-03-09",10351,44,1723],["Lanier","2021-03-10",10351,64,1787],["Lanier","2021-03-11",10351,42,1829],["Lanier","2021-03-12",10351,62,1891],["Lanier","2021-03-13",10351,7,1898],["Lanier","2021-03-14",10351,2,1900],["Lanier","2021-03-15",10351,62,1962],["Lanier","2021-03-16",10351,34,1996],["Lanier","2021-03-17",10351,80,2076],["Lanier","2021-03-18",10351,39,2115],["Lanier","2021-03-19",10351,68,2183],["Lanier","2021-03-20",10351,16,2199],["Lanier","2021-03-22",10351,26,2225],["Lanier","2021-03-23",10351,43,2268],["Lanier","2021-03-24",10351,68,2336],["Lanier","2021-03-25",10351,21,2357],["Lanier","2021-03-26",10351,85,2442],["Lanier","2021-03-27",10351,5,2447],["Lanier","2021-03-28",10351,19,2466],["Lanier","2021-03-29",10351,22,2488],["Lanier","2021-03-30",10351,57,2545],["Lanier","2021-03-31",10351,85,2630],["Lanier","2021-04-01",10351,22,2652],["Lanier","2021-04-02",10351,65,2717],["Lanier","2021-04-03",10351,7,2724],["Lanier","2021-04-04",10351,3,2727],["Lanier","2021-04-05",10351,24,2751],["Lanier","2021-04-06",10351,46,2797],["Lanier","2021-04-07",10351,53,2850],["Lanier","2021-04-08",10351,24,2874],["Lanier","2021-04-09",10351,84,2958],["Lanier","2021-04-10",10351,8,2966],["Lanier","2021-04-11",10351,5,2971],["Lanier","2021-04-12",10351,65,3036],["Lanier","2021-04-13",10351,28,3064],["Lanier","2021-04-14",10351,68,3132],["Lanier","2021-04-15",10351,50,3182],["Lanier","2021-04-16",10351,19,3201],["Lanier","2021-04-17",10351,2,3203],["Lanier","2021-04-18",10351,3,3206],["Lanier","2021-04-19",10351,11,3217],["Lanier","2021-04-20",10351,31,3248],["Lanier","2021-04-21",10351,64,3312],["Lanier","2021-04-22",10351,16,3328],["Lanier","2021-04-23",10351,59,3387],["Lanier","2021-04-24",10351,4,3391],["Lanier","2021-04-25",10351,23,3414],["Lanier","2021-04-26",10351,17,3431],["Lanier","2021-04-27",10351,25,3456],["Lanier","2021-04-28",10351,31,3487],["Lanier","2021-04-29",10351,9,3496],["Lanier","2021-04-30",10351,73,3569],["Lanier","2021-05-01",10351,3,3572],["Lanier","2021-05-02",10351,2,3574],["Lanier","2021-05-03",10351,12,3586],["Lanier","2021-05-04",10351,17,3603],["Lanier","2021-05-05",10351,36,3639],["Lanier","2021-05-06",10351,28,3667],["Lanier","2021-05-07",10351,16,3683],["Lanier","2021-05-08",10351,6,3689],["Lanier","2021-05-09",10351,3,3692],["Lanier","2021-05-10",10351,4,3696],["Lanier","2021-05-11",10351,16,3712],["Lanier","2021-05-12",10351,15,3727],["Lanier","2021-05-13",10351,7,3734],["Lanier","2021-05-14",10351,16,3750],["Lanier","2021-05-15",10351,3,3753],["Lanier","2021-05-16",10351,4,3757],["Lanier","2021-05-17",10351,12,3769],["Lanier","2021-05-18",10351,25,3794],["Lanier","2021-05-19",10351,48,3842],["Lanier","2021-05-20",10351,11,3853],["Lanier","2021-05-21",10351,33,3886],["Lanier","2021-05-22",10351,2,3888],["Lanier","2021-05-23",10351,3,3891],["Lanier","2021-05-24",10351,12,3903],["Lanier","2021-05-25",10351,12,3915],["Lanier","2021-05-26",10351,30,3945],["Lanier","2021-05-27",10351,5,3950],["Lanier","2021-05-28",10351,32,3982],["Lanier","2021-05-29",10351,1,3983],["Lanier","2021-06-01",10351,7,3990],["Lanier","2021-06-02",10351,13,4003],["Lanier","2021-06-03",10351,9,4012],["Lanier","2021-06-04",10351,12,4024],["Lanier","2021-06-05",10351,7,4031],["Lanier","2021-06-07",10351,7,4038],["Lanier","2021-06-08",10351,8,4046],["Lanier","2021-06-09",10351,16,4062],["Lanier","2021-06-10",10351,7,4069],["Lanier","2021-06-11",10351,23,4092],["Lanier","2021-06-12",10351,5,4097],["Lanier","2021-06-13",10351,4,4101],["Lanier","2021-06-14",10351,13,4114],["Lanier","2021-06-15",10351,4,4118],["Lanier","2021-06-16",10351,18,4136],["Lanier","2021-06-17",10351,7,4143],["Lanier","2021-06-18",10351,26,4169],["Lanier","2021-06-20",10351,1,4170],["Lanier","2021-06-21",10351,3,4173],["Lanier","2021-06-22",10351,3,4176],["Lanier","2021-06-23",10351,11,4187],["Lanier","2021-06-24",10351,4,4191],["Lanier","2021-06-25",10351,16,4207],["Lanier","2021-06-26",10351,10,4217],["Lanier","2021-06-27",10351,1,4218],["Lanier","2021-06-28",10351,5,4223],["Lanier","2021-06-29",10351,6,4229],["Lanier","2021-06-30",10351,8,4237],["Lanier","2021-07-01",10351,5,4242],["Lanier","2021-07-02",10351,15,4257],["Lanier","2021-07-03",10351,8,4265],["Lanier","2021-07-05",10351,4,4269],["Lanier","2021-07-06",10351,6,4275],["Lanier","2021-07-07",10351,7,4282],["Lanier","2021-07-08",10351,1,4283],["Lanier","2021-07-09",10351,17,4300],["Lanier","2021-07-10",10351,1,4301],["Lanier","2021-07-11",10351,1,4302],["Lanier","2021-07-12",10351,4,4306],["Lanier","2021-07-13",10351,6,4312],["Lanier","2021-07-14",10351,10,4322],["Lanier","2021-07-15",10351,7,4329],["Lanier","2021-07-16",10351,27,4356],["Lanier","2021-07-17",10351,9,4365],["Lanier","2021-07-18",10351,1,4366],["Lanier","2021-07-19",10351,3,4369],["Lanier","2021-07-20",10351,7,4376],["Lanier","2021-07-21",10351,21,4397],["Lanier","2021-07-22",10351,15,4412],["Lanier","2021-07-23",10351,13,4425],["Lanier","2021-07-24",10351,9,4434],["Lanier","2021-07-25",10351,6,4440],["Lanier","2021-07-26",10351,7,4447],["Lanier","2021-07-27",10351,19,4466],["Lanier","2021-07-28",10351,27,4493],["Lanier","2021-07-29",10351,18,4511],["Lanier","2021-07-30",10351,32,4543],["Lanier","2021-07-31",10351,8,4551],["Lanier","2021-08-01",10351,6,4557],["Lanier","2021-08-02",10351,21,4578],["Lanier","2021-08-03",10351,18,4596],["Lanier","2021-08-04",10351,23,4619],["Lanier","2021-08-05",10351,17,4636],["Lanier","2021-08-06",10351,33,4669],["Lanier","2021-08-07",10351,19,4688],["Lanier","2021-08-08",10351,6,4694],["Lanier","2021-08-09",10351,24,4718],["Lanier","2021-08-10",10351,26,4744],["Lanier","2021-08-11",10351,42,4786],["Lanier","2021-08-12",10351,23,4809],["Lanier","2021-08-13",10351,43,4852],["Lanier","2021-08-14",10351,10,4862],["Lanier","2021-08-15",10351,4,4866],["Lanier","2021-08-16",10351,18,4884],["Lanier","2021-08-17",10351,17,4901],["Lanier","2021-08-18",10351,46,4947],["Lanier","2021-08-19",10351,15,4962],["Lanier","2021-08-20",10351,48,5010],["Lanier","2021-08-21",10351,4,5014],["Lanier","2021-08-22",10351,6,5020],["Lanier","2021-08-23",10351,20,5040],["Lanier","2021-08-24",10351,20,5060],["Lanier","2021-08-25",10351,36,5096],["Lanier","2021-08-26",10351,32,5128],["Lanier","2021-08-27",10351,35,5163],["Lanier","2021-08-28",10351,22,5185],["Lanier","2021-08-29",10351,3,5188],["Lanier","2021-08-30",10351,20,5208],["Lanier","2021-08-31",10351,22,5230],["Lanier","2021-09-01",10351,41,5271],["Lanier","2021-09-02",10351,38,5309],["Lanier","2021-09-03",10351,31,5340],["Lanier","2021-09-04",10351,3,5343],["Lanier","2021-09-05",10351,4,5347],["Lanier","2021-09-06",10351,2,5349],["Lanier","2021-09-07",10351,14,5363],["Lanier","2021-09-08",10351,37,5400],["Lanier","2021-09-09",10351,19,5419],["Lanier","2021-09-10",10351,30,5449],["Lanier","2021-09-11",10351,9,5458],["Lanier","2021-09-12",10351,6,5464],["Lanier","2021-09-13",10351,8,5472],["Lanier","2021-09-14",10351,15,5487],["Lanier","2021-09-15",10351,28,5515],["Lanier","2021-09-16",10351,18,5533],["Lanier","2021-09-17",10351,29,5562],["Lanier","2021-09-18",10351,15,5577],["Lanier","2021-09-19",10351,1,5578],["Lanier","2021-09-20",10351,7,5585],["Lanier","2021-09-21",10351,5,5590],["Lanier","2021-09-22",10351,22,5612],["Lanier","2021-09-23",10351,4,5616],["Lanier","2021-09-24",10351,10,5626],["Lanier","2021-09-25",10351,3,5629],["Lanier","2021-09-26",10351,3,5632],["Lanier","2021-09-27",10351,4,5636],["Lanier","2021-09-28",10351,10,5646],["Lanier","2021-09-29",10351,18,5664],["Lanier","2021-09-30",10351,9,5673],["Lanier","2021-10-01",10351,11,5684],["Lanier","2021-10-02",10351,3,5687],["Lanier","2021-10-03",10351,1,5688],["Lanier","2021-10-04",10351,7,5695],["Lanier","2021-10-05",10351,7,5702],["Lanier","2021-10-06",10351,21,5723],["Lanier","2021-10-07",10351,10,5733],["Lanier","2021-10-08",10351,15,5748],["Lanier","2021-10-09",10351,4,5752],["Lanier","2021-10-10",10351,2,5754],["Lanier","2021-10-11",10351,6,5760],["Lanier","2021-10-12",10351,6,5766],["Lanier","2021-10-13",10351,14,5780],["Lanier","2021-10-14",10351,5,5785],["Lanier","2021-10-15",10351,10,5795],["Lanier","2021-10-16",10351,1,5796],["Lanier","2021-10-17",10351,1,5797],["Lanier","2021-10-18",10351,6,5803],["Lanier","2021-10-19",10351,4,5807],["Lanier","2021-10-20",10351,6,5813],["Lanier","2021-10-21",10351,19,5832],["Lanier","2021-10-22",10351,8,5840],["Lanier","2021-10-23",10351,1,5841],["Lanier","2021-10-24",10351,2,5843],["Lanier","2021-10-25",10351,9,5852],["Lanier","2021-10-26",10351,11,5863],["Lanier","2021-10-27",10351,45,5908],["Lanier","2021-10-28",10351,17,5925],["Lanier","2021-10-29",10351,14,5939],["Lanier","2021-10-30",10351,4,5943],["Lanier","2021-10-31",10351,1,5944],["Lanier","2021-11-01",10351,6,5950],["Lanier","2021-11-02",10351,7,5957],["Lanier","2021-11-03",10351,25,5982],["Lanier","2021-11-04",10351,34,6016],["Lanier","2021-11-05",10351,20,6036],["Lanier","2021-11-06",10351,5,6041],["Lanier","2021-11-07",10351,2,6043],["Lanier","2021-11-08",10351,8,6051],["Lanier","2021-11-09",10351,26,6077],["Lanier","2021-11-10",10351,30,6107],["Lanier","2021-11-11",10351,52,6159],["Lanier","2021-11-12",10351,15,6174],["Lanier","2021-11-13",10351,1,6175],["Lanier","2021-11-14",10351,2,6177],["Lanier","2021-11-15",10351,6,6183],["Lanier","2021-11-16",10351,8,6191],["Lanier","2021-11-17",10351,27,6218],["Lanier","2021-11-18",10351,36,6254],["Lanier","2021-11-19",10351,6,6260],["Lanier","2021-11-20",10351,3,6263],["Lanier","2021-11-21",10351,3,6266],["Lanier","2021-11-22",10351,22,6288],["Lanier","2021-11-23",10351,18,6306],["Lanier","2021-11-24",10351,22,6328],["Lanier","2021-11-26",10351,2,6330],["Lanier","2021-11-27",10351,2,6332],["Lanier","2021-11-28",10351,1,6333],["Lanier","2021-11-29",10351,8,6341],["Lanier","2021-11-30",10351,7,6348],["Lanier","2021-12-01",10351,15,6363],["Lanier","2021-12-02",10351,49,6412],["Lanier","2021-12-03",10351,17,6429],["Lanier","2021-12-04",10351,2,6431],["Lanier","2021-12-06",10351,5,6436],["Lanier","2021-12-07",10351,12,6448],["Lanier","2021-12-08",10351,19,6467],["Lanier","2021-12-09",10351,43,6510],["Lanier","2021-12-10",10351,9,6519],["Lanier","2021-12-11",10351,3,6522],["Lanier","2021-12-12",10351,5,6527],["Lanier","2021-12-13",10351,3,6530],["Lanier","2021-12-14",10351,12,6542],["Lanier","2021-12-15",10351,14,6556],["Lanier","2021-12-16",10351,32,6588],["Lanier","2021-12-17",10351,13,6601],["Lanier","2021-12-18",10351,2,6603],["Lanier","2021-12-19",10351,2,6605],["Lanier","2021-12-20",10351,3,6608],["Lanier","2021-12-21",10351,12,6620],["Lanier","2021-12-22",10351,18,6638],["Lanier","2021-12-23",10351,18,6656],["Lanier","2021-12-24",10351,3,6659],["Lanier","2021-12-26",10351,3,6662],["Lanier","2021-12-27",10351,7,6669],["Lanier","2021-12-28",10351,5,6674],["Lanier","2021-12-29",10351,26,6700],["Lanier","2021-12-30",10351,36,6736],["Lanier","2021-12-31",10351,5,6741],["Lanier","2022-01-02",10351,1,6742],["Lanier","2022-01-03",10351,6,6748],["Laurens","2020-12-15",47296,1,1],["Laurens","2020-12-17",47296,11,12],["Laurens","2020-12-18",47296,70,82],["Laurens","2020-12-19",47296,12,94],["Laurens","2020-12-20",47296,17,111],["Laurens","2020-12-21",47296,26,137],["Laurens","2020-12-22",47296,56,193],["Laurens","2020-12-23",47296,55,248],["Laurens","2020-12-24",47296,17,265],["Laurens","2020-12-25",47296,1,266],["Laurens","2020-12-26",47296,8,274],["Laurens","2020-12-27",47296,6,280],["Laurens","2020-12-28",47296,137,417],["Laurens","2020-12-29",47296,82,499],["Laurens","2020-12-30",47296,92,591],["Laurens","2020-12-31",47296,70,661],["Laurens","2021-01-01",47296,8,669],["Laurens","2021-01-02",47296,18,687],["Laurens","2021-01-03",47296,3,690],["Laurens","2021-01-04",47296,71,761],["Laurens","2021-01-05",47296,164,925],["Laurens","2021-01-06",47296,136,1061],["Laurens","2021-01-07",47296,159,1220],["Laurens","2021-01-08",47296,687,1907],["Laurens","2021-01-09",47296,16,1923],["Laurens","2021-01-10",47296,2,1925],["Laurens","2021-01-11",47296,153,2078],["Laurens","2021-01-12",47296,130,2208],["Laurens","2021-01-13",47296,862,3070],["Laurens","2021-01-14",47296,802,3872],["Laurens","2021-01-15",47296,187,4059],["Laurens","2021-01-16",47296,13,4072],["Laurens","2021-01-17",47296,18,4090],["Laurens","2021-01-18",47296,286,4376],["Laurens","2021-01-19",47296,174,4550],["Laurens","2021-01-20",47296,756,5306],["Laurens","2021-01-21",47296,473,5779],["Laurens","2021-01-22",47296,175,5954],["Laurens","2021-01-23",47296,39,5993],["Laurens","2021-01-24",47296,5,5998],["Laurens","2021-01-25",47296,123,6121],["Laurens","2021-01-26",47296,150,6271],["Laurens","2021-01-27",47296,138,6409],["Laurens","2021-01-28",47296,418,6827],["Laurens","2021-01-29",47296,153,6980],["Laurens","2021-01-30",47296,11,6991],["Laurens","2021-01-31",47296,3,6994],["Laurens","2021-02-01",47296,81,7075],["Laurens","2021-02-02",47296,124,7199],["Laurens","2021-02-03",47296,445,7644],["Laurens","2021-02-04",47296,315,7959],["Laurens","2021-02-05",47296,267,8226],["Laurens","2021-02-06",47296,6,8232],["Laurens","2021-02-07",47296,14,8246],["Laurens","2021-02-08",47296,378,8624],["Laurens","2021-02-09",47296,269,8893],["Laurens","2021-02-10",47296,881,9774],["Laurens","2021-02-11",47296,728,10502],["Laurens","2021-02-12",47296,113,10615],["Laurens","2021-02-13",47296,18,10633],["Laurens","2021-02-14",47296,22,10655],["Laurens","2021-02-15",47296,98,10753],["Laurens","2021-02-16",47296,167,10920],["Laurens","2021-02-17",47296,470,11390],["Laurens","2021-02-18",47296,634,12024],["Laurens","2021-02-19",47296,35,12059],["Laurens","2021-02-20",47296,22,12081],["Laurens","2021-02-21",47296,6,12087],["Laurens","2021-02-22",47296,62,12149],["Laurens","2021-02-23",47296,136,12285],["Laurens","2021-02-24",47296,687,12972],["Laurens","2021-02-25",47296,527,13499],["Laurens","2021-02-26",47296,118,13617],["Laurens","2021-02-27",47296,5,13622],["Laurens","2021-02-28",47296,6,13628],["Laurens","2021-03-01",47296,91,13719],["Laurens","2021-03-02",47296,129,13848],["Laurens","2021-03-03",47296,552,14400],["Laurens","2021-03-04",47296,263,14663],["Laurens","2021-03-05",47296,126,14789],["Laurens","2021-03-06",47296,8,14797],["Laurens","2021-03-07",47296,11,14808],["Laurens","2021-03-08",47296,147,14955],["Laurens","2021-03-09",47296,154,15109],["Laurens","2021-03-10",47296,626,15735],["Laurens","2021-03-11",47296,268,16003],["Laurens","2021-03-12",47296,150,16153],["Laurens","2021-03-13",47296,29,16182],["Laurens","2021-03-14",47296,12,16194],["Laurens","2021-03-15",47296,180,16374],["Laurens","2021-03-16",47296,175,16549],["Laurens","2021-03-17",47296,432,16981],["Laurens","2021-03-18",47296,166,17147],["Laurens","2021-03-19",47296,141,17288],["Laurens","2021-03-20",47296,10,17298],["Laurens","2021-03-21",47296,16,17314],["Laurens","2021-03-22",47296,132,17446],["Laurens","2021-03-23",47296,95,17541],["Laurens","2021-03-24",47296,504,18045],["Laurens","2021-03-25",47296,414,18459],["Laurens","2021-03-26",47296,190,18649],["Laurens","2021-03-27",47296,43,18692],["Laurens","2021-03-28",47296,18,18710],["Laurens","2021-03-29",47296,180,18890],["Laurens","2021-03-30",47296,154,19044],["Laurens","2021-03-31",47296,374,19418],["Laurens","2021-04-01",47296,286,19704],["Laurens","2021-04-02",47296,215,19919],["Laurens","2021-04-03",47296,43,19962],["Laurens","2021-04-04",47296,21,19983],["Laurens","2021-04-05",47296,177,20160],["Laurens","2021-04-06",47296,317,20477],["Laurens","2021-04-07",47296,430,20907],["Laurens","2021-04-08",47296,206,21113],["Laurens","2021-04-09",47296,243,21356],["Laurens","2021-04-10",47296,55,21411],["Laurens","2021-04-11",47296,28,21439],["Laurens","2021-04-12",47296,169,21608],["Laurens","2021-04-13",47296,303,21911],["Laurens","2021-04-14",47296,240,22151],["Laurens","2021-04-15",47296,154,22305],["Laurens","2021-04-16",47296,160,22465],["Laurens","2021-04-17",47296,25,22490],["Laurens","2021-04-18",47296,19,22509],["Laurens","2021-04-19",47296,156,22665],["Laurens","2021-04-20",47296,282,22947],["Laurens","2021-04-21",47296,368,23315],["Laurens","2021-04-22",47296,149,23464],["Laurens","2021-04-23",47296,185,23649],["Laurens","2021-04-24",47296,49,23698],["Laurens","2021-04-25",47296,12,23710],["Laurens","2021-04-26",47296,152,23862],["Laurens","2021-04-27",47296,282,24144],["Laurens","2021-04-28",47296,293,24437],["Laurens","2021-04-29",47296,130,24567],["Laurens","2021-04-30",47296,187,24754],["Laurens","2021-05-01",47296,49,24803],["Laurens","2021-05-02",47296,12,24815],["Laurens","2021-05-03",47296,118,24933],["Laurens","2021-05-04",47296,258,25191],["Laurens","2021-05-05",47296,202,25393],["Laurens","2021-05-06",47296,101,25494],["Laurens","2021-05-07",47296,138,25632],["Laurens","2021-05-08",47296,37,25669],["Laurens","2021-05-09",47296,8,25677],["Laurens","2021-05-10",47296,86,25763],["Laurens","2021-05-11",47296,153,25916],["Laurens","2021-05-12",47296,163,26079],["Laurens","2021-05-13",47296,127,26206],["Laurens","2021-05-14",47296,95,26301],["Laurens","2021-05-15",47296,33,26334],["Laurens","2021-05-16",47296,29,26363],["Laurens","2021-05-17",47296,124,26487],["Laurens","2021-05-18",47296,158,26645],["Laurens","2021-05-19",47296,181,26826],["Laurens","2021-05-20",47296,103,26929],["Laurens","2021-05-21",47296,116,27045],["Laurens","2021-05-22",47296,39,27084],["Laurens","2021-05-23",47296,20,27104],["Laurens","2021-05-24",47296,59,27163],["Laurens","2021-05-25",47296,158,27321],["Laurens","2021-05-26",47296,121,27442],["Laurens","2021-05-27",47296,82,27524],["Laurens","2021-05-28",47296,85,27609],["Laurens","2021-05-29",47296,30,27639],["Laurens","2021-05-30",47296,9,27648],["Laurens","2021-05-31",47296,14,27662],["Laurens","2021-06-01",47296,107,27769],["Laurens","2021-06-02",47296,93,27862],["Laurens","2021-06-03",47296,77,27939],["Laurens","2021-06-04",47296,105,28044],["Laurens","2021-06-05",47296,29,28073],["Laurens","2021-06-06",47296,22,28095],["Laurens","2021-06-07",47296,83,28178],["Laurens","2021-06-08",47296,85,28263],["Laurens","2021-06-09",47296,83,28346],["Laurens","2021-06-10",47296,84,28430],["Laurens","2021-06-11",47296,73,28503],["Laurens","2021-06-12",47296,37,28540],["Laurens","2021-06-13",47296,18,28558],["Laurens","2021-06-14",47296,61,28619],["Laurens","2021-06-15",47296,71,28690],["Laurens","2021-06-16",47296,76,28766],["Laurens","2021-06-17",47296,88,28854],["Laurens","2021-06-18",47296,49,28903],["Laurens","2021-06-19",47296,20,28923],["Laurens","2021-06-20",47296,7,28930],["Laurens","2021-06-21",47296,49,28979],["Laurens","2021-06-22",47296,63,29042],["Laurens","2021-06-23",47296,63,29105],["Laurens","2021-06-24",47296,47,29152],["Laurens","2021-06-25",47296,71,29223],["Laurens","2021-06-26",47296,19,29242],["Laurens","2021-06-27",47296,12,29254],["Laurens","2021-06-28",47296,55,29309],["Laurens","2021-06-29",47296,65,29374],["Laurens","2021-06-30",47296,84,29458],["Laurens","2021-07-01",47296,71,29529],["Laurens","2021-07-02",47296,37,29566],["Laurens","2021-07-03",47296,18,29584],["Laurens","2021-07-05",47296,50,29634],["Laurens","2021-07-06",47296,50,29684],["Laurens","2021-07-07",47296,60,29744],["Laurens","2021-07-08",47296,60,29804],["Laurens","2021-07-09",47296,65,29869],["Laurens","2021-07-10",47296,29,29898],["Laurens","2021-07-11",47296,12,29910],["Laurens","2021-07-12",47296,63,29973],["Laurens","2021-07-13",47296,47,30020],["Laurens","2021-07-14",47296,73,30093],["Laurens","2021-07-15",47296,75,30168],["Laurens","2021-07-16",47296,75,30243],["Laurens","2021-07-17",47296,25,30268],["Laurens","2021-07-18",47296,19,30287],["Laurens","2021-07-19",47296,88,30375],["Laurens","2021-07-20",47296,56,30431],["Laurens","2021-07-21",47296,98,30529],["Laurens","2021-07-22",47296,100,30629],["Laurens","2021-07-23",47296,142,30771],["Laurens","2021-07-24",47296,38,30809],["Laurens","2021-07-25",47296,22,30831],["Laurens","2021-07-26",47296,122,30953],["Laurens","2021-07-27",47296,106,31059],["Laurens","2021-07-28",47296,212,31271],["Laurens","2021-07-29",47296,95,31366],["Laurens","2021-07-30",47296,172,31538],["Laurens","2021-07-31",47296,54,31592],["Laurens","2021-08-01",47296,28,31620],["Laurens","2021-08-02",47296,133,31753],["Laurens","2021-08-03",47296,102,31855],["Laurens","2021-08-04",47296,137,31992],["Laurens","2021-08-05",47296,125,32117],["Laurens","2021-08-06",47296,168,32285],["Laurens","2021-08-07",47296,55,32340],["Laurens","2021-08-08",47296,48,32388],["Laurens","2021-08-09",47296,163,32551],["Laurens","2021-08-10",47296,139,32690],["Laurens","2021-08-11",47296,213,32903],["Laurens","2021-08-12",47296,128,33031],["Laurens","2021-08-13",47296,218,33249],["Laurens","2021-08-14",47296,74,33323],["Laurens","2021-08-15",47296,54,33377],["Laurens","2021-08-16",47296,158,33535],["Laurens","2021-08-17",47296,196,33731],["Laurens","2021-08-18",47296,252,33983],["Laurens","2021-08-19",47296,175,34158],["Laurens","2021-08-20",47296,228,34386],["Laurens","2021-08-21",47296,70,34456],["Laurens","2021-08-22",47296,68,34524],["Laurens","2021-08-23",47296,181,34705],["Laurens","2021-08-24",47296,179,34884],["Laurens","2021-08-25",47296,295,35179],["Laurens","2021-08-26",47296,210,35389],["Laurens","2021-08-27",47296,257,35646],["Laurens","2021-08-28",47296,66,35712],["Laurens","2021-08-29",47296,51,35763],["Laurens","2021-08-30",47296,231,35994],["Laurens","2021-08-31",47296,243,36237],["Laurens","2021-09-01",47296,272,36509],["Laurens","2021-09-02",47296,196,36705],["Laurens","2021-09-03",47296,304,37009],["Laurens","2021-09-04",47296,102,37111],["Laurens","2021-09-05",47296,36,37147],["Laurens","2021-09-06",47296,26,37173],["Laurens","2021-09-07",47296,191,37364],["Laurens","2021-09-08",47296,226,37590],["Laurens","2021-09-09",47296,180,37770],["Laurens","2021-09-10",47296,202,37972],["Laurens","2021-09-11",47296,85,38057],["Laurens","2021-09-12",47296,42,38099],["Laurens","2021-09-13",47296,166,38265],["Laurens","2021-09-14",47296,182,38447],["Laurens","2021-09-15",47296,196,38643],["Laurens","2021-09-16",47296,170,38813],["Laurens","2021-09-17",47296,203,39016],["Laurens","2021-09-18",47296,50,39066],["Laurens","2021-09-19",47296,37,39103],["Laurens","2021-09-20",47296,146,39249],["Laurens","2021-09-21",47296,112,39361],["Laurens","2021-09-22",47296,166,39527],["Laurens","2021-09-23",47296,149,39676],["Laurens","2021-09-24",47296,167,39843],["Laurens","2021-09-25",47296,34,39877],["Laurens","2021-09-26",47296,20,39897],["Laurens","2021-09-27",47296,97,39994],["Laurens","2021-09-28",47296,167,40161],["Laurens","2021-09-29",47296,148,40309],["Laurens","2021-09-30",47296,120,40429],["Laurens","2021-10-01",47296,162,40591],["Laurens","2021-10-02",47296,51,40642],["Laurens","2021-10-03",47296,22,40664],["Laurens","2021-10-04",47296,100,40764],["Laurens","2021-10-05",47296,115,40879],["Laurens","2021-10-06",47296,141,41020],["Laurens","2021-10-07",47296,80,41100],["Laurens","2021-10-08",47296,132,41232],["Laurens","2021-10-09",47296,31,41263],["Laurens","2021-10-10",47296,20,41283],["Laurens","2021-10-11",47296,46,41329],["Laurens","2021-10-12",47296,92,41421],["Laurens","2021-10-13",47296,89,41510],["Laurens","2021-10-14",47296,61,41571],["Laurens","2021-10-15",47296,97,41668],["Laurens","2021-10-16",47296,21,41689],["Laurens","2021-10-17",47296,14,41703],["Laurens","2021-10-18",47296,58,41761],["Laurens","2021-10-19",47296,59,41820],["Laurens","2021-10-20",47296,80,41900],["Laurens","2021-10-21",47296,59,41959],["Laurens","2021-10-22",47296,88,42047],["Laurens","2021-10-23",47296,31,42078],["Laurens","2021-10-24",47296,23,42101],["Laurens","2021-10-25",47296,170,42271],["Laurens","2021-10-26",47296,156,42427],["Laurens","2021-10-27",47296,294,42721],["Laurens","2021-10-28",47296,199,42920],["Laurens","2021-10-29",47296,169,43089],["Laurens","2021-10-30",47296,35,43124],["Laurens","2021-10-31",47296,38,43162],["Laurens","2021-11-01",47296,118,43280],["Laurens","2021-11-02",47296,125,43405],["Laurens","2021-11-03",47296,230,43635],["Laurens","2021-11-04",47296,211,43846],["Laurens","2021-11-05",47296,127,43973],["Laurens","2021-11-06",47296,39,44012],["Laurens","2021-11-07",47296,17,44029],["Laurens","2021-11-08",47296,105,44134],["Laurens","2021-11-09",47296,119,44253],["Laurens","2021-11-10",47296,214,44467],["Laurens","2021-11-11",47296,72,44539],["Laurens","2021-11-12",47296,102,44641],["Laurens","2021-11-13",47296,38,44679],["Laurens","2021-11-14",47296,23,44702],["Laurens","2021-11-15",47296,134,44836],["Laurens","2021-11-16",47296,95,44931],["Laurens","2021-11-17",47296,189,45120],["Laurens","2021-11-18",47296,186,45306],["Laurens","2021-11-19",47296,143,45449],["Laurens","2021-11-20",47296,44,45493],["Laurens","2021-11-21",47296,23,45516],["Laurens","2021-11-22",47296,132,45648],["Laurens","2021-11-23",47296,85,45733],["Laurens","2021-11-24",47296,97,45830],["Laurens","2021-11-25",47296,2,45832],["Laurens","2021-11-26",47296,47,45879],["Laurens","2021-11-27",47296,38,45917],["Laurens","2021-11-28",47296,25,45942],["Laurens","2021-11-29",47296,141,46083],["Laurens","2021-11-30",47296,125,46208],["Laurens","2021-12-01",47296,220,46428],["Laurens","2021-12-02",47296,201,46629],["Laurens","2021-12-03",47296,156,46785],["Laurens","2021-12-04",47296,61,46846],["Laurens","2021-12-05",47296,15,46861],["Laurens","2021-12-06",47296,106,46967],["Laurens","2021-12-07",47296,120,47087],["Laurens","2021-12-08",47296,179,47266],["Laurens","2021-12-09",47296,150,47416],["Laurens","2021-12-10",47296,122,47538],["Laurens","2021-12-11",47296,40,47578],["Laurens","2021-12-12",47296,20,47598],["Laurens","2021-12-13",47296,105,47703],["Laurens","2021-12-14",47296,71,47774],["Laurens","2021-12-15",47296,127,47901],["Laurens","2021-12-16",47296,146,48047],["Laurens","2021-12-17",47296,130,48177],["Laurens","2021-12-18",47296,30,48207],["Laurens","2021-12-19",47296,17,48224],["Laurens","2021-12-20",47296,122,48346],["Laurens","2021-12-21",47296,118,48464],["Laurens","2021-12-22",47296,147,48611],["Laurens","2021-12-23",47296,82,48693],["Laurens","2021-12-24",47296,21,48714],["Laurens","2021-12-26",47296,19,48733],["Laurens","2021-12-27",47296,126,48859],["Laurens","2021-12-28",47296,115,48974],["Laurens","2021-12-29",47296,200,49174],["Laurens","2021-12-30",47296,185,49359],["Laurens","2021-12-31",47296,66,49425],["Laurens","2022-01-01",47296,3,49428],["Laurens","2022-01-02",47296,22,49450],["Laurens","2022-01-03",47296,48,49498],["Lee","2020-12-16",29971,2,2],["Lee","2020-12-17",29971,40,42],["Lee","2020-12-18",29971,100,142],["Lee","2020-12-19",29971,40,182],["Lee","2020-12-20",29971,11,193],["Lee","2020-12-21",29971,51,244],["Lee","2020-12-22",29971,71,315],["Lee","2020-12-23",29971,77,392],["Lee","2020-12-24",29971,21,413],["Lee","2020-12-26",29971,17,430],["Lee","2020-12-27",29971,1,431],["Lee","2020-12-28",29971,43,474],["Lee","2020-12-29",29971,57,531],["Lee","2020-12-30",29971,62,593],["Lee","2020-12-31",29971,40,633],["Lee","2021-01-01",29971,13,646],["Lee","2021-01-02",29971,1,647],["Lee","2021-01-03",29971,3,650],["Lee","2021-01-04",29971,46,696],["Lee","2021-01-05",29971,51,747],["Lee","2021-01-06",29971,51,798],["Lee","2021-01-07",29971,109,907],["Lee","2021-01-08",29971,119,1026],["Lee","2021-01-09",29971,6,1032],["Lee","2021-01-10",29971,14,1046],["Lee","2021-01-11",29971,190,1236],["Lee","2021-01-12",29971,222,1458],["Lee","2021-01-13",29971,256,1714],["Lee","2021-01-14",29971,271,1985],["Lee","2021-01-15",29971,305,2290],["Lee","2021-01-16",29971,137,2427],["Lee","2021-01-17",29971,35,2462],["Lee","2021-01-18",29971,307,2769],["Lee","2021-01-19",29971,270,3039],["Lee","2021-01-20",29971,268,3307],["Lee","2021-01-21",29971,250,3557],["Lee","2021-01-22",29971,231,3788],["Lee","2021-01-23",29971,38,3826],["Lee","2021-01-24",29971,4,3830],["Lee","2021-01-25",29971,191,4021],["Lee","2021-01-26",29971,208,4229],["Lee","2021-01-27",29971,219,4448],["Lee","2021-01-28",29971,208,4656],["Lee","2021-01-29",29971,235,4891],["Lee","2021-01-30",29971,12,4903],["Lee","2021-01-31",29971,14,4917],["Lee","2021-02-01",29971,139,5056],["Lee","2021-02-02",29971,175,5231],["Lee","2021-02-03",29971,249,5480],["Lee","2021-02-04",29971,240,5720],["Lee","2021-02-05",29971,268,5988],["Lee","2021-02-06",29971,147,6135],["Lee","2021-02-07",29971,27,6162],["Lee","2021-02-08",29971,214,6376],["Lee","2021-02-09",29971,254,6630],["Lee","2021-02-10",29971,240,6870],["Lee","2021-02-11",29971,257,7127],["Lee","2021-02-12",29971,269,7396],["Lee","2021-02-13",29971,81,7477],["Lee","2021-02-14",29971,12,7489],["Lee","2021-02-15",29971,176,7665],["Lee","2021-02-16",29971,208,7873],["Lee","2021-02-17",29971,235,8108],["Lee","2021-02-18",29971,243,8351],["Lee","2021-02-19",29971,208,8559],["Lee","2021-02-20",29971,27,8586],["Lee","2021-02-21",29971,4,8590],["Lee","2021-02-22",29971,147,8737],["Lee","2021-02-23",29971,207,8944],["Lee","2021-02-24",29971,161,9105],["Lee","2021-02-25",29971,210,9315],["Lee","2021-02-26",29971,193,9508],["Lee","2021-02-27",29971,39,9547],["Lee","2021-02-28",29971,14,9561],["Lee","2021-03-01",29971,230,9791],["Lee","2021-03-02",29971,238,10029],["Lee","2021-03-03",29971,176,10205],["Lee","2021-03-04",29971,209,10414],["Lee","2021-03-05",29971,151,10565],["Lee","2021-03-06",29971,12,10577],["Lee","2021-03-07",29971,9,10586],["Lee","2021-03-08",29971,162,10748],["Lee","2021-03-09",29971,237,10985],["Lee","2021-03-10",29971,187,11172],["Lee","2021-03-11",29971,192,11364],["Lee","2021-03-12",29971,196,11560],["Lee","2021-03-13",29971,43,11603],["Lee","2021-03-14",29971,29,11632],["Lee","2021-03-15",29971,280,11912],["Lee","2021-03-16",29971,299,12211],["Lee","2021-03-17",29971,225,12436],["Lee","2021-03-18",29971,182,12618],["Lee","2021-03-19",29971,239,12857],["Lee","2021-03-20",29971,73,12930],["Lee","2021-03-21",29971,35,12965],["Lee","2021-03-22",29971,134,13099],["Lee","2021-03-23",29971,199,13298],["Lee","2021-03-24",29971,196,13494],["Lee","2021-03-25",29971,252,13746],["Lee","2021-03-26",29971,179,13925],["Lee","2021-03-27",29971,47,13972],["Lee","2021-03-28",29971,35,14007],["Lee","2021-03-29",29971,158,14165],["Lee","2021-03-30",29971,293,14458],["Lee","2021-03-31",29971,236,14694],["Lee","2021-04-01",29971,267,14961],["Lee","2021-04-02",29971,129,15090],["Lee","2021-04-03",29971,33,15123],["Lee","2021-04-04",29971,23,15146],["Lee","2021-04-05",29971,189,15335],["Lee","2021-04-06",29971,293,15628],["Lee","2021-04-07",29971,249,15877],["Lee","2021-04-08",29971,254,16131],["Lee","2021-04-09",29971,194,16325],["Lee","2021-04-10",29971,103,16428],["Lee","2021-04-11",29971,15,16443],["Lee","2021-04-12",29971,145,16588],["Lee","2021-04-13",29971,334,16922],["Lee","2021-04-14",29971,160,17082],["Lee","2021-04-15",29971,192,17274],["Lee","2021-04-16",29971,280,17554],["Lee","2021-04-17",29971,24,17578],["Lee","2021-04-18",29971,29,17607],["Lee","2021-04-19",29971,144,17751],["Lee","2021-04-20",29971,276,18027],["Lee","2021-04-21",29971,132,18159],["Lee","2021-04-22",29971,193,18352],["Lee","2021-04-23",29971,182,18534],["Lee","2021-04-24",29971,31,18565],["Lee","2021-04-25",29971,25,18590],["Lee","2021-04-26",29971,117,18707],["Lee","2021-04-27",29971,274,18981],["Lee","2021-04-28",29971,127,19108],["Lee","2021-04-29",29971,191,19299],["Lee","2021-04-30",29971,156,19455],["Lee","2021-05-01",29971,49,19504],["Lee","2021-05-02",29971,29,19533],["Lee","2021-05-03",29971,87,19620],["Lee","2021-05-04",29971,210,19830],["Lee","2021-05-05",29971,86,19916],["Lee","2021-05-06",29971,89,20005],["Lee","2021-05-07",29971,102,20107],["Lee","2021-05-08",29971,27,20134],["Lee","2021-05-09",29971,10,20144],["Lee","2021-05-10",29971,74,20218],["Lee","2021-05-11",29971,117,20335],["Lee","2021-05-12",29971,73,20408],["Lee","2021-05-13",29971,142,20550],["Lee","2021-05-14",29971,74,20624],["Lee","2021-05-15",29971,38,20662],["Lee","2021-05-16",29971,34,20696],["Lee","2021-05-17",29971,101,20797],["Lee","2021-05-18",29971,119,20916],["Lee","2021-05-19",29971,77,20993],["Lee","2021-05-20",29971,144,21137],["Lee","2021-05-21",29971,123,21260],["Lee","2021-05-22",29971,35,21295],["Lee","2021-05-23",29971,19,21314],["Lee","2021-05-24",29971,69,21383],["Lee","2021-05-25",29971,62,21445],["Lee","2021-05-26",29971,54,21499],["Lee","2021-05-27",29971,54,21553],["Lee","2021-05-28",29971,65,21618],["Lee","2021-05-29",29971,12,21630],["Lee","2021-05-30",29971,13,21643],["Lee","2021-05-31",29971,4,21647],["Lee","2021-06-01",29971,85,21732],["Lee","2021-06-02",29971,57,21789],["Lee","2021-06-03",29971,54,21843],["Lee","2021-06-04",29971,70,21913],["Lee","2021-06-05",29971,35,21948],["Lee","2021-06-06",29971,22,21970],["Lee","2021-06-07",29971,66,22036],["Lee","2021-06-08",29971,69,22105],["Lee","2021-06-09",29971,54,22159],["Lee","2021-06-10",29971,64,22223],["Lee","2021-06-11",29971,82,22305],["Lee","2021-06-12",29971,41,22346],["Lee","2021-06-13",29971,15,22361],["Lee","2021-06-14",29971,66,22427],["Lee","2021-06-15",29971,51,22478],["Lee","2021-06-16",29971,50,22528],["Lee","2021-06-17",29971,52,22580],["Lee","2021-06-18",29971,63,22643],["Lee","2021-06-19",29971,21,22664],["Lee","2021-06-20",29971,12,22676],["Lee","2021-06-21",29971,28,22704],["Lee","2021-06-22",29971,68,22772],["Lee","2021-06-23",29971,44,22816],["Lee","2021-06-24",29971,85,22901],["Lee","2021-06-25",29971,35,22936],["Lee","2021-06-26",29971,26,22962],["Lee","2021-06-27",29971,16,22978],["Lee","2021-06-28",29971,26,23004],["Lee","2021-06-29",29971,47,23051],["Lee","2021-06-30",29971,30,23081],["Lee","2021-07-01",29971,37,23118],["Lee","2021-07-02",29971,48,23166],["Lee","2021-07-03",29971,18,23184],["Lee","2021-07-04",29971,3,23187],["Lee","2021-07-05",29971,22,23209],["Lee","2021-07-06",29971,34,23243],["Lee","2021-07-07",29971,54,23297],["Lee","2021-07-08",29971,38,23335],["Lee","2021-07-09",29971,47,23382],["Lee","2021-07-10",29971,21,23403],["Lee","2021-07-11",29971,13,23416],["Lee","2021-07-12",29971,26,23442],["Lee","2021-07-13",29971,51,23493],["Lee","2021-07-14",29971,26,23519],["Lee","2021-07-15",29971,79,23598],["Lee","2021-07-16",29971,53,23651],["Lee","2021-07-17",29971,28,23679],["Lee","2021-07-18",29971,22,23701],["Lee","2021-07-19",29971,33,23734],["Lee","2021-07-20",29971,49,23783],["Lee","2021-07-21",29971,38,23821],["Lee","2021-07-22",29971,69,23890],["Lee","2021-07-23",29971,70,23960],["Lee","2021-07-24",29971,35,23995],["Lee","2021-07-25",29971,10,24005],["Lee","2021-07-26",29971,39,24044],["Lee","2021-07-27",29971,58,24102],["Lee","2021-07-28",29971,63,24165],["Lee","2021-07-29",29971,76,24241],["Lee","2021-07-30",29971,97,24338],["Lee","2021-07-31",29971,58,24396],["Lee","2021-08-01",29971,29,24425],["Lee","2021-08-02",29971,65,24490],["Lee","2021-08-03",29971,82,24572],["Lee","2021-08-04",29971,75,24647],["Lee","2021-08-05",29971,94,24741],["Lee","2021-08-06",29971,108,24849],["Lee","2021-08-07",29971,73,24922],["Lee","2021-08-08",29971,46,24968],["Lee","2021-08-09",29971,73,25041],["Lee","2021-08-10",29971,128,25169],["Lee","2021-08-11",29971,95,25264],["Lee","2021-08-12",29971,113,25377],["Lee","2021-08-13",29971,165,25542],["Lee","2021-08-14",29971,62,25604],["Lee","2021-08-15",29971,46,25650],["Lee","2021-08-16",29971,86,25736],["Lee","2021-08-17",29971,109,25845],["Lee","2021-08-18",29971,86,25931],["Lee","2021-08-19",29971,120,26051],["Lee","2021-08-20",29971,170,26221],["Lee","2021-08-21",29971,83,26304],["Lee","2021-08-22",29971,32,26336],["Lee","2021-08-23",29971,95,26431],["Lee","2021-08-24",29971,117,26548],["Lee","2021-08-25",29971,93,26641],["Lee","2021-08-26",29971,126,26767],["Lee","2021-08-27",29971,154,26921],["Lee","2021-08-28",29971,67,26988],["Lee","2021-08-29",29971,48,27036],["Lee","2021-08-30",29971,110,27146],["Lee","2021-08-31",29971,135,27281],["Lee","2021-09-01",29971,115,27396],["Lee","2021-09-02",29971,120,27516],["Lee","2021-09-03",29971,132,27648],["Lee","2021-09-04",29971,53,27701],["Lee","2021-09-05",29971,38,27739],["Lee","2021-09-06",29971,12,27751],["Lee","2021-09-07",29971,112,27863],["Lee","2021-09-08",29971,75,27938],["Lee","2021-09-09",29971,116,28054],["Lee","2021-09-10",29971,132,28186],["Lee","2021-09-11",29971,50,28236],["Lee","2021-09-12",29971,39,28275],["Lee","2021-09-13",29971,70,28345],["Lee","2021-09-14",29971,116,28461],["Lee","2021-09-15",29971,95,28556],["Lee","2021-09-16",29971,77,28633],["Lee","2021-09-17",29971,115,28748],["Lee","2021-09-18",29971,53,28801],["Lee","2021-09-19",29971,30,28831],["Lee","2021-09-20",29971,53,28884],["Lee","2021-09-21",29971,76,28960],["Lee","2021-09-22",29971,59,29019],["Lee","2021-09-23",29971,52,29071],["Lee","2021-09-24",29971,93,29164],["Lee","2021-09-25",29971,41,29205],["Lee","2021-09-26",29971,21,29226],["Lee","2021-09-27",29971,53,29279],["Lee","2021-09-28",29971,130,29409],["Lee","2021-09-29",29971,135,29544],["Lee","2021-09-30",29971,150,29694],["Lee","2021-10-01",29971,150,29844],["Lee","2021-10-02",29971,63,29907],["Lee","2021-10-03",29971,17,29924],["Lee","2021-10-04",29971,35,29959],["Lee","2021-10-05",29971,116,30075],["Lee","2021-10-06",29971,112,30187],["Lee","2021-10-07",29971,95,30282],["Lee","2021-10-08",29971,118,30400],["Lee","2021-10-09",29971,33,30433],["Lee","2021-10-10",29971,13,30446],["Lee","2021-10-11",29971,37,30483],["Lee","2021-10-12",29971,105,30588],["Lee","2021-10-13",29971,64,30652],["Lee","2021-10-14",29971,88,30740],["Lee","2021-10-15",29971,86,30826],["Lee","2021-10-16",29971,36,30862],["Lee","2021-10-17",29971,18,30880],["Lee","2021-10-18",29971,41,30921],["Lee","2021-10-19",29971,40,30961],["Lee","2021-10-20",29971,44,31005],["Lee","2021-10-21",29971,33,31038],["Lee","2021-10-22",29971,82,31120],["Lee","2021-10-23",29971,25,31145],["Lee","2021-10-24",29971,15,31160],["Lee","2021-10-25",29971,78,31238],["Lee","2021-10-26",29971,68,31306],["Lee","2021-10-27",29971,61,31367],["Lee","2021-10-28",29971,89,31456],["Lee","2021-10-29",29971,89,31545],["Lee","2021-10-30",29971,19,31564],["Lee","2021-10-31",29971,15,31579],["Lee","2021-11-01",29971,56,31635],["Lee","2021-11-02",29971,106,31741],["Lee","2021-11-03",29971,105,31846],["Lee","2021-11-04",29971,131,31977],["Lee","2021-11-05",29971,81,32058],["Lee","2021-11-06",29971,56,32114],["Lee","2021-11-07",29971,18,32132],["Lee","2021-11-08",29971,74,32206],["Lee","2021-11-09",29971,99,32305],["Lee","2021-11-10",29971,68,32373],["Lee","2021-11-11",29971,94,32467],["Lee","2021-11-12",29971,77,32544],["Lee","2021-11-13",29971,36,32580],["Lee","2021-11-14",29971,12,32592],["Lee","2021-11-15",29971,74,32666],["Lee","2021-11-16",29971,99,32765],["Lee","2021-11-17",29971,90,32855],["Lee","2021-11-18",29971,99,32954],["Lee","2021-11-19",29971,87,33041],["Lee","2021-11-20",29971,41,33082],["Lee","2021-11-21",29971,29,33111],["Lee","2021-11-22",29971,79,33190],["Lee","2021-11-23",29971,103,33293],["Lee","2021-11-24",29971,49,33342],["Lee","2021-11-26",29971,43,33385],["Lee","2021-11-27",29971,27,33412],["Lee","2021-11-28",29971,19,33431],["Lee","2021-11-29",29971,75,33506],["Lee","2021-11-30",29971,123,33629],["Lee","2021-12-01",29971,111,33740],["Lee","2021-12-02",29971,135,33875],["Lee","2021-12-03",29971,148,34023],["Lee","2021-12-04",29971,55,34078],["Lee","2021-12-05",29971,32,34110],["Lee","2021-12-06",29971,79,34189],["Lee","2021-12-07",29971,119,34308],["Lee","2021-12-08",29971,74,34382],["Lee","2021-12-09",29971,102,34484],["Lee","2021-12-10",29971,111,34595],["Lee","2021-12-11",29971,30,34625],["Lee","2021-12-12",29971,20,34645],["Lee","2021-12-13",29971,59,34704],["Lee","2021-12-14",29971,90,34794],["Lee","2021-12-15",29971,52,34846],["Lee","2021-12-16",29971,79,34925],["Lee","2021-12-17",29971,98,35023],["Lee","2021-12-18",29971,28,35051],["Lee","2021-12-19",29971,17,35068],["Lee","2021-12-20",29971,79,35147],["Lee","2021-12-21",29971,90,35237],["Lee","2021-12-22",29971,87,35324],["Lee","2021-12-23",29971,75,35399],["Lee","2021-12-24",29971,22,35421],["Lee","2021-12-26",29971,19,35440],["Lee","2021-12-27",29971,74,35514],["Lee","2021-12-28",29971,93,35607],["Lee","2021-12-29",29971,82,35689],["Lee","2021-12-30",29971,112,35801],["Lee","2021-12-31",29971,36,35837],["Lee","2022-01-01",29971,5,35842],["Lee","2022-01-02",29971,15,35857],["Lee","2022-01-03",29971,27,35884],["Liberty","2020-12-15",61904,4,4],["Liberty","2020-12-16",61904,9,13],["Liberty","2020-12-17",61904,7,20],["Liberty","2020-12-18",61904,24,44],["Liberty","2020-12-19",61904,1,45],["Liberty","2020-12-21",61904,14,59],["Liberty","2020-12-22",61904,22,81],["Liberty","2020-12-23",61904,15,96],["Liberty","2020-12-24",61904,1,97],["Liberty","2020-12-27",61904,3,100],["Liberty","2020-12-28",61904,18,118],["Liberty","2020-12-29",61904,28,146],["Liberty","2020-12-30",61904,38,184],["Liberty","2020-12-31",61904,20,204],["Liberty","2021-01-01",61904,10,214],["Liberty","2021-01-02",61904,4,218],["Liberty","2021-01-03",61904,2,220],["Liberty","2021-01-04",61904,18,238],["Liberty","2021-01-05",61904,34,272],["Liberty","2021-01-06",61904,59,331],["Liberty","2021-01-07",61904,48,379],["Liberty","2021-01-08",61904,67,446],["Liberty","2021-01-09",61904,6,452],["Liberty","2021-01-10",61904,55,507],["Liberty","2021-01-11",61904,123,630],["Liberty","2021-01-12",61904,87,717],["Liberty","2021-01-13",61904,158,875],["Liberty","2021-01-14",61904,213,1088],["Liberty","2021-01-15",61904,121,1209],["Liberty","2021-01-16",61904,70,1279],["Liberty","2021-01-17",61904,31,1310],["Liberty","2021-01-18",61904,194,1504],["Liberty","2021-01-19",61904,136,1640],["Liberty","2021-01-20",61904,154,1794],["Liberty","2021-01-21",61904,264,2058],["Liberty","2021-01-22",61904,139,2197],["Liberty","2021-01-23",61904,52,2249],["Liberty","2021-01-24",61904,59,2308],["Liberty","2021-01-25",61904,205,2513],["Liberty","2021-01-26",61904,95,2608],["Liberty","2021-01-27",61904,116,2724],["Liberty","2021-01-28",61904,196,2920],["Liberty","2021-01-29",61904,193,3113],["Liberty","2021-01-30",61904,56,3169],["Liberty","2021-01-31",61904,78,3247],["Liberty","2021-02-01",61904,153,3400],["Liberty","2021-02-02",61904,107,3507],["Liberty","2021-02-03",61904,179,3686],["Liberty","2021-02-04",61904,151,3837],["Liberty","2021-02-05",61904,126,3963],["Liberty","2021-02-06",61904,50,4013],["Liberty","2021-02-07",61904,8,4021],["Liberty","2021-02-08",61904,184,4205],["Liberty","2021-02-09",61904,124,4329],["Liberty","2021-02-10",61904,178,4507],["Liberty","2021-02-11",61904,281,4788],["Liberty","2021-02-12",61904,203,4991],["Liberty","2021-02-13",61904,78,5069],["Liberty","2021-02-14",61904,43,5112],["Liberty","2021-02-15",61904,275,5387],["Liberty","2021-02-16",61904,169,5556],["Liberty","2021-02-17",61904,214,5770],["Liberty","2021-02-18",61904,352,6122],["Liberty","2021-02-19",61904,159,6281],["Liberty","2021-02-20",61904,64,6345],["Liberty","2021-02-21",61904,52,6397],["Liberty","2021-02-22",61904,195,6592],["Liberty","2021-02-23",61904,104,6696],["Liberty","2021-02-24",61904,151,6847],["Liberty","2021-02-25",61904,269,7116],["Liberty","2021-02-26",61904,102,7218],["Liberty","2021-02-27",61904,297,7515],["Liberty","2021-02-28",61904,34,7549],["Liberty","2021-03-01",61904,152,7701],["Liberty","2021-03-02",61904,125,7826],["Liberty","2021-03-03",61904,124,7950],["Liberty","2021-03-04",61904,282,8232],["Liberty","2021-03-05",61904,90,8322],["Liberty","2021-03-06",61904,52,8374],["Liberty","2021-03-07",61904,31,8405],["Liberty","2021-03-08",61904,177,8582],["Liberty","2021-03-09",61904,225,8807],["Liberty","2021-03-10",61904,152,8959],["Liberty","2021-03-11",61904,300,9259],["Liberty","2021-03-12",61904,203,9462],["Liberty","2021-03-13",61904,345,9807],["Liberty","2021-03-14",61904,30,9837],["Liberty","2021-03-15",61904,257,10094],["Liberty","2021-03-16",61904,184,10278],["Liberty","2021-03-17",61904,261,10539],["Liberty","2021-03-18",61904,283,10822],["Liberty","2021-03-19",61904,226,11048],["Liberty","2021-03-20",61904,76,11124],["Liberty","2021-03-21",61904,33,11157],["Liberty","2021-03-22",61904,257,11414],["Liberty","2021-03-23",61904,200,11614],["Liberty","2021-03-24",61904,216,11830],["Liberty","2021-03-25",61904,314,12144],["Liberty","2021-03-26",61904,220,12364],["Liberty","2021-03-27",61904,198,12562],["Liberty","2021-03-28",61904,57,12619],["Liberty","2021-03-29",61904,231,12850],["Liberty","2021-03-30",61904,282,13132],["Liberty","2021-03-31",61904,254,13386],["Liberty","2021-04-01",61904,345,13731],["Liberty","2021-04-02",61904,199,13930],["Liberty","2021-04-03",61904,80,14010],["Liberty","2021-04-04",61904,25,14035],["Liberty","2021-04-05",61904,352,14387],["Liberty","2021-04-06",61904,235,14622],["Liberty","2021-04-07",61904,247,14869],["Liberty","2021-04-08",61904,400,15269],["Liberty","2021-04-09",61904,276,15545],["Liberty","2021-04-10",61904,355,15900],["Liberty","2021-04-11",61904,36,15936],["Liberty","2021-04-12",61904,252,16188],["Liberty","2021-04-13",61904,218,16406],["Liberty","2021-04-14",61904,312,16718],["Liberty","2021-04-15",61904,358,17076],["Liberty","2021-04-16",61904,258,17334],["Liberty","2021-04-17",61904,100,17434],["Liberty","2021-04-18",61904,33,17467],["Liberty","2021-04-19",61904,232,17699],["Liberty","2021-04-20",61904,219,17918],["Liberty","2021-04-21",61904,186,18104],["Liberty","2021-04-22",61904,376,18480],["Liberty","2021-04-23",61904,237,18717],["Liberty","2021-04-24",61904,105,18822],["Liberty","2021-04-25",61904,35,18857],["Liberty","2021-04-26",61904,213,19070],["Liberty","2021-04-27",61904,242,19312],["Liberty","2021-04-28",61904,164,19476],["Liberty","2021-04-29",61904,397,19873],["Liberty","2021-04-30",61904,197,20070],["Liberty","2021-05-01",61904,116,20186],["Liberty","2021-05-02",61904,28,20214],["Liberty","2021-05-03",61904,196,20410],["Liberty","2021-05-04",61904,158,20568],["Liberty","2021-05-05",61904,164,20732],["Liberty","2021-05-06",61904,295,21027],["Liberty","2021-05-07",61904,185,21212],["Liberty","2021-05-08",61904,77,21289],["Liberty","2021-05-09",61904,26,21315],["Liberty","2021-05-10",61904,119,21434],["Liberty","2021-05-11",61904,157,21591],["Liberty","2021-05-12",61904,117,21708],["Liberty","2021-05-13",61904,223,21931],["Liberty","2021-05-14",61904,157,22088],["Liberty","2021-05-15",61904,73,22161],["Liberty","2021-05-16",61904,50,22211],["Liberty","2021-05-17",61904,175,22386],["Liberty","2021-05-18",61904,135,22521],["Liberty","2021-05-19",61904,116,22637],["Liberty","2021-05-20",61904,200,22837],["Liberty","2021-05-21",61904,167,23004],["Liberty","2021-05-22",61904,60,23064],["Liberty","2021-05-23",61904,40,23104],["Liberty","2021-05-24",61904,121,23225],["Liberty","2021-05-25",61904,136,23361],["Liberty","2021-05-26",61904,82,23443],["Liberty","2021-05-27",61904,162,23605],["Liberty","2021-05-28",61904,99,23704],["Liberty","2021-05-29",61904,54,23758],["Liberty","2021-05-30",61904,29,23787],["Liberty","2021-05-31",61904,23,23810],["Liberty","2021-06-01",61904,139,23949],["Liberty","2021-06-02",61904,101,24050],["Liberty","2021-06-03",61904,135,24185],["Liberty","2021-06-04",61904,123,24308],["Liberty","2021-06-05",61904,71,24379],["Liberty","2021-06-06",61904,17,24396],["Liberty","2021-06-07",61904,108,24504],["Liberty","2021-06-08",61904,111,24615],["Liberty","2021-06-09",61904,77,24692],["Liberty","2021-06-10",61904,109,24801],["Liberty","2021-06-11",61904,88,24889],["Liberty","2021-06-12",61904,62,24951],["Liberty","2021-06-13",61904,36,24987],["Liberty","2021-06-14",61904,109,25096],["Liberty","2021-06-15",61904,98,25194],["Liberty","2021-06-16",61904,73,25267],["Liberty","2021-06-17",61904,139,25406],["Liberty","2021-06-18",61904,105,25511],["Liberty","2021-06-19",61904,36,25547],["Liberty","2021-06-20",61904,44,25591],["Liberty","2021-06-21",61904,69,25660],["Liberty","2021-06-22",61904,95,25755],["Liberty","2021-06-23",61904,87,25842],["Liberty","2021-06-24",61904,121,25963],["Liberty","2021-06-25",61904,79,26042],["Liberty","2021-06-26",61904,48,26090],["Liberty","2021-06-27",61904,20,26110],["Liberty","2021-06-28",61904,78,26188],["Liberty","2021-06-29",61904,98,26286],["Liberty","2021-06-30",61904,66,26352],["Liberty","2021-07-01",61904,55,26407],["Liberty","2021-07-02",61904,106,26513],["Liberty","2021-07-03",61904,38,26551],["Liberty","2021-07-04",61904,4,26555],["Liberty","2021-07-05",61904,59,26614],["Liberty","2021-07-06",61904,60,26674],["Liberty","2021-07-07",61904,49,26723],["Liberty","2021-07-08",61904,88,26811],["Liberty","2021-07-09",61904,71,26882],["Liberty","2021-07-10",61904,40,26922],["Liberty","2021-07-11",61904,33,26955],["Liberty","2021-07-12",61904,68,27023],["Liberty","2021-07-13",61904,52,27075],["Liberty","2021-07-14",61904,45,27120],["Liberty","2021-07-15",61904,71,27191],["Liberty","2021-07-16",61904,89,27280],["Liberty","2021-07-17",61904,40,27320],["Liberty","2021-07-18",61904,40,27360],["Liberty","2021-07-19",61904,86,27446],["Liberty","2021-07-20",61904,65,27511],["Liberty","2021-07-21",61904,71,27582],["Liberty","2021-07-22",61904,114,27696],["Liberty","2021-07-23",61904,105,27801],["Liberty","2021-07-24",61904,217,28018],["Liberty","2021-07-25",61904,24,28042],["Liberty","2021-07-26",61904,143,28185],["Liberty","2021-07-27",61904,135,28320],["Liberty","2021-07-28",61904,96,28416],["Liberty","2021-07-29",61904,132,28548],["Liberty","2021-07-30",61904,138,28686],["Liberty","2021-07-31",61904,71,28757],["Liberty","2021-08-01",61904,45,28802],["Liberty","2021-08-02",61904,98,28900],["Liberty","2021-08-03",61904,79,28979],["Liberty","2021-08-04",61904,99,29078],["Liberty","2021-08-05",61904,114,29192],["Liberty","2021-08-06",61904,129,29321],["Liberty","2021-08-07",61904,60,29381],["Liberty","2021-08-08",61904,35,29416],["Liberty","2021-08-09",61904,114,29530],["Liberty","2021-08-10",61904,129,29659],["Liberty","2021-08-11",61904,142,29801],["Liberty","2021-08-12",61904,123,29924],["Liberty","2021-08-13",61904,176,30100],["Liberty","2021-08-14",61904,217,30317],["Liberty","2021-08-15",61904,55,30372],["Liberty","2021-08-16",61904,136,30508],["Liberty","2021-08-17",61904,113,30621],["Liberty","2021-08-18",61904,93,30714],["Liberty","2021-08-19",61904,184,30898],["Liberty","2021-08-20",61904,133,31031],["Liberty","2021-08-21",61904,75,31106],["Liberty","2021-08-22",61904,43,31149],["Liberty","2021-08-23",61904,121,31270],["Liberty","2021-08-24",61904,134,31404],["Liberty","2021-08-25",61904,125,31529],["Liberty","2021-08-26",61904,168,31697],["Liberty","2021-08-27",61904,139,31836],["Liberty","2021-08-28",61904,76,31912],["Liberty","2021-08-29",61904,62,31974],["Liberty","2021-08-30",61904,134,32108],["Liberty","2021-08-31",61904,127,32235],["Liberty","2021-09-01",61904,126,32361],["Liberty","2021-09-02",61904,156,32517],["Liberty","2021-09-03",61904,142,32659],["Liberty","2021-09-04",61904,56,32715],["Liberty","2021-09-05",61904,37,32752],["Liberty","2021-09-06",61904,34,32786],["Liberty","2021-09-07",61904,130,32916],["Liberty","2021-09-08",61904,127,33043],["Liberty","2021-09-09",61904,182,33225],["Liberty","2021-09-10",61904,169,33394],["Liberty","2021-09-11",61904,80,33474],["Liberty","2021-09-12",61904,40,33514],["Liberty","2021-09-13",61904,110,33624],["Liberty","2021-09-14",61904,100,33724],["Liberty","2021-09-15",61904,84,33808],["Liberty","2021-09-16",61904,117,33925],["Liberty","2021-09-17",61904,119,34044],["Liberty","2021-09-18",61904,44,34088],["Liberty","2021-09-19",61904,30,34118],["Liberty","2021-09-20",61904,78,34196],["Liberty","2021-09-21",61904,85,34281],["Liberty","2021-09-22",61904,77,34358],["Liberty","2021-09-23",61904,97,34455],["Liberty","2021-09-24",61904,100,34555],["Liberty","2021-09-25",61904,39,34594],["Liberty","2021-09-26",61904,33,34627],["Liberty","2021-09-27",61904,62,34689],["Liberty","2021-09-28",61904,76,34765],["Liberty","2021-09-29",61904,78,34843],["Liberty","2021-09-30",61904,101,34944],["Liberty","2021-10-01",61904,80,35024],["Liberty","2021-10-02",61904,30,35054],["Liberty","2021-10-03",61904,19,35073],["Liberty","2021-10-04",61904,63,35136],["Liberty","2021-10-05",61904,58,35194],["Liberty","2021-10-06",61904,62,35256],["Liberty","2021-10-07",61904,70,35326],["Liberty","2021-10-08",61904,75,35401],["Liberty","2021-10-09",61904,28,35429],["Liberty","2021-10-10",61904,17,35446],["Liberty","2021-10-11",61904,53,35499],["Liberty","2021-10-12",61904,55,35554],["Liberty","2021-10-13",61904,43,35597],["Liberty","2021-10-14",61904,51,35648],["Liberty","2021-10-15",61904,50,35698],["Liberty","2021-10-16",61904,12,35710],["Liberty","2021-10-17",61904,13,35723],["Liberty","2021-10-18",61904,56,35779],["Liberty","2021-10-19",61904,60,35839],["Liberty","2021-10-20",61904,65,35904],["Liberty","2021-10-21",61904,66,35970],["Liberty","2021-10-22",61904,117,36087],["Liberty","2021-10-23",61904,67,36154],["Liberty","2021-10-24",61904,35,36189],["Liberty","2021-10-25",61904,214,36403],["Liberty","2021-10-26",61904,196,36599],["Liberty","2021-10-27",61904,173,36772],["Liberty","2021-10-28",61904,189,36961],["Liberty","2021-10-29",61904,176,37137],["Liberty","2021-10-30",61904,36,37173],["Liberty","2021-10-31",61904,33,37206],["Liberty","2021-11-01",61904,177,37383],["Liberty","2021-11-02",61904,138,37521],["Liberty","2021-11-03",61904,114,37635],["Liberty","2021-11-04",61904,195,37830],["Liberty","2021-11-05",61904,128,37958],["Liberty","2021-11-06",61904,57,38015],["Liberty","2021-11-07",61904,29,38044],["Liberty","2021-11-08",61904,162,38206],["Liberty","2021-11-09",61904,114,38320],["Liberty","2021-11-10",61904,111,38431],["Liberty","2021-11-11",61904,124,38555],["Liberty","2021-11-12",61904,84,38639],["Liberty","2021-11-13",61904,58,38697],["Liberty","2021-11-14",61904,27,38724],["Liberty","2021-11-15",61904,161,38885],["Liberty","2021-11-16",61904,103,38988],["Liberty","2021-11-17",61904,128,39116],["Liberty","2021-11-18",61904,169,39285],["Liberty","2021-11-19",61904,122,39407],["Liberty","2021-11-20",61904,59,39466],["Liberty","2021-11-21",61904,37,39503],["Liberty","2021-11-22",61904,152,39655],["Liberty","2021-11-23",61904,107,39762],["Liberty","2021-11-24",61904,67,39829],["Liberty","2021-11-26",61904,64,39893],["Liberty","2021-11-27",61904,56,39949],["Liberty","2021-11-28",61904,22,39971],["Liberty","2021-11-29",61904,153,40124],["Liberty","2021-11-30",61904,148,40272],["Liberty","2021-12-01",61904,119,40391],["Liberty","2021-12-02",61904,227,40618],["Liberty","2021-12-03",61904,208,40826],["Liberty","2021-12-04",61904,77,40903],["Liberty","2021-12-05",61904,47,40950],["Liberty","2021-12-06",61904,148,41098],["Liberty","2021-12-07",61904,112,41210],["Liberty","2021-12-08",61904,103,41313],["Liberty","2021-12-09",61904,143,41456],["Liberty","2021-12-10",61904,130,41586],["Liberty","2021-12-11",61904,69,41655],["Liberty","2021-12-12",61904,37,41692],["Liberty","2021-12-13",61904,111,41803],["Liberty","2021-12-14",61904,77,41880],["Liberty","2021-12-15",61904,72,41952],["Liberty","2021-12-16",61904,117,42069],["Liberty","2021-12-17",61904,115,42184],["Liberty","2021-12-18",61904,67,42251],["Liberty","2021-12-19",61904,20,42271],["Liberty","2021-12-20",61904,118,42389],["Liberty","2021-12-21",61904,111,42500],["Liberty","2021-12-22",61904,135,42635],["Liberty","2021-12-23",61904,79,42714],["Liberty","2021-12-24",61904,18,42732],["Liberty","2021-12-26",61904,30,42762],["Liberty","2021-12-27",61904,99,42861],["Liberty","2021-12-28",61904,99,42960],["Liberty","2021-12-29",61904,135,43095],["Liberty","2021-12-30",61904,169,43264],["Liberty","2021-12-31",61904,67,43331],["Liberty","2022-01-01",61904,9,43340],["Liberty","2022-01-02",61904,24,43364],["Liberty","2022-01-03",61904,52,43416],["Lincoln","2020-12-13",8125,1,1],["Lincoln","2020-12-17",8125,2,3],["Lincoln","2020-12-18",8125,3,6],["Lincoln","2020-12-21",8125,1,7],["Lincoln","2020-12-22",8125,13,20],["Lincoln","2020-12-23",8125,9,29],["Lincoln","2020-12-24",8125,4,33],["Lincoln","2020-12-27",8125,1,34],["Lincoln","2020-12-28",8125,5,39],["Lincoln","2020-12-29",8125,13,52],["Lincoln","2020-12-30",8125,11,63],["Lincoln","2020-12-31",8125,8,71],["Lincoln","2021-01-01",8125,2,73],["Lincoln","2021-01-02",8125,4,77],["Lincoln","2021-01-04",8125,11,88],["Lincoln","2021-01-05",8125,4,92],["Lincoln","2021-01-06",8125,7,99],["Lincoln","2021-01-07",8125,17,116],["Lincoln","2021-01-08",8125,10,126],["Lincoln","2021-01-09",8125,11,137],["Lincoln","2021-01-11",8125,18,155],["Lincoln","2021-01-12",8125,54,209],["Lincoln","2021-01-13",8125,36,245],["Lincoln","2021-01-14",8125,39,284],["Lincoln","2021-01-15",8125,33,317],["Lincoln","2021-01-16",8125,12,329],["Lincoln","2021-01-17",8125,1,330],["Lincoln","2021-01-18",8125,57,387],["Lincoln","2021-01-19",8125,86,473],["Lincoln","2021-01-20",8125,80,553],["Lincoln","2021-01-21",8125,128,681],["Lincoln","2021-01-22",8125,57,738],["Lincoln","2021-01-23",8125,24,762],["Lincoln","2021-01-24",8125,1,763],["Lincoln","2021-01-25",8125,34,797],["Lincoln","2021-01-26",8125,44,841],["Lincoln","2021-01-27",8125,41,882],["Lincoln","2021-01-28",8125,49,931],["Lincoln","2021-01-29",8125,58,989],["Lincoln","2021-01-30",8125,14,1003],["Lincoln","2021-01-31",8125,2,1005],["Lincoln","2021-02-01",8125,27,1032],["Lincoln","2021-02-02",8125,80,1112],["Lincoln","2021-02-03",8125,16,1128],["Lincoln","2021-02-04",8125,51,1179],["Lincoln","2021-02-05",8125,36,1215],["Lincoln","2021-02-06",8125,5,1220],["Lincoln","2021-02-08",8125,17,1237],["Lincoln","2021-02-09",8125,23,1260],["Lincoln","2021-02-10",8125,28,1288],["Lincoln","2021-02-11",8125,45,1333],["Lincoln","2021-02-12",8125,76,1409],["Lincoln","2021-02-13",8125,17,1426],["Lincoln","2021-02-14",8125,1,1427],["Lincoln","2021-02-15",8125,40,1467],["Lincoln","2021-02-16",8125,31,1498],["Lincoln","2021-02-17",8125,43,1541],["Lincoln","2021-02-18",8125,78,1619],["Lincoln","2021-02-19",8125,34,1653],["Lincoln","2021-02-20",8125,26,1679],["Lincoln","2021-02-21",8125,6,1685],["Lincoln","2021-02-22",8125,17,1702],["Lincoln","2021-02-23",8125,32,1734],["Lincoln","2021-02-24",8125,40,1774],["Lincoln","2021-02-25",8125,180,1954],["Lincoln","2021-02-26",8125,127,2081],["Lincoln","2021-02-27",8125,1,2082],["Lincoln","2021-03-01",8125,48,2130],["Lincoln","2021-03-02",8125,116,2246],["Lincoln","2021-03-03",8125,71,2317],["Lincoln","2021-03-04",8125,72,2389],["Lincoln","2021-03-05",8125,52,2441],["Lincoln","2021-03-06",8125,13,2454],["Lincoln","2021-03-07",8125,4,2458],["Lincoln","2021-03-08",8125,32,2490],["Lincoln","2021-03-09",8125,37,2527],["Lincoln","2021-03-10",8125,44,2571],["Lincoln","2021-03-11",8125,60,2631],["Lincoln","2021-03-12",8125,126,2757],["Lincoln","2021-03-13",8125,27,2784],["Lincoln","2021-03-14",8125,5,2789],["Lincoln","2021-03-15",8125,22,2811],["Lincoln","2021-03-16",8125,123,2934],["Lincoln","2021-03-17",8125,58,2992],["Lincoln","2021-03-18",8125,87,3079],["Lincoln","2021-03-19",8125,43,3122],["Lincoln","2021-03-20",8125,20,3142],["Lincoln","2021-03-21",8125,2,3144],["Lincoln","2021-03-22",8125,32,3176],["Lincoln","2021-03-23",8125,62,3238],["Lincoln","2021-03-24",8125,36,3274],["Lincoln","2021-03-25",8125,85,3359],["Lincoln","2021-03-26",8125,56,3415],["Lincoln","2021-03-27",8125,17,3432],["Lincoln","2021-03-28",8125,9,3441],["Lincoln","2021-03-29",8125,28,3469],["Lincoln","2021-03-30",8125,101,3570],["Lincoln","2021-03-31",8125,23,3593],["Lincoln","2021-04-01",8125,112,3705],["Lincoln","2021-04-02",8125,50,3755],["Lincoln","2021-04-03",8125,18,3773],["Lincoln","2021-04-04",8125,4,3777],["Lincoln","2021-04-05",8125,29,3806],["Lincoln","2021-04-06",8125,30,3836],["Lincoln","2021-04-07",8125,24,3860],["Lincoln","2021-04-08",8125,98,3958],["Lincoln","2021-04-09",8125,45,4003],["Lincoln","2021-04-10",8125,9,4012],["Lincoln","2021-04-11",8125,6,4018],["Lincoln","2021-04-12",8125,38,4056],["Lincoln","2021-04-13",8125,134,4190],["Lincoln","2021-04-14",8125,51,4241],["Lincoln","2021-04-15",8125,119,4360],["Lincoln","2021-04-16",8125,103,4463],["Lincoln","2021-04-17",8125,27,4490],["Lincoln","2021-04-18",8125,4,4494],["Lincoln","2021-04-19",8125,36,4530],["Lincoln","2021-04-20",8125,66,4596],["Lincoln","2021-04-21",8125,20,4616],["Lincoln","2021-04-22",8125,98,4714],["Lincoln","2021-04-23",8125,48,4762],["Lincoln","2021-04-24",8125,23,4785],["Lincoln","2021-04-25",8125,5,4790],["Lincoln","2021-04-26",8125,25,4815],["Lincoln","2021-04-27",8125,76,4891],["Lincoln","2021-04-28",8125,24,4915],["Lincoln","2021-04-29",8125,63,4978],["Lincoln","2021-04-30",8125,42,5020],["Lincoln","2021-05-01",8125,12,5032],["Lincoln","2021-05-02",8125,2,5034],["Lincoln","2021-05-03",8125,19,5053],["Lincoln","2021-05-04",8125,39,5092],["Lincoln","2021-05-05",8125,13,5105],["Lincoln","2021-05-06",8125,24,5129],["Lincoln","2021-05-07",8125,35,5164],["Lincoln","2021-05-08",8125,4,5168],["Lincoln","2021-05-10",8125,8,5176],["Lincoln","2021-05-11",8125,19,5195],["Lincoln","2021-05-12",8125,7,5202],["Lincoln","2021-05-13",8125,44,5246],["Lincoln","2021-05-14",8125,28,5274],["Lincoln","2021-05-15",8125,4,5278],["Lincoln","2021-05-16",8125,3,5281],["Lincoln","2021-05-17",8125,10,5291],["Lincoln","2021-05-18",8125,12,5303],["Lincoln","2021-05-19",8125,18,5321],["Lincoln","2021-05-20",8125,24,5345],["Lincoln","2021-05-21",8125,29,5374],["Lincoln","2021-05-22",8125,14,5388],["Lincoln","2021-05-23",8125,2,5390],["Lincoln","2021-05-24",8125,5,5395],["Lincoln","2021-05-25",8125,13,5408],["Lincoln","2021-05-26",8125,14,5422],["Lincoln","2021-05-27",8125,16,5438],["Lincoln","2021-05-28",8125,42,5480],["Lincoln","2021-05-29",8125,5,5485],["Lincoln","2021-05-30",8125,3,5488],["Lincoln","2021-05-31",8125,1,5489],["Lincoln","2021-06-01",8125,19,5508],["Lincoln","2021-06-02",8125,5,5513],["Lincoln","2021-06-03",8125,13,5526],["Lincoln","2021-06-04",8125,24,5550],["Lincoln","2021-06-05",8125,7,5557],["Lincoln","2021-06-06",8125,3,5560],["Lincoln","2021-06-07",8125,4,5564],["Lincoln","2021-06-08",8125,10,5574],["Lincoln","2021-06-09",8125,11,5585],["Lincoln","2021-06-10",8125,9,5594],["Lincoln","2021-06-11",8125,25,5619],["Lincoln","2021-06-12",8125,14,5633],["Lincoln","2021-06-13",8125,3,5636],["Lincoln","2021-06-14",8125,1,5637],["Lincoln","2021-06-15",8125,4,5641],["Lincoln","2021-06-16",8125,13,5654],["Lincoln","2021-06-17",8125,11,5665],["Lincoln","2021-06-18",8125,17,5682],["Lincoln","2021-06-19",8125,4,5686],["Lincoln","2021-06-21",8125,8,5694],["Lincoln","2021-06-22",8125,12,5706],["Lincoln","2021-06-23",8125,8,5714],["Lincoln","2021-06-24",8125,8,5722],["Lincoln","2021-06-25",8125,23,5745],["Lincoln","2021-06-26",8125,2,5747],["Lincoln","2021-06-27",8125,1,5748],["Lincoln","2021-06-28",8125,6,5754],["Lincoln","2021-06-29",8125,4,5758],["Lincoln","2021-06-30",8125,7,5765],["Lincoln","2021-07-01",8125,2,5767],["Lincoln","2021-07-02",8125,17,5784],["Lincoln","2021-07-03",8125,2,5786],["Lincoln","2021-07-05",8125,4,5790],["Lincoln","2021-07-06",8125,6,5796],["Lincoln","2021-07-07",8125,2,5798],["Lincoln","2021-07-08",8125,11,5809],["Lincoln","2021-07-09",8125,23,5832],["Lincoln","2021-07-10",8125,2,5834],["Lincoln","2021-07-11",8125,2,5836],["Lincoln","2021-07-12",8125,5,5841],["Lincoln","2021-07-13",8125,11,5852],["Lincoln","2021-07-14",8125,8,5860],["Lincoln","2021-07-15",8125,9,5869],["Lincoln","2021-07-16",8125,14,5883],["Lincoln","2021-07-17",8125,7,5890],["Lincoln","2021-07-18",8125,2,5892],["Lincoln","2021-07-19",8125,5,5897],["Lincoln","2021-07-20",8125,8,5905],["Lincoln","2021-07-21",8125,16,5921],["Lincoln","2021-07-22",8125,17,5938],["Lincoln","2021-07-23",8125,35,5973],["Lincoln","2021-07-24",8125,8,5981],["Lincoln","2021-07-25",8125,3,5984],["Lincoln","2021-07-26",8125,14,5998],["Lincoln","2021-07-27",8125,14,6012],["Lincoln","2021-07-28",8125,12,6024],["Lincoln","2021-07-29",8125,15,6039],["Lincoln","2021-07-30",8125,38,6077],["Lincoln","2021-07-31",8125,6,6083],["Lincoln","2021-08-01",8125,3,6086],["Lincoln","2021-08-02",8125,6,6092],["Lincoln","2021-08-03",8125,17,6109],["Lincoln","2021-08-04",8125,21,6130],["Lincoln","2021-08-05",8125,16,6146],["Lincoln","2021-08-06",8125,13,6159],["Lincoln","2021-08-07",8125,7,6166],["Lincoln","2021-08-08",8125,2,6168],["Lincoln","2021-08-09",8125,26,6194],["Lincoln","2021-08-10",8125,16,6210],["Lincoln","2021-08-11",8125,18,6228],["Lincoln","2021-08-12",8125,23,6251],["Lincoln","2021-08-13",8125,35,6286],["Lincoln","2021-08-14",8125,7,6293],["Lincoln","2021-08-15",8125,3,6296],["Lincoln","2021-08-16",8125,23,6319],["Lincoln","2021-08-17",8125,25,6344],["Lincoln","2021-08-18",8125,16,6360],["Lincoln","2021-08-19",8125,27,6387],["Lincoln","2021-08-20",8125,45,6432],["Lincoln","2021-08-21",8125,13,6445],["Lincoln","2021-08-22",8125,7,6452],["Lincoln","2021-08-23",8125,16,6468],["Lincoln","2021-08-24",8125,14,6482],["Lincoln","2021-08-25",8125,29,6511],["Lincoln","2021-08-26",8125,19,6530],["Lincoln","2021-08-27",8125,62,6592],["Lincoln","2021-08-28",8125,5,6597],["Lincoln","2021-08-29",8125,4,6601],["Lincoln","2021-08-30",8125,20,6621],["Lincoln","2021-08-31",8125,13,6634],["Lincoln","2021-09-01",8125,20,6654],["Lincoln","2021-09-02",8125,23,6677],["Lincoln","2021-09-03",8125,31,6708],["Lincoln","2021-09-04",8125,12,6720],["Lincoln","2021-09-05",8125,7,6727],["Lincoln","2021-09-06",8125,1,6728],["Lincoln","2021-09-07",8125,20,6748],["Lincoln","2021-09-08",8125,11,6759],["Lincoln","2021-09-09",8125,27,6786],["Lincoln","2021-09-10",8125,35,6821],["Lincoln","2021-09-11",8125,12,6833],["Lincoln","2021-09-12",8125,9,6842],["Lincoln","2021-09-13",8125,19,6861],["Lincoln","2021-09-14",8125,22,6883],["Lincoln","2021-09-15",8125,21,6904],["Lincoln","2021-09-16",8125,16,6920],["Lincoln","2021-09-17",8125,47,6967],["Lincoln","2021-09-18",8125,9,6976],["Lincoln","2021-09-19",8125,6,6982],["Lincoln","2021-09-20",8125,13,6995],["Lincoln","2021-09-21",8125,9,7004],["Lincoln","2021-09-22",8125,16,7020],["Lincoln","2021-09-23",8125,12,7032],["Lincoln","2021-09-24",8125,40,7072],["Lincoln","2021-09-25",8125,1,7073],["Lincoln","2021-09-26",8125,5,7078],["Lincoln","2021-09-27",8125,7,7085],["Lincoln","2021-09-28",8125,13,7098],["Lincoln","2021-09-29",8125,12,7110],["Lincoln","2021-09-30",8125,6,7116],["Lincoln","2021-10-01",8125,24,7140],["Lincoln","2021-10-02",8125,7,7147],["Lincoln","2021-10-03",8125,3,7150],["Lincoln","2021-10-04",8125,8,7158],["Lincoln","2021-10-05",8125,13,7171],["Lincoln","2021-10-06",8125,8,7179],["Lincoln","2021-10-07",8125,6,7185],["Lincoln","2021-10-08",8125,28,7213],["Lincoln","2021-10-09",8125,6,7219],["Lincoln","2021-10-10",8125,5,7224],["Lincoln","2021-10-11",8125,5,7229],["Lincoln","2021-10-12",8125,6,7235],["Lincoln","2021-10-13",8125,10,7245],["Lincoln","2021-10-14",8125,9,7254],["Lincoln","2021-10-15",8125,18,7272],["Lincoln","2021-10-16",8125,2,7274],["Lincoln","2021-10-17",8125,3,7277],["Lincoln","2021-10-18",8125,9,7286],["Lincoln","2021-10-19",8125,12,7298],["Lincoln","2021-10-20",8125,6,7304],["Lincoln","2021-10-21",8125,10,7314],["Lincoln","2021-10-22",8125,34,7348],["Lincoln","2021-10-23",8125,3,7351],["Lincoln","2021-10-24",8125,7,7358],["Lincoln","2021-10-25",8125,67,7425],["Lincoln","2021-10-26",8125,81,7506],["Lincoln","2021-10-27",8125,63,7569],["Lincoln","2021-10-28",8125,28,7597],["Lincoln","2021-10-29",8125,68,7665],["Lincoln","2021-10-30",8125,7,7672],["Lincoln","2021-10-31",8125,2,7674],["Lincoln","2021-11-01",8125,32,7706],["Lincoln","2021-11-02",8125,31,7737],["Lincoln","2021-11-03",8125,36,7773],["Lincoln","2021-11-04",8125,33,7806],["Lincoln","2021-11-05",8125,48,7854],["Lincoln","2021-11-06",8125,14,7868],["Lincoln","2021-11-07",8125,5,7873],["Lincoln","2021-11-08",8125,21,7894],["Lincoln","2021-11-09",8125,28,7922],["Lincoln","2021-11-10",8125,31,7953],["Lincoln","2021-11-11",8125,20,7973],["Lincoln","2021-11-12",8125,41,8014],["Lincoln","2021-11-13",8125,8,8022],["Lincoln","2021-11-14",8125,2,8024],["Lincoln","2021-11-15",8125,35,8059],["Lincoln","2021-11-16",8125,34,8093],["Lincoln","2021-11-17",8125,21,8114],["Lincoln","2021-11-18",8125,13,8127],["Lincoln","2021-11-19",8125,26,8153],["Lincoln","2021-11-20",8125,5,8158],["Lincoln","2021-11-21",8125,5,8163],["Lincoln","2021-11-22",8125,16,8179],["Lincoln","2021-11-23",8125,26,8205],["Lincoln","2021-11-24",8125,8,8213],["Lincoln","2021-11-26",8125,25,8238],["Lincoln","2021-11-27",8125,4,8242],["Lincoln","2021-11-28",8125,5,8247],["Lincoln","2021-11-29",8125,21,8268],["Lincoln","2021-11-30",8125,35,8303],["Lincoln","2021-12-01",8125,16,8319],["Lincoln","2021-12-02",8125,27,8346],["Lincoln","2021-12-03",8125,48,8394],["Lincoln","2021-12-04",8125,12,8406],["Lincoln","2021-12-05",8125,2,8408],["Lincoln","2021-12-06",8125,22,8430],["Lincoln","2021-12-07",8125,30,8460],["Lincoln","2021-12-08",8125,18,8478],["Lincoln","2021-12-09",8125,27,8505],["Lincoln","2021-12-10",8125,36,8541],["Lincoln","2021-12-11",8125,8,8549],["Lincoln","2021-12-12",8125,2,8551],["Lincoln","2021-12-13",8125,6,8557],["Lincoln","2021-12-14",8125,21,8578],["Lincoln","2021-12-15",8125,9,8587],["Lincoln","2021-12-16",8125,24,8611],["Lincoln","2021-12-17",8125,38,8649],["Lincoln","2021-12-18",8125,7,8656],["Lincoln","2021-12-19",8125,1,8657],["Lincoln","2021-12-20",8125,33,8690],["Lincoln","2021-12-21",8125,29,8719],["Lincoln","2021-12-22",8125,14,8733],["Lincoln","2021-12-23",8125,22,8755],["Lincoln","2021-12-24",8125,1,8756],["Lincoln","2021-12-26",8125,8,8764],["Lincoln","2021-12-27",8125,11,8775],["Lincoln","2021-12-28",8125,39,8814],["Lincoln","2021-12-29",8125,15,8829],["Lincoln","2021-12-30",8125,3,8832],["Lincoln","2021-12-31",8125,19,8851],["Lincoln","2022-01-02",8125,1,8852],["Lincoln","2022-01-03",8125,8,8860],["Long","2020-12-15",19915,1,1],["Long","2020-12-16",19915,2,3],["Long","2020-12-18",19915,5,8],["Long","2020-12-19",19915,1,9],["Long","2020-12-21",19915,1,10],["Long","2020-12-22",19915,4,14],["Long","2020-12-23",19915,4,18],["Long","2020-12-24",19915,1,19],["Long","2020-12-28",19915,3,22],["Long","2020-12-29",19915,10,32],["Long","2020-12-30",19915,5,37],["Long","2020-12-31",19915,2,39],["Long","2021-01-01",19915,4,43],["Long","2021-01-02",19915,1,44],["Long","2021-01-03",19915,1,45],["Long","2021-01-04",19915,6,51],["Long","2021-01-05",19915,9,60],["Long","2021-01-06",19915,20,80],["Long","2021-01-07",19915,16,96],["Long","2021-01-08",19915,26,122],["Long","2021-01-09",19915,1,123],["Long","2021-01-10",19915,3,126],["Long","2021-01-11",19915,41,167],["Long","2021-01-12",19915,6,173],["Long","2021-01-13",19915,14,187],["Long","2021-01-14",19915,50,237],["Long","2021-01-15",19915,26,263],["Long","2021-01-16",19915,8,271],["Long","2021-01-17",19915,12,283],["Long","2021-01-18",19915,44,327],["Long","2021-01-19",19915,7,334],["Long","2021-01-20",19915,24,358],["Long","2021-01-21",19915,70,428],["Long","2021-01-22",19915,15,443],["Long","2021-01-23",19915,11,454],["Long","2021-01-24",19915,2,456],["Long","2021-01-25",19915,56,512],["Long","2021-01-26",19915,18,530],["Long","2021-01-27",19915,9,539],["Long","2021-01-28",19915,54,593],["Long","2021-01-29",19915,12,605],["Long","2021-01-30",19915,13,618],["Long","2021-01-31",19915,4,622],["Long","2021-02-01",19915,41,663],["Long","2021-02-02",19915,27,690],["Long","2021-02-03",19915,22,712],["Long","2021-02-04",19915,35,747],["Long","2021-02-05",19915,37,784],["Long","2021-02-06",19915,12,796],["Long","2021-02-07",19915,2,798],["Long","2021-02-08",19915,26,824],["Long","2021-02-09",19915,26,850],["Long","2021-02-10",19915,18,868],["Long","2021-02-11",19915,82,950],["Long","2021-02-12",19915,41,991],["Long","2021-02-13",19915,15,1006],["Long","2021-02-14",19915,8,1014],["Long","2021-02-15",19915,25,1039],["Long","2021-02-16",19915,22,1061],["Long","2021-02-17",19915,45,1106],["Long","2021-02-18",19915,127,1233],["Long","2021-02-19",19915,27,1260],["Long","2021-02-20",19915,17,1277],["Long","2021-02-21",19915,3,1280],["Long","2021-02-22",19915,39,1319],["Long","2021-02-23",19915,32,1351],["Long","2021-02-24",19915,18,1369],["Long","2021-02-25",19915,101,1470],["Long","2021-02-26",19915,13,1483],["Long","2021-02-27",19915,20,1503],["Long","2021-02-28",19915,7,1510],["Long","2021-03-01",19915,32,1542],["Long","2021-03-02",19915,31,1573],["Long","2021-03-03",19915,14,1587],["Long","2021-03-04",19915,82,1669],["Long","2021-03-05",19915,18,1687],["Long","2021-03-06",19915,8,1695],["Long","2021-03-07",19915,3,1698],["Long","2021-03-08",19915,29,1727],["Long","2021-03-09",19915,43,1770],["Long","2021-03-10",19915,35,1805],["Long","2021-03-11",19915,60,1865],["Long","2021-03-12",19915,40,1905],["Long","2021-03-13",19915,33,1938],["Long","2021-03-14",19915,7,1945],["Long","2021-03-15",19915,48,1993],["Long","2021-03-16",19915,47,2040],["Long","2021-03-17",19915,54,2094],["Long","2021-03-18",19915,67,2161],["Long","2021-03-19",19915,91,2252],["Long","2021-03-20",19915,32,2284],["Long","2021-03-21",19915,5,2289],["Long","2021-03-22",19915,69,2358],["Long","2021-03-23",19915,43,2401],["Long","2021-03-24",19915,41,2442],["Long","2021-03-25",19915,96,2538],["Long","2021-03-26",19915,35,2573],["Long","2021-03-27",19915,14,2587],["Long","2021-03-28",19915,13,2600],["Long","2021-03-29",19915,39,2639],["Long","2021-03-30",19915,63,2702],["Long","2021-03-31",19915,49,2751],["Long","2021-04-01",19915,90,2841],["Long","2021-04-02",19915,44,2885],["Long","2021-04-03",19915,13,2898],["Long","2021-04-04",19915,6,2904],["Long","2021-04-05",19915,40,2944],["Long","2021-04-06",19915,36,2980],["Long","2021-04-07",19915,46,3026],["Long","2021-04-08",19915,87,3113],["Long","2021-04-09",19915,39,3152],["Long","2021-04-10",19915,55,3207],["Long","2021-04-11",19915,8,3215],["Long","2021-04-12",19915,30,3245],["Long","2021-04-13",19915,50,3295],["Long","2021-04-14",19915,68,3363],["Long","2021-04-15",19915,165,3528],["Long","2021-04-16",19915,57,3585],["Long","2021-04-17",19915,14,3599],["Long","2021-04-18",19915,8,3607],["Long","2021-04-19",19915,31,3638],["Long","2021-04-20",19915,35,3673],["Long","2021-04-21",19915,33,3706],["Long","2021-04-22",19915,87,3793],["Long","2021-04-23",19915,43,3836],["Long","2021-04-24",19915,24,3860],["Long","2021-04-25",19915,6,3866],["Long","2021-04-26",19915,31,3897],["Long","2021-04-27",19915,48,3945],["Long","2021-04-28",19915,32,3977],["Long","2021-04-29",19915,84,4061],["Long","2021-04-30",19915,52,4113],["Long","2021-05-01",19915,21,4134],["Long","2021-05-02",19915,5,4139],["Long","2021-05-03",19915,27,4166],["Long","2021-05-04",19915,36,4202],["Long","2021-05-05",19915,29,4231],["Long","2021-05-06",19915,67,4298],["Long","2021-05-07",19915,31,4329],["Long","2021-05-08",19915,14,4343],["Long","2021-05-09",19915,7,4350],["Long","2021-05-10",19915,21,4371],["Long","2021-05-11",19915,26,4397],["Long","2021-05-12",19915,34,4431],["Long","2021-05-13",19915,105,4536],["Long","2021-05-14",19915,36,4572],["Long","2021-05-15",19915,25,4597],["Long","2021-05-16",19915,11,4608],["Long","2021-05-17",19915,24,4632],["Long","2021-05-18",19915,25,4657],["Long","2021-05-19",19915,37,4694],["Long","2021-05-20",19915,48,4742],["Long","2021-05-21",19915,28,4770],["Long","2021-05-22",19915,18,4788],["Long","2021-05-23",19915,6,4794],["Long","2021-05-24",19915,12,4806],["Long","2021-05-25",19915,22,4828],["Long","2021-05-26",19915,26,4854],["Long","2021-05-27",19915,30,4884],["Long","2021-05-28",19915,25,4909],["Long","2021-05-29",19915,12,4921],["Long","2021-05-30",19915,5,4926],["Long","2021-05-31",19915,5,4931],["Long","2021-06-01",19915,15,4946],["Long","2021-06-02",19915,22,4968],["Long","2021-06-03",19915,31,4999],["Long","2021-06-04",19915,27,5026],["Long","2021-06-05",19915,10,5036],["Long","2021-06-06",19915,12,5048],["Long","2021-06-07",19915,18,5066],["Long","2021-06-08",19915,22,5088],["Long","2021-06-09",19915,15,5103],["Long","2021-06-10",19915,29,5132],["Long","2021-06-11",19915,25,5157],["Long","2021-06-12",19915,23,5180],["Long","2021-06-13",19915,8,5188],["Long","2021-06-14",19915,16,5204],["Long","2021-06-15",19915,14,5218],["Long","2021-06-16",19915,15,5233],["Long","2021-06-17",19915,35,5268],["Long","2021-06-18",19915,20,5288],["Long","2021-06-19",19915,11,5299],["Long","2021-06-20",19915,6,5305],["Long","2021-06-21",19915,11,5316],["Long","2021-06-22",19915,17,5333],["Long","2021-06-23",19915,28,5361],["Long","2021-06-24",19915,19,5380],["Long","2021-06-25",19915,16,5396],["Long","2021-06-26",19915,10,5406],["Long","2021-06-27",19915,9,5415],["Long","2021-06-28",19915,16,5431],["Long","2021-06-29",19915,12,5443],["Long","2021-06-30",19915,14,5457],["Long","2021-07-01",19915,20,5477],["Long","2021-07-02",19915,17,5494],["Long","2021-07-03",19915,11,5505],["Long","2021-07-04",19915,3,5508],["Long","2021-07-05",19915,7,5515],["Long","2021-07-06",19915,8,5523],["Long","2021-07-07",19915,8,5531],["Long","2021-07-08",19915,17,5548],["Long","2021-07-09",19915,10,5558],["Long","2021-07-10",19915,17,5575],["Long","2021-07-12",19915,18,5593],["Long","2021-07-13",19915,6,5599],["Long","2021-07-14",19915,16,5615],["Long","2021-07-15",19915,14,5629],["Long","2021-07-16",19915,16,5645],["Long","2021-07-17",19915,11,5656],["Long","2021-07-18",19915,13,5669],["Long","2021-07-19",19915,12,5681],["Long","2021-07-20",19915,11,5692],["Long","2021-07-21",19915,25,5717],["Long","2021-07-22",19915,40,5757],["Long","2021-07-23",19915,41,5798],["Long","2021-07-24",19915,24,5822],["Long","2021-07-25",19915,8,5830],["Long","2021-07-26",19915,25,5855],["Long","2021-07-27",19915,21,5876],["Long","2021-07-28",19915,28,5904],["Long","2021-07-29",19915,29,5933],["Long","2021-07-30",19915,20,5953],["Long","2021-07-31",19915,17,5970],["Long","2021-08-01",19915,12,5982],["Long","2021-08-02",19915,24,6006],["Long","2021-08-03",19915,20,6026],["Long","2021-08-04",19915,18,6044],["Long","2021-08-05",19915,28,6072],["Long","2021-08-06",19915,33,6105],["Long","2021-08-07",19915,22,6127],["Long","2021-08-08",19915,11,6138],["Long","2021-08-09",19915,25,6163],["Long","2021-08-10",19915,30,6193],["Long","2021-08-11",19915,41,6234],["Long","2021-08-12",19915,39,6273],["Long","2021-08-13",19915,45,6318],["Long","2021-08-14",19915,41,6359],["Long","2021-08-15",19915,20,6379],["Long","2021-08-16",19915,34,6413],["Long","2021-08-17",19915,27,6440],["Long","2021-08-18",19915,29,6469],["Long","2021-08-19",19915,32,6501],["Long","2021-08-20",19915,39,6540],["Long","2021-08-21",19915,16,6556],["Long","2021-08-22",19915,12,6568],["Long","2021-08-23",19915,20,6588],["Long","2021-08-24",19915,20,6608],["Long","2021-08-25",19915,33,6641],["Long","2021-08-26",19915,49,6690],["Long","2021-08-27",19915,41,6731],["Long","2021-08-28",19915,19,6750],["Long","2021-08-29",19915,8,6758],["Long","2021-08-30",19915,25,6783],["Long","2021-08-31",19915,23,6806],["Long","2021-09-01",19915,26,6832],["Long","2021-09-02",19915,39,6871],["Long","2021-09-03",19915,42,6913],["Long","2021-09-04",19915,17,6930],["Long","2021-09-05",19915,12,6942],["Long","2021-09-06",19915,12,6954],["Long","2021-09-07",19915,34,6988],["Long","2021-09-08",19915,34,7022],["Long","2021-09-09",19915,44,7066],["Long","2021-09-10",19915,45,7111],["Long","2021-09-11",19915,35,7146],["Long","2021-09-12",19915,11,7157],["Long","2021-09-13",19915,30,7187],["Long","2021-09-14",19915,24,7211],["Long","2021-09-15",19915,25,7236],["Long","2021-09-16",19915,36,7272],["Long","2021-09-17",19915,31,7303],["Long","2021-09-18",19915,13,7316],["Long","2021-09-19",19915,5,7321],["Long","2021-09-20",19915,24,7345],["Long","2021-09-21",19915,16,7361],["Long","2021-09-22",19915,16,7377],["Long","2021-09-23",19915,32,7409],["Long","2021-09-24",19915,21,7430],["Long","2021-09-25",19915,12,7442],["Long","2021-09-26",19915,10,7452],["Long","2021-09-27",19915,13,7465],["Long","2021-09-28",19915,13,7478],["Long","2021-09-29",19915,14,7492],["Long","2021-09-30",19915,36,7528],["Long","2021-10-01",19915,12,7540],["Long","2021-10-02",19915,12,7552],["Long","2021-10-03",19915,5,7557],["Long","2021-10-04",19915,11,7568],["Long","2021-10-05",19915,17,7585],["Long","2021-10-06",19915,13,7598],["Long","2021-10-07",19915,22,7620],["Long","2021-10-08",19915,16,7636],["Long","2021-10-09",19915,6,7642],["Long","2021-10-10",19915,5,7647],["Long","2021-10-11",19915,16,7663],["Long","2021-10-12",19915,16,7679],["Long","2021-10-13",19915,12,7691],["Long","2021-10-14",19915,20,7711],["Long","2021-10-15",19915,15,7726],["Long","2021-10-16",19915,4,7730],["Long","2021-10-17",19915,3,7733],["Long","2021-10-18",19915,8,7741],["Long","2021-10-19",19915,7,7748],["Long","2021-10-20",19915,8,7756],["Long","2021-10-21",19915,14,7770],["Long","2021-10-22",19915,16,7786],["Long","2021-10-23",19915,14,7800],["Long","2021-10-24",19915,6,7806],["Long","2021-10-25",19915,13,7819],["Long","2021-10-26",19915,50,7869],["Long","2021-10-27",19915,20,7889],["Long","2021-10-28",19915,78,7967],["Long","2021-10-29",19915,19,7986],["Long","2021-10-30",19915,10,7996],["Long","2021-10-31",19915,8,8004],["Long","2021-11-01",19915,24,8028],["Long","2021-11-02",19915,30,8058],["Long","2021-11-03",19915,26,8084],["Long","2021-11-04",19915,72,8156],["Long","2021-11-05",19915,26,8182],["Long","2021-11-06",19915,10,8192],["Long","2021-11-07",19915,9,8201],["Long","2021-11-08",19915,16,8217],["Long","2021-11-09",19915,42,8259],["Long","2021-11-10",19915,19,8278],["Long","2021-11-11",19915,24,8302],["Long","2021-11-12",19915,23,8325],["Long","2021-11-13",19915,6,8331],["Long","2021-11-14",19915,5,8336],["Long","2021-11-15",19915,16,8352],["Long","2021-11-16",19915,34,8386],["Long","2021-11-17",19915,19,8405],["Long","2021-11-18",19915,36,8441],["Long","2021-11-19",19915,29,8470],["Long","2021-11-20",19915,18,8488],["Long","2021-11-21",19915,8,8496],["Long","2021-11-22",19915,22,8518],["Long","2021-11-23",19915,38,8556],["Long","2021-11-24",19915,8,8564],["Long","2021-11-26",19915,12,8576],["Long","2021-11-27",19915,9,8585],["Long","2021-11-28",19915,6,8591],["Long","2021-11-29",19915,22,8613],["Long","2021-11-30",19915,47,8660],["Long","2021-12-01",19915,37,8697],["Long","2021-12-02",19915,28,8725],["Long","2021-12-03",19915,26,8751],["Long","2021-12-04",19915,22,8773],["Long","2021-12-05",19915,4,8777],["Long","2021-12-06",19915,17,8794],["Long","2021-12-07",19915,25,8819],["Long","2021-12-08",19915,19,8838],["Long","2021-12-09",19915,31,8869],["Long","2021-12-10",19915,30,8899],["Long","2021-12-11",19915,10,8909],["Long","2021-12-12",19915,12,8921],["Long","2021-12-13",19915,16,8937],["Long","2021-12-14",19915,24,8961],["Long","2021-12-15",19915,21,8982],["Long","2021-12-16",19915,27,9009],["Long","2021-12-17",19915,24,9033],["Long","2021-12-18",19915,13,9046],["Long","2021-12-19",19915,2,9048],["Long","2021-12-20",19915,9,9057],["Long","2021-12-21",19915,22,9079],["Long","2021-12-22",19915,6,9085],["Long","2021-12-23",19915,17,9102],["Long","2021-12-24",19915,3,9105],["Long","2021-12-26",19915,3,9108],["Long","2021-12-27",19915,18,9126],["Long","2021-12-28",19915,28,9154],["Long","2021-12-29",19915,34,9188],["Long","2021-12-30",19915,40,9228],["Long","2021-12-31",19915,12,9240],["Long","2022-01-01",19915,2,9242],["Long","2022-01-02",19915,6,9248],["Long","2022-01-03",19915,9,9257],["Lowndes","2020-12-16",117878,2,2],["Lowndes","2020-12-17",117878,8,10],["Lowndes","2020-12-18",117878,38,48],["Lowndes","2020-12-19",117878,4,52],["Lowndes","2020-12-20",117878,2,54],["Lowndes","2020-12-21",117878,87,141],["Lowndes","2020-12-22",117878,185,326],["Lowndes","2020-12-23",117878,142,468],["Lowndes","2020-12-24",117878,50,518],["Lowndes","2020-12-25",117878,2,520],["Lowndes","2020-12-26",117878,19,539],["Lowndes","2020-12-27",117878,1,540],["Lowndes","2020-12-28",117878,177,717],["Lowndes","2020-12-29",117878,138,855],["Lowndes","2020-12-30",117878,166,1021],["Lowndes","2020-12-31",117878,145,1166],["Lowndes","2021-01-01",117878,47,1213],["Lowndes","2021-01-02",117878,21,1234],["Lowndes","2021-01-03",117878,7,1241],["Lowndes","2021-01-04",117878,180,1421],["Lowndes","2021-01-05",117878,177,1598],["Lowndes","2021-01-06",117878,177,1775],["Lowndes","2021-01-07",117878,146,1921],["Lowndes","2021-01-08",117878,145,2066],["Lowndes","2021-01-09",117878,28,2094],["Lowndes","2021-01-10",117878,13,2107],["Lowndes","2021-01-11",117878,467,2574],["Lowndes","2021-01-12",117878,437,3011],["Lowndes","2021-01-13",117878,675,3686],["Lowndes","2021-01-14",117878,659,4345],["Lowndes","2021-01-15",117878,583,4928],["Lowndes","2021-01-16",117878,54,4982],["Lowndes","2021-01-17",117878,9,4991],["Lowndes","2021-01-18",117878,604,5595],["Lowndes","2021-01-19",117878,666,6261],["Lowndes","2021-01-20",117878,841,7102],["Lowndes","2021-01-21",117878,732,7834],["Lowndes","2021-01-22",117878,449,8283],["Lowndes","2021-01-23",117878,5,8288],["Lowndes","2021-01-24",117878,10,8298],["Lowndes","2021-01-25",117878,484,8782],["Lowndes","2021-01-26",117878,632,9414],["Lowndes","2021-01-27",117878,422,9836],["Lowndes","2021-01-28",117878,353,10189],["Lowndes","2021-01-29",117878,511,10700],["Lowndes","2021-01-30",117878,38,10738],["Lowndes","2021-01-31",117878,6,10744],["Lowndes","2021-02-01",117878,494,11238],["Lowndes","2021-02-02",117878,456,11694],["Lowndes","2021-02-03",117878,489,12183],["Lowndes","2021-02-04",117878,599,12782],["Lowndes","2021-02-05",117878,412,13194],["Lowndes","2021-02-06",117878,14,13208],["Lowndes","2021-02-07",117878,5,13213],["Lowndes","2021-02-08",117878,537,13750],["Lowndes","2021-02-09",117878,599,14349],["Lowndes","2021-02-10",117878,713,15062],["Lowndes","2021-02-11",117878,716,15778],["Lowndes","2021-02-12",117878,851,16629],["Lowndes","2021-02-13",117878,70,16699],["Lowndes","2021-02-14",117878,29,16728],["Lowndes","2021-02-15",117878,688,17416],["Lowndes","2021-02-16",117878,777,18193],["Lowndes","2021-02-17",117878,941,19134],["Lowndes","2021-02-18",117878,720,19854],["Lowndes","2021-02-19",117878,751,20605],["Lowndes","2021-02-20",117878,21,20626],["Lowndes","2021-02-21",117878,11,20637],["Lowndes","2021-02-22",117878,490,21127],["Lowndes","2021-02-23",117878,481,21608],["Lowndes","2021-02-24",117878,564,22172],["Lowndes","2021-02-25",117878,517,22689],["Lowndes","2021-02-26",117878,662,23351],["Lowndes","2021-02-27",117878,22,23373],["Lowndes","2021-02-28",117878,20,23393],["Lowndes","2021-03-01",117878,607,24000],["Lowndes","2021-03-02",117878,497,24497],["Lowndes","2021-03-03",117878,482,24979],["Lowndes","2021-03-04",117878,419,25398],["Lowndes","2021-03-05",117878,539,25937],["Lowndes","2021-03-06",117878,35,25972],["Lowndes","2021-03-07",117878,23,25995],["Lowndes","2021-03-08",117878,514,26509],["Lowndes","2021-03-09",117878,460,26969],["Lowndes","2021-03-10",117878,496,27465],["Lowndes","2021-03-11",117878,429,27894],["Lowndes","2021-03-12",117878,809,28703],["Lowndes","2021-03-13",117878,230,28933],["Lowndes","2021-03-14",117878,52,28985],["Lowndes","2021-03-15",117878,334,29319],["Lowndes","2021-03-16",117878,665,29984],["Lowndes","2021-03-17",117878,831,30815],["Lowndes","2021-03-18",117878,438,31253],["Lowndes","2021-03-19",117878,854,32107],["Lowndes","2021-03-20",117878,307,32414],["Lowndes","2021-03-21",117878,29,32443],["Lowndes","2021-03-22",117878,750,33193],["Lowndes","2021-03-23",117878,505,33698],["Lowndes","2021-03-24",117878,670,34368],["Lowndes","2021-03-25",117878,757,35125],["Lowndes","2021-03-26",117878,713,35838],["Lowndes","2021-03-27",117878,79,35917],["Lowndes","2021-03-28",117878,62,35979],["Lowndes","2021-03-29",117878,782,36761],["Lowndes","2021-03-30",117878,1053,37814],["Lowndes","2021-03-31",117878,841,38655],["Lowndes","2021-04-01",117878,685,39340],["Lowndes","2021-04-02",117878,842,40182],["Lowndes","2021-04-03",117878,398,40580],["Lowndes","2021-04-04",117878,44,40624],["Lowndes","2021-04-05",117878,966,41590],["Lowndes","2021-04-06",117878,770,42360],["Lowndes","2021-04-07",117878,835,43195],["Lowndes","2021-04-08",117878,529,43724],["Lowndes","2021-04-09",117878,738,44462],["Lowndes","2021-04-10",117878,180,44642],["Lowndes","2021-04-11",117878,64,44706],["Lowndes","2021-04-12",117878,675,45381],["Lowndes","2021-04-13",117878,506,45887],["Lowndes","2021-04-14",117878,522,46409],["Lowndes","2021-04-15",117878,561,46970],["Lowndes","2021-04-16",117878,606,47576],["Lowndes","2021-04-17",117878,38,47614],["Lowndes","2021-04-18",117878,41,47655],["Lowndes","2021-04-19",117878,605,48260],["Lowndes","2021-04-20",117878,496,48756],["Lowndes","2021-04-21",117878,560,49316],["Lowndes","2021-04-22",117878,549,49865],["Lowndes","2021-04-23",117878,788,50653],["Lowndes","2021-04-24",117878,111,50764],["Lowndes","2021-04-25",117878,56,50820],["Lowndes","2021-04-26",117878,424,51244],["Lowndes","2021-04-27",117878,381,51625],["Lowndes","2021-04-28",117878,443,52068],["Lowndes","2021-04-29",117878,384,52452],["Lowndes","2021-04-30",117878,467,52919],["Lowndes","2021-05-01",117878,85,53004],["Lowndes","2021-05-02",117878,38,53042],["Lowndes","2021-05-03",117878,317,53359],["Lowndes","2021-05-04",117878,364,53723],["Lowndes","2021-05-05",117878,361,54084],["Lowndes","2021-05-06",117878,356,54440],["Lowndes","2021-05-07",117878,390,54830],["Lowndes","2021-05-08",117878,101,54931],["Lowndes","2021-05-09",117878,26,54957],["Lowndes","2021-05-10",117878,282,55239],["Lowndes","2021-05-11",117878,251,55490],["Lowndes","2021-05-12",117878,237,55727],["Lowndes","2021-05-13",117878,272,55999],["Lowndes","2021-05-14",117878,327,56326],["Lowndes","2021-05-15",117878,119,56445],["Lowndes","2021-05-16",117878,62,56507],["Lowndes","2021-05-17",117878,342,56849],["Lowndes","2021-05-18",117878,302,57151],["Lowndes","2021-05-19",117878,279,57430],["Lowndes","2021-05-20",117878,298,57728],["Lowndes","2021-05-21",117878,362,58090],["Lowndes","2021-05-22",117878,80,58170],["Lowndes","2021-05-23",117878,45,58215],["Lowndes","2021-05-24",117878,211,58426],["Lowndes","2021-05-25",117878,207,58633],["Lowndes","2021-05-26",117878,245,58878],["Lowndes","2021-05-27",117878,215,59093],["Lowndes","2021-05-28",117878,233,59326],["Lowndes","2021-05-29",117878,44,59370],["Lowndes","2021-05-30",117878,25,59395],["Lowndes","2021-05-31",117878,12,59407],["Lowndes","2021-06-01",117878,258,59665],["Lowndes","2021-06-02",117878,206,59871],["Lowndes","2021-06-03",117878,327,60198],["Lowndes","2021-06-04",117878,220,60418],["Lowndes","2021-06-05",117878,89,60507],["Lowndes","2021-06-06",117878,57,60564],["Lowndes","2021-06-07",117878,222,60786],["Lowndes","2021-06-08",117878,178,60964],["Lowndes","2021-06-09",117878,137,61101],["Lowndes","2021-06-10",117878,211,61312],["Lowndes","2021-06-11",117878,189,61501],["Lowndes","2021-06-12",117878,108,61609],["Lowndes","2021-06-13",117878,43,61652],["Lowndes","2021-06-14",117878,169,61821],["Lowndes","2021-06-15",117878,179,62000],["Lowndes","2021-06-16",117878,163,62163],["Lowndes","2021-06-17",117878,170,62333],["Lowndes","2021-06-18",117878,164,62497],["Lowndes","2021-06-19",117878,33,62530],["Lowndes","2021-06-20",117878,25,62555],["Lowndes","2021-06-21",117878,116,62671],["Lowndes","2021-06-22",117878,130,62801],["Lowndes","2021-06-23",117878,142,62943],["Lowndes","2021-06-24",117878,141,63084],["Lowndes","2021-06-25",117878,184,63268],["Lowndes","2021-06-26",117878,51,63319],["Lowndes","2021-06-27",117878,39,63358],["Lowndes","2021-06-28",117878,164,63522],["Lowndes","2021-06-29",117878,135,63657],["Lowndes","2021-06-30",117878,117,63774],["Lowndes","2021-07-01",117878,134,63908],["Lowndes","2021-07-02",117878,107,64015],["Lowndes","2021-07-03",117878,39,64054],["Lowndes","2021-07-04",117878,8,64062],["Lowndes","2021-07-05",117878,71,64133],["Lowndes","2021-07-06",117878,155,64288],["Lowndes","2021-07-07",117878,81,64369],["Lowndes","2021-07-08",117878,167,64536],["Lowndes","2021-07-09",117878,157,64693],["Lowndes","2021-07-10",117878,47,64740],["Lowndes","2021-07-11",117878,23,64763],["Lowndes","2021-07-12",117878,138,64901],["Lowndes","2021-07-13",117878,107,65008],["Lowndes","2021-07-14",117878,115,65123],["Lowndes","2021-07-15",117878,109,65232],["Lowndes","2021-07-16",117878,156,65388],["Lowndes","2021-07-17",117878,59,65447],["Lowndes","2021-07-18",117878,29,65476],["Lowndes","2021-07-19",117878,158,65634],["Lowndes","2021-07-20",117878,144,65778],["Lowndes","2021-07-21",117878,186,65964],["Lowndes","2021-07-22",117878,195,66159],["Lowndes","2021-07-23",117878,239,66398],["Lowndes","2021-07-24",117878,90,66488],["Lowndes","2021-07-25",117878,56,66544],["Lowndes","2021-07-26",117878,247,66791],["Lowndes","2021-07-27",117878,277,67068],["Lowndes","2021-07-28",117878,296,67364],["Lowndes","2021-07-29",117878,294,67658],["Lowndes","2021-07-30",117878,353,68011],["Lowndes","2021-07-31",117878,127,68138],["Lowndes","2021-08-01",117878,99,68237],["Lowndes","2021-08-02",117878,364,68601],["Lowndes","2021-08-03",117878,325,68926],["Lowndes","2021-08-04",117878,276,69202],["Lowndes","2021-08-05",117878,288,69490],["Lowndes","2021-08-06",117878,369,69859],["Lowndes","2021-08-07",117878,336,70195],["Lowndes","2021-08-08",117878,94,70289],["Lowndes","2021-08-09",117878,306,70595],["Lowndes","2021-08-10",117878,264,70859],["Lowndes","2021-08-11",117878,320,71179],["Lowndes","2021-08-12",117878,382,71561],["Lowndes","2021-08-13",117878,456,72017],["Lowndes","2021-08-14",117878,227,72244],["Lowndes","2021-08-15",117878,110,72354],["Lowndes","2021-08-16",117878,349,72703],["Lowndes","2021-08-17",117878,316,73019],["Lowndes","2021-08-18",117878,364,73383],["Lowndes","2021-08-19",117878,380,73763],["Lowndes","2021-08-20",117878,571,74334],["Lowndes","2021-08-21",117878,146,74480],["Lowndes","2021-08-22",117878,90,74570],["Lowndes","2021-08-23",117878,417,74987],["Lowndes","2021-08-24",117878,444,75431],["Lowndes","2021-08-25",117878,411,75842],["Lowndes","2021-08-26",117878,472,76314],["Lowndes","2021-08-27",117878,570,76884],["Lowndes","2021-08-28",117878,769,77653],["Lowndes","2021-08-29",117878,80,77733],["Lowndes","2021-08-30",117878,435,78168],["Lowndes","2021-08-31",117878,408,78576],["Lowndes","2021-09-01",117878,311,78887],["Lowndes","2021-09-02",117878,358,79245],["Lowndes","2021-09-03",117878,508,79753],["Lowndes","2021-09-04",117878,143,79896],["Lowndes","2021-09-05",117878,77,79973],["Lowndes","2021-09-06",117878,29,80002],["Lowndes","2021-09-07",117878,361,80363],["Lowndes","2021-09-08",117878,280,80643],["Lowndes","2021-09-09",117878,363,81006],["Lowndes","2021-09-10",117878,443,81449],["Lowndes","2021-09-11",117878,101,81550],["Lowndes","2021-09-12",117878,62,81612],["Lowndes","2021-09-13",117878,310,81922],["Lowndes","2021-09-14",117878,295,82217],["Lowndes","2021-09-15",117878,264,82481],["Lowndes","2021-09-16",117878,265,82746],["Lowndes","2021-09-17",117878,333,83079],["Lowndes","2021-09-18",117878,322,83401],["Lowndes","2021-09-19",117878,52,83453],["Lowndes","2021-09-20",117878,262,83715],["Lowndes","2021-09-21",117878,240,83955],["Lowndes","2021-09-22",117878,210,84165],["Lowndes","2021-09-23",117878,145,84310],["Lowndes","2021-09-24",117878,297,84607],["Lowndes","2021-09-25",117878,75,84682],["Lowndes","2021-09-26",117878,32,84714],["Lowndes","2021-09-27",117878,178,84892],["Lowndes","2021-09-28",117878,176,85068],["Lowndes","2021-09-29",117878,156,85224],["Lowndes","2021-09-30",117878,228,85452],["Lowndes","2021-10-01",117878,193,85645],["Lowndes","2021-10-02",117878,60,85705],["Lowndes","2021-10-03",117878,25,85730],["Lowndes","2021-10-04",117878,160,85890],["Lowndes","2021-10-05",117878,178,86068],["Lowndes","2021-10-06",117878,166,86234],["Lowndes","2021-10-07",117878,179,86413],["Lowndes","2021-10-08",117878,191,86604],["Lowndes","2021-10-09",117878,58,86662],["Lowndes","2021-10-10",117878,30,86692],["Lowndes","2021-10-11",117878,132,86824],["Lowndes","2021-10-12",117878,158,86982],["Lowndes","2021-10-13",117878,142,87124],["Lowndes","2021-10-14",117878,142,87266],["Lowndes","2021-10-15",117878,164,87430],["Lowndes","2021-10-16",117878,36,87466],["Lowndes","2021-10-17",117878,11,87477],["Lowndes","2021-10-18",117878,138,87615],["Lowndes","2021-10-19",117878,147,87762],["Lowndes","2021-10-20",117878,120,87882],["Lowndes","2021-10-21",117878,135,88017],["Lowndes","2021-10-22",117878,207,88224],["Lowndes","2021-10-23",117878,66,88290],["Lowndes","2021-10-24",117878,39,88329],["Lowndes","2021-10-25",117878,239,88568],["Lowndes","2021-10-26",117878,226,88794],["Lowndes","2021-10-27",117878,211,89005],["Lowndes","2021-10-28",117878,327,89332],["Lowndes","2021-10-29",117878,247,89579],["Lowndes","2021-10-30",117878,48,89627],["Lowndes","2021-10-31",117878,31,89658],["Lowndes","2021-11-01",117878,223,89881],["Lowndes","2021-11-02",117878,271,90152],["Lowndes","2021-11-03",117878,255,90407],["Lowndes","2021-11-04",117878,245,90652],["Lowndes","2021-11-05",117878,239,90891],["Lowndes","2021-11-06",117878,76,90967],["Lowndes","2021-11-07",117878,57,91024],["Lowndes","2021-11-08",117878,227,91251],["Lowndes","2021-11-09",117878,220,91471],["Lowndes","2021-11-10",117878,188,91659],["Lowndes","2021-11-11",117878,212,91871],["Lowndes","2021-11-12",117878,292,92163],["Lowndes","2021-11-13",117878,63,92226],["Lowndes","2021-11-14",117878,31,92257],["Lowndes","2021-11-15",117878,211,92468],["Lowndes","2021-11-16",117878,196,92664],["Lowndes","2021-11-17",117878,223,92887],["Lowndes","2021-11-18",117878,227,93114],["Lowndes","2021-11-19",117878,382,93496],["Lowndes","2021-11-20",117878,115,93611],["Lowndes","2021-11-21",117878,43,93654],["Lowndes","2021-11-22",117878,201,93855],["Lowndes","2021-11-23",117878,222,94077],["Lowndes","2021-11-24",117878,168,94245],["Lowndes","2021-11-26",117878,92,94337],["Lowndes","2021-11-27",117878,89,94426],["Lowndes","2021-11-28",117878,56,94482],["Lowndes","2021-11-29",117878,287,94769],["Lowndes","2021-11-30",117878,338,95107],["Lowndes","2021-12-01",117878,359,95466],["Lowndes","2021-12-02",117878,319,95785],["Lowndes","2021-12-03",117878,448,96233],["Lowndes","2021-12-04",117878,124,96357],["Lowndes","2021-12-05",117878,54,96411],["Lowndes","2021-12-06",117878,267,96678],["Lowndes","2021-12-07",117878,183,96861],["Lowndes","2021-12-08",117878,292,97153],["Lowndes","2021-12-09",117878,209,97362],["Lowndes","2021-12-10",117878,298,97660],["Lowndes","2021-12-11",117878,77,97737],["Lowndes","2021-12-12",117878,45,97782],["Lowndes","2021-12-13",117878,166,97948],["Lowndes","2021-12-14",117878,173,98121],["Lowndes","2021-12-15",117878,219,98340],["Lowndes","2021-12-16",117878,203,98543],["Lowndes","2021-12-17",117878,239,98782],["Lowndes","2021-12-18",117878,68,98850],["Lowndes","2021-12-19",117878,53,98903],["Lowndes","2021-12-20",117878,274,99177],["Lowndes","2021-12-21",117878,261,99438],["Lowndes","2021-12-22",117878,326,99764],["Lowndes","2021-12-23",117878,201,99965],["Lowndes","2021-12-24",117878,55,100020],["Lowndes","2021-12-26",117878,39,100059],["Lowndes","2021-12-27",117878,286,100345],["Lowndes","2021-12-28",117878,260,100605],["Lowndes","2021-12-29",117878,343,100948],["Lowndes","2021-12-30",117878,246,101194],["Lowndes","2021-12-31",117878,101,101295],["Lowndes","2022-01-01",117878,17,101312],["Lowndes","2022-01-02",117878,39,101351],["Lowndes","2022-01-03",117878,172,101523],["Lumpkin","2020-12-15",33802,1,1],["Lumpkin","2020-12-17",33802,2,3],["Lumpkin","2020-12-18",33802,6,9],["Lumpkin","2020-12-19",33802,7,16],["Lumpkin","2020-12-20",33802,7,23],["Lumpkin","2020-12-21",33802,15,38],["Lumpkin","2020-12-22",33802,13,51],["Lumpkin","2020-12-23",33802,37,88],["Lumpkin","2020-12-24",33802,5,93],["Lumpkin","2020-12-26",33802,6,99],["Lumpkin","2020-12-27",33802,6,105],["Lumpkin","2020-12-28",33802,38,143],["Lumpkin","2020-12-29",33802,47,190],["Lumpkin","2020-12-30",33802,20,210],["Lumpkin","2020-12-31",33802,28,238],["Lumpkin","2021-01-01",33802,19,257],["Lumpkin","2021-01-02",33802,1,258],["Lumpkin","2021-01-03",33802,4,262],["Lumpkin","2021-01-04",33802,28,290],["Lumpkin","2021-01-05",33802,38,328],["Lumpkin","2021-01-06",33802,31,359],["Lumpkin","2021-01-07",33802,47,406],["Lumpkin","2021-01-08",33802,35,441],["Lumpkin","2021-01-09",33802,9,450],["Lumpkin","2021-01-10",33802,30,480],["Lumpkin","2021-01-11",33802,93,573],["Lumpkin","2021-01-12",33802,51,624],["Lumpkin","2021-01-13",33802,128,752],["Lumpkin","2021-01-14",33802,116,868],["Lumpkin","2021-01-15",33802,48,916],["Lumpkin","2021-01-16",33802,48,964],["Lumpkin","2021-01-17",33802,21,985],["Lumpkin","2021-01-18",33802,186,1171],["Lumpkin","2021-01-19",33802,84,1255],["Lumpkin","2021-01-20",33802,173,1428],["Lumpkin","2021-01-21",33802,195,1623],["Lumpkin","2021-01-22",33802,71,1694],["Lumpkin","2021-01-23",33802,47,1741],["Lumpkin","2021-01-24",33802,5,1746],["Lumpkin","2021-01-25",33802,156,1902],["Lumpkin","2021-01-26",33802,87,1989],["Lumpkin","2021-01-27",33802,194,2183],["Lumpkin","2021-01-28",33802,136,2319],["Lumpkin","2021-01-29",33802,99,2418],["Lumpkin","2021-01-30",33802,489,2907],["Lumpkin","2021-01-31",33802,62,2969],["Lumpkin","2021-02-01",33802,138,3107],["Lumpkin","2021-02-02",33802,80,3187],["Lumpkin","2021-02-03",33802,166,3353],["Lumpkin","2021-02-04",33802,167,3520],["Lumpkin","2021-02-05",33802,55,3575],["Lumpkin","2021-02-06",33802,27,3602],["Lumpkin","2021-02-07",33802,33,3635],["Lumpkin","2021-02-08",33802,142,3777],["Lumpkin","2021-02-09",33802,133,3910],["Lumpkin","2021-02-10",33802,168,4078],["Lumpkin","2021-02-11",33802,204,4282],["Lumpkin","2021-02-12",33802,74,4356],["Lumpkin","2021-02-13",33802,61,4417],["Lumpkin","2021-02-14",33802,11,4428],["Lumpkin","2021-02-15",33802,179,4607],["Lumpkin","2021-02-16",33802,97,4704],["Lumpkin","2021-02-17",33802,152,4856],["Lumpkin","2021-02-18",33802,203,5059],["Lumpkin","2021-02-19",33802,62,5121],["Lumpkin","2021-02-20",33802,39,5160],["Lumpkin","2021-02-21",33802,42,5202],["Lumpkin","2021-02-22",33802,62,5264],["Lumpkin","2021-02-23",33802,206,5470],["Lumpkin","2021-02-24",33802,184,5654],["Lumpkin","2021-02-25",33802,213,5867],["Lumpkin","2021-02-26",33802,120,5987],["Lumpkin","2021-02-27",33802,468,6455],["Lumpkin","2021-02-28",33802,54,6509],["Lumpkin","2021-03-01",33802,211,6720],["Lumpkin","2021-03-02",33802,174,6894],["Lumpkin","2021-03-03",33802,162,7056],["Lumpkin","2021-03-04",33802,206,7262],["Lumpkin","2021-03-05",33802,87,7349],["Lumpkin","2021-03-06",33802,32,7381],["Lumpkin","2021-03-07",33802,18,7399],["Lumpkin","2021-03-08",33802,139,7538],["Lumpkin","2021-03-09",33802,140,7678],["Lumpkin","2021-03-10",33802,209,7887],["Lumpkin","2021-03-11",33802,241,8128],["Lumpkin","2021-03-12",33802,275,8403],["Lumpkin","2021-03-13",33802,72,8475],["Lumpkin","2021-03-14",33802,53,8528],["Lumpkin","2021-03-15",33802,268,8796],["Lumpkin","2021-03-16",33802,225,9021],["Lumpkin","2021-03-17",33802,226,9247],["Lumpkin","2021-03-18",33802,238,9485],["Lumpkin","2021-03-19",33802,150,9635],["Lumpkin","2021-03-20",33802,35,9670],["Lumpkin","2021-03-21",33802,60,9730],["Lumpkin","2021-03-22",33802,143,9873],["Lumpkin","2021-03-23",33802,181,10054],["Lumpkin","2021-03-24",33802,162,10216],["Lumpkin","2021-03-25",33802,193,10409],["Lumpkin","2021-03-26",33802,135,10544],["Lumpkin","2021-03-27",33802,90,10634],["Lumpkin","2021-03-28",33802,46,10680],["Lumpkin","2021-03-29",33802,193,10873],["Lumpkin","2021-03-30",33802,232,11105],["Lumpkin","2021-03-31",33802,234,11339],["Lumpkin","2021-04-01",33802,295,11634],["Lumpkin","2021-04-02",33802,92,11726],["Lumpkin","2021-04-03",33802,37,11763],["Lumpkin","2021-04-04",33802,40,11803],["Lumpkin","2021-04-05",33802,186,11989],["Lumpkin","2021-04-06",33802,204,12193],["Lumpkin","2021-04-07",33802,195,12388],["Lumpkin","2021-04-08",33802,264,12652],["Lumpkin","2021-04-09",33802,139,12791],["Lumpkin","2021-04-10",33802,27,12818],["Lumpkin","2021-04-11",33802,47,12865],["Lumpkin","2021-04-12",33802,248,13113],["Lumpkin","2021-04-13",33802,218,13331],["Lumpkin","2021-04-14",33802,198,13529],["Lumpkin","2021-04-15",33802,236,13765],["Lumpkin","2021-04-16",33802,133,13898],["Lumpkin","2021-04-17",33802,110,14008],["Lumpkin","2021-04-18",33802,24,14032],["Lumpkin","2021-04-19",33802,189,14221],["Lumpkin","2021-04-20",33802,167,14388],["Lumpkin","2021-04-21",33802,203,14591],["Lumpkin","2021-04-22",33802,190,14781],["Lumpkin","2021-04-23",33802,136,14917],["Lumpkin","2021-04-24",33802,56,14973],["Lumpkin","2021-04-25",33802,20,14993],["Lumpkin","2021-04-26",33802,150,15143],["Lumpkin","2021-04-27",33802,142,15285],["Lumpkin","2021-04-28",33802,194,15479],["Lumpkin","2021-04-29",33802,189,15668],["Lumpkin","2021-04-30",33802,92,15760],["Lumpkin","2021-05-01",33802,56,15816],["Lumpkin","2021-05-02",33802,22,15838],["Lumpkin","2021-05-03",33802,94,15932],["Lumpkin","2021-05-04",33802,157,16089],["Lumpkin","2021-05-05",33802,124,16213],["Lumpkin","2021-05-06",33802,130,16343],["Lumpkin","2021-05-07",33802,108,16451],["Lumpkin","2021-05-08",33802,17,16468],["Lumpkin","2021-05-09",33802,9,16477],["Lumpkin","2021-05-10",33802,77,16554],["Lumpkin","2021-05-11",33802,87,16641],["Lumpkin","2021-05-12",33802,91,16732],["Lumpkin","2021-05-13",33802,102,16834],["Lumpkin","2021-05-14",33802,77,16911],["Lumpkin","2021-05-15",33802,62,16973],["Lumpkin","2021-05-16",33802,39,17012],["Lumpkin","2021-05-17",33802,71,17083],["Lumpkin","2021-05-18",33802,66,17149],["Lumpkin","2021-05-19",33802,84,17233],["Lumpkin","2021-05-20",33802,84,17317],["Lumpkin","2021-05-21",33802,52,17369],["Lumpkin","2021-05-22",33802,28,17397],["Lumpkin","2021-05-23",33802,29,17426],["Lumpkin","2021-05-24",33802,66,17492],["Lumpkin","2021-05-25",33802,107,17599],["Lumpkin","2021-05-26",33802,70,17669],["Lumpkin","2021-05-27",33802,61,17730],["Lumpkin","2021-05-28",33802,54,17784],["Lumpkin","2021-05-29",33802,25,17809],["Lumpkin","2021-05-30",33802,14,17823],["Lumpkin","2021-05-31",33802,10,17833],["Lumpkin","2021-06-01",33802,59,17892],["Lumpkin","2021-06-02",33802,46,17938],["Lumpkin","2021-06-03",33802,70,18008],["Lumpkin","2021-06-04",33802,37,18045],["Lumpkin","2021-06-05",33802,29,18074],["Lumpkin","2021-06-06",33802,18,18092],["Lumpkin","2021-06-07",33802,67,18159],["Lumpkin","2021-06-08",33802,38,18197],["Lumpkin","2021-06-09",33802,63,18260],["Lumpkin","2021-06-10",33802,43,18303],["Lumpkin","2021-06-11",33802,56,18359],["Lumpkin","2021-06-12",33802,16,18375],["Lumpkin","2021-06-13",33802,22,18397],["Lumpkin","2021-06-14",33802,48,18445],["Lumpkin","2021-06-15",33802,33,18478],["Lumpkin","2021-06-16",33802,66,18544],["Lumpkin","2021-06-17",33802,45,18589],["Lumpkin","2021-06-18",33802,31,18620],["Lumpkin","2021-06-19",33802,23,18643],["Lumpkin","2021-06-20",33802,18,18661],["Lumpkin","2021-06-21",33802,31,18692],["Lumpkin","2021-06-22",33802,24,18716],["Lumpkin","2021-06-23",33802,28,18744],["Lumpkin","2021-06-24",33802,38,18782],["Lumpkin","2021-06-25",33802,32,18814],["Lumpkin","2021-06-26",33802,20,18834],["Lumpkin","2021-06-27",33802,5,18839],["Lumpkin","2021-06-28",33802,17,18856],["Lumpkin","2021-06-29",33802,33,18889],["Lumpkin","2021-06-30",33802,33,18922],["Lumpkin","2021-07-01",33802,26,18948],["Lumpkin","2021-07-02",33802,22,18970],["Lumpkin","2021-07-03",33802,17,18987],["Lumpkin","2021-07-05",33802,15,19002],["Lumpkin","2021-07-06",33802,24,19026],["Lumpkin","2021-07-07",33802,26,19052],["Lumpkin","2021-07-08",33802,34,19086],["Lumpkin","2021-07-09",33802,22,19108],["Lumpkin","2021-07-10",33802,16,19124],["Lumpkin","2021-07-11",33802,12,19136],["Lumpkin","2021-07-12",33802,27,19163],["Lumpkin","2021-07-13",33802,12,19175],["Lumpkin","2021-07-14",33802,29,19204],["Lumpkin","2021-07-15",33802,28,19232],["Lumpkin","2021-07-16",33802,36,19268],["Lumpkin","2021-07-17",33802,20,19288],["Lumpkin","2021-07-18",33802,9,19297],["Lumpkin","2021-07-19",33802,43,19340],["Lumpkin","2021-07-20",33802,35,19375],["Lumpkin","2021-07-21",33802,36,19411],["Lumpkin","2021-07-22",33802,39,19450],["Lumpkin","2021-07-23",33802,38,19488],["Lumpkin","2021-07-24",33802,24,19512],["Lumpkin","2021-07-25",33802,11,19523],["Lumpkin","2021-07-26",33802,38,19561],["Lumpkin","2021-07-27",33802,34,19595],["Lumpkin","2021-07-28",33802,56,19651],["Lumpkin","2021-07-29",33802,65,19716],["Lumpkin","2021-07-30",33802,48,19764],["Lumpkin","2021-07-31",33802,20,19784],["Lumpkin","2021-08-01",33802,22,19806],["Lumpkin","2021-08-02",33802,46,19852],["Lumpkin","2021-08-03",33802,39,19891],["Lumpkin","2021-08-04",33802,57,19948],["Lumpkin","2021-08-05",33802,77,20025],["Lumpkin","2021-08-06",33802,61,20086],["Lumpkin","2021-08-07",33802,42,20128],["Lumpkin","2021-08-08",33802,26,20154],["Lumpkin","2021-08-09",33802,58,20212],["Lumpkin","2021-08-10",33802,57,20269],["Lumpkin","2021-08-11",33802,58,20327],["Lumpkin","2021-08-12",33802,71,20398],["Lumpkin","2021-08-13",33802,54,20452],["Lumpkin","2021-08-14",33802,42,20494],["Lumpkin","2021-08-15",33802,41,20535],["Lumpkin","2021-08-16",33802,66,20601],["Lumpkin","2021-08-17",33802,64,20665],["Lumpkin","2021-08-18",33802,93,20758],["Lumpkin","2021-08-19",33802,58,20816],["Lumpkin","2021-08-20",33802,84,20900],["Lumpkin","2021-08-21",33802,43,20943],["Lumpkin","2021-08-22",33802,29,20972],["Lumpkin","2021-08-23",33802,71,21043],["Lumpkin","2021-08-24",33802,82,21125],["Lumpkin","2021-08-25",33802,80,21205],["Lumpkin","2021-08-26",33802,113,21318],["Lumpkin","2021-08-27",33802,108,21426],["Lumpkin","2021-08-28",33802,38,21464],["Lumpkin","2021-08-29",33802,28,21492],["Lumpkin","2021-08-30",33802,82,21574],["Lumpkin","2021-08-31",33802,79,21653],["Lumpkin","2021-09-01",33802,86,21739],["Lumpkin","2021-09-02",33802,84,21823],["Lumpkin","2021-09-03",33802,79,21902],["Lumpkin","2021-09-04",33802,44,21946],["Lumpkin","2021-09-05",33802,30,21976],["Lumpkin","2021-09-06",33802,11,21987],["Lumpkin","2021-09-07",33802,66,22053],["Lumpkin","2021-09-08",33802,68,22121],["Lumpkin","2021-09-09",33802,96,22217],["Lumpkin","2021-09-10",33802,83,22300],["Lumpkin","2021-09-11",33802,27,22327],["Lumpkin","2021-09-12",33802,27,22354],["Lumpkin","2021-09-13",33802,48,22402],["Lumpkin","2021-09-14",33802,72,22474],["Lumpkin","2021-09-15",33802,61,22535],["Lumpkin","2021-09-16",33802,54,22589],["Lumpkin","2021-09-17",33802,78,22667],["Lumpkin","2021-09-18",33802,44,22711],["Lumpkin","2021-09-19",33802,21,22732],["Lumpkin","2021-09-20",33802,40,22772],["Lumpkin","2021-09-21",33802,50,22822],["Lumpkin","2021-09-22",33802,47,22869],["Lumpkin","2021-09-23",33802,55,22924],["Lumpkin","2021-09-24",33802,62,22986],["Lumpkin","2021-09-25",33802,29,23015],["Lumpkin","2021-09-26",33802,22,23037],["Lumpkin","2021-09-27",33802,44,23081],["Lumpkin","2021-09-28",33802,57,23138],["Lumpkin","2021-09-29",33802,67,23205],["Lumpkin","2021-09-30",33802,79,23284],["Lumpkin","2021-10-01",33802,69,23353],["Lumpkin","2021-10-02",33802,18,23371],["Lumpkin","2021-10-03",33802,19,23390],["Lumpkin","2021-10-04",33802,51,23441],["Lumpkin","2021-10-05",33802,44,23485],["Lumpkin","2021-10-06",33802,46,23531],["Lumpkin","2021-10-07",33802,46,23577],["Lumpkin","2021-10-08",33802,51,23628],["Lumpkin","2021-10-09",33802,25,23653],["Lumpkin","2021-10-10",33802,12,23665],["Lumpkin","2021-10-11",33802,31,23696],["Lumpkin","2021-10-12",33802,57,23753],["Lumpkin","2021-10-13",33802,42,23795],["Lumpkin","2021-10-14",33802,39,23834],["Lumpkin","2021-10-15",33802,32,23866],["Lumpkin","2021-10-16",33802,11,23877],["Lumpkin","2021-10-17",33802,8,23885],["Lumpkin","2021-10-18",33802,27,23912],["Lumpkin","2021-10-19",33802,26,23938],["Lumpkin","2021-10-20",33802,40,23978],["Lumpkin","2021-10-21",33802,44,24022],["Lumpkin","2021-10-22",33802,76,24098],["Lumpkin","2021-10-23",33802,45,24143],["Lumpkin","2021-10-24",33802,42,24185],["Lumpkin","2021-10-25",33802,90,24275],["Lumpkin","2021-10-26",33802,199,24474],["Lumpkin","2021-10-27",33802,178,24652],["Lumpkin","2021-10-28",33802,133,24785],["Lumpkin","2021-10-29",33802,107,24892],["Lumpkin","2021-10-30",33802,21,24913],["Lumpkin","2021-10-31",33802,10,24923],["Lumpkin","2021-11-01",33802,103,25026],["Lumpkin","2021-11-02",33802,117,25143],["Lumpkin","2021-11-03",33802,120,25263],["Lumpkin","2021-11-04",33802,88,25351],["Lumpkin","2021-11-05",33802,64,25415],["Lumpkin","2021-11-06",33802,25,25440],["Lumpkin","2021-11-07",33802,11,25451],["Lumpkin","2021-11-08",33802,85,25536],["Lumpkin","2021-11-09",33802,73,25609],["Lumpkin","2021-11-10",33802,91,25700],["Lumpkin","2021-11-11",33802,53,25753],["Lumpkin","2021-11-12",33802,116,25869],["Lumpkin","2021-11-13",33802,46,25915],["Lumpkin","2021-11-14",33802,13,25928],["Lumpkin","2021-11-15",33802,85,26013],["Lumpkin","2021-11-16",33802,75,26088],["Lumpkin","2021-11-17",33802,67,26155],["Lumpkin","2021-11-18",33802,92,26247],["Lumpkin","2021-11-19",33802,65,26312],["Lumpkin","2021-11-20",33802,36,26348],["Lumpkin","2021-11-21",33802,26,26374],["Lumpkin","2021-11-22",33802,78,26452],["Lumpkin","2021-11-23",33802,66,26518],["Lumpkin","2021-11-24",33802,52,26570],["Lumpkin","2021-11-26",33802,36,26606],["Lumpkin","2021-11-27",33802,27,26633],["Lumpkin","2021-11-28",33802,18,26651],["Lumpkin","2021-11-29",33802,100,26751],["Lumpkin","2021-11-30",33802,92,26843],["Lumpkin","2021-12-01",33802,116,26959],["Lumpkin","2021-12-02",33802,99,27058],["Lumpkin","2021-12-03",33802,91,27149],["Lumpkin","2021-12-04",33802,61,27210],["Lumpkin","2021-12-05",33802,25,27235],["Lumpkin","2021-12-06",33802,75,27310],["Lumpkin","2021-12-07",33802,72,27382],["Lumpkin","2021-12-08",33802,91,27473],["Lumpkin","2021-12-09",33802,88,27561],["Lumpkin","2021-12-10",33802,65,27626],["Lumpkin","2021-12-11",33802,35,27661],["Lumpkin","2021-12-12",33802,19,27680],["Lumpkin","2021-12-13",33802,55,27735],["Lumpkin","2021-12-14",33802,77,27812],["Lumpkin","2021-12-15",33802,51,27863],["Lumpkin","2021-12-16",33802,63,27926],["Lumpkin","2021-12-17",33802,87,28013],["Lumpkin","2021-12-18",33802,30,28043],["Lumpkin","2021-12-19",33802,13,28056],["Lumpkin","2021-12-20",33802,65,28121],["Lumpkin","2021-12-21",33802,77,28198],["Lumpkin","2021-12-22",33802,72,28270],["Lumpkin","2021-12-23",33802,52,28322],["Lumpkin","2021-12-24",33802,20,28342],["Lumpkin","2021-12-25",33802,1,28343],["Lumpkin","2021-12-26",33802,19,28362],["Lumpkin","2021-12-27",33802,71,28433],["Lumpkin","2021-12-28",33802,67,28500],["Lumpkin","2021-12-29",33802,71,28571],["Lumpkin","2021-12-30",33802,80,28651],["Lumpkin","2021-12-31",33802,40,28691],["Lumpkin","2022-01-01",33802,2,28693],["Lumpkin","2022-01-02",33802,19,28712],["Lumpkin","2022-01-03",33802,16,28728],["McDuffie","2020-12-16",21597,1,1],["McDuffie","2020-12-18",21597,3,4],["McDuffie","2020-12-19",21597,4,8],["McDuffie","2020-12-20",21597,1,9],["McDuffie","2020-12-21",21597,1,10],["McDuffie","2020-12-22",21597,23,33],["McDuffie","2020-12-23",21597,36,69],["McDuffie","2020-12-24",21597,10,79],["McDuffie","2020-12-26",21597,1,80],["McDuffie","2020-12-27",21597,1,81],["McDuffie","2020-12-28",21597,33,114],["McDuffie","2020-12-29",21597,30,144],["McDuffie","2020-12-30",21597,31,175],["McDuffie","2020-12-31",21597,9,184],["McDuffie","2021-01-02",21597,58,242],["McDuffie","2021-01-03",21597,1,243],["McDuffie","2021-01-04",21597,62,305],["McDuffie","2021-01-05",21597,29,334],["McDuffie","2021-01-06",21597,50,384],["McDuffie","2021-01-07",21597,33,417],["McDuffie","2021-01-08",21597,26,443],["McDuffie","2021-01-09",21597,22,465],["McDuffie","2021-01-10",21597,9,474],["McDuffie","2021-01-11",21597,96,570],["McDuffie","2021-01-12",21597,31,601],["McDuffie","2021-01-13",21597,64,665],["McDuffie","2021-01-14",21597,236,901],["McDuffie","2021-01-15",21597,17,918],["McDuffie","2021-01-16",21597,63,981],["McDuffie","2021-01-17",21597,1,982],["McDuffie","2021-01-18",21597,60,1042],["McDuffie","2021-01-19",21597,58,1100],["McDuffie","2021-01-20",21597,165,1265],["McDuffie","2021-01-21",21597,61,1326],["McDuffie","2021-01-22",21597,93,1419],["McDuffie","2021-01-23",21597,91,1510],["McDuffie","2021-01-24",21597,3,1513],["McDuffie","2021-01-25",21597,74,1587],["McDuffie","2021-01-26",21597,301,1888],["McDuffie","2021-01-27",21597,83,1971],["McDuffie","2021-01-28",21597,72,2043],["McDuffie","2021-01-29",21597,21,2064],["McDuffie","2021-01-30",21597,28,2092],["McDuffie","2021-01-31",21597,13,2105],["McDuffie","2021-02-01",21597,82,2187],["McDuffie","2021-02-02",21597,50,2237],["McDuffie","2021-02-03",21597,80,2317],["McDuffie","2021-02-04",21597,75,2392],["McDuffie","2021-02-05",21597,44,2436],["McDuffie","2021-02-06",21597,9,2445],["McDuffie","2021-02-07",21597,1,2446],["McDuffie","2021-02-08",21597,120,2566],["McDuffie","2021-02-09",21597,259,2825],["McDuffie","2021-02-10",21597,71,2896],["McDuffie","2021-02-11",21597,78,2974],["McDuffie","2021-02-12",21597,230,3204],["McDuffie","2021-02-13",21597,30,3234],["McDuffie","2021-02-14",21597,18,3252],["McDuffie","2021-02-15",21597,72,3324],["McDuffie","2021-02-16",21597,86,3410],["McDuffie","2021-02-17",21597,208,3618],["McDuffie","2021-02-18",21597,64,3682],["McDuffie","2021-02-19",21597,104,3786],["McDuffie","2021-02-20",21597,23,3809],["McDuffie","2021-02-21",21597,4,3813],["McDuffie","2021-02-22",21597,59,3872],["McDuffie","2021-02-23",21597,273,4145],["McDuffie","2021-02-24",21597,35,4180],["McDuffie","2021-02-25",21597,150,4330],["McDuffie","2021-02-26",21597,46,4376],["McDuffie","2021-02-27",21597,8,4384],["McDuffie","2021-02-28",21597,2,4386],["McDuffie","2021-03-01",21597,76,4462],["McDuffie","2021-03-02",21597,74,4536],["McDuffie","2021-03-03",21597,96,4632],["McDuffie","2021-03-04",21597,107,4739],["McDuffie","2021-03-05",21597,40,4779],["McDuffie","2021-03-06",21597,23,4802],["McDuffie","2021-03-07",21597,13,4815],["McDuffie","2021-03-08",21597,87,4902],["McDuffie","2021-03-09",21597,290,5192],["McDuffie","2021-03-10",21597,106,5298],["McDuffie","2021-03-11",21597,170,5468],["McDuffie","2021-03-12",21597,144,5612],["McDuffie","2021-03-13",21597,42,5654],["McDuffie","2021-03-14",21597,3,5657],["McDuffie","2021-03-15",21597,107,5764],["McDuffie","2021-03-16",21597,153,5917],["McDuffie","2021-03-17",21597,131,6048],["McDuffie","2021-03-18",21597,95,6143],["McDuffie","2021-03-19",21597,81,6224],["McDuffie","2021-03-20",21597,23,6247],["McDuffie","2021-03-21",21597,14,6261],["McDuffie","2021-03-22",21597,156,6417],["McDuffie","2021-03-23",21597,185,6602],["McDuffie","2021-03-24",21597,96,6698],["McDuffie","2021-03-25",21597,179,6877],["McDuffie","2021-03-26",21597,55,6932],["McDuffie","2021-03-27",21597,41,6973],["McDuffie","2021-03-28",21597,13,6986],["McDuffie","2021-03-29",21597,110,7096],["McDuffie","2021-03-30",21597,237,7333],["McDuffie","2021-03-31",21597,142,7475],["McDuffie","2021-04-01",21597,199,7674],["McDuffie","2021-04-02",21597,122,7796],["McDuffie","2021-04-03",21597,39,7835],["McDuffie","2021-04-04",21597,31,7866],["McDuffie","2021-04-05",21597,110,7976],["McDuffie","2021-04-06",21597,199,8175],["McDuffie","2021-04-07",21597,158,8333],["McDuffie","2021-04-08",21597,177,8510],["McDuffie","2021-04-09",21597,76,8586],["McDuffie","2021-04-10",21597,28,8614],["McDuffie","2021-04-11",21597,24,8638],["McDuffie","2021-04-12",21597,186,8824],["McDuffie","2021-04-13",21597,206,9030],["McDuffie","2021-04-14",21597,143,9173],["McDuffie","2021-04-15",21597,177,9350],["McDuffie","2021-04-16",21597,125,9475],["McDuffie","2021-04-17",21597,34,9509],["McDuffie","2021-04-18",21597,11,9520],["McDuffie","2021-04-19",21597,165,9685],["McDuffie","2021-04-20",21597,226,9911],["McDuffie","2021-04-21",21597,149,10060],["McDuffie","2021-04-22",21597,245,10305],["McDuffie","2021-04-23",21597,91,10396],["McDuffie","2021-04-24",21597,40,10436],["McDuffie","2021-04-25",21597,17,10453],["McDuffie","2021-04-26",21597,99,10552],["McDuffie","2021-04-27",21597,216,10768],["McDuffie","2021-04-28",21597,133,10901],["McDuffie","2021-04-29",21597,119,11020],["McDuffie","2021-04-30",21597,97,11117],["McDuffie","2021-05-01",21597,35,11152],["McDuffie","2021-05-02",21597,13,11165],["McDuffie","2021-05-03",21597,74,11239],["McDuffie","2021-05-04",21597,150,11389],["McDuffie","2021-05-05",21597,78,11467],["McDuffie","2021-05-06",21597,164,11631],["McDuffie","2021-05-07",21597,76,11707],["McDuffie","2021-05-08",21597,20,11727],["McDuffie","2021-05-09",21597,14,11741],["McDuffie","2021-05-10",21597,104,11845],["McDuffie","2021-05-11",21597,104,11949],["McDuffie","2021-05-12",21597,76,12025],["McDuffie","2021-05-13",21597,90,12115],["McDuffie","2021-05-14",21597,60,12175],["McDuffie","2021-05-15",21597,26,12201],["McDuffie","2021-05-16",21597,23,12224],["McDuffie","2021-05-17",21597,81,12305],["McDuffie","2021-05-18",21597,91,12396],["McDuffie","2021-05-19",21597,93,12489],["McDuffie","2021-05-20",21597,106,12595],["McDuffie","2021-05-21",21597,57,12652],["McDuffie","2021-05-22",21597,41,12693],["McDuffie","2021-05-23",21597,12,12705],["McDuffie","2021-05-24",21597,43,12748],["McDuffie","2021-05-25",21597,68,12816],["McDuffie","2021-05-26",21597,67,12883],["McDuffie","2021-05-27",21597,54,12937],["McDuffie","2021-05-28",21597,47,12984],["McDuffie","2021-05-29",21597,23,13007],["McDuffie","2021-05-30",21597,19,13026],["McDuffie","2021-05-31",21597,14,13040],["McDuffie","2021-06-01",21597,66,13106],["McDuffie","2021-06-02",21597,63,13169],["McDuffie","2021-06-03",21597,85,13254],["McDuffie","2021-06-04",21597,38,13292],["McDuffie","2021-06-05",21597,21,13313],["McDuffie","2021-06-06",21597,16,13329],["McDuffie","2021-06-07",21597,48,13377],["McDuffie","2021-06-08",21597,57,13434],["McDuffie","2021-06-09",21597,54,13488],["McDuffie","2021-06-10",21597,48,13536],["McDuffie","2021-06-11",21597,48,13584],["McDuffie","2021-06-12",21597,25,13609],["McDuffie","2021-06-13",21597,13,13622],["McDuffie","2021-06-14",21597,45,13667],["McDuffie","2021-06-15",21597,47,13714],["McDuffie","2021-06-16",21597,37,13751],["McDuffie","2021-06-17",21597,61,13812],["McDuffie","2021-06-18",21597,30,13842],["McDuffie","2021-06-19",21597,24,13866],["McDuffie","2021-06-20",21597,11,13877],["McDuffie","2021-06-21",21597,31,13908],["McDuffie","2021-06-22",21597,40,13948],["McDuffie","2021-06-23",21597,36,13984],["McDuffie","2021-06-24",21597,53,14037],["McDuffie","2021-06-25",21597,44,14081],["McDuffie","2021-06-26",21597,17,14098],["McDuffie","2021-06-27",21597,11,14109],["McDuffie","2021-06-28",21597,30,14139],["McDuffie","2021-06-29",21597,28,14167],["McDuffie","2021-06-30",21597,46,14213],["McDuffie","2021-07-01",21597,55,14268],["McDuffie","2021-07-02",21597,25,14293],["McDuffie","2021-07-03",21597,11,14304],["McDuffie","2021-07-04",21597,7,14311],["McDuffie","2021-07-05",21597,23,14334],["McDuffie","2021-07-06",21597,28,14362],["McDuffie","2021-07-07",21597,29,14391],["McDuffie","2021-07-08",21597,36,14427],["McDuffie","2021-07-09",21597,35,14462],["McDuffie","2021-07-10",21597,13,14475],["McDuffie","2021-07-11",21597,11,14486],["McDuffie","2021-07-12",21597,33,14519],["McDuffie","2021-07-13",21597,29,14548],["McDuffie","2021-07-14",21597,26,14574],["McDuffie","2021-07-15",21597,28,14602],["McDuffie","2021-07-16",21597,30,14632],["McDuffie","2021-07-17",21597,19,14651],["McDuffie","2021-07-18",21597,12,14663],["McDuffie","2021-07-19",21597,35,14698],["McDuffie","2021-07-20",21597,28,14726],["McDuffie","2021-07-21",21597,32,14758],["McDuffie","2021-07-22",21597,49,14807],["McDuffie","2021-07-23",21597,46,14853],["McDuffie","2021-07-24",21597,25,14878],["McDuffie","2021-07-25",21597,12,14890],["McDuffie","2021-07-26",21597,45,14935],["McDuffie","2021-07-27",21597,54,14989],["McDuffie","2021-07-28",21597,82,15071],["McDuffie","2021-07-29",21597,74,15145],["McDuffie","2021-07-30",21597,58,15203],["McDuffie","2021-07-31",21597,47,15250],["McDuffie","2021-08-01",21597,18,15268],["McDuffie","2021-08-02",21597,53,15321],["McDuffie","2021-08-03",21597,78,15399],["McDuffie","2021-08-04",21597,57,15456],["McDuffie","2021-08-05",21597,56,15512],["McDuffie","2021-08-06",21597,69,15581],["McDuffie","2021-08-07",21597,33,15614],["McDuffie","2021-08-08",21597,31,15645],["McDuffie","2021-08-09",21597,80,15725],["McDuffie","2021-08-10",21597,61,15786],["McDuffie","2021-08-11",21597,48,15834],["McDuffie","2021-08-12",21597,60,15894],["McDuffie","2021-08-13",21597,45,15939],["McDuffie","2021-08-14",21597,41,15980],["McDuffie","2021-08-15",21597,29,16009],["McDuffie","2021-08-16",21597,61,16070],["McDuffie","2021-08-17",21597,55,16125],["McDuffie","2021-08-18",21597,54,16179],["McDuffie","2021-08-19",21597,52,16231],["McDuffie","2021-08-20",21597,74,16305],["McDuffie","2021-08-21",21597,32,16337],["McDuffie","2021-08-22",21597,12,16349],["McDuffie","2021-08-23",21597,66,16415],["McDuffie","2021-08-24",21597,90,16505],["McDuffie","2021-08-25",21597,99,16604],["McDuffie","2021-08-26",21597,69,16673],["McDuffie","2021-08-27",21597,74,16747],["McDuffie","2021-08-28",21597,39,16786],["McDuffie","2021-08-29",21597,25,16811],["McDuffie","2021-08-30",21597,43,16854],["McDuffie","2021-08-31",21597,106,16960],["McDuffie","2021-09-01",21597,65,17025],["McDuffie","2021-09-02",21597,68,17093],["McDuffie","2021-09-03",21597,84,17177],["McDuffie","2021-09-04",21597,23,17200],["McDuffie","2021-09-05",21597,36,17236],["McDuffie","2021-09-06",21597,18,17254],["McDuffie","2021-09-07",21597,73,17327],["McDuffie","2021-09-08",21597,56,17383],["McDuffie","2021-09-09",21597,62,17445],["McDuffie","2021-09-10",21597,52,17497],["McDuffie","2021-09-11",21597,31,17528],["McDuffie","2021-09-12",21597,22,17550],["McDuffie","2021-09-13",21597,83,17633],["McDuffie","2021-09-14",21597,85,17718],["McDuffie","2021-09-15",21597,48,17766],["McDuffie","2021-09-16",21597,45,17811],["McDuffie","2021-09-17",21597,47,17858],["McDuffie","2021-09-18",21597,33,17891],["McDuffie","2021-09-19",21597,15,17906],["McDuffie","2021-09-20",21597,44,17950],["McDuffie","2021-09-21",21597,52,18002],["McDuffie","2021-09-22",21597,53,18055],["McDuffie","2021-09-23",21597,45,18100],["McDuffie","2021-09-24",21597,50,18150],["McDuffie","2021-09-25",21597,27,18177],["McDuffie","2021-09-26",21597,22,18199],["McDuffie","2021-09-27",21597,31,18230],["McDuffie","2021-09-28",21597,68,18298],["McDuffie","2021-09-29",21597,27,18325],["McDuffie","2021-09-30",21597,43,18368],["McDuffie","2021-10-01",21597,35,18403],["McDuffie","2021-10-02",21597,15,18418],["McDuffie","2021-10-03",21597,15,18433],["McDuffie","2021-10-04",21597,14,18447],["McDuffie","2021-10-05",21597,38,18485],["McDuffie","2021-10-06",21597,37,18522],["McDuffie","2021-10-07",21597,36,18558],["McDuffie","2021-10-08",21597,27,18585],["McDuffie","2021-10-09",21597,17,18602],["McDuffie","2021-10-10",21597,9,18611],["McDuffie","2021-10-11",21597,24,18635],["McDuffie","2021-10-12",21597,37,18672],["McDuffie","2021-10-13",21597,20,18692],["McDuffie","2021-10-14",21597,28,18720],["McDuffie","2021-10-15",21597,18,18738],["McDuffie","2021-10-16",21597,11,18749],["McDuffie","2021-10-17",21597,5,18754],["McDuffie","2021-10-18",21597,17,18771],["McDuffie","2021-10-19",21597,25,18796],["McDuffie","2021-10-20",21597,26,18822],["McDuffie","2021-10-21",21597,17,18839],["McDuffie","2021-10-22",21597,32,18871],["McDuffie","2021-10-23",21597,18,18889],["McDuffie","2021-10-24",21597,16,18905],["McDuffie","2021-10-25",21597,49,18954],["McDuffie","2021-10-26",21597,113,19067],["McDuffie","2021-10-27",21597,67,19134],["McDuffie","2021-10-28",21597,77,19211],["McDuffie","2021-10-29",21597,53,19264],["McDuffie","2021-10-30",21597,26,19290],["McDuffie","2021-10-31",21597,8,19298],["McDuffie","2021-11-01",21597,72,19370],["McDuffie","2021-11-02",21597,115,19485],["McDuffie","2021-11-03",21597,87,19572],["McDuffie","2021-11-04",21597,59,19631],["McDuffie","2021-11-05",21597,39,19670],["McDuffie","2021-11-06",21597,17,19687],["McDuffie","2021-11-07",21597,10,19697],["McDuffie","2021-11-08",21597,63,19760],["McDuffie","2021-11-09",21597,107,19867],["McDuffie","2021-11-10",21597,86,19953],["McDuffie","2021-11-11",21597,61,20014],["McDuffie","2021-11-12",21597,39,20053],["McDuffie","2021-11-13",21597,22,20075],["McDuffie","2021-11-14",21597,8,20083],["McDuffie","2021-11-15",21597,52,20135],["McDuffie","2021-11-16",21597,100,20235],["McDuffie","2021-11-17",21597,56,20291],["McDuffie","2021-11-18",21597,61,20352],["McDuffie","2021-11-19",21597,40,20392],["McDuffie","2021-11-20",21597,18,20410],["McDuffie","2021-11-21",21597,10,20420],["McDuffie","2021-11-22",21597,78,20498],["McDuffie","2021-11-23",21597,95,20593],["McDuffie","2021-11-24",21597,32,20625],["McDuffie","2021-11-26",21597,18,20643],["McDuffie","2021-11-27",21597,16,20659],["McDuffie","2021-11-28",21597,12,20671],["McDuffie","2021-11-29",21597,109,20780],["McDuffie","2021-11-30",21597,153,20933],["McDuffie","2021-12-01",21597,97,21030],["McDuffie","2021-12-02",21597,115,21145],["McDuffie","2021-12-03",21597,55,21200],["McDuffie","2021-12-04",21597,25,21225],["McDuffie","2021-12-05",21597,10,21235],["McDuffie","2021-12-06",21597,81,21316],["McDuffie","2021-12-07",21597,116,21432],["McDuffie","2021-12-08",21597,67,21499],["McDuffie","2021-12-09",21597,64,21563],["McDuffie","2021-12-10",21597,47,21610],["McDuffie","2021-12-11",21597,17,21627],["McDuffie","2021-12-12",21597,8,21635],["McDuffie","2021-12-13",21597,52,21687],["McDuffie","2021-12-14",21597,77,21764],["McDuffie","2021-12-15",21597,50,21814],["McDuffie","2021-12-16",21597,69,21883],["McDuffie","2021-12-17",21597,40,21923],["McDuffie","2021-12-18",21597,23,21946],["McDuffie","2021-12-19",21597,14,21960],["McDuffie","2021-12-20",21597,96,22056],["McDuffie","2021-12-21",21597,88,22144],["McDuffie","2021-12-22",21597,71,22215],["McDuffie","2021-12-23",21597,40,22255],["McDuffie","2021-12-24",21597,11,22266],["McDuffie","2021-12-26",21597,21,22287],["McDuffie","2021-12-27",21597,76,22363],["McDuffie","2021-12-28",21597,67,22430],["McDuffie","2021-12-29",21597,77,22507],["McDuffie","2021-12-30",21597,55,22562],["McDuffie","2021-12-31",21597,32,22594],["McDuffie","2022-01-01",21597,9,22603],["McDuffie","2022-01-02",21597,18,22621],["McDuffie","2022-01-03",21597,36,22657],["McIntosh","2020-12-16",14567,1,1],["McIntosh","2020-12-17",14567,8,9],["McIntosh","2020-12-18",14567,12,21],["McIntosh","2020-12-21",14567,3,24],["McIntosh","2020-12-22",14567,7,31],["McIntosh","2020-12-23",14567,12,43],["McIntosh","2020-12-28",14567,4,47],["McIntosh","2020-12-29",14567,7,54],["McIntosh","2020-12-30",14567,12,66],["McIntosh","2020-12-31",14567,6,72],["McIntosh","2021-01-03",14567,1,73],["McIntosh","2021-01-04",14567,7,80],["McIntosh","2021-01-05",14567,25,105],["McIntosh","2021-01-06",14567,20,125],["McIntosh","2021-01-07",14567,16,141],["McIntosh","2021-01-08",14567,24,165],["McIntosh","2021-01-09",14567,5,170],["McIntosh","2021-01-10",14567,1,171],["McIntosh","2021-01-11",14567,57,228],["McIntosh","2021-01-12",14567,46,274],["McIntosh","2021-01-13",14567,30,304],["McIntosh","2021-01-14",14567,116,420],["McIntosh","2021-01-15",14567,27,447],["McIntosh","2021-01-16",14567,40,487],["McIntosh","2021-01-17",14567,2,489],["McIntosh","2021-01-18",14567,119,608],["McIntosh","2021-01-19",14567,45,653],["McIntosh","2021-01-20",14567,50,703],["McIntosh","2021-01-21",14567,148,851],["McIntosh","2021-01-22",14567,61,912],["McIntosh","2021-01-23",14567,18,930],["McIntosh","2021-01-24",14567,8,938],["McIntosh","2021-01-25",14567,123,1061],["McIntosh","2021-01-26",14567,42,1103],["McIntosh","2021-01-27",14567,29,1132],["McIntosh","2021-01-28",14567,158,1290],["McIntosh","2021-01-29",14567,47,1337],["McIntosh","2021-01-30",14567,48,1385],["McIntosh","2021-01-31",14567,4,1389],["McIntosh","2021-02-01",14567,74,1463],["McIntosh","2021-02-02",14567,90,1553],["McIntosh","2021-02-03",14567,36,1589],["McIntosh","2021-02-04",14567,146,1735],["McIntosh","2021-02-05",14567,31,1766],["McIntosh","2021-02-06",14567,38,1804],["McIntosh","2021-02-07",14567,1,1805],["McIntosh","2021-02-08",14567,79,1884],["McIntosh","2021-02-09",14567,141,2025],["McIntosh","2021-02-10",14567,64,2089],["McIntosh","2021-02-11",14567,134,2223],["McIntosh","2021-02-12",14567,34,2257],["McIntosh","2021-02-13",14567,32,2289],["McIntosh","2021-02-14",14567,4,2293],["McIntosh","2021-02-15",14567,105,2398],["McIntosh","2021-02-16",14567,101,2499],["McIntosh","2021-02-17",14567,77,2576],["McIntosh","2021-02-18",14567,244,2820],["McIntosh","2021-02-19",14567,82,2902],["McIntosh","2021-02-20",14567,63,2965],["McIntosh","2021-02-21",14567,11,2976],["McIntosh","2021-02-22",14567,105,3081],["McIntosh","2021-02-23",14567,111,3192],["McIntosh","2021-02-24",14567,62,3254],["McIntosh","2021-02-25",14567,209,3463],["McIntosh","2021-02-26",14567,32,3495],["McIntosh","2021-02-27",14567,58,3553],["McIntosh","2021-02-28",14567,7,3560],["McIntosh","2021-03-01",14567,78,3638],["McIntosh","2021-03-02",14567,54,3692],["McIntosh","2021-03-03",14567,39,3731],["McIntosh","2021-03-04",14567,199,3930],["McIntosh","2021-03-05",14567,25,3955],["McIntosh","2021-03-06",14567,134,4089],["McIntosh","2021-03-07",14567,3,4092],["McIntosh","2021-03-08",14567,54,4146],["McIntosh","2021-03-09",14567,119,4265],["McIntosh","2021-03-10",14567,120,4385],["McIntosh","2021-03-11",14567,136,4521],["McIntosh","2021-03-12",14567,32,4553],["McIntosh","2021-03-13",14567,52,4605],["McIntosh","2021-03-14",14567,11,4616],["McIntosh","2021-03-15",14567,95,4711],["McIntosh","2021-03-16",14567,100,4811],["McIntosh","2021-03-17",14567,83,4894],["McIntosh","2021-03-18",14567,180,5074],["McIntosh","2021-03-19",14567,40,5114],["McIntosh","2021-03-20",14567,40,5154],["McIntosh","2021-03-21",14567,5,5159],["McIntosh","2021-03-22",14567,96,5255],["McIntosh","2021-03-23",14567,78,5333],["McIntosh","2021-03-24",14567,40,5373],["McIntosh","2021-03-25",14567,212,5585],["McIntosh","2021-03-26",14567,34,5619],["McIntosh","2021-03-27",14567,50,5669],["McIntosh","2021-03-28",14567,7,5676],["McIntosh","2021-03-29",14567,92,5768],["McIntosh","2021-03-30",14567,75,5843],["McIntosh","2021-03-31",14567,79,5922],["McIntosh","2021-04-01",14567,140,6062],["McIntosh","2021-04-02",14567,34,6096],["McIntosh","2021-04-03",14567,121,6217],["McIntosh","2021-04-04",14567,1,6218],["McIntosh","2021-04-05",14567,63,6281],["McIntosh","2021-04-06",14567,91,6372],["McIntosh","2021-04-07",14567,52,6424],["McIntosh","2021-04-08",14567,125,6549],["McIntosh","2021-04-09",14567,33,6582],["McIntosh","2021-04-10",14567,40,6622],["McIntosh","2021-04-11",14567,2,6624],["McIntosh","2021-04-12",14567,76,6700],["McIntosh","2021-04-13",14567,40,6740],["McIntosh","2021-04-14",14567,45,6785],["McIntosh","2021-04-15",14567,174,6959],["McIntosh","2021-04-16",14567,53,7012],["McIntosh","2021-04-17",14567,37,7049],["McIntosh","2021-04-18",14567,9,7058],["McIntosh","2021-04-19",14567,48,7106],["McIntosh","2021-04-20",14567,37,7143],["McIntosh","2021-04-21",14567,48,7191],["McIntosh","2021-04-22",14567,137,7328],["McIntosh","2021-04-23",14567,40,7368],["McIntosh","2021-04-24",14567,21,7389],["McIntosh","2021-04-25",14567,4,7393],["McIntosh","2021-04-26",14567,46,7439],["McIntosh","2021-04-27",14567,38,7477],["McIntosh","2021-04-28",14567,44,7521],["McIntosh","2021-04-29",14567,144,7665],["McIntosh","2021-04-30",14567,24,7689],["McIntosh","2021-05-01",14567,21,7710],["McIntosh","2021-05-02",14567,6,7716],["McIntosh","2021-05-03",14567,62,7778],["McIntosh","2021-05-04",14567,24,7802],["McIntosh","2021-05-05",14567,48,7850],["McIntosh","2021-05-06",14567,115,7965],["McIntosh","2021-05-07",14567,18,7983],["McIntosh","2021-05-08",14567,22,8005],["McIntosh","2021-05-10",14567,28,8033],["McIntosh","2021-05-11",14567,39,8072],["McIntosh","2021-05-12",14567,26,8098],["McIntosh","2021-05-13",14567,55,8153],["McIntosh","2021-05-14",14567,43,8196],["McIntosh","2021-05-15",14567,18,8214],["McIntosh","2021-05-16",14567,5,8219],["McIntosh","2021-05-17",14567,29,8248],["McIntosh","2021-05-18",14567,28,8276],["McIntosh","2021-05-19",14567,31,8307],["McIntosh","2021-05-20",14567,55,8362],["McIntosh","2021-05-21",14567,22,8384],["McIntosh","2021-05-22",14567,12,8396],["McIntosh","2021-05-23",14567,3,8399],["McIntosh","2021-05-24",14567,15,8414],["McIntosh","2021-05-25",14567,25,8439],["McIntosh","2021-05-26",14567,27,8466],["McIntosh","2021-05-27",14567,47,8513],["McIntosh","2021-05-28",14567,10,8523],["McIntosh","2021-05-29",14567,5,8528],["McIntosh","2021-05-30",14567,4,8532],["McIntosh","2021-06-01",14567,20,8552],["McIntosh","2021-06-02",14567,21,8573],["McIntosh","2021-06-03",14567,59,8632],["McIntosh","2021-06-04",14567,9,8641],["McIntosh","2021-06-05",14567,17,8658],["McIntosh","2021-06-06",14567,3,8661],["McIntosh","2021-06-07",14567,16,8677],["McIntosh","2021-06-08",14567,18,8695],["McIntosh","2021-06-09",14567,24,8719],["McIntosh","2021-06-10",14567,33,8752],["McIntosh","2021-06-11",14567,11,8763],["McIntosh","2021-06-12",14567,16,8779],["McIntosh","2021-06-13",14567,1,8780],["McIntosh","2021-06-14",14567,12,8792],["McIntosh","2021-06-15",14567,9,8801],["McIntosh","2021-06-16",14567,20,8821],["McIntosh","2021-06-17",14567,31,8852],["McIntosh","2021-06-18",14567,13,8865],["McIntosh","2021-06-19",14567,4,8869],["McIntosh","2021-06-20",14567,2,8871],["McIntosh","2021-06-21",14567,11,8882],["McIntosh","2021-06-22",14567,9,8891],["McIntosh","2021-06-23",14567,28,8919],["McIntosh","2021-06-24",14567,28,8947],["McIntosh","2021-06-25",14567,8,8955],["McIntosh","2021-06-26",14567,6,8961],["McIntosh","2021-06-27",14567,1,8962],["McIntosh","2021-06-28",14567,8,8970],["McIntosh","2021-06-29",14567,10,8980],["McIntosh","2021-06-30",14567,10,8990],["McIntosh","2021-07-01",14567,18,9008],["McIntosh","2021-07-02",14567,7,9015],["McIntosh","2021-07-03",14567,5,9020],["McIntosh","2021-07-04",14567,2,9022],["McIntosh","2021-07-05",14567,4,9026],["McIntosh","2021-07-06",14567,12,9038],["McIntosh","2021-07-07",14567,5,9043],["McIntosh","2021-07-08",14567,21,9064],["McIntosh","2021-07-09",14567,6,9070],["McIntosh","2021-07-10",14567,2,9072],["McIntosh","2021-07-11",14567,3,9075],["McIntosh","2021-07-12",14567,6,9081],["McIntosh","2021-07-13",14567,15,9096],["McIntosh","2021-07-14",14567,13,9109],["McIntosh","2021-07-15",14567,31,9140],["McIntosh","2021-07-16",14567,6,9146],["McIntosh","2021-07-17",14567,1,9147],["McIntosh","2021-07-18",14567,2,9149],["McIntosh","2021-07-19",14567,5,9154],["McIntosh","2021-07-20",14567,14,9168],["McIntosh","2021-07-21",14567,12,9180],["McIntosh","2021-07-22",14567,30,9210],["McIntosh","2021-07-23",14567,18,9228],["McIntosh","2021-07-24",14567,6,9234],["McIntosh","2021-07-25",14567,5,9239],["McIntosh","2021-07-26",14567,11,9250],["McIntosh","2021-07-27",14567,33,9283],["McIntosh","2021-07-28",14567,24,9307],["McIntosh","2021-07-29",14567,38,9345],["McIntosh","2021-07-30",14567,16,9361],["McIntosh","2021-07-31",14567,8,9369],["McIntosh","2021-08-01",14567,5,9374],["McIntosh","2021-08-02",14567,24,9398],["McIntosh","2021-08-03",14567,55,9453],["McIntosh","2021-08-04",14567,26,9479],["McIntosh","2021-08-05",14567,72,9551],["McIntosh","2021-08-06",14567,26,9577],["McIntosh","2021-08-07",14567,16,9593],["McIntosh","2021-08-08",14567,5,9598],["McIntosh","2021-08-09",14567,18,9616],["McIntosh","2021-08-10",14567,39,9655],["McIntosh","2021-08-11",14567,29,9684],["McIntosh","2021-08-12",14567,80,9764],["McIntosh","2021-08-13",14567,16,9780],["McIntosh","2021-08-14",14567,18,9798],["McIntosh","2021-08-15",14567,14,9812],["McIntosh","2021-08-16",14567,25,9837],["McIntosh","2021-08-17",14567,94,9931],["McIntosh","2021-08-18",14567,39,9970],["McIntosh","2021-08-19",14567,71,10041],["McIntosh","2021-08-20",14567,41,10082],["McIntosh","2021-08-21",14567,12,10094],["McIntosh","2021-08-22",14567,5,10099],["McIntosh","2021-08-23",14567,30,10129],["McIntosh","2021-08-24",14567,52,10181],["McIntosh","2021-08-25",14567,25,10206],["McIntosh","2021-08-26",14567,95,10301],["McIntosh","2021-08-27",14567,32,10333],["McIntosh","2021-08-28",14567,13,10346],["McIntosh","2021-08-29",14567,6,10352],["McIntosh","2021-08-30",14567,22,10374],["McIntosh","2021-08-31",14567,48,10422],["McIntosh","2021-09-01",14567,30,10452],["McIntosh","2021-09-02",14567,110,10562],["McIntosh","2021-09-03",14567,45,10607],["McIntosh","2021-09-04",14567,9,10616],["McIntosh","2021-09-05",14567,10,10626],["McIntosh","2021-09-06",14567,8,10634],["McIntosh","2021-09-07",14567,52,10686],["McIntosh","2021-09-08",14567,32,10718],["McIntosh","2021-09-09",14567,81,10799],["McIntosh","2021-09-10",14567,32,10831],["McIntosh","2021-09-11",14567,19,10850],["McIntosh","2021-09-12",14567,5,10855],["McIntosh","2021-09-13",14567,23,10878],["McIntosh","2021-09-14",14567,56,10934],["McIntosh","2021-09-15",14567,30,10964],["McIntosh","2021-09-16",14567,66,11030],["McIntosh","2021-09-17",14567,37,11067],["McIntosh","2021-09-18",14567,14,11081],["McIntosh","2021-09-19",14567,8,11089],["McIntosh","2021-09-20",14567,17,11106],["McIntosh","2021-09-21",14567,41,11147],["McIntosh","2021-09-22",14567,13,11160],["McIntosh","2021-09-23",14567,63,11223],["McIntosh","2021-09-24",14567,20,11243],["McIntosh","2021-09-25",14567,7,11250],["McIntosh","2021-09-26",14567,6,11256],["McIntosh","2021-09-27",14567,19,11275],["McIntosh","2021-09-28",14567,42,11317],["McIntosh","2021-09-29",14567,41,11358],["McIntosh","2021-09-30",14567,95,11453],["McIntosh","2021-10-01",14567,28,11481],["McIntosh","2021-10-02",14567,14,11495],["McIntosh","2021-10-03",14567,3,11498],["McIntosh","2021-10-04",14567,24,11522],["McIntosh","2021-10-05",14567,42,11564],["McIntosh","2021-10-06",14567,30,11594],["McIntosh","2021-10-07",14567,45,11639],["McIntosh","2021-10-08",14567,17,11656],["McIntosh","2021-10-09",14567,2,11658],["McIntosh","2021-10-10",14567,2,11660],["McIntosh","2021-10-11",14567,9,11669],["McIntosh","2021-10-12",14567,39,11708],["McIntosh","2021-10-13",14567,17,11725],["McIntosh","2021-10-14",14567,49,11774],["McIntosh","2021-10-15",14567,26,11800],["McIntosh","2021-10-16",14567,8,11808],["McIntosh","2021-10-17",14567,5,11813],["McIntosh","2021-10-18",14567,14,11827],["McIntosh","2021-10-19",14567,17,11844],["McIntosh","2021-10-20",14567,7,11851],["McIntosh","2021-10-21",14567,37,11888],["McIntosh","2021-10-22",14567,21,11909],["McIntosh","2021-10-23",14567,17,11926],["McIntosh","2021-10-24",14567,10,11936],["McIntosh","2021-10-25",14567,32,11968],["McIntosh","2021-10-26",14567,52,12020],["McIntosh","2021-10-27",14567,31,12051],["McIntosh","2021-10-28",14567,88,12139],["McIntosh","2021-10-29",14567,46,12185],["McIntosh","2021-10-30",14567,4,12189],["McIntosh","2021-10-31",14567,6,12195],["McIntosh","2021-11-01",14567,33,12228],["McIntosh","2021-11-02",14567,96,12324],["McIntosh","2021-11-03",14567,35,12359],["McIntosh","2021-11-04",14567,154,12513],["McIntosh","2021-11-05",14567,37,12550],["McIntosh","2021-11-06",14567,7,12557],["McIntosh","2021-11-07",14567,11,12568],["McIntosh","2021-11-08",14567,32,12600],["McIntosh","2021-11-09",14567,93,12693],["McIntosh","2021-11-10",14567,50,12743],["McIntosh","2021-11-11",14567,32,12775],["McIntosh","2021-11-12",14567,23,12798],["McIntosh","2021-11-13",14567,14,12812],["McIntosh","2021-11-14",14567,1,12813],["McIntosh","2021-11-15",14567,20,12833],["McIntosh","2021-11-16",14567,86,12919],["McIntosh","2021-11-17",14567,40,12959],["McIntosh","2021-11-18",14567,117,13076],["McIntosh","2021-11-19",14567,41,13117],["McIntosh","2021-11-20",14567,4,13121],["McIntosh","2021-11-21",14567,11,13132],["McIntosh","2021-11-22",14567,29,13161],["McIntosh","2021-11-23",14567,87,13248],["McIntosh","2021-11-24",14567,12,13260],["McIntosh","2021-11-26",14567,17,13277],["McIntosh","2021-11-27",14567,5,13282],["McIntosh","2021-11-28",14567,5,13287],["McIntosh","2021-11-29",14567,23,13310],["McIntosh","2021-11-30",14567,81,13391],["McIntosh","2021-12-01",14567,29,13420],["McIntosh","2021-12-02",14567,102,13522],["McIntosh","2021-12-03",14567,43,13565],["McIntosh","2021-12-04",14567,6,13571],["McIntosh","2021-12-05",14567,3,13574],["McIntosh","2021-12-06",14567,31,13605],["McIntosh","2021-12-07",14567,64,13669],["McIntosh","2021-12-08",14567,19,13688],["McIntosh","2021-12-09",14567,57,13745],["McIntosh","2021-12-10",14567,41,13786],["McIntosh","2021-12-11",14567,4,13790],["McIntosh","2021-12-12",14567,3,13793],["McIntosh","2021-12-13",14567,17,13810],["McIntosh","2021-12-14",14567,33,13843],["McIntosh","2021-12-15",14567,15,13858],["McIntosh","2021-12-16",14567,50,13908],["McIntosh","2021-12-17",14567,21,13929],["McIntosh","2021-12-18",14567,5,13934],["McIntosh","2021-12-19",14567,5,13939],["McIntosh","2021-12-20",14567,31,13970],["McIntosh","2021-12-21",14567,63,14033],["McIntosh","2021-12-22",14567,28,14061],["McIntosh","2021-12-23",14567,18,14079],["McIntosh","2021-12-24",14567,2,14081],["McIntosh","2021-12-26",14567,3,14084],["McIntosh","2021-12-27",14567,22,14106],["McIntosh","2021-12-28",14567,23,14129],["McIntosh","2021-12-29",14567,25,14154],["McIntosh","2021-12-30",14567,20,14174],["McIntosh","2021-12-31",14567,7,14181],["McIntosh","2022-01-01",14567,2,14183],["McIntosh","2022-01-02",14567,3,14186],["McIntosh","2022-01-03",14567,6,14192],["Macon","2020-12-17",12988,1,1],["Macon","2020-12-19",12988,1,2],["Macon","2020-12-20",12988,1,3],["Macon","2020-12-22",12988,2,5],["Macon","2020-12-23",12988,8,13],["Macon","2020-12-24",12988,3,16],["Macon","2020-12-26",12988,6,22],["Macon","2020-12-28",12988,12,34],["Macon","2020-12-29",12988,38,72],["Macon","2020-12-30",12988,16,88],["Macon","2020-12-31",12988,9,97],["Macon","2021-01-01",12988,3,100],["Macon","2021-01-03",12988,114,214],["Macon","2021-01-04",12988,16,230],["Macon","2021-01-05",12988,13,243],["Macon","2021-01-06",12988,10,253],["Macon","2021-01-07",12988,17,270],["Macon","2021-01-08",12988,8,278],["Macon","2021-01-09",12988,4,282],["Macon","2021-01-10",12988,1,283],["Macon","2021-01-11",12988,20,303],["Macon","2021-01-12",12988,31,334],["Macon","2021-01-13",12988,79,413],["Macon","2021-01-14",12988,53,466],["Macon","2021-01-15",12988,149,615],["Macon","2021-01-16",12988,9,624],["Macon","2021-01-17",12988,8,632],["Macon","2021-01-18",12988,62,694],["Macon","2021-01-19",12988,27,721],["Macon","2021-01-20",12988,50,771],["Macon","2021-01-21",12988,33,804],["Macon","2021-01-22",12988,66,870],["Macon","2021-01-23",12988,13,883],["Macon","2021-01-24",12988,132,1015],["Macon","2021-01-25",12988,186,1201],["Macon","2021-01-26",12988,67,1268],["Macon","2021-01-27",12988,48,1316],["Macon","2021-01-28",12988,39,1355],["Macon","2021-01-29",12988,26,1381],["Macon","2021-01-30",12988,3,1384],["Macon","2021-01-31",12988,2,1386],["Macon","2021-02-01",12988,17,1403],["Macon","2021-02-02",12988,26,1429],["Macon","2021-02-03",12988,69,1498],["Macon","2021-02-04",12988,50,1548],["Macon","2021-02-05",12988,113,1661],["Macon","2021-02-06",12988,8,1669],["Macon","2021-02-07",12988,4,1673],["Macon","2021-02-08",12988,39,1712],["Macon","2021-02-09",12988,48,1760],["Macon","2021-02-10",12988,39,1799],["Macon","2021-02-11",12988,52,1851],["Macon","2021-02-12",12988,160,2011],["Macon","2021-02-13",12988,19,2030],["Macon","2021-02-14",12988,7,2037],["Macon","2021-02-15",12988,73,2110],["Macon","2021-02-16",12988,31,2141],["Macon","2021-02-17",12988,53,2194],["Macon","2021-02-18",12988,63,2257],["Macon","2021-02-19",12988,51,2308],["Macon","2021-02-20",12988,4,2312],["Macon","2021-02-21",12988,1,2313],["Macon","2021-02-22",12988,186,2499],["Macon","2021-02-23",12988,38,2537],["Macon","2021-02-24",12988,36,2573],["Macon","2021-02-25",12988,77,2650],["Macon","2021-02-26",12988,44,2694],["Macon","2021-02-27",12988,8,2702],["Macon","2021-02-28",12988,9,2711],["Macon","2021-03-01",12988,82,2793],["Macon","2021-03-02",12988,50,2843],["Macon","2021-03-03",12988,68,2911],["Macon","2021-03-04",12988,51,2962],["Macon","2021-03-05",12988,125,3087],["Macon","2021-03-06",12988,6,3093],["Macon","2021-03-07",12988,4,3097],["Macon","2021-03-08",12988,73,3170],["Macon","2021-03-09",12988,35,3205],["Macon","2021-03-10",12988,44,3249],["Macon","2021-03-11",12988,57,3306],["Macon","2021-03-12",12988,119,3425],["Macon","2021-03-13",12988,16,3441],["Macon","2021-03-14",12988,13,3454],["Macon","2021-03-15",12988,206,3660],["Macon","2021-03-16",12988,41,3701],["Macon","2021-03-17",12988,62,3763],["Macon","2021-03-18",12988,41,3804],["Macon","2021-03-19",12988,105,3909],["Macon","2021-03-20",12988,5,3914],["Macon","2021-03-21",12988,4,3918],["Macon","2021-03-22",12988,185,4103],["Macon","2021-03-23",12988,61,4164],["Macon","2021-03-24",12988,49,4213],["Macon","2021-03-25",12988,89,4302],["Macon","2021-03-26",12988,51,4353],["Macon","2021-03-27",12988,18,4371],["Macon","2021-03-28",12988,16,4387],["Macon","2021-03-29",12988,126,4513],["Macon","2021-03-30",12988,67,4580],["Macon","2021-03-31",12988,66,4646],["Macon","2021-04-01",12988,176,4822],["Macon","2021-04-02",12988,39,4861],["Macon","2021-04-03",12988,16,4877],["Macon","2021-04-04",12988,3,4880],["Macon","2021-04-05",12988,90,4970],["Macon","2021-04-06",12988,55,5025],["Macon","2021-04-07",12988,53,5078],["Macon","2021-04-08",12988,108,5186],["Macon","2021-04-09",12988,143,5329],["Macon","2021-04-10",12988,10,5339],["Macon","2021-04-11",12988,13,5352],["Macon","2021-04-12",12988,194,5546],["Macon","2021-04-13",12988,78,5624],["Macon","2021-04-14",12988,60,5684],["Macon","2021-04-15",12988,105,5789],["Macon","2021-04-16",12988,88,5877],["Macon","2021-04-17",12988,12,5889],["Macon","2021-04-18",12988,4,5893],["Macon","2021-04-19",12988,197,6090],["Macon","2021-04-20",12988,58,6148],["Macon","2021-04-21",12988,49,6197],["Macon","2021-04-22",12988,88,6285],["Macon","2021-04-23",12988,68,6353],["Macon","2021-04-24",12988,10,6363],["Macon","2021-04-25",12988,26,6389],["Macon","2021-04-26",12988,99,6488],["Macon","2021-04-27",12988,49,6537],["Macon","2021-04-28",12988,40,6577],["Macon","2021-04-29",12988,67,6644],["Macon","2021-04-30",12988,58,6702],["Macon","2021-05-01",12988,11,6713],["Macon","2021-05-02",12988,5,6718],["Macon","2021-05-03",12988,34,6752],["Macon","2021-05-04",12988,68,6820],["Macon","2021-05-05",12988,63,6883],["Macon","2021-05-06",12988,49,6932],["Macon","2021-05-07",12988,67,6999],["Macon","2021-05-08",12988,12,7011],["Macon","2021-05-09",12988,2,7013],["Macon","2021-05-10",12988,29,7042],["Macon","2021-05-11",12988,57,7099],["Macon","2021-05-12",12988,29,7128],["Macon","2021-05-13",12988,73,7201],["Macon","2021-05-14",12988,36,7237],["Macon","2021-05-15",12988,12,7249],["Macon","2021-05-16",12988,11,7260],["Macon","2021-05-17",12988,34,7294],["Macon","2021-05-18",12988,52,7346],["Macon","2021-05-19",12988,51,7397],["Macon","2021-05-20",12988,61,7458],["Macon","2021-05-21",12988,39,7497],["Macon","2021-05-22",12988,13,7510],["Macon","2021-05-23",12988,38,7548],["Macon","2021-05-24",12988,24,7572],["Macon","2021-05-25",12988,55,7627],["Macon","2021-05-26",12988,24,7651],["Macon","2021-05-27",12988,11,7662],["Macon","2021-05-28",12988,18,7680],["Macon","2021-05-29",12988,7,7687],["Macon","2021-05-30",12988,8,7695],["Macon","2021-05-31",12988,1,7696],["Macon","2021-06-01",12988,25,7721],["Macon","2021-06-02",12988,18,7739],["Macon","2021-06-03",12988,31,7770],["Macon","2021-06-04",12988,34,7804],["Macon","2021-06-05",12988,8,7812],["Macon","2021-06-06",12988,7,7819],["Macon","2021-06-07",12988,31,7850],["Macon","2021-06-08",12988,48,7898],["Macon","2021-06-09",12988,35,7933],["Macon","2021-06-10",12988,32,7965],["Macon","2021-06-11",12988,31,7996],["Macon","2021-06-12",12988,11,8007],["Macon","2021-06-13",12988,9,8016],["Macon","2021-06-14",12988,30,8046],["Macon","2021-06-15",12988,32,8078],["Macon","2021-06-16",12988,41,8119],["Macon","2021-06-17",12988,24,8143],["Macon","2021-06-18",12988,30,8173],["Macon","2021-06-19",12988,12,8185],["Macon","2021-06-20",12988,6,8191],["Macon","2021-06-21",12988,13,8204],["Macon","2021-06-22",12988,21,8225],["Macon","2021-06-23",12988,23,8248],["Macon","2021-06-24",12988,24,8272],["Macon","2021-06-25",12988,17,8289],["Macon","2021-06-26",12988,7,8296],["Macon","2021-06-27",12988,5,8301],["Macon","2021-06-28",12988,25,8326],["Macon","2021-06-29",12988,14,8340],["Macon","2021-06-30",12988,9,8349],["Macon","2021-07-01",12988,17,8366],["Macon","2021-07-02",12988,14,8380],["Macon","2021-07-03",12988,2,8382],["Macon","2021-07-05",12988,9,8391],["Macon","2021-07-06",12988,19,8410],["Macon","2021-07-07",12988,14,8424],["Macon","2021-07-08",12988,18,8442],["Macon","2021-07-09",12988,21,8463],["Macon","2021-07-10",12988,13,8476],["Macon","2021-07-11",12988,3,8479],["Macon","2021-07-12",12988,9,8488],["Macon","2021-07-13",12988,14,8502],["Macon","2021-07-14",12988,13,8515],["Macon","2021-07-15",12988,27,8542],["Macon","2021-07-16",12988,20,8562],["Macon","2021-07-17",12988,7,8569],["Macon","2021-07-18",12988,4,8573],["Macon","2021-07-19",12988,12,8585],["Macon","2021-07-20",12988,27,8612],["Macon","2021-07-21",12988,21,8633],["Macon","2021-07-22",12988,25,8658],["Macon","2021-07-23",12988,25,8683],["Macon","2021-07-24",12988,5,8688],["Macon","2021-07-25",12988,6,8694],["Macon","2021-07-26",12988,13,8707],["Macon","2021-07-27",12988,35,8742],["Macon","2021-07-28",12988,20,8762],["Macon","2021-07-29",12988,28,8790],["Macon","2021-07-30",12988,34,8824],["Macon","2021-07-31",12988,15,8839],["Macon","2021-08-01",12988,12,8851],["Macon","2021-08-02",12988,20,8871],["Macon","2021-08-03",12988,33,8904],["Macon","2021-08-04",12988,20,8924],["Macon","2021-08-05",12988,48,8972],["Macon","2021-08-06",12988,29,9001],["Macon","2021-08-07",12988,14,9015],["Macon","2021-08-08",12988,11,9026],["Macon","2021-08-09",12988,25,9051],["Macon","2021-08-10",12988,43,9094],["Macon","2021-08-11",12988,27,9121],["Macon","2021-08-12",12988,30,9151],["Macon","2021-08-13",12988,46,9197],["Macon","2021-08-14",12988,24,9221],["Macon","2021-08-15",12988,17,9238],["Macon","2021-08-16",12988,38,9276],["Macon","2021-08-17",12988,44,9320],["Macon","2021-08-18",12988,24,9344],["Macon","2021-08-19",12988,49,9393],["Macon","2021-08-20",12988,40,9433],["Macon","2021-08-21",12988,32,9465],["Macon","2021-08-22",12988,14,9479],["Macon","2021-08-23",12988,26,9505],["Macon","2021-08-24",12988,31,9536],["Macon","2021-08-25",12988,56,9592],["Macon","2021-08-26",12988,62,9654],["Macon","2021-08-27",12988,46,9700],["Macon","2021-08-28",12988,12,9712],["Macon","2021-08-29",12988,18,9730],["Macon","2021-08-30",12988,31,9761],["Macon","2021-08-31",12988,43,9804],["Macon","2021-09-01",12988,62,9866],["Macon","2021-09-02",12988,43,9909],["Macon","2021-09-03",12988,47,9956],["Macon","2021-09-04",12988,18,9974],["Macon","2021-09-05",12988,22,9996],["Macon","2021-09-06",12988,3,9999],["Macon","2021-09-07",12988,55,10054],["Macon","2021-09-08",12988,41,10095],["Macon","2021-09-09",12988,42,10137],["Macon","2021-09-10",12988,71,10208],["Macon","2021-09-11",12988,23,10231],["Macon","2021-09-12",12988,13,10244],["Macon","2021-09-13",12988,32,10276],["Macon","2021-09-14",12988,52,10328],["Macon","2021-09-15",12988,48,10376],["Macon","2021-09-16",12988,42,10418],["Macon","2021-09-17",12988,53,10471],["Macon","2021-09-18",12988,15,10486],["Macon","2021-09-19",12988,14,10500],["Macon","2021-09-20",12988,42,10542],["Macon","2021-09-21",12988,27,10569],["Macon","2021-09-22",12988,42,10611],["Macon","2021-09-23",12988,31,10642],["Macon","2021-09-24",12988,32,10674],["Macon","2021-09-25",12988,13,10687],["Macon","2021-09-26",12988,10,10697],["Macon","2021-09-27",12988,27,10724],["Macon","2021-09-28",12988,43,10767],["Macon","2021-09-29",12988,32,10799],["Macon","2021-09-30",12988,22,10821],["Macon","2021-10-01",12988,45,10866],["Macon","2021-10-02",12988,10,10876],["Macon","2021-10-03",12988,5,10881],["Macon","2021-10-04",12988,19,10900],["Macon","2021-10-05",12988,123,11023],["Macon","2021-10-06",12988,35,11058],["Macon","2021-10-07",12988,32,11090],["Macon","2021-10-08",12988,36,11126],["Macon","2021-10-09",12988,9,11135],["Macon","2021-10-10",12988,5,11140],["Macon","2021-10-11",12988,16,11156],["Macon","2021-10-12",12988,18,11174],["Macon","2021-10-13",12988,22,11196],["Macon","2021-10-14",12988,28,11224],["Macon","2021-10-15",12988,28,11252],["Macon","2021-10-16",12988,6,11258],["Macon","2021-10-17",12988,4,11262],["Macon","2021-10-18",12988,21,11283],["Macon","2021-10-19",12988,25,11308],["Macon","2021-10-20",12988,18,11326],["Macon","2021-10-21",12988,12,11338],["Macon","2021-10-22",12988,28,11366],["Macon","2021-10-23",12988,14,11380],["Macon","2021-10-24",12988,5,11385],["Macon","2021-10-25",12988,72,11457],["Macon","2021-10-26",12988,66,11523],["Macon","2021-10-27",12988,27,11550],["Macon","2021-10-28",12988,80,11630],["Macon","2021-10-29",12988,71,11701],["Macon","2021-10-30",12988,6,11707],["Macon","2021-10-31",12988,10,11717],["Macon","2021-11-01",12988,49,11766],["Macon","2021-11-02",12988,51,11817],["Macon","2021-11-03",12988,40,11857],["Macon","2021-11-04",12988,68,11925],["Macon","2021-11-05",12988,31,11956],["Macon","2021-11-06",12988,15,11971],["Macon","2021-11-07",12988,3,11974],["Macon","2021-11-08",12988,52,12026],["Macon","2021-11-09",12988,56,12082],["Macon","2021-11-10",12988,26,12108],["Macon","2021-11-11",12988,47,12155],["Macon","2021-11-12",12988,57,12212],["Macon","2021-11-13",12988,32,12244],["Macon","2021-11-14",12988,6,12250],["Macon","2021-11-15",12988,39,12289],["Macon","2021-11-16",12988,45,12334],["Macon","2021-11-17",12988,25,12359],["Macon","2021-11-18",12988,29,12388],["Macon","2021-11-19",12988,33,12421],["Macon","2021-11-20",12988,16,12437],["Macon","2021-11-21",12988,3,12440],["Macon","2021-11-22",12988,52,12492],["Macon","2021-11-23",12988,29,12521],["Macon","2021-11-24",12988,18,12539],["Macon","2021-11-26",12988,10,12549],["Macon","2021-11-27",12988,9,12558],["Macon","2021-11-28",12988,4,12562],["Macon","2021-11-29",12988,25,12587],["Macon","2021-11-30",12988,41,12628],["Macon","2021-12-01",12988,27,12655],["Macon","2021-12-02",12988,105,12760],["Macon","2021-12-03",12988,42,12802],["Macon","2021-12-04",12988,11,12813],["Macon","2021-12-05",12988,3,12816],["Macon","2021-12-06",12988,31,12847],["Macon","2021-12-07",12988,33,12880],["Macon","2021-12-08",12988,28,12908],["Macon","2021-12-09",12988,50,12958],["Macon","2021-12-10",12988,66,13024],["Macon","2021-12-11",12988,10,13034],["Macon","2021-12-12",12988,7,13041],["Macon","2021-12-13",12988,36,13077],["Macon","2021-12-14",12988,43,13120],["Macon","2021-12-15",12988,25,13145],["Macon","2021-12-16",12988,29,13174],["Macon","2021-12-17",12988,33,13207],["Macon","2021-12-18",12988,10,13217],["Macon","2021-12-19",12988,3,13220],["Macon","2021-12-20",12988,25,13245],["Macon","2021-12-21",12988,37,13282],["Macon","2021-12-22",12988,22,13304],["Macon","2021-12-23",12988,26,13330],["Macon","2021-12-24",12988,2,13332],["Macon","2021-12-26",12988,11,13343],["Macon","2021-12-27",12988,29,13372],["Macon","2021-12-28",12988,35,13407],["Macon","2021-12-29",12988,45,13452],["Macon","2021-12-30",12988,37,13489],["Macon","2021-12-31",12988,20,13509],["Macon","2022-01-01",12988,1,13510],["Macon","2022-01-02",12988,7,13517],["Macon","2022-01-03",12988,12,13529],["Madison","2020-12-18",30177,7,7],["Madison","2020-12-19",30177,5,12],["Madison","2020-12-20",30177,2,14],["Madison","2020-12-21",30177,7,21],["Madison","2020-12-22",30177,23,44],["Madison","2020-12-23",30177,41,85],["Madison","2020-12-24",30177,10,95],["Madison","2020-12-26",30177,6,101],["Madison","2020-12-27",30177,1,102],["Madison","2020-12-28",30177,58,160],["Madison","2020-12-29",30177,61,221],["Madison","2020-12-30",30177,34,255],["Madison","2020-12-31",30177,42,297],["Madison","2021-01-01",30177,2,299],["Madison","2021-01-02",30177,10,309],["Madison","2021-01-03",30177,6,315],["Madison","2021-01-04",30177,129,444],["Madison","2021-01-05",30177,30,474],["Madison","2021-01-06",30177,44,518],["Madison","2021-01-07",30177,46,564],["Madison","2021-01-08",30177,58,622],["Madison","2021-01-09",30177,12,634],["Madison","2021-01-10",30177,9,643],["Madison","2021-01-11",30177,51,694],["Madison","2021-01-12",30177,71,765],["Madison","2021-01-13",30177,74,839],["Madison","2021-01-14",30177,91,930],["Madison","2021-01-15",30177,155,1085],["Madison","2021-01-16",30177,63,1148],["Madison","2021-01-17",30177,11,1159],["Madison","2021-01-18",30177,86,1245],["Madison","2021-01-19",30177,120,1365],["Madison","2021-01-20",30177,99,1464],["Madison","2021-01-21",30177,154,1618],["Madison","2021-01-22",30177,94,1712],["Madison","2021-01-23",30177,62,1774],["Madison","2021-01-24",30177,39,1813],["Madison","2021-01-25",30177,271,2084],["Madison","2021-01-26",30177,172,2256],["Madison","2021-01-27",30177,104,2360],["Madison","2021-01-28",30177,83,2443],["Madison","2021-01-29",30177,100,2543],["Madison","2021-01-30",30177,14,2557],["Madison","2021-01-31",30177,11,2568],["Madison","2021-02-01",30177,94,2662],["Madison","2021-02-02",30177,133,2795],["Madison","2021-02-03",30177,109,2904],["Madison","2021-02-04",30177,89,2993],["Madison","2021-02-05",30177,119,3112],["Madison","2021-02-06",30177,40,3152],["Madison","2021-02-07",30177,10,3162],["Madison","2021-02-08",30177,61,3223],["Madison","2021-02-09",30177,192,3415],["Madison","2021-02-10",30177,170,3585],["Madison","2021-02-11",30177,109,3694],["Madison","2021-02-12",30177,151,3845],["Madison","2021-02-13",30177,83,3928],["Madison","2021-02-14",30177,31,3959],["Madison","2021-02-15",30177,132,4091],["Madison","2021-02-16",30177,195,4286],["Madison","2021-02-17",30177,97,4383],["Madison","2021-02-18",30177,93,4476],["Madison","2021-02-19",30177,124,4600],["Madison","2021-02-20",30177,43,4643],["Madison","2021-02-21",30177,15,4658],["Madison","2021-02-22",30177,176,4834],["Madison","2021-02-23",30177,278,5112],["Madison","2021-02-24",30177,113,5225],["Madison","2021-02-25",30177,127,5352],["Madison","2021-02-26",30177,132,5484],["Madison","2021-02-27",30177,36,5520],["Madison","2021-02-28",30177,26,5546],["Madison","2021-03-01",30177,127,5673],["Madison","2021-03-02",30177,217,5890],["Madison","2021-03-03",30177,168,6058],["Madison","2021-03-04",30177,117,6175],["Madison","2021-03-05",30177,132,6307],["Madison","2021-03-06",30177,31,6338],["Madison","2021-03-07",30177,27,6365],["Madison","2021-03-08",30177,126,6491],["Madison","2021-03-09",30177,220,6711],["Madison","2021-03-10",30177,227,6938],["Madison","2021-03-11",30177,198,7136],["Madison","2021-03-12",30177,388,7524],["Madison","2021-03-13",30177,103,7627],["Madison","2021-03-14",30177,47,7674],["Madison","2021-03-15",30177,168,7842],["Madison","2021-03-16",30177,285,8127],["Madison","2021-03-17",30177,240,8367],["Madison","2021-03-18",30177,182,8549],["Madison","2021-03-19",30177,192,8741],["Madison","2021-03-20",30177,171,8912],["Madison","2021-03-21",30177,34,8946],["Madison","2021-03-22",30177,287,9233],["Madison","2021-03-23",30177,306,9539],["Madison","2021-03-24",30177,199,9738],["Madison","2021-03-25",30177,229,9967],["Madison","2021-03-26",30177,268,10235],["Madison","2021-03-27",30177,52,10287],["Madison","2021-03-28",30177,59,10346],["Madison","2021-03-29",30177,191,10537],["Madison","2021-03-30",30177,216,10753],["Madison","2021-03-31",30177,343,11096],["Madison","2021-04-01",30177,285,11381],["Madison","2021-04-02",30177,229,11610],["Madison","2021-04-03",30177,97,11707],["Madison","2021-04-04",30177,53,11760],["Madison","2021-04-05",30177,213,11973],["Madison","2021-04-06",30177,245,12218],["Madison","2021-04-07",30177,268,12486],["Madison","2021-04-08",30177,243,12729],["Madison","2021-04-09",30177,381,13110],["Madison","2021-04-10",30177,80,13190],["Madison","2021-04-11",30177,61,13251],["Madison","2021-04-12",30177,189,13440],["Madison","2021-04-13",30177,252,13692],["Madison","2021-04-14",30177,227,13919],["Madison","2021-04-15",30177,193,14112],["Madison","2021-04-16",30177,283,14395],["Madison","2021-04-17",30177,167,14562],["Madison","2021-04-18",30177,26,14588],["Madison","2021-04-19",30177,203,14791],["Madison","2021-04-20",30177,260,15051],["Madison","2021-04-21",30177,264,15315],["Madison","2021-04-22",30177,184,15499],["Madison","2021-04-23",30177,324,15823],["Madison","2021-04-24",30177,46,15869],["Madison","2021-04-25",30177,26,15895],["Madison","2021-04-26",30177,157,16052],["Madison","2021-04-27",30177,190,16242],["Madison","2021-04-28",30177,177,16419],["Madison","2021-04-29",30177,163,16582],["Madison","2021-04-30",30177,196,16778],["Madison","2021-05-01",30177,53,16831],["Madison","2021-05-02",30177,31,16862],["Madison","2021-05-03",30177,121,16983],["Madison","2021-05-04",30177,146,17129],["Madison","2021-05-05",30177,108,17237],["Madison","2021-05-06",30177,129,17366],["Madison","2021-05-07",30177,131,17497],["Madison","2021-05-08",30177,60,17557],["Madison","2021-05-09",30177,13,17570],["Madison","2021-05-10",30177,78,17648],["Madison","2021-05-11",30177,117,17765],["Madison","2021-05-12",30177,98,17863],["Madison","2021-05-13",30177,102,17965],["Madison","2021-05-14",30177,130,18095],["Madison","2021-05-15",30177,56,18151],["Madison","2021-05-16",30177,22,18173],["Madison","2021-05-17",30177,83,18256],["Madison","2021-05-18",30177,98,18354],["Madison","2021-05-19",30177,91,18445],["Madison","2021-05-20",30177,78,18523],["Madison","2021-05-21",30177,124,18647],["Madison","2021-05-22",30177,44,18691],["Madison","2021-05-23",30177,25,18716],["Madison","2021-05-24",30177,59,18775],["Madison","2021-05-25",30177,59,18834],["Madison","2021-05-26",30177,85,18919],["Madison","2021-05-27",30177,53,18972],["Madison","2021-05-28",30177,115,19087],["Madison","2021-05-29",30177,24,19111],["Madison","2021-05-30",30177,15,19126],["Madison","2021-05-31",30177,14,19140],["Madison","2021-06-01",30177,76,19216],["Madison","2021-06-02",30177,55,19271],["Madison","2021-06-03",30177,66,19337],["Madison","2021-06-04",30177,90,19427],["Madison","2021-06-05",30177,36,19463],["Madison","2021-06-06",30177,15,19478],["Madison","2021-06-07",30177,47,19525],["Madison","2021-06-08",30177,51,19576],["Madison","2021-06-09",30177,56,19632],["Madison","2021-06-10",30177,47,19679],["Madison","2021-06-11",30177,63,19742],["Madison","2021-06-12",30177,47,19789],["Madison","2021-06-13",30177,22,19811],["Madison","2021-06-14",30177,54,19865],["Madison","2021-06-15",30177,49,19914],["Madison","2021-06-16",30177,45,19959],["Madison","2021-06-17",30177,44,20003],["Madison","2021-06-18",30177,51,20054],["Madison","2021-06-19",30177,24,20078],["Madison","2021-06-20",30177,14,20092],["Madison","2021-06-21",30177,24,20116],["Madison","2021-06-22",30177,37,20153],["Madison","2021-06-23",30177,51,20204],["Madison","2021-06-24",30177,31,20235],["Madison","2021-06-25",30177,79,20314],["Madison","2021-06-26",30177,23,20337],["Madison","2021-06-27",30177,4,20341],["Madison","2021-06-28",30177,31,20372],["Madison","2021-06-29",30177,31,20403],["Madison","2021-06-30",30177,34,20437],["Madison","2021-07-01",30177,31,20468],["Madison","2021-07-02",30177,37,20505],["Madison","2021-07-03",30177,13,20518],["Madison","2021-07-04",30177,3,20521],["Madison","2021-07-05",30177,19,20540],["Madison","2021-07-06",30177,17,20557],["Madison","2021-07-07",30177,32,20589],["Madison","2021-07-08",30177,23,20612],["Madison","2021-07-09",30177,28,20640],["Madison","2021-07-10",30177,18,20658],["Madison","2021-07-11",30177,14,20672],["Madison","2021-07-12",30177,28,20700],["Madison","2021-07-13",30177,22,20722],["Madison","2021-07-14",30177,31,20753],["Madison","2021-07-15",30177,26,20779],["Madison","2021-07-16",30177,44,20823],["Madison","2021-07-17",30177,16,20839],["Madison","2021-07-18",30177,10,20849],["Madison","2021-07-19",30177,24,20873],["Madison","2021-07-20",30177,25,20898],["Madison","2021-07-21",30177,40,20938],["Madison","2021-07-22",30177,35,20973],["Madison","2021-07-23",30177,42,21015],["Madison","2021-07-24",30177,24,21039],["Madison","2021-07-25",30177,12,21051],["Madison","2021-07-26",30177,35,21086],["Madison","2021-07-27",30177,32,21118],["Madison","2021-07-28",30177,47,21165],["Madison","2021-07-29",30177,47,21212],["Madison","2021-07-30",30177,55,21267],["Madison","2021-07-31",30177,27,21294],["Madison","2021-08-01",30177,10,21304],["Madison","2021-08-02",30177,60,21364],["Madison","2021-08-03",30177,56,21420],["Madison","2021-08-04",30177,67,21487],["Madison","2021-08-05",30177,57,21544],["Madison","2021-08-06",30177,85,21629],["Madison","2021-08-07",30177,43,21672],["Madison","2021-08-08",30177,32,21704],["Madison","2021-08-09",30177,68,21772],["Madison","2021-08-10",30177,55,21827],["Madison","2021-08-11",30177,67,21894],["Madison","2021-08-12",30177,57,21951],["Madison","2021-08-13",30177,89,22040],["Madison","2021-08-14",30177,41,22081],["Madison","2021-08-15",30177,32,22113],["Madison","2021-08-16",30177,79,22192],["Madison","2021-08-17",30177,68,22260],["Madison","2021-08-18",30177,65,22325],["Madison","2021-08-19",30177,80,22405],["Madison","2021-08-20",30177,94,22499],["Madison","2021-08-21",30177,57,22556],["Madison","2021-08-22",30177,30,22586],["Madison","2021-08-23",30177,82,22668],["Madison","2021-08-24",30177,84,22752],["Madison","2021-08-25",30177,102,22854],["Madison","2021-08-26",30177,97,22951],["Madison","2021-08-27",30177,108,23059],["Madison","2021-08-28",30177,53,23112],["Madison","2021-08-29",30177,34,23146],["Madison","2021-08-30",30177,83,23229],["Madison","2021-08-31",30177,88,23317],["Madison","2021-09-01",30177,109,23426],["Madison","2021-09-02",30177,100,23526],["Madison","2021-09-03",30177,120,23646],["Madison","2021-09-04",30177,51,23697],["Madison","2021-09-05",30177,35,23732],["Madison","2021-09-06",30177,11,23743],["Madison","2021-09-07",30177,83,23826],["Madison","2021-09-08",30177,79,23905],["Madison","2021-09-09",30177,70,23975],["Madison","2021-09-10",30177,104,24079],["Madison","2021-09-11",30177,37,24116],["Madison","2021-09-12",30177,39,24155],["Madison","2021-09-13",30177,71,24226],["Madison","2021-09-14",30177,78,24304],["Madison","2021-09-15",30177,62,24366],["Madison","2021-09-16",30177,77,24443],["Madison","2021-09-17",30177,93,24536],["Madison","2021-09-18",30177,45,24581],["Madison","2021-09-19",30177,18,24599],["Madison","2021-09-20",30177,73,24672],["Madison","2021-09-21",30177,51,24723],["Madison","2021-09-22",30177,54,24777],["Madison","2021-09-23",30177,61,24838],["Madison","2021-09-24",30177,71,24909],["Madison","2021-09-25",30177,52,24961],["Madison","2021-09-26",30177,23,24984],["Madison","2021-09-27",30177,71,25055],["Madison","2021-09-28",30177,84,25139],["Madison","2021-09-29",30177,80,25219],["Madison","2021-09-30",30177,70,25289],["Madison","2021-10-01",30177,101,25390],["Madison","2021-10-02",30177,38,25428],["Madison","2021-10-03",30177,21,25449],["Madison","2021-10-04",30177,64,25513],["Madison","2021-10-05",30177,57,25570],["Madison","2021-10-06",30177,56,25626],["Madison","2021-10-07",30177,56,25682],["Madison","2021-10-08",30177,83,25765],["Madison","2021-10-09",30177,17,25782],["Madison","2021-10-10",30177,15,25797],["Madison","2021-10-11",30177,35,25832],["Madison","2021-10-12",30177,48,25880],["Madison","2021-10-13",30177,52,25932],["Madison","2021-10-14",30177,46,25978],["Madison","2021-10-15",30177,62,26040],["Madison","2021-10-16",30177,25,26065],["Madison","2021-10-17",30177,13,26078],["Madison","2021-10-18",30177,52,26130],["Madison","2021-10-19",30177,32,26162],["Madison","2021-10-20",30177,44,26206],["Madison","2021-10-21",30177,41,26247],["Madison","2021-10-22",30177,93,26340],["Madison","2021-10-23",30177,53,26393],["Madison","2021-10-24",30177,39,26432],["Madison","2021-10-25",30177,82,26514],["Madison","2021-10-26",30177,100,26614],["Madison","2021-10-27",30177,94,26708],["Madison","2021-10-28",30177,110,26818],["Madison","2021-10-29",30177,114,26932],["Madison","2021-10-30",30177,49,26981],["Madison","2021-10-31",30177,25,27006],["Madison","2021-11-01",30177,79,27085],["Madison","2021-11-02",30177,99,27184],["Madison","2021-11-03",30177,98,27282],["Madison","2021-11-04",30177,122,27404],["Madison","2021-11-05",30177,115,27519],["Madison","2021-11-06",30177,40,27559],["Madison","2021-11-07",30177,15,27574],["Madison","2021-11-08",30177,84,27658],["Madison","2021-11-09",30177,67,27725],["Madison","2021-11-10",30177,82,27807],["Madison","2021-11-11",30177,89,27896],["Madison","2021-11-12",30177,112,28008],["Madison","2021-11-13",30177,46,28054],["Madison","2021-11-14",30177,23,28077],["Madison","2021-11-15",30177,101,28178],["Madison","2021-11-16",30177,98,28276],["Madison","2021-11-17",30177,75,28351],["Madison","2021-11-18",30177,85,28436],["Madison","2021-11-19",30177,96,28532],["Madison","2021-11-20",30177,53,28585],["Madison","2021-11-21",30177,28,28613],["Madison","2021-11-22",30177,76,28689],["Madison","2021-11-23",30177,77,28766],["Madison","2021-11-24",30177,48,28814],["Madison","2021-11-26",30177,57,28871],["Madison","2021-11-27",30177,32,28903],["Madison","2021-11-28",30177,22,28925],["Madison","2021-11-29",30177,90,29015],["Madison","2021-11-30",30177,105,29120],["Madison","2021-12-01",30177,116,29236],["Madison","2021-12-02",30177,129,29365],["Madison","2021-12-03",30177,111,29476],["Madison","2021-12-04",30177,62,29538],["Madison","2021-12-05",30177,31,29569],["Madison","2021-12-06",30177,85,29654],["Madison","2021-12-07",30177,81,29735],["Madison","2021-12-08",30177,55,29790],["Madison","2021-12-09",30177,92,29882],["Madison","2021-12-10",30177,107,29989],["Madison","2021-12-11",30177,36,30025],["Madison","2021-12-12",30177,22,30047],["Madison","2021-12-13",30177,58,30105],["Madison","2021-12-14",30177,62,30167],["Madison","2021-12-15",30177,68,30235],["Madison","2021-12-16",30177,82,30317],["Madison","2021-12-17",30177,68,30385],["Madison","2021-12-18",30177,44,30429],["Madison","2021-12-19",30177,21,30450],["Madison","2021-12-20",30177,88,30538],["Madison","2021-12-21",30177,98,30636],["Madison","2021-12-22",30177,84,30720],["Madison","2021-12-23",30177,81,30801],["Madison","2021-12-24",30177,10,30811],["Madison","2021-12-26",30177,27,30838],["Madison","2021-12-27",30177,64,30902],["Madison","2021-12-28",30177,81,30983],["Madison","2021-12-29",30177,69,31052],["Madison","2021-12-30",30177,101,31153],["Madison","2021-12-31",30177,39,31192],["Madison","2022-01-01",30177,14,31206],["Madison","2022-01-02",30177,32,31238],["Madison","2022-01-03",30177,29,31267],["Marion","2020-12-12",8293,1,1],["Marion","2020-12-14",8293,1,2],["Marion","2020-12-18",8293,3,5],["Marion","2020-12-19",8293,1,6],["Marion","2020-12-20",8293,1,7],["Marion","2020-12-21",8293,5,12],["Marion","2020-12-22",8293,2,14],["Marion","2020-12-23",8293,7,21],["Marion","2020-12-24",8293,1,22],["Marion","2020-12-26",8293,2,24],["Marion","2020-12-27",8293,1,25],["Marion","2020-12-28",8293,5,30],["Marion","2020-12-29",8293,7,37],["Marion","2020-12-30",8293,6,43],["Marion","2020-12-31",8293,4,47],["Marion","2021-01-03",8293,1,48],["Marion","2021-01-04",8293,34,82],["Marion","2021-01-05",8293,8,90],["Marion","2021-01-06",8293,11,101],["Marion","2021-01-07",8293,9,110],["Marion","2021-01-08",8293,9,119],["Marion","2021-01-09",8293,5,124],["Marion","2021-01-10",8293,3,127],["Marion","2021-01-11",8293,54,181],["Marion","2021-01-12",8293,21,202],["Marion","2021-01-13",8293,140,342],["Marion","2021-01-14",8293,104,446],["Marion","2021-01-15",8293,107,553],["Marion","2021-01-16",8293,9,562],["Marion","2021-01-17",8293,3,565],["Marion","2021-01-18",8293,16,581],["Marion","2021-01-19",8293,18,599],["Marion","2021-01-20",8293,67,666],["Marion","2021-01-21",8293,17,683],["Marion","2021-01-22",8293,48,731],["Marion","2021-01-23",8293,1,732],["Marion","2021-01-24",8293,3,735],["Marion","2021-01-25",8293,49,784],["Marion","2021-01-26",8293,10,794],["Marion","2021-01-27",8293,16,810],["Marion","2021-01-28",8293,18,828],["Marion","2021-01-29",8293,24,852],["Marion","2021-01-30",8293,1,853],["Marion","2021-01-31",8293,2,855],["Marion","2021-02-01",8293,11,866],["Marion","2021-02-02",8293,10,876],["Marion","2021-02-03",8293,15,891],["Marion","2021-02-04",8293,17,908],["Marion","2021-02-05",8293,8,916],["Marion","2021-02-06",8293,3,919],["Marion","2021-02-07",8293,1,920],["Marion","2021-02-08",8293,55,975],["Marion","2021-02-09",8293,17,992],["Marion","2021-02-10",8293,139,1131],["Marion","2021-02-11",8293,105,1236],["Marion","2021-02-12",8293,24,1260],["Marion","2021-02-13",8293,4,1264],["Marion","2021-02-14",8293,1,1265],["Marion","2021-02-15",8293,105,1370],["Marion","2021-02-16",8293,29,1399],["Marion","2021-02-17",8293,67,1466],["Marion","2021-02-18",8293,13,1479],["Marion","2021-02-19",8293,59,1538],["Marion","2021-02-20",8293,1,1539],["Marion","2021-02-22",8293,115,1654],["Marion","2021-02-23",8293,13,1667],["Marion","2021-02-24",8293,94,1761],["Marion","2021-02-25",8293,18,1779],["Marion","2021-02-26",8293,78,1857],["Marion","2021-02-27",8293,3,1860],["Marion","2021-02-28",8293,1,1861],["Marion","2021-03-01",8293,23,1884],["Marion","2021-03-02",8293,9,1893],["Marion","2021-03-03",8293,71,1964],["Marion","2021-03-04",8293,25,1989],["Marion","2021-03-05",8293,25,2014],["Marion","2021-03-06",8293,3,2017],["Marion","2021-03-07",8293,1,2018],["Marion","2021-03-08",8293,16,2034],["Marion","2021-03-09",8293,16,2050],["Marion","2021-03-10",8293,85,2135],["Marion","2021-03-11",8293,33,2168],["Marion","2021-03-12",8293,49,2217],["Marion","2021-03-13",8293,4,2221],["Marion","2021-03-14",8293,4,2225],["Marion","2021-03-15",8293,37,2262],["Marion","2021-03-16",8293,22,2284],["Marion","2021-03-17",8293,91,2375],["Marion","2021-03-18",8293,19,2394],["Marion","2021-03-19",8293,53,2447],["Marion","2021-03-20",8293,7,2454],["Marion","2021-03-21",8293,2,2456],["Marion","2021-03-22",8293,115,2571],["Marion","2021-03-23",8293,27,2598],["Marion","2021-03-24",8293,129,2727],["Marion","2021-03-25",8293,33,2760],["Marion","2021-03-26",8293,120,2880],["Marion","2021-03-27",8293,10,2890],["Marion","2021-03-28",8293,6,2896],["Marion","2021-03-29",8293,25,2921],["Marion","2021-03-30",8293,18,2939],["Marion","2021-03-31",8293,94,3033],["Marion","2021-04-01",8293,44,3077],["Marion","2021-04-02",8293,22,3099],["Marion","2021-04-03",8293,10,3109],["Marion","2021-04-04",8293,7,3116],["Marion","2021-04-05",8293,39,3155],["Marion","2021-04-06",8293,41,3196],["Marion","2021-04-07",8293,103,3299],["Marion","2021-04-08",8293,52,3351],["Marion","2021-04-09",8293,75,3426],["Marion","2021-04-10",8293,11,3437],["Marion","2021-04-11",8293,8,3445],["Marion","2021-04-12",8293,44,3489],["Marion","2021-04-13",8293,31,3520],["Marion","2021-04-14",8293,36,3556],["Marion","2021-04-15",8293,97,3653],["Marion","2021-04-16",8293,53,3706],["Marion","2021-04-17",8293,5,3711],["Marion","2021-04-18",8293,7,3718],["Marion","2021-04-19",8293,28,3746],["Marion","2021-04-20",8293,37,3783],["Marion","2021-04-21",8293,65,3848],["Marion","2021-04-22",8293,51,3899],["Marion","2021-04-23",8293,36,3935],["Marion","2021-04-24",8293,14,3949],["Marion","2021-04-25",8293,5,3954],["Marion","2021-04-26",8293,54,4008],["Marion","2021-04-27",8293,20,4028],["Marion","2021-04-28",8293,41,4069],["Marion","2021-04-29",8293,47,4116],["Marion","2021-04-30",8293,43,4159],["Marion","2021-05-01",8293,8,4167],["Marion","2021-05-02",8293,3,4170],["Marion","2021-05-03",8293,20,4190],["Marion","2021-05-04",8293,13,4203],["Marion","2021-05-05",8293,29,4232],["Marion","2021-05-06",8293,62,4294],["Marion","2021-05-07",8293,25,4319],["Marion","2021-05-08",8293,8,4327],["Marion","2021-05-09",8293,1,4328],["Marion","2021-05-10",8293,26,4354],["Marion","2021-05-11",8293,22,4376],["Marion","2021-05-12",8293,31,4407],["Marion","2021-05-13",8293,31,4438],["Marion","2021-05-14",8293,25,4463],["Marion","2021-05-15",8293,16,4479],["Marion","2021-05-16",8293,5,4484],["Marion","2021-05-17",8293,18,4502],["Marion","2021-05-18",8293,28,4530],["Marion","2021-05-19",8293,38,4568],["Marion","2021-05-20",8293,51,4619],["Marion","2021-05-21",8293,25,4644],["Marion","2021-05-22",8293,7,4651],["Marion","2021-05-23",8293,5,4656],["Marion","2021-05-24",8293,17,4673],["Marion","2021-05-25",8293,15,4688],["Marion","2021-05-26",8293,26,4714],["Marion","2021-05-27",8293,34,4748],["Marion","2021-05-28",8293,15,4763],["Marion","2021-05-29",8293,8,4771],["Marion","2021-05-30",8293,2,4773],["Marion","2021-05-31",8293,1,4774],["Marion","2021-06-01",8293,16,4790],["Marion","2021-06-02",8293,23,4813],["Marion","2021-06-03",8293,15,4828],["Marion","2021-06-04",8293,12,4840],["Marion","2021-06-05",8293,13,4853],["Marion","2021-06-06",8293,3,4856],["Marion","2021-06-07",8293,12,4868],["Marion","2021-06-08",8293,18,4886],["Marion","2021-06-09",8293,29,4915],["Marion","2021-06-10",8293,39,4954],["Marion","2021-06-11",8293,15,4969],["Marion","2021-06-12",8293,5,4974],["Marion","2021-06-13",8293,3,4977],["Marion","2021-06-14",8293,14,4991],["Marion","2021-06-15",8293,16,5007],["Marion","2021-06-16",8293,16,5023],["Marion","2021-06-17",8293,31,5054],["Marion","2021-06-18",8293,11,5065],["Marion","2021-06-19",8293,7,5072],["Marion","2021-06-21",8293,6,5078],["Marion","2021-06-22",8293,10,5088],["Marion","2021-06-23",8293,22,5110],["Marion","2021-06-24",8293,26,5136],["Marion","2021-06-25",8293,18,5154],["Marion","2021-06-26",8293,15,5169],["Marion","2021-06-27",8293,2,5171],["Marion","2021-06-28",8293,7,5178],["Marion","2021-06-29",8293,6,5184],["Marion","2021-06-30",8293,20,5204],["Marion","2021-07-01",8293,12,5216],["Marion","2021-07-02",8293,9,5225],["Marion","2021-07-03",8293,5,5230],["Marion","2021-07-04",8293,2,5232],["Marion","2021-07-05",8293,2,5234],["Marion","2021-07-06",8293,10,5244],["Marion","2021-07-07",8293,14,5258],["Marion","2021-07-08",8293,6,5264],["Marion","2021-07-09",8293,8,5272],["Marion","2021-07-11",8293,1,5273],["Marion","2021-07-12",8293,6,5279],["Marion","2021-07-13",8293,11,5290],["Marion","2021-07-14",8293,10,5300],["Marion","2021-07-15",8293,20,5320],["Marion","2021-07-16",8293,9,5329],["Marion","2021-07-17",8293,8,5337],["Marion","2021-07-18",8293,2,5339],["Marion","2021-07-19",8293,13,5352],["Marion","2021-07-20",8293,16,5368],["Marion","2021-07-21",8293,18,5386],["Marion","2021-07-22",8293,46,5432],["Marion","2021-07-23",8293,13,5445],["Marion","2021-07-24",8293,10,5455],["Marion","2021-07-25",8293,2,5457],["Marion","2021-07-26",8293,24,5481],["Marion","2021-07-27",8293,8,5489],["Marion","2021-07-28",8293,21,5510],["Marion","2021-07-29",8293,36,5546],["Marion","2021-07-30",8293,15,5561],["Marion","2021-07-31",8293,8,5569],["Marion","2021-08-01",8293,7,5576],["Marion","2021-08-02",8293,8,5584],["Marion","2021-08-03",8293,11,5595],["Marion","2021-08-04",8293,18,5613],["Marion","2021-08-05",8293,27,5640],["Marion","2021-08-06",8293,14,5654],["Marion","2021-08-07",8293,43,5697],["Marion","2021-08-08",8293,1,5698],["Marion","2021-08-09",8293,13,5711],["Marion","2021-08-10",8293,18,5729],["Marion","2021-08-11",8293,16,5745],["Marion","2021-08-12",8293,15,5760],["Marion","2021-08-13",8293,21,5781],["Marion","2021-08-14",8293,22,5803],["Marion","2021-08-15",8293,5,5808],["Marion","2021-08-16",8293,17,5825],["Marion","2021-08-17",8293,10,5835],["Marion","2021-08-18",8293,29,5864],["Marion","2021-08-19",8293,51,5915],["Marion","2021-08-20",8293,16,5931],["Marion","2021-08-21",8293,6,5937],["Marion","2021-08-22",8293,5,5942],["Marion","2021-08-23",8293,21,5963],["Marion","2021-08-24",8293,10,5973],["Marion","2021-08-25",8293,15,5988],["Marion","2021-08-26",8293,74,6062],["Marion","2021-08-27",8293,24,6086],["Marion","2021-08-28",8293,37,6123],["Marion","2021-08-29",8293,6,6129],["Marion","2021-08-30",8293,16,6145],["Marion","2021-08-31",8293,20,6165],["Marion","2021-09-01",8293,31,6196],["Marion","2021-09-02",8293,47,6243],["Marion","2021-09-03",8293,20,6263],["Marion","2021-09-04",8293,14,6277],["Marion","2021-09-05",8293,7,6284],["Marion","2021-09-06",8293,3,6287],["Marion","2021-09-07",8293,17,6304],["Marion","2021-09-08",8293,25,6329],["Marion","2021-09-09",8293,29,6358],["Marion","2021-09-10",8293,22,6380],["Marion","2021-09-11",8293,15,6395],["Marion","2021-09-12",8293,6,6401],["Marion","2021-09-13",8293,14,6415],["Marion","2021-09-14",8293,11,6426],["Marion","2021-09-15",8293,22,6448],["Marion","2021-09-16",8293,27,6475],["Marion","2021-09-17",8293,18,6493],["Marion","2021-09-18",8293,6,6499],["Marion","2021-09-19",8293,9,6508],["Marion","2021-09-20",8293,19,6527],["Marion","2021-09-21",8293,12,6539],["Marion","2021-09-22",8293,14,6553],["Marion","2021-09-23",8293,49,6602],["Marion","2021-09-24",8293,16,6618],["Marion","2021-09-25",8293,6,6624],["Marion","2021-09-26",8293,6,6630],["Marion","2021-09-27",8293,10,6640],["Marion","2021-09-28",8293,12,6652],["Marion","2021-09-29",8293,28,6680],["Marion","2021-09-30",8293,20,6700],["Marion","2021-10-01",8293,43,6743],["Marion","2021-10-02",8293,6,6749],["Marion","2021-10-03",8293,4,6753],["Marion","2021-10-04",8293,21,6774],["Marion","2021-10-05",8293,17,6791],["Marion","2021-10-06",8293,20,6811],["Marion","2021-10-07",8293,20,6831],["Marion","2021-10-08",8293,12,6843],["Marion","2021-10-09",8293,7,6850],["Marion","2021-10-10",8293,6,6856],["Marion","2021-10-11",8293,14,6870],["Marion","2021-10-12",8293,12,6882],["Marion","2021-10-13",8293,18,6900],["Marion","2021-10-14",8293,26,6926],["Marion","2021-10-15",8293,18,6944],["Marion","2021-10-16",8293,1,6945],["Marion","2021-10-18",8293,5,6950],["Marion","2021-10-19",8293,3,6953],["Marion","2021-10-20",8293,11,6964],["Marion","2021-10-21",8293,12,6976],["Marion","2021-10-22",8293,25,7001],["Marion","2021-10-23",8293,6,7007],["Marion","2021-10-24",8293,3,7010],["Marion","2021-10-25",8293,12,7022],["Marion","2021-10-26",8293,8,7030],["Marion","2021-10-27",8293,22,7052],["Marion","2021-10-28",8293,86,7138],["Marion","2021-10-29",8293,13,7151],["Marion","2021-10-30",8293,6,7157],["Marion","2021-10-31",8293,5,7162],["Marion","2021-11-01",8293,11,7173],["Marion","2021-11-02",8293,18,7191],["Marion","2021-11-03",8293,21,7212],["Marion","2021-11-04",8293,123,7335],["Marion","2021-11-05",8293,20,7355],["Marion","2021-11-06",8293,6,7361],["Marion","2021-11-07",8293,4,7365],["Marion","2021-11-08",8293,14,7379],["Marion","2021-11-09",8293,19,7398],["Marion","2021-11-10",8293,29,7427],["Marion","2021-11-11",8293,24,7451],["Marion","2021-11-12",8293,13,7464],["Marion","2021-11-13",8293,9,7473],["Marion","2021-11-15",8293,14,7487],["Marion","2021-11-16",8293,11,7498],["Marion","2021-11-17",8293,27,7525],["Marion","2021-11-18",8293,127,7652],["Marion","2021-11-19",8293,14,7666],["Marion","2021-11-20",8293,7,7673],["Marion","2021-11-21",8293,4,7677],["Marion","2021-11-22",8293,46,7723],["Marion","2021-11-23",8293,22,7745],["Marion","2021-11-24",8293,18,7763],["Marion","2021-11-26",8293,9,7772],["Marion","2021-11-27",8293,4,7776],["Marion","2021-11-28",8293,6,7782],["Marion","2021-11-29",8293,13,7795],["Marion","2021-11-30",8293,14,7809],["Marion","2021-12-01",8293,30,7839],["Marion","2021-12-02",8293,124,7963],["Marion","2021-12-03",8293,22,7985],["Marion","2021-12-04",8293,4,7989],["Marion","2021-12-05",8293,8,7997],["Marion","2021-12-06",8293,18,8015],["Marion","2021-12-07",8293,15,8030],["Marion","2021-12-08",8293,25,8055],["Marion","2021-12-09",8293,55,8110],["Marion","2021-12-10",8293,16,8126],["Marion","2021-12-11",8293,6,8132],["Marion","2021-12-12",8293,1,8133],["Marion","2021-12-13",8293,13,8146],["Marion","2021-12-14",8293,2,8148],["Marion","2021-12-15",8293,20,8168],["Marion","2021-12-16",8293,27,8195],["Marion","2021-12-17",8293,10,8205],["Marion","2021-12-18",8293,5,8210],["Marion","2021-12-19",8293,2,8212],["Marion","2021-12-20",8293,9,8221],["Marion","2021-12-21",8293,14,8235],["Marion","2021-12-22",8293,24,8259],["Marion","2021-12-23",8293,11,8270],["Marion","2021-12-24",8293,3,8273],["Marion","2021-12-26",8293,4,8277],["Marion","2021-12-27",8293,8,8285],["Marion","2021-12-28",8293,15,8300],["Marion","2021-12-29",8293,27,8327],["Marion","2021-12-30",8293,14,8341],["Marion","2021-12-31",8293,5,8346],["Marion","2022-01-01",8293,1,8347],["Marion","2022-01-02",8293,4,8351],["Marion","2022-01-03",8293,4,8355],["Meriwether","2020-12-19",21020,1,1],["Meriwether","2020-12-21",21020,2,3],["Meriwether","2020-12-22",21020,5,8],["Meriwether","2020-12-23",21020,8,16],["Meriwether","2020-12-24",21020,1,17],["Meriwether","2020-12-26",21020,4,21],["Meriwether","2020-12-27",21020,2,23],["Meriwether","2020-12-28",21020,19,42],["Meriwether","2020-12-29",21020,27,69],["Meriwether","2020-12-30",21020,46,115],["Meriwether","2020-12-31",21020,12,127],["Meriwether","2021-01-01",21020,4,131],["Meriwether","2021-01-02",21020,1,132],["Meriwether","2021-01-03",21020,2,134],["Meriwether","2021-01-04",21020,35,169],["Meriwether","2021-01-05",21020,20,189],["Meriwether","2021-01-06",21020,16,205],["Meriwether","2021-01-07",21020,37,242],["Meriwether","2021-01-08",21020,14,256],["Meriwether","2021-01-09",21020,6,262],["Meriwether","2021-01-10",21020,6,268],["Meriwether","2021-01-11",21020,25,293],["Meriwether","2021-01-12",21020,147,440],["Meriwether","2021-01-13",21020,50,490],["Meriwether","2021-01-14",21020,53,543],["Meriwether","2021-01-15",21020,56,599],["Meriwether","2021-01-16",21020,13,612],["Meriwether","2021-01-17",21020,27,639],["Meriwether","2021-01-18",21020,82,721],["Meriwether","2021-01-19",21020,87,808],["Meriwether","2021-01-20",21020,97,905],["Meriwether","2021-01-21",21020,68,973],["Meriwether","2021-01-22",21020,83,1056],["Meriwether","2021-01-23",21020,16,1072],["Meriwether","2021-01-24",21020,10,1082],["Meriwether","2021-01-25",21020,60,1142],["Meriwether","2021-01-26",21020,100,1242],["Meriwether","2021-01-27",21020,77,1319],["Meriwether","2021-01-28",21020,79,1398],["Meriwether","2021-01-29",21020,136,1534],["Meriwether","2021-01-30",21020,6,1540],["Meriwether","2021-01-31",21020,7,1547],["Meriwether","2021-02-01",21020,46,1593],["Meriwether","2021-02-02",21020,63,1656],["Meriwether","2021-02-03",21020,70,1726],["Meriwether","2021-02-04",21020,154,1880],["Meriwether","2021-02-05",21020,30,1910],["Meriwether","2021-02-06",21020,5,1915],["Meriwether","2021-02-07",21020,39,1954],["Meriwether","2021-02-08",21020,45,1999],["Meriwether","2021-02-09",21020,179,2178],["Meriwether","2021-02-10",21020,111,2289],["Meriwether","2021-02-11",21020,203,2492],["Meriwether","2021-02-12",21020,95,2587],["Meriwether","2021-02-13",21020,6,2593],["Meriwether","2021-02-14",21020,14,2607],["Meriwether","2021-02-15",21020,60,2667],["Meriwether","2021-02-16",21020,121,2788],["Meriwether","2021-02-17",21020,129,2917],["Meriwether","2021-02-18",21020,203,3120],["Meriwether","2021-02-19",21020,118,3238],["Meriwether","2021-02-20",21020,18,3256],["Meriwether","2021-02-21",21020,1,3257],["Meriwether","2021-02-22",21020,95,3352],["Meriwether","2021-02-23",21020,119,3471],["Meriwether","2021-02-24",21020,100,3571],["Meriwether","2021-02-25",21020,173,3744],["Meriwether","2021-02-26",21020,69,3813],["Meriwether","2021-02-27",21020,11,3824],["Meriwether","2021-02-28",21020,8,3832],["Meriwether","2021-03-01",21020,44,3876],["Meriwether","2021-03-02",21020,82,3958],["Meriwether","2021-03-03",21020,121,4079],["Meriwether","2021-03-04",21020,179,4258],["Meriwether","2021-03-05",21020,98,4356],["Meriwether","2021-03-06",21020,8,4364],["Meriwether","2021-03-07",21020,11,4375],["Meriwether","2021-03-08",21020,84,4459],["Meriwether","2021-03-09",21020,103,4562],["Meriwether","2021-03-10",21020,119,4681],["Meriwether","2021-03-11",21020,242,4923],["Meriwether","2021-03-12",21020,99,5022],["Meriwether","2021-03-13",21020,15,5037],["Meriwether","2021-03-14",21020,7,5044],["Meriwether","2021-03-15",21020,92,5136],["Meriwether","2021-03-16",21020,131,5267],["Meriwether","2021-03-17",21020,134,5401],["Meriwether","2021-03-18",21020,198,5599],["Meriwether","2021-03-19",21020,172,5771],["Meriwether","2021-03-20",21020,15,5786],["Meriwether","2021-03-21",21020,17,5803],["Meriwether","2021-03-22",21020,72,5875],["Meriwether","2021-03-23",21020,101,5976],["Meriwether","2021-03-24",21020,136,6112],["Meriwether","2021-03-25",21020,239,6351],["Meriwether","2021-03-26",21020,133,6484],["Meriwether","2021-03-27",21020,57,6541],["Meriwether","2021-03-28",21020,21,6562],["Meriwether","2021-03-29",21020,74,6636],["Meriwether","2021-03-30",21020,94,6730],["Meriwether","2021-03-31",21020,145,6875],["Meriwether","2021-04-01",21020,238,7113],["Meriwether","2021-04-02",21020,77,7190],["Meriwether","2021-04-03",21020,23,7213],["Meriwether","2021-04-04",21020,22,7235],["Meriwether","2021-04-05",21020,82,7317],["Meriwether","2021-04-06",21020,149,7466],["Meriwether","2021-04-07",21020,214,7680],["Meriwether","2021-04-08",21020,238,7918],["Meriwether","2021-04-09",21020,209,8127],["Meriwether","2021-04-10",21020,37,8164],["Meriwether","2021-04-11",21020,24,8188],["Meriwether","2021-04-12",21020,127,8315],["Meriwether","2021-04-13",21020,117,8432],["Meriwether","2021-04-14",21020,159,8591],["Meriwether","2021-04-15",21020,176,8767],["Meriwether","2021-04-16",21020,166,8933],["Meriwether","2021-04-17",21020,55,8988],["Meriwether","2021-04-18",21020,22,9010],["Meriwether","2021-04-19",21020,95,9105],["Meriwether","2021-04-20",21020,129,9234],["Meriwether","2021-04-21",21020,129,9363],["Meriwether","2021-04-22",21020,219,9582],["Meriwether","2021-04-23",21020,120,9702],["Meriwether","2021-04-24",21020,25,9727],["Meriwether","2021-04-25",21020,14,9741],["Meriwether","2021-04-26",21020,68,9809],["Meriwether","2021-04-27",21020,93,9902],["Meriwether","2021-04-28",21020,125,10027],["Meriwether","2021-04-29",21020,211,10238],["Meriwether","2021-04-30",21020,67,10305],["Meriwether","2021-05-01",21020,46,10351],["Meriwether","2021-05-02",21020,13,10364],["Meriwether","2021-05-03",21020,49,10413],["Meriwether","2021-05-04",21020,79,10492],["Meriwether","2021-05-05",21020,146,10638],["Meriwether","2021-05-06",21020,110,10748],["Meriwether","2021-05-07",21020,103,10851],["Meriwether","2021-05-08",21020,24,10875],["Meriwether","2021-05-09",21020,17,10892],["Meriwether","2021-05-10",21020,60,10952],["Meriwether","2021-05-11",21020,92,11044],["Meriwether","2021-05-12",21020,83,11127],["Meriwether","2021-05-13",21020,63,11190],["Meriwether","2021-05-14",21020,78,11268],["Meriwether","2021-05-15",21020,22,11290],["Meriwether","2021-05-16",21020,18,11308],["Meriwether","2021-05-17",21020,58,11366],["Meriwether","2021-05-18",21020,87,11453],["Meriwether","2021-05-19",21020,72,11525],["Meriwether","2021-05-20",21020,185,11710],["Meriwether","2021-05-21",21020,68,11778],["Meriwether","2021-05-22",21020,26,11804],["Meriwether","2021-05-23",21020,24,11828],["Meriwether","2021-05-24",21020,42,11870],["Meriwether","2021-05-25",21020,34,11904],["Meriwether","2021-05-26",21020,67,11971],["Meriwether","2021-05-27",21020,55,12026],["Meriwether","2021-05-28",21020,30,12056],["Meriwether","2021-05-29",21020,18,12074],["Meriwether","2021-05-30",21020,9,12083],["Meriwether","2021-05-31",21020,8,12091],["Meriwether","2021-06-01",21020,59,12150],["Meriwether","2021-06-02",21020,52,12202],["Meriwether","2021-06-03",21020,77,12279],["Meriwether","2021-06-04",21020,58,12337],["Meriwether","2021-06-05",21020,20,12357],["Meriwether","2021-06-06",21020,13,12370],["Meriwether","2021-06-07",21020,43,12413],["Meriwether","2021-06-08",21020,63,12476],["Meriwether","2021-06-09",21020,42,12518],["Meriwether","2021-06-10",21020,67,12585],["Meriwether","2021-06-11",21020,72,12657],["Meriwether","2021-06-12",21020,34,12691],["Meriwether","2021-06-13",21020,12,12703],["Meriwether","2021-06-14",21020,33,12736],["Meriwether","2021-06-15",21020,47,12783],["Meriwether","2021-06-16",21020,43,12826],["Meriwether","2021-06-17",21020,55,12881],["Meriwether","2021-06-18",21020,32,12913],["Meriwether","2021-06-19",21020,20,12933],["Meriwether","2021-06-20",21020,9,12942],["Meriwether","2021-06-21",21020,26,12968],["Meriwether","2021-06-22",21020,42,13010],["Meriwether","2021-06-23",21020,27,13037],["Meriwether","2021-06-24",21020,23,13060],["Meriwether","2021-06-25",21020,47,13107],["Meriwether","2021-06-26",21020,9,13116],["Meriwether","2021-06-27",21020,6,13122],["Meriwether","2021-06-28",21020,22,13144],["Meriwether","2021-06-29",21020,29,13173],["Meriwether","2021-06-30",21020,17,13190],["Meriwether","2021-07-01",21020,45,13235],["Meriwether","2021-07-02",21020,26,13261],["Meriwether","2021-07-03",21020,11,13272],["Meriwether","2021-07-05",21020,12,13284],["Meriwether","2021-07-06",21020,23,13307],["Meriwether","2021-07-07",21020,23,13330],["Meriwether","2021-07-08",21020,36,13366],["Meriwether","2021-07-09",21020,26,13392],["Meriwether","2021-07-10",21020,18,13410],["Meriwether","2021-07-11",21020,13,13423],["Meriwether","2021-07-12",21020,23,13446],["Meriwether","2021-07-13",21020,33,13479],["Meriwether","2021-07-14",21020,28,13507],["Meriwether","2021-07-15",21020,20,13527],["Meriwether","2021-07-16",21020,26,13553],["Meriwether","2021-07-17",21020,13,13566],["Meriwether","2021-07-18",21020,9,13575],["Meriwether","2021-07-19",21020,27,13602],["Meriwether","2021-07-20",21020,17,13619],["Meriwether","2021-07-21",21020,28,13647],["Meriwether","2021-07-22",21020,26,13673],["Meriwether","2021-07-23",21020,43,13716],["Meriwether","2021-07-24",21020,26,13742],["Meriwether","2021-07-25",21020,15,13757],["Meriwether","2021-07-26",21020,33,13790],["Meriwether","2021-07-27",21020,31,13821],["Meriwether","2021-07-28",21020,38,13859],["Meriwether","2021-07-29",21020,30,13889],["Meriwether","2021-07-30",21020,52,13941],["Meriwether","2021-07-31",21020,20,13961],["Meriwether","2021-08-01",21020,13,13974],["Meriwether","2021-08-02",21020,43,14017],["Meriwether","2021-08-03",21020,50,14067],["Meriwether","2021-08-04",21020,67,14134],["Meriwether","2021-08-05",21020,36,14170],["Meriwether","2021-08-06",21020,61,14231],["Meriwether","2021-08-07",21020,23,14254],["Meriwether","2021-08-08",21020,17,14271],["Meriwether","2021-08-09",21020,58,14329],["Meriwether","2021-08-10",21020,58,14387],["Meriwether","2021-08-11",21020,58,14445],["Meriwether","2021-08-12",21020,36,14481],["Meriwether","2021-08-13",21020,54,14535],["Meriwether","2021-08-14",21020,31,14566],["Meriwether","2021-08-15",21020,21,14587],["Meriwether","2021-08-16",21020,41,14628],["Meriwether","2021-08-17",21020,43,14671],["Meriwether","2021-08-18",21020,58,14729],["Meriwether","2021-08-19",21020,34,14763],["Meriwether","2021-08-20",21020,68,14831],["Meriwether","2021-08-21",21020,33,14864],["Meriwether","2021-08-22",21020,22,14886],["Meriwether","2021-08-23",21020,52,14938],["Meriwether","2021-08-24",21020,59,14997],["Meriwether","2021-08-25",21020,74,15071],["Meriwether","2021-08-26",21020,64,15135],["Meriwether","2021-08-27",21020,104,15239],["Meriwether","2021-08-28",21020,37,15276],["Meriwether","2021-08-29",21020,20,15296],["Meriwether","2021-08-30",21020,69,15365],["Meriwether","2021-08-31",21020,58,15423],["Meriwether","2021-09-01",21020,58,15481],["Meriwether","2021-09-02",21020,61,15542],["Meriwether","2021-09-03",21020,65,15607],["Meriwether","2021-09-04",21020,32,15639],["Meriwether","2021-09-05",21020,23,15662],["Meriwether","2021-09-06",21020,6,15668],["Meriwether","2021-09-07",21020,69,15737],["Meriwether","2021-09-08",21020,65,15802],["Meriwether","2021-09-09",21020,61,15863],["Meriwether","2021-09-10",21020,69,15932],["Meriwether","2021-09-11",21020,34,15966],["Meriwether","2021-09-12",21020,23,15989],["Meriwether","2021-09-13",21020,70,16059],["Meriwether","2021-09-14",21020,49,16108],["Meriwether","2021-09-15",21020,53,16161],["Meriwether","2021-09-16",21020,50,16211],["Meriwether","2021-09-17",21020,63,16274],["Meriwether","2021-09-18",21020,39,16313],["Meriwether","2021-09-19",21020,18,16331],["Meriwether","2021-09-20",21020,34,16365],["Meriwether","2021-09-21",21020,36,16401],["Meriwether","2021-09-22",21020,62,16463],["Meriwether","2021-09-23",21020,48,16511],["Meriwether","2021-09-24",21020,62,16573],["Meriwether","2021-09-25",21020,41,16614],["Meriwether","2021-09-26",21020,10,16624],["Meriwether","2021-09-27",21020,47,16671],["Meriwether","2021-09-28",21020,49,16720],["Meriwether","2021-09-29",21020,53,16773],["Meriwether","2021-09-30",21020,55,16828],["Meriwether","2021-10-01",21020,69,16897],["Meriwether","2021-10-02",21020,28,16925],["Meriwether","2021-10-03",21020,23,16948],["Meriwether","2021-10-04",21020,62,17010],["Meriwether","2021-10-05",21020,74,17084],["Meriwether","2021-10-06",21020,43,17127],["Meriwether","2021-10-07",21020,48,17175],["Meriwether","2021-10-08",21020,52,17227],["Meriwether","2021-10-09",21020,35,17262],["Meriwether","2021-10-10",21020,15,17277],["Meriwether","2021-10-11",21020,30,17307],["Meriwether","2021-10-12",21020,30,17337],["Meriwether","2021-10-13",21020,50,17387],["Meriwether","2021-10-14",21020,39,17426],["Meriwether","2021-10-15",21020,40,17466],["Meriwether","2021-10-16",21020,15,17481],["Meriwether","2021-10-17",21020,6,17487],["Meriwether","2021-10-18",21020,30,17517],["Meriwether","2021-10-19",21020,34,17551],["Meriwether","2021-10-20",21020,29,17580],["Meriwether","2021-10-21",21020,40,17620],["Meriwether","2021-10-22",21020,44,17664],["Meriwether","2021-10-23",21020,22,17686],["Meriwether","2021-10-24",21020,8,17694],["Meriwether","2021-10-25",21020,84,17778],["Meriwether","2021-10-26",21020,100,17878],["Meriwether","2021-10-27",21020,55,17933],["Meriwether","2021-10-28",21020,62,17995],["Meriwether","2021-10-29",21020,59,18054],["Meriwether","2021-10-30",21020,25,18079],["Meriwether","2021-10-31",21020,10,18089],["Meriwether","2021-11-01",21020,47,18136],["Meriwether","2021-11-02",21020,63,18199],["Meriwether","2021-11-03",21020,62,18261],["Meriwether","2021-11-04",21020,76,18337],["Meriwether","2021-11-05",21020,68,18405],["Meriwether","2021-11-06",21020,35,18440],["Meriwether","2021-11-07",21020,12,18452],["Meriwether","2021-11-08",21020,52,18504],["Meriwether","2021-11-09",21020,63,18567],["Meriwether","2021-11-10",21020,68,18635],["Meriwether","2021-11-11",21020,63,18698],["Meriwether","2021-11-12",21020,89,18787],["Meriwether","2021-11-13",21020,23,18810],["Meriwether","2021-11-14",21020,9,18819],["Meriwether","2021-11-15",21020,51,18870],["Meriwether","2021-11-16",21020,75,18945],["Meriwether","2021-11-17",21020,72,19017],["Meriwether","2021-11-18",21020,74,19091],["Meriwether","2021-11-19",21020,55,19146],["Meriwether","2021-11-20",21020,38,19184],["Meriwether","2021-11-21",21020,16,19200],["Meriwether","2021-11-22",21020,61,19261],["Meriwether","2021-11-23",21020,43,19304],["Meriwether","2021-11-24",21020,24,19328],["Meriwether","2021-11-25",21020,1,19329],["Meriwether","2021-11-26",21020,39,19368],["Meriwether","2021-11-27",21020,19,19387],["Meriwether","2021-11-28",21020,17,19404],["Meriwether","2021-11-29",21020,52,19456],["Meriwether","2021-11-30",21020,76,19532],["Meriwether","2021-12-01",21020,59,19591],["Meriwether","2021-12-02",21020,86,19677],["Meriwether","2021-12-03",21020,171,19848],["Meriwether","2021-12-04",21020,29,19877],["Meriwether","2021-12-05",21020,21,19898],["Meriwether","2021-12-06",21020,51,19949],["Meriwether","2021-12-07",21020,54,20003],["Meriwether","2021-12-08",21020,40,20043],["Meriwether","2021-12-09",21020,73,20116],["Meriwether","2021-12-10",21020,65,20181],["Meriwether","2021-12-11",21020,29,20210],["Meriwether","2021-12-12",21020,11,20221],["Meriwether","2021-12-13",21020,30,20251],["Meriwether","2021-12-14",21020,50,20301],["Meriwether","2021-12-15",21020,73,20374],["Meriwether","2021-12-16",21020,37,20411],["Meriwether","2021-12-17",21020,54,20465],["Meriwether","2021-12-18",21020,19,20484],["Meriwether","2021-12-19",21020,16,20500],["Meriwether","2021-12-20",21020,39,20539],["Meriwether","2021-12-21",21020,64,20603],["Meriwether","2021-12-22",21020,56,20659],["Meriwether","2021-12-23",21020,62,20721],["Meriwether","2021-12-24",21020,9,20730],["Meriwether","2021-12-26",21020,13,20743],["Meriwether","2021-12-27",21020,44,20787],["Meriwether","2021-12-28",21020,65,20852],["Meriwether","2021-12-29",21020,50,20902],["Meriwether","2021-12-30",21020,40,20942],["Meriwether","2021-12-31",21020,23,20965],["Meriwether","2022-01-01",21020,3,20968],["Meriwether","2022-01-02",21020,15,20983],["Meriwether","2022-01-03",21020,10,20993],["Miller","2020-12-18",5764,1,1],["Miller","2020-12-21",5764,1,2],["Miller","2020-12-22",5764,2,4],["Miller","2020-12-23",5764,18,22],["Miller","2020-12-24",5764,2,24],["Miller","2020-12-26",5764,1,25],["Miller","2020-12-27",5764,8,33],["Miller","2020-12-28",5764,66,99],["Miller","2020-12-29",5764,45,144],["Miller","2020-12-30",5764,23,167],["Miller","2020-12-31",5764,15,182],["Miller","2021-01-01",5764,9,191],["Miller","2021-01-02",5764,1,192],["Miller","2021-01-04",5764,32,224],["Miller","2021-01-05",5764,29,253],["Miller","2021-01-06",5764,15,268],["Miller","2021-01-07",5764,29,297],["Miller","2021-01-08",5764,12,309],["Miller","2021-01-09",5764,1,310],["Miller","2021-01-10",5764,1,311],["Miller","2021-01-11",5764,94,405],["Miller","2021-01-12",5764,113,518],["Miller","2021-01-13",5764,108,626],["Miller","2021-01-14",5764,109,735],["Miller","2021-01-15",5764,44,779],["Miller","2021-01-16",5764,1,780],["Miller","2021-01-18",5764,89,869],["Miller","2021-01-19",5764,51,920],["Miller","2021-01-20",5764,31,951],["Miller","2021-01-21",5764,66,1017],["Miller","2021-01-22",5764,11,1028],["Miller","2021-01-23",5764,1,1029],["Miller","2021-01-25",5764,56,1085],["Miller","2021-01-26",5764,38,1123],["Miller","2021-01-27",5764,77,1200],["Miller","2021-01-28",5764,54,1254],["Miller","2021-01-29",5764,25,1279],["Miller","2021-01-30",5764,1,1280],["Miller","2021-02-01",5764,56,1336],["Miller","2021-02-02",5764,48,1384],["Miller","2021-02-03",5764,33,1417],["Miller","2021-02-04",5764,40,1457],["Miller","2021-02-05",5764,24,1481],["Miller","2021-02-06",5764,1,1482],["Miller","2021-02-08",5764,105,1587],["Miller","2021-02-09",5764,121,1708],["Miller","2021-02-10",5764,120,1828],["Miller","2021-02-11",5764,111,1939],["Miller","2021-02-12",5764,49,1988],["Miller","2021-02-15",5764,100,2088],["Miller","2021-02-16",5764,59,2147],["Miller","2021-02-17",5764,34,2181],["Miller","2021-02-18",5764,86,2267],["Miller","2021-02-19",5764,16,2283],["Miller","2021-02-20",5764,1,2284],["Miller","2021-02-22",5764,40,2324],["Miller","2021-02-23",5764,25,2349],["Miller","2021-02-24",5764,44,2393],["Miller","2021-02-25",5764,46,2439],["Miller","2021-02-26",5764,11,2450],["Miller","2021-02-27",5764,4,2454],["Miller","2021-02-28",5764,3,2457],["Miller","2021-03-01",5764,24,2481],["Miller","2021-03-02",5764,35,2516],["Miller","2021-03-03",5764,23,2539],["Miller","2021-03-04",5764,21,2560],["Miller","2021-03-05",5764,9,2569],["Miller","2021-03-06",5764,2,2571],["Miller","2021-03-07",5764,1,2572],["Miller","2021-03-08",5764,45,2617],["Miller","2021-03-09",5764,44,2661],["Miller","2021-03-10",5764,32,2693],["Miller","2021-03-11",5764,34,2727],["Miller","2021-03-12",5764,37,2764],["Miller","2021-03-13",5764,1,2765],["Miller","2021-03-14",5764,1,2766],["Miller","2021-03-15",5764,43,2809],["Miller","2021-03-16",5764,34,2843],["Miller","2021-03-17",5764,44,2887],["Miller","2021-03-18",5764,47,2934],["Miller","2021-03-19",5764,25,2959],["Miller","2021-03-20",5764,4,2963],["Miller","2021-03-21",5764,3,2966],["Miller","2021-03-22",5764,42,3008],["Miller","2021-03-23",5764,29,3037],["Miller","2021-03-24",5764,27,3064],["Miller","2021-03-25",5764,55,3119],["Miller","2021-03-26",5764,9,3128],["Miller","2021-03-27",5764,6,3134],["Miller","2021-03-28",5764,4,3138],["Miller","2021-03-29",5764,43,3181],["Miller","2021-03-30",5764,21,3202],["Miller","2021-03-31",5764,74,3276],["Miller","2021-04-01",5764,21,3297],["Miller","2021-04-02",5764,11,3308],["Miller","2021-04-03",5764,3,3311],["Miller","2021-04-04",5764,3,3314],["Miller","2021-04-05",5764,35,3349],["Miller","2021-04-06",5764,21,3370],["Miller","2021-04-07",5764,34,3404],["Miller","2021-04-08",5764,30,3434],["Miller","2021-04-09",5764,20,3454],["Miller","2021-04-10",5764,5,3459],["Miller","2021-04-11",5764,5,3464],["Miller","2021-04-12",5764,30,3494],["Miller","2021-04-13",5764,34,3528],["Miller","2021-04-14",5764,33,3561],["Miller","2021-04-15",5764,48,3609],["Miller","2021-04-16",5764,42,3651],["Miller","2021-04-17",5764,4,3655],["Miller","2021-04-18",5764,1,3656],["Miller","2021-04-19",5764,26,3682],["Miller","2021-04-20",5764,32,3714],["Miller","2021-04-21",5764,19,3733],["Miller","2021-04-22",5764,23,3756],["Miller","2021-04-23",5764,16,3772],["Miller","2021-04-24",5764,3,3775],["Miller","2021-04-25",5764,1,3776],["Miller","2021-04-26",5764,31,3807],["Miller","2021-04-27",5764,72,3879],["Miller","2021-04-28",5764,26,3905],["Miller","2021-04-29",5764,20,3925],["Miller","2021-04-30",5764,7,3932],["Miller","2021-05-01",5764,5,3937],["Miller","2021-05-02",5764,5,3942],["Miller","2021-05-03",5764,20,3962],["Miller","2021-05-04",5764,11,3973],["Miller","2021-05-05",5764,19,3992],["Miller","2021-05-06",5764,17,4009],["Miller","2021-05-07",5764,14,4023],["Miller","2021-05-08",5764,4,4027],["Miller","2021-05-10",5764,21,4048],["Miller","2021-05-11",5764,14,4062],["Miller","2021-05-12",5764,9,4071],["Miller","2021-05-13",5764,25,4096],["Miller","2021-05-14",5764,7,4103],["Miller","2021-05-15",5764,4,4107],["Miller","2021-05-16",5764,2,4109],["Miller","2021-05-17",5764,13,4122],["Miller","2021-05-18",5764,23,4145],["Miller","2021-05-19",5764,16,4161],["Miller","2021-05-20",5764,12,4173],["Miller","2021-05-21",5764,6,4179],["Miller","2021-05-22",5764,5,4184],["Miller","2021-05-23",5764,4,4188],["Miller","2021-05-24",5764,12,4200],["Miller","2021-05-25",5764,33,4233],["Miller","2021-05-26",5764,7,4240],["Miller","2021-05-27",5764,12,4252],["Miller","2021-05-28",5764,9,4261],["Miller","2021-05-30",5764,2,4263],["Miller","2021-05-31",5764,1,4264],["Miller","2021-06-01",5764,17,4281],["Miller","2021-06-02",5764,13,4294],["Miller","2021-06-03",5764,16,4310],["Miller","2021-06-04",5764,1,4311],["Miller","2021-06-05",5764,7,4318],["Miller","2021-06-06",5764,3,4321],["Miller","2021-06-07",5764,9,4330],["Miller","2021-06-08",5764,16,4346],["Miller","2021-06-09",5764,7,4353],["Miller","2021-06-10",5764,11,4364],["Miller","2021-06-11",5764,9,4373],["Miller","2021-06-12",5764,3,4376],["Miller","2021-06-14",5764,15,4391],["Miller","2021-06-15",5764,7,4398],["Miller","2021-06-16",5764,7,4405],["Miller","2021-06-17",5764,7,4412],["Miller","2021-06-18",5764,10,4422],["Miller","2021-06-19",5764,3,4425],["Miller","2021-06-20",5764,2,4427],["Miller","2021-06-21",5764,9,4436],["Miller","2021-06-22",5764,21,4457],["Miller","2021-06-23",5764,4,4461],["Miller","2021-06-24",5764,7,4468],["Miller","2021-06-25",5764,3,4471],["Miller","2021-06-26",5764,2,4473],["Miller","2021-06-27",5764,4,4477],["Miller","2021-06-28",5764,7,4484],["Miller","2021-06-29",5764,11,4495],["Miller","2021-06-30",5764,13,4508],["Miller","2021-07-01",5764,6,4514],["Miller","2021-07-02",5764,2,4516],["Miller","2021-07-03",5764,4,4520],["Miller","2021-07-05",5764,2,4522],["Miller","2021-07-06",5764,6,4528],["Miller","2021-07-07",5764,9,4537],["Miller","2021-07-08",5764,5,4542],["Miller","2021-07-09",5764,5,4547],["Miller","2021-07-10",5764,3,4550],["Miller","2021-07-11",5764,1,4551],["Miller","2021-07-12",5764,6,4557],["Miller","2021-07-13",5764,6,4563],["Miller","2021-07-14",5764,8,4571],["Miller","2021-07-15",5764,4,4575],["Miller","2021-07-16",5764,6,4581],["Miller","2021-07-17",5764,4,4585],["Miller","2021-07-18",5764,2,4587],["Miller","2021-07-19",5764,12,4599],["Miller","2021-07-20",5764,16,4615],["Miller","2021-07-21",5764,10,4625],["Miller","2021-07-22",5764,16,4641],["Miller","2021-07-23",5764,8,4649],["Miller","2021-07-24",5764,5,4654],["Miller","2021-07-25",5764,1,4655],["Miller","2021-07-26",5764,19,4674],["Miller","2021-07-27",5764,26,4700],["Miller","2021-07-28",5764,16,4716],["Miller","2021-07-29",5764,15,4731],["Miller","2021-07-30",5764,16,4747],["Miller","2021-07-31",5764,8,4755],["Miller","2021-08-01",5764,2,4757],["Miller","2021-08-02",5764,35,4792],["Miller","2021-08-03",5764,29,4821],["Miller","2021-08-04",5764,25,4846],["Miller","2021-08-05",5764,26,4872],["Miller","2021-08-06",5764,22,4894],["Miller","2021-08-07",5764,9,4903],["Miller","2021-08-08",5764,3,4906],["Miller","2021-08-09",5764,28,4934],["Miller","2021-08-10",5764,31,4965],["Miller","2021-08-11",5764,23,4988],["Miller","2021-08-12",5764,43,5031],["Miller","2021-08-13",5764,32,5063],["Miller","2021-08-14",5764,6,5069],["Miller","2021-08-15",5764,2,5071],["Miller","2021-08-16",5764,38,5109],["Miller","2021-08-17",5764,44,5153],["Miller","2021-08-18",5764,36,5189],["Miller","2021-08-19",5764,29,5218],["Miller","2021-08-20",5764,32,5250],["Miller","2021-08-21",5764,21,5271],["Miller","2021-08-23",5764,44,5315],["Miller","2021-08-24",5764,43,5358],["Miller","2021-08-25",5764,41,5399],["Miller","2021-08-26",5764,27,5426],["Miller","2021-08-27",5764,27,5453],["Miller","2021-08-28",5764,15,5468],["Miller","2021-08-29",5764,4,5472],["Miller","2021-08-30",5764,51,5523],["Miller","2021-08-31",5764,50,5573],["Miller","2021-09-01",5764,17,5590],["Miller","2021-09-02",5764,45,5635],["Miller","2021-09-03",5764,36,5671],["Miller","2021-09-04",5764,6,5677],["Miller","2021-09-05",5764,8,5685],["Miller","2021-09-06",5764,3,5688],["Miller","2021-09-07",5764,41,5729],["Miller","2021-09-08",5764,17,5746],["Miller","2021-09-09",5764,55,5801],["Miller","2021-09-10",5764,35,5836],["Miller","2021-09-11",5764,9,5845],["Miller","2021-09-12",5764,2,5847],["Miller","2021-09-13",5764,39,5886],["Miller","2021-09-14",5764,31,5917],["Miller","2021-09-15",5764,19,5936],["Miller","2021-09-16",5764,33,5969],["Miller","2021-09-17",5764,35,6004],["Miller","2021-09-18",5764,7,6011],["Miller","2021-09-19",5764,4,6015],["Miller","2021-09-20",5764,45,6060],["Miller","2021-09-21",5764,25,6085],["Miller","2021-09-22",5764,18,6103],["Miller","2021-09-23",5764,21,6124],["Miller","2021-09-24",5764,14,6138],["Miller","2021-09-25",5764,6,6144],["Miller","2021-09-26",5764,5,6149],["Miller","2021-09-27",5764,23,6172],["Miller","2021-09-28",5764,21,6193],["Miller","2021-09-29",5764,18,6211],["Miller","2021-09-30",5764,30,6241],["Miller","2021-10-01",5764,11,6252],["Miller","2021-10-02",5764,1,6253],["Miller","2021-10-04",5764,10,6263],["Miller","2021-10-05",5764,18,6281],["Miller","2021-10-06",5764,6,6287],["Miller","2021-10-07",5764,13,6300],["Miller","2021-10-08",5764,7,6307],["Miller","2021-10-09",5764,1,6308],["Miller","2021-10-10",5764,2,6310],["Miller","2021-10-11",5764,9,6319],["Miller","2021-10-12",5764,18,6337],["Miller","2021-10-13",5764,8,6345],["Miller","2021-10-14",5764,12,6357],["Miller","2021-10-15",5764,7,6364],["Miller","2021-10-16",5764,5,6369],["Miller","2021-10-17",5764,2,6371],["Miller","2021-10-18",5764,9,6380],["Miller","2021-10-19",5764,7,6387],["Miller","2021-10-20",5764,6,6393],["Miller","2021-10-21",5764,20,6413],["Miller","2021-10-22",5764,4,6417],["Miller","2021-10-23",5764,5,6422],["Miller","2021-10-24",5764,1,6423],["Miller","2021-10-25",5764,22,6445],["Miller","2021-10-26",5764,13,6458],["Miller","2021-10-27",5764,41,6499],["Miller","2021-10-28",5764,55,6554],["Miller","2021-10-29",5764,12,6566],["Miller","2021-10-30",5764,11,6577],["Miller","2021-10-31",5764,3,6580],["Miller","2021-11-01",5764,38,6618],["Miller","2021-11-02",5764,43,6661],["Miller","2021-11-03",5764,24,6685],["Miller","2021-11-04",5764,56,6741],["Miller","2021-11-05",5764,10,6751],["Miller","2021-11-06",5764,3,6754],["Miller","2021-11-07",5764,6,6760],["Miller","2021-11-08",5764,33,6793],["Miller","2021-11-09",5764,28,6821],["Miller","2021-11-10",5764,21,6842],["Miller","2021-11-11",5764,22,6864],["Miller","2021-11-12",5764,12,6876],["Miller","2021-11-13",5764,5,6881],["Miller","2021-11-14",5764,4,6885],["Miller","2021-11-15",5764,21,6906],["Miller","2021-11-16",5764,33,6939],["Miller","2021-11-17",5764,20,6959],["Miller","2021-11-18",5764,25,6984],["Miller","2021-11-19",5764,22,7006],["Miller","2021-11-20",5764,4,7010],["Miller","2021-11-22",5764,19,7029],["Miller","2021-11-23",5764,25,7054],["Miller","2021-11-24",5764,7,7061],["Miller","2021-11-26",5764,6,7067],["Miller","2021-11-27",5764,2,7069],["Miller","2021-11-28",5764,1,7070],["Miller","2021-11-29",5764,35,7105],["Miller","2021-11-30",5764,32,7137],["Miller","2021-12-01",5764,19,7156],["Miller","2021-12-02",5764,26,7182],["Miller","2021-12-03",5764,13,7195],["Miller","2021-12-04",5764,3,7198],["Miller","2021-12-05",5764,2,7200],["Miller","2021-12-06",5764,19,7219],["Miller","2021-12-07",5764,21,7240],["Miller","2021-12-08",5764,11,7251],["Miller","2021-12-09",5764,19,7270],["Miller","2021-12-10",5764,16,7286],["Miller","2021-12-11",5764,1,7287],["Miller","2021-12-12",5764,3,7290],["Miller","2021-12-13",5764,15,7305],["Miller","2021-12-14",5764,20,7325],["Miller","2021-12-15",5764,12,7337],["Miller","2021-12-16",5764,24,7361],["Miller","2021-12-17",5764,5,7366],["Miller","2021-12-18",5764,3,7369],["Miller","2021-12-20",5764,11,7380],["Miller","2021-12-21",5764,31,7411],["Miller","2021-12-22",5764,19,7430],["Miller","2021-12-23",5764,5,7435],["Miller","2021-12-24",5764,3,7438],["Miller","2021-12-26",5764,1,7439],["Miller","2021-12-27",5764,17,7456],["Miller","2021-12-28",5764,20,7476],["Miller","2021-12-29",5764,11,7487],["Miller","2021-12-30",5764,18,7505],["Miller","2021-12-31",5764,5,7510],["Miller","2022-01-01",5764,3,7513],["Miller","2022-01-02",5764,1,7514],["Miller","2022-01-03",5764,1,7515],["Mitchell","2020-12-15",22056,1,1],["Mitchell","2020-12-16",22056,1,2],["Mitchell","2020-12-17",22056,5,7],["Mitchell","2020-12-18",22056,14,21],["Mitchell","2020-12-19",22056,6,27],["Mitchell","2020-12-20",22056,3,30],["Mitchell","2020-12-21",22056,12,42],["Mitchell","2020-12-22",22056,32,74],["Mitchell","2020-12-23",22056,106,180],["Mitchell","2020-12-24",22056,3,183],["Mitchell","2020-12-25",22056,1,184],["Mitchell","2020-12-28",22056,35,219],["Mitchell","2020-12-29",22056,19,238],["Mitchell","2020-12-30",22056,30,268],["Mitchell","2020-12-31",22056,10,278],["Mitchell","2021-01-01",22056,4,282],["Mitchell","2021-01-04",22056,40,322],["Mitchell","2021-01-05",22056,43,365],["Mitchell","2021-01-06",22056,28,393],["Mitchell","2021-01-07",22056,39,432],["Mitchell","2021-01-08",22056,47,479],["Mitchell","2021-01-09",22056,5,484],["Mitchell","2021-01-10",22056,3,487],["Mitchell","2021-01-11",22056,98,585],["Mitchell","2021-01-12",22056,99,684],["Mitchell","2021-01-13",22056,130,814],["Mitchell","2021-01-14",22056,195,1009],["Mitchell","2021-01-15",22056,153,1162],["Mitchell","2021-01-16",22056,20,1182],["Mitchell","2021-01-17",22056,1,1183],["Mitchell","2021-01-18",22056,120,1303],["Mitchell","2021-01-19",22056,177,1480],["Mitchell","2021-01-20",22056,147,1627],["Mitchell","2021-01-21",22056,164,1791],["Mitchell","2021-01-22",22056,128,1919],["Mitchell","2021-01-23",22056,60,1979],["Mitchell","2021-01-24",22056,1,1980],["Mitchell","2021-01-25",22056,177,2157],["Mitchell","2021-01-26",22056,161,2318],["Mitchell","2021-01-27",22056,129,2447],["Mitchell","2021-01-28",22056,148,2595],["Mitchell","2021-01-29",22056,122,2717],["Mitchell","2021-01-30",22056,7,2724],["Mitchell","2021-01-31",22056,3,2727],["Mitchell","2021-02-01",22056,151,2878],["Mitchell","2021-02-02",22056,122,3000],["Mitchell","2021-02-03",22056,147,3147],["Mitchell","2021-02-04",22056,197,3344],["Mitchell","2021-02-05",22056,163,3507],["Mitchell","2021-02-06",22056,20,3527],["Mitchell","2021-02-07",22056,1,3528],["Mitchell","2021-02-08",22056,133,3661],["Mitchell","2021-02-09",22056,196,3857],["Mitchell","2021-02-10",22056,213,4070],["Mitchell","2021-02-11",22056,161,4231],["Mitchell","2021-02-12",22056,156,4387],["Mitchell","2021-02-13",22056,23,4410],["Mitchell","2021-02-14",22056,6,4416],["Mitchell","2021-02-15",22056,135,4551],["Mitchell","2021-02-16",22056,181,4732],["Mitchell","2021-02-17",22056,132,4864],["Mitchell","2021-02-18",22056,125,4989],["Mitchell","2021-02-19",22056,127,5116],["Mitchell","2021-02-20",22056,17,5133],["Mitchell","2021-02-21",22056,12,5145],["Mitchell","2021-02-22",22056,161,5306],["Mitchell","2021-02-23",22056,226,5532],["Mitchell","2021-02-24",22056,129,5661],["Mitchell","2021-02-25",22056,211,5872],["Mitchell","2021-02-26",22056,127,5999],["Mitchell","2021-02-27",22056,23,6022],["Mitchell","2021-02-28",22056,16,6038],["Mitchell","2021-03-01",22056,174,6212],["Mitchell","2021-03-02",22056,154,6366],["Mitchell","2021-03-03",22056,142,6508],["Mitchell","2021-03-04",22056,165,6673],["Mitchell","2021-03-05",22056,94,6767],["Mitchell","2021-03-06",22056,12,6779],["Mitchell","2021-03-07",22056,10,6789],["Mitchell","2021-03-08",22056,149,6938],["Mitchell","2021-03-09",22056,171,7109],["Mitchell","2021-03-10",22056,185,7294],["Mitchell","2021-03-11",22056,129,7423],["Mitchell","2021-03-12",22056,98,7521],["Mitchell","2021-03-13",22056,62,7583],["Mitchell","2021-03-14",22056,17,7600],["Mitchell","2021-03-15",22056,105,7705],["Mitchell","2021-03-16",22056,139,7844],["Mitchell","2021-03-17",22056,144,7988],["Mitchell","2021-03-18",22056,157,8145],["Mitchell","2021-03-19",22056,124,8269],["Mitchell","2021-03-20",22056,17,8286],["Mitchell","2021-03-21",22056,13,8299],["Mitchell","2021-03-22",22056,115,8414],["Mitchell","2021-03-23",22056,89,8503],["Mitchell","2021-03-24",22056,125,8628],["Mitchell","2021-03-25",22056,203,8831],["Mitchell","2021-03-26",22056,68,8899],["Mitchell","2021-03-27",22056,12,8911],["Mitchell","2021-03-28",22056,14,8925],["Mitchell","2021-03-29",22056,102,9027],["Mitchell","2021-03-30",22056,158,9185],["Mitchell","2021-03-31",22056,125,9310],["Mitchell","2021-04-01",22056,164,9474],["Mitchell","2021-04-02",22056,184,9658],["Mitchell","2021-04-03",22056,52,9710],["Mitchell","2021-04-04",22056,14,9724],["Mitchell","2021-04-05",22056,107,9831],["Mitchell","2021-04-06",22056,141,9972],["Mitchell","2021-04-07",22056,141,10113],["Mitchell","2021-04-08",22056,155,10268],["Mitchell","2021-04-09",22056,83,10351],["Mitchell","2021-04-10",22056,34,10385],["Mitchell","2021-04-11",22056,26,10411],["Mitchell","2021-04-12",22056,90,10501],["Mitchell","2021-04-13",22056,135,10636],["Mitchell","2021-04-14",22056,172,10808],["Mitchell","2021-04-15",22056,152,10960],["Mitchell","2021-04-16",22056,111,11071],["Mitchell","2021-04-17",22056,10,11081],["Mitchell","2021-04-18",22056,3,11084],["Mitchell","2021-04-19",22056,81,11165],["Mitchell","2021-04-20",22056,115,11280],["Mitchell","2021-04-21",22056,103,11383],["Mitchell","2021-04-22",22056,137,11520],["Mitchell","2021-04-23",22056,89,11609],["Mitchell","2021-04-24",22056,26,11635],["Mitchell","2021-04-25",22056,6,11641],["Mitchell","2021-04-26",22056,75,11716],["Mitchell","2021-04-27",22056,118,11834],["Mitchell","2021-04-28",22056,106,11940],["Mitchell","2021-04-29",22056,108,12048],["Mitchell","2021-04-30",22056,52,12100],["Mitchell","2021-05-01",22056,27,12127],["Mitchell","2021-05-02",22056,9,12136],["Mitchell","2021-05-03",22056,40,12176],["Mitchell","2021-05-04",22056,103,12279],["Mitchell","2021-05-05",22056,70,12349],["Mitchell","2021-05-06",22056,86,12435],["Mitchell","2021-05-07",22056,88,12523],["Mitchell","2021-05-08",22056,24,12547],["Mitchell","2021-05-09",22056,3,12550],["Mitchell","2021-05-10",22056,46,12596],["Mitchell","2021-05-11",22056,93,12689],["Mitchell","2021-05-12",22056,70,12759],["Mitchell","2021-05-13",22056,81,12840],["Mitchell","2021-05-14",22056,53,12893],["Mitchell","2021-05-15",22056,23,12916],["Mitchell","2021-05-16",22056,6,12922],["Mitchell","2021-05-17",22056,47,12969],["Mitchell","2021-05-18",22056,78,13047],["Mitchell","2021-05-19",22056,69,13116],["Mitchell","2021-05-20",22056,90,13206],["Mitchell","2021-05-21",22056,48,13254],["Mitchell","2021-05-22",22056,12,13266],["Mitchell","2021-05-23",22056,3,13269],["Mitchell","2021-05-24",22056,21,13290],["Mitchell","2021-05-25",22056,32,13322],["Mitchell","2021-05-26",22056,44,13366],["Mitchell","2021-05-27",22056,60,13426],["Mitchell","2021-05-28",22056,25,13451],["Mitchell","2021-05-29",22056,10,13461],["Mitchell","2021-05-30",22056,5,13466],["Mitchell","2021-05-31",22056,4,13470],["Mitchell","2021-06-01",22056,57,13527],["Mitchell","2021-06-02",22056,53,13580],["Mitchell","2021-06-03",22056,55,13635],["Mitchell","2021-06-04",22056,44,13679],["Mitchell","2021-06-05",22056,9,13688],["Mitchell","2021-06-06",22056,4,13692],["Mitchell","2021-06-07",22056,37,13729],["Mitchell","2021-06-08",22056,27,13756],["Mitchell","2021-06-09",22056,48,13804],["Mitchell","2021-06-10",22056,52,13856],["Mitchell","2021-06-11",22056,39,13895],["Mitchell","2021-06-12",22056,21,13916],["Mitchell","2021-06-13",22056,4,13920],["Mitchell","2021-06-14",22056,30,13950],["Mitchell","2021-06-15",22056,55,14005],["Mitchell","2021-06-16",22056,26,14031],["Mitchell","2021-06-17",22056,44,14075],["Mitchell","2021-06-18",22056,33,14108],["Mitchell","2021-06-19",22056,8,14116],["Mitchell","2021-06-20",22056,7,14123],["Mitchell","2021-06-21",22056,12,14135],["Mitchell","2021-06-22",22056,30,14165],["Mitchell","2021-06-23",22056,22,14187],["Mitchell","2021-06-24",22056,37,14224],["Mitchell","2021-06-25",22056,20,14244],["Mitchell","2021-06-26",22056,5,14249],["Mitchell","2021-06-27",22056,2,14251],["Mitchell","2021-06-28",22056,18,14269],["Mitchell","2021-06-29",22056,26,14295],["Mitchell","2021-06-30",22056,21,14316],["Mitchell","2021-07-01",22056,41,14357],["Mitchell","2021-07-02",22056,29,14386],["Mitchell","2021-07-03",22056,4,14390],["Mitchell","2021-07-04",22056,3,14393],["Mitchell","2021-07-05",22056,11,14404],["Mitchell","2021-07-06",22056,33,14437],["Mitchell","2021-07-07",22056,17,14454],["Mitchell","2021-07-08",22056,33,14487],["Mitchell","2021-07-09",22056,28,14515],["Mitchell","2021-07-10",22056,20,14535],["Mitchell","2021-07-11",22056,2,14537],["Mitchell","2021-07-12",22056,20,14557],["Mitchell","2021-07-13",22056,29,14586],["Mitchell","2021-07-14",22056,18,14604],["Mitchell","2021-07-15",22056,24,14628],["Mitchell","2021-07-16",22056,31,14659],["Mitchell","2021-07-17",22056,15,14674],["Mitchell","2021-07-18",22056,8,14682],["Mitchell","2021-07-19",22056,18,14700],["Mitchell","2021-07-20",22056,21,14721],["Mitchell","2021-07-21",22056,35,14756],["Mitchell","2021-07-22",22056,49,14805],["Mitchell","2021-07-23",22056,70,14875],["Mitchell","2021-07-24",22056,23,14898],["Mitchell","2021-07-25",22056,15,14913],["Mitchell","2021-07-26",22056,40,14953],["Mitchell","2021-07-27",22056,55,15008],["Mitchell","2021-07-28",22056,62,15070],["Mitchell","2021-07-29",22056,90,15160],["Mitchell","2021-07-30",22056,83,15243],["Mitchell","2021-07-31",22056,21,15264],["Mitchell","2021-08-01",22056,22,15286],["Mitchell","2021-08-02",22056,54,15340],["Mitchell","2021-08-03",22056,68,15408],["Mitchell","2021-08-04",22056,81,15489],["Mitchell","2021-08-05",22056,73,15562],["Mitchell","2021-08-06",22056,96,15658],["Mitchell","2021-08-07",22056,49,15707],["Mitchell","2021-08-08",22056,25,15732],["Mitchell","2021-08-09",22056,93,15825],["Mitchell","2021-08-10",22056,71,15896],["Mitchell","2021-08-11",22056,77,15973],["Mitchell","2021-08-12",22056,88,16061],["Mitchell","2021-08-13",22056,201,16262],["Mitchell","2021-08-14",22056,46,16308],["Mitchell","2021-08-15",22056,45,16353],["Mitchell","2021-08-16",22056,84,16437],["Mitchell","2021-08-17",22056,109,16546],["Mitchell","2021-08-18",22056,133,16679],["Mitchell","2021-08-19",22056,113,16792],["Mitchell","2021-08-20",22056,178,16970],["Mitchell","2021-08-21",22056,45,17015],["Mitchell","2021-08-22",22056,28,17043],["Mitchell","2021-08-23",22056,90,17133],["Mitchell","2021-08-24",22056,79,17212],["Mitchell","2021-08-25",22056,127,17339],["Mitchell","2021-08-26",22056,123,17462],["Mitchell","2021-08-27",22056,117,17579],["Mitchell","2021-08-28",22056,60,17639],["Mitchell","2021-08-29",22056,32,17671],["Mitchell","2021-08-30",22056,90,17761],["Mitchell","2021-08-31",22056,76,17837],["Mitchell","2021-09-01",22056,110,17947],["Mitchell","2021-09-02",22056,95,18042],["Mitchell","2021-09-03",22056,136,18178],["Mitchell","2021-09-04",22056,26,18204],["Mitchell","2021-09-05",22056,28,18232],["Mitchell","2021-09-06",22056,11,18243],["Mitchell","2021-09-07",22056,118,18361],["Mitchell","2021-09-08",22056,100,18461],["Mitchell","2021-09-09",22056,106,18567],["Mitchell","2021-09-10",22056,169,18736],["Mitchell","2021-09-11",22056,39,18775],["Mitchell","2021-09-12",22056,32,18807],["Mitchell","2021-09-13",22056,96,18903],["Mitchell","2021-09-14",22056,81,18984],["Mitchell","2021-09-15",22056,72,19056],["Mitchell","2021-09-16",22056,79,19135],["Mitchell","2021-09-17",22056,138,19273],["Mitchell","2021-09-18",22056,56,19329],["Mitchell","2021-09-19",22056,15,19344],["Mitchell","2021-09-20",22056,51,19395],["Mitchell","2021-09-21",22056,49,19444],["Mitchell","2021-09-22",22056,75,19519],["Mitchell","2021-09-23",22056,63,19582],["Mitchell","2021-09-24",22056,73,19655],["Mitchell","2021-09-25",22056,19,19674],["Mitchell","2021-09-26",22056,6,19680],["Mitchell","2021-09-27",22056,52,19732],["Mitchell","2021-09-28",22056,57,19789],["Mitchell","2021-09-29",22056,51,19840],["Mitchell","2021-09-30",22056,118,19958],["Mitchell","2021-10-01",22056,89,20047],["Mitchell","2021-10-02",22056,23,20070],["Mitchell","2021-10-03",22056,9,20079],["Mitchell","2021-10-04",22056,27,20106],["Mitchell","2021-10-05",22056,58,20164],["Mitchell","2021-10-06",22056,41,20205],["Mitchell","2021-10-07",22056,65,20270],["Mitchell","2021-10-08",22056,67,20337],["Mitchell","2021-10-09",22056,20,20357],["Mitchell","2021-10-10",22056,6,20363],["Mitchell","2021-10-11",22056,26,20389],["Mitchell","2021-10-12",22056,44,20433],["Mitchell","2021-10-13",22056,47,20480],["Mitchell","2021-10-14",22056,60,20540],["Mitchell","2021-10-15",22056,46,20586],["Mitchell","2021-10-16",22056,28,20614],["Mitchell","2021-10-17",22056,3,20617],["Mitchell","2021-10-18",22056,33,20650],["Mitchell","2021-10-19",22056,53,20703],["Mitchell","2021-10-20",22056,27,20730],["Mitchell","2021-10-21",22056,51,20781],["Mitchell","2021-10-22",22056,35,20816],["Mitchell","2021-10-23",22056,15,20831],["Mitchell","2021-10-24",22056,10,20841],["Mitchell","2021-10-25",22056,50,20891],["Mitchell","2021-10-26",22056,63,20954],["Mitchell","2021-10-27",22056,80,21034],["Mitchell","2021-10-28",22056,130,21164],["Mitchell","2021-10-29",22056,88,21252],["Mitchell","2021-10-30",22056,14,21266],["Mitchell","2021-10-31",22056,2,21268],["Mitchell","2021-11-01",22056,137,21405],["Mitchell","2021-11-02",22056,81,21486],["Mitchell","2021-11-03",22056,91,21577],["Mitchell","2021-11-04",22056,94,21671],["Mitchell","2021-11-05",22056,59,21730],["Mitchell","2021-11-06",22056,38,21768],["Mitchell","2021-11-07",22056,10,21778],["Mitchell","2021-11-08",22056,75,21853],["Mitchell","2021-11-09",22056,67,21920],["Mitchell","2021-11-10",22056,73,21993],["Mitchell","2021-11-11",22056,38,22031],["Mitchell","2021-11-12",22056,79,22110],["Mitchell","2021-11-13",22056,10,22120],["Mitchell","2021-11-14",22056,3,22123],["Mitchell","2021-11-15",22056,99,22222],["Mitchell","2021-11-16",22056,99,22321],["Mitchell","2021-11-17",22056,74,22395],["Mitchell","2021-11-18",22056,108,22503],["Mitchell","2021-11-19",22056,83,22586],["Mitchell","2021-11-20",22056,25,22611],["Mitchell","2021-11-21",22056,9,22620],["Mitchell","2021-11-22",22056,91,22711],["Mitchell","2021-11-23",22056,63,22774],["Mitchell","2021-11-24",22056,40,22814],["Mitchell","2021-11-26",22056,28,22842],["Mitchell","2021-11-27",22056,17,22859],["Mitchell","2021-11-28",22056,4,22863],["Mitchell","2021-11-29",22056,89,22952],["Mitchell","2021-11-30",22056,97,23049],["Mitchell","2021-12-01",22056,102,23151],["Mitchell","2021-12-02",22056,127,23278],["Mitchell","2021-12-03",22056,94,23372],["Mitchell","2021-12-04",22056,21,23393],["Mitchell","2021-12-05",22056,11,23404],["Mitchell","2021-12-06",22056,76,23480],["Mitchell","2021-12-07",22056,68,23548],["Mitchell","2021-12-08",22056,55,23603],["Mitchell","2021-12-09",22056,59,23662],["Mitchell","2021-12-10",22056,53,23715],["Mitchell","2021-12-11",22056,11,23726],["Mitchell","2021-12-12",22056,7,23733],["Mitchell","2021-12-13",22056,46,23779],["Mitchell","2021-12-14",22056,55,23834],["Mitchell","2021-12-15",22056,50,23884],["Mitchell","2021-12-16",22056,71,23955],["Mitchell","2021-12-17",22056,68,24023],["Mitchell","2021-12-18",22056,16,24039],["Mitchell","2021-12-19",22056,16,24055],["Mitchell","2021-12-20",22056,64,24119],["Mitchell","2021-12-21",22056,67,24186],["Mitchell","2021-12-22",22056,59,24245],["Mitchell","2021-12-23",22056,34,24279],["Mitchell","2021-12-24",22056,15,24294],["Mitchell","2021-12-26",22056,16,24310],["Mitchell","2021-12-27",22056,62,24372],["Mitchell","2021-12-28",22056,78,24450],["Mitchell","2021-12-29",22056,72,24522],["Mitchell","2021-12-30",22056,57,24579],["Mitchell","2021-12-31",22056,52,24631],["Mitchell","2022-01-01",22056,5,24636],["Mitchell","2022-01-02",22056,14,24650],["Mitchell","2022-01-03",22056,7,24657],["Monroe","2020-12-18",27727,3,3],["Monroe","2020-12-19",27727,1,4],["Monroe","2020-12-20",27727,1,5],["Monroe","2020-12-21",27727,7,12],["Monroe","2020-12-22",27727,19,31],["Monroe","2020-12-23",27727,32,63],["Monroe","2020-12-24",27727,25,88],["Monroe","2020-12-26",27727,21,109],["Monroe","2020-12-27",27727,2,111],["Monroe","2020-12-28",27727,104,215],["Monroe","2020-12-29",27727,112,327],["Monroe","2020-12-30",27727,71,398],["Monroe","2020-12-31",27727,23,421],["Monroe","2021-01-01",27727,2,423],["Monroe","2021-01-02",27727,2,425],["Monroe","2021-01-03",27727,48,473],["Monroe","2021-01-04",27727,44,517],["Monroe","2021-01-05",27727,52,569],["Monroe","2021-01-06",27727,42,611],["Monroe","2021-01-07",27727,87,698],["Monroe","2021-01-08",27727,58,756],["Monroe","2021-01-09",27727,12,768],["Monroe","2021-01-10",27727,6,774],["Monroe","2021-01-11",27727,63,837],["Monroe","2021-01-12",27727,69,906],["Monroe","2021-01-13",27727,104,1010],["Monroe","2021-01-14",27727,50,1060],["Monroe","2021-01-15",27727,140,1200],["Monroe","2021-01-16",27727,29,1229],["Monroe","2021-01-17",27727,41,1270],["Monroe","2021-01-18",27727,146,1416],["Monroe","2021-01-19",27727,111,1527],["Monroe","2021-01-20",27727,143,1670],["Monroe","2021-01-21",27727,148,1818],["Monroe","2021-01-22",27727,195,2013],["Monroe","2021-01-23",27727,28,2041],["Monroe","2021-01-24",27727,75,2116],["Monroe","2021-01-25",27727,171,2287],["Monroe","2021-01-26",27727,143,2430],["Monroe","2021-01-27",27727,169,2599],["Monroe","2021-01-28",27727,156,2755],["Monroe","2021-01-29",27727,201,2956],["Monroe","2021-01-30",27727,23,2979],["Monroe","2021-01-31",27727,4,2983],["Monroe","2021-02-01",27727,108,3091],["Monroe","2021-02-02",27727,86,3177],["Monroe","2021-02-03",27727,124,3301],["Monroe","2021-02-04",27727,94,3395],["Monroe","2021-02-05",27727,168,3563],["Monroe","2021-02-06",27727,12,3575],["Monroe","2021-02-07",27727,39,3614],["Monroe","2021-02-08",27727,127,3741],["Monroe","2021-02-09",27727,79,3820],["Monroe","2021-02-10",27727,144,3964],["Monroe","2021-02-11",27727,77,4041],["Monroe","2021-02-12",27727,193,4234],["Monroe","2021-02-13",27727,43,4277],["Monroe","2021-02-14",27727,19,4296],["Monroe","2021-02-15",27727,173,4469],["Monroe","2021-02-16",27727,128,4597],["Monroe","2021-02-17",27727,174,4771],["Monroe","2021-02-18",27727,177,4948],["Monroe","2021-02-19",27727,176,5124],["Monroe","2021-02-20",27727,33,5157],["Monroe","2021-02-21",27727,20,5177],["Monroe","2021-02-22",27727,159,5336],["Monroe","2021-02-23",27727,118,5454],["Monroe","2021-02-24",27727,144,5598],["Monroe","2021-02-25",27727,182,5780],["Monroe","2021-02-26",27727,275,6055],["Monroe","2021-02-27",27727,48,6103],["Monroe","2021-02-28",27727,7,6110],["Monroe","2021-03-01",27727,211,6321],["Monroe","2021-03-02",27727,115,6436],["Monroe","2021-03-03",27727,164,6600],["Monroe","2021-03-04",27727,163,6763],["Monroe","2021-03-05",27727,196,6959],["Monroe","2021-03-06",27727,14,6973],["Monroe","2021-03-07",27727,16,6989],["Monroe","2021-03-08",27727,282,7271],["Monroe","2021-03-09",27727,121,7392],["Monroe","2021-03-10",27727,157,7549],["Monroe","2021-03-11",27727,154,7703],["Monroe","2021-03-12",27727,238,7941],["Monroe","2021-03-13",27727,54,7995],["Monroe","2021-03-14",27727,36,8031],["Monroe","2021-03-15",27727,298,8329],["Monroe","2021-03-16",27727,161,8490],["Monroe","2021-03-17",27727,208,8698],["Monroe","2021-03-18",27727,215,8913],["Monroe","2021-03-19",27727,292,9205],["Monroe","2021-03-20",27727,44,9249],["Monroe","2021-03-21",27727,12,9261],["Monroe","2021-03-22",27727,174,9435],["Monroe","2021-03-23",27727,143,9578],["Monroe","2021-03-24",27727,146,9724],["Monroe","2021-03-25",27727,181,9905],["Monroe","2021-03-26",27727,227,10132],["Monroe","2021-03-27",27727,29,10161],["Monroe","2021-03-28",27727,20,10181],["Monroe","2021-03-29",27727,272,10453],["Monroe","2021-03-30",27727,169,10622],["Monroe","2021-03-31",27727,183,10805],["Monroe","2021-04-01",27727,247,11052],["Monroe","2021-04-02",27727,184,11236],["Monroe","2021-04-03",27727,57,11293],["Monroe","2021-04-04",27727,16,11309],["Monroe","2021-04-05",27727,248,11557],["Monroe","2021-04-06",27727,180,11737],["Monroe","2021-04-07",27727,193,11930],["Monroe","2021-04-08",27727,206,12136],["Monroe","2021-04-09",27727,335,12471],["Monroe","2021-04-10",27727,38,12509],["Monroe","2021-04-11",27727,36,12545],["Monroe","2021-04-12",27727,262,12807],["Monroe","2021-04-13",27727,133,12940],["Monroe","2021-04-14",27727,158,13098],["Monroe","2021-04-15",27727,219,13317],["Monroe","2021-04-16",27727,315,13632],["Monroe","2021-04-17",27727,27,13659],["Monroe","2021-04-18",27727,15,13674],["Monroe","2021-04-19",27727,161,13835],["Monroe","2021-04-20",27727,143,13978],["Monroe","2021-04-21",27727,141,14119],["Monroe","2021-04-22",27727,166,14285],["Monroe","2021-04-23",27727,255,14540],["Monroe","2021-04-24",27727,27,14567],["Monroe","2021-04-25",27727,18,14585],["Monroe","2021-04-26",27727,177,14762],["Monroe","2021-04-27",27727,127,14889],["Monroe","2021-04-28",27727,157,15046],["Monroe","2021-04-29",27727,172,15218],["Monroe","2021-04-30",27727,199,15417],["Monroe","2021-05-01",27727,44,15461],["Monroe","2021-05-02",27727,26,15487],["Monroe","2021-05-03",27727,120,15607],["Monroe","2021-05-04",27727,98,15705],["Monroe","2021-05-05",27727,122,15827],["Monroe","2021-05-06",27727,130,15957],["Monroe","2021-05-07",27727,153,16110],["Monroe","2021-05-08",27727,72,16182],["Monroe","2021-05-09",27727,16,16198],["Monroe","2021-05-10",27727,95,16293],["Monroe","2021-05-11",27727,56,16349],["Monroe","2021-05-12",27727,63,16412],["Monroe","2021-05-13",27727,105,16517],["Monroe","2021-05-14",27727,123,16640],["Monroe","2021-05-15",27727,34,16674],["Monroe","2021-05-16",27727,31,16705],["Monroe","2021-05-17",27727,89,16794],["Monroe","2021-05-18",27727,122,16916],["Monroe","2021-05-19",27727,122,17038],["Monroe","2021-05-20",27727,106,17144],["Monroe","2021-05-21",27727,93,17237],["Monroe","2021-05-22",27727,32,17269],["Monroe","2021-05-23",27727,16,17285],["Monroe","2021-05-24",27727,73,17358],["Monroe","2021-05-25",27727,67,17425],["Monroe","2021-05-26",27727,79,17504],["Monroe","2021-05-27",27727,77,17581],["Monroe","2021-05-28",27727,36,17617],["Monroe","2021-05-29",27727,12,17629],["Monroe","2021-05-30",27727,12,17641],["Monroe","2021-05-31",27727,8,17649],["Monroe","2021-06-01",27727,111,17760],["Monroe","2021-06-02",27727,80,17840],["Monroe","2021-06-03",27727,74,17914],["Monroe","2021-06-04",27727,68,17982],["Monroe","2021-06-05",27727,24,18006],["Monroe","2021-06-06",27727,18,18024],["Monroe","2021-06-07",27727,66,18090],["Monroe","2021-06-08",27727,42,18132],["Monroe","2021-06-09",27727,39,18171],["Monroe","2021-06-10",27727,57,18228],["Monroe","2021-06-11",27727,107,18335],["Monroe","2021-06-12",27727,69,18404],["Monroe","2021-06-13",27727,13,18417],["Monroe","2021-06-14",27727,38,18455],["Monroe","2021-06-15",27727,39,18494],["Monroe","2021-06-16",27727,28,18522],["Monroe","2021-06-17",27727,60,18582],["Monroe","2021-06-18",27727,23,18605],["Monroe","2021-06-19",27727,21,18626],["Monroe","2021-06-20",27727,13,18639],["Monroe","2021-06-21",27727,22,18661],["Monroe","2021-06-22",27727,41,18702],["Monroe","2021-06-23",27727,41,18743],["Monroe","2021-06-24",27727,32,18775],["Monroe","2021-06-25",27727,32,18807],["Monroe","2021-06-26",27727,11,18818],["Monroe","2021-06-27",27727,6,18824],["Monroe","2021-06-28",27727,34,18858],["Monroe","2021-06-29",27727,35,18893],["Monroe","2021-06-30",27727,34,18927],["Monroe","2021-07-01",27727,24,18951],["Monroe","2021-07-02",27727,36,18987],["Monroe","2021-07-03",27727,13,19000],["Monroe","2021-07-04",27727,2,19002],["Monroe","2021-07-05",27727,12,19014],["Monroe","2021-07-06",27727,29,19043],["Monroe","2021-07-07",27727,18,19061],["Monroe","2021-07-08",27727,24,19085],["Monroe","2021-07-09",27727,29,19114],["Monroe","2021-07-10",27727,12,19126],["Monroe","2021-07-11",27727,7,19133],["Monroe","2021-07-12",27727,32,19165],["Monroe","2021-07-13",27727,27,19192],["Monroe","2021-07-14",27727,21,19213],["Monroe","2021-07-15",27727,21,19234],["Monroe","2021-07-16",27727,21,19255],["Monroe","2021-07-17",27727,14,19269],["Monroe","2021-07-18",27727,16,19285],["Monroe","2021-07-19",27727,30,19315],["Monroe","2021-07-20",27727,29,19344],["Monroe","2021-07-21",27727,25,19369],["Monroe","2021-07-22",27727,54,19423],["Monroe","2021-07-23",27727,64,19487],["Monroe","2021-07-24",27727,35,19522],["Monroe","2021-07-25",27727,14,19536],["Monroe","2021-07-26",27727,45,19581],["Monroe","2021-07-27",27727,43,19624],["Monroe","2021-07-28",27727,39,19663],["Monroe","2021-07-29",27727,54,19717],["Monroe","2021-07-30",27727,54,19771],["Monroe","2021-07-31",27727,17,19788],["Monroe","2021-08-01",27727,22,19810],["Monroe","2021-08-02",27727,56,19866],["Monroe","2021-08-03",27727,58,19924],["Monroe","2021-08-04",27727,44,19968],["Monroe","2021-08-05",27727,46,20014],["Monroe","2021-08-06",27727,85,20099],["Monroe","2021-08-07",27727,39,20138],["Monroe","2021-08-08",27727,30,20168],["Monroe","2021-08-09",27727,78,20246],["Monroe","2021-08-10",27727,80,20326],["Monroe","2021-08-11",27727,57,20383],["Monroe","2021-08-12",27727,63,20446],["Monroe","2021-08-13",27727,87,20533],["Monroe","2021-08-14",27727,46,20579],["Monroe","2021-08-15",27727,45,20624],["Monroe","2021-08-16",27727,109,20733],["Monroe","2021-08-17",27727,79,20812],["Monroe","2021-08-18",27727,64,20876],["Monroe","2021-08-19",27727,62,20938],["Monroe","2021-08-20",27727,115,21053],["Monroe","2021-08-21",27727,44,21097],["Monroe","2021-08-22",27727,27,21124],["Monroe","2021-08-23",27727,68,21192],["Monroe","2021-08-24",27727,76,21268],["Monroe","2021-08-25",27727,61,21329],["Monroe","2021-08-26",27727,72,21401],["Monroe","2021-08-27",27727,86,21487],["Monroe","2021-08-28",27727,51,21538],["Monroe","2021-08-29",27727,30,21568],["Monroe","2021-08-30",27727,81,21649],["Monroe","2021-08-31",27727,65,21714],["Monroe","2021-09-01",27727,63,21777],["Monroe","2021-09-02",27727,56,21833],["Monroe","2021-09-03",27727,105,21938],["Monroe","2021-09-04",27727,43,21981],["Monroe","2021-09-05",27727,32,22013],["Monroe","2021-09-06",27727,18,22031],["Monroe","2021-09-07",27727,72,22103],["Monroe","2021-09-08",27727,92,22195],["Monroe","2021-09-09",27727,84,22279],["Monroe","2021-09-10",27727,86,22365],["Monroe","2021-09-11",27727,55,22420],["Monroe","2021-09-12",27727,38,22458],["Monroe","2021-09-13",27727,75,22533],["Monroe","2021-09-14",27727,72,22605],["Monroe","2021-09-15",27727,77,22682],["Monroe","2021-09-16",27727,75,22757],["Monroe","2021-09-17",27727,73,22830],["Monroe","2021-09-18",27727,28,22858],["Monroe","2021-09-19",27727,25,22883],["Monroe","2021-09-20",27727,60,22943],["Monroe","2021-09-21",27727,46,22989],["Monroe","2021-09-22",27727,44,23033],["Monroe","2021-09-23",27727,46,23079],["Monroe","2021-09-24",27727,75,23154],["Monroe","2021-09-25",27727,32,23186],["Monroe","2021-09-26",27727,12,23198],["Monroe","2021-09-27",27727,58,23256],["Monroe","2021-09-28",27727,64,23320],["Monroe","2021-09-29",27727,62,23382],["Monroe","2021-09-30",27727,65,23447],["Monroe","2021-10-01",27727,92,23539],["Monroe","2021-10-02",27727,24,23563],["Monroe","2021-10-03",27727,22,23585],["Monroe","2021-10-04",27727,40,23625],["Monroe","2021-10-05",27727,41,23666],["Monroe","2021-10-06",27727,46,23712],["Monroe","2021-10-07",27727,63,23775],["Monroe","2021-10-08",27727,51,23826],["Monroe","2021-10-09",27727,20,23846],["Monroe","2021-10-10",27727,13,23859],["Monroe","2021-10-11",27727,28,23887],["Monroe","2021-10-12",27727,34,23921],["Monroe","2021-10-13",27727,33,23954],["Monroe","2021-10-14",27727,37,23991],["Monroe","2021-10-15",27727,37,24028],["Monroe","2021-10-16",27727,17,24045],["Monroe","2021-10-17",27727,10,24055],["Monroe","2021-10-18",27727,30,24085],["Monroe","2021-10-19",27727,37,24122],["Monroe","2021-10-20",27727,34,24156],["Monroe","2021-10-21",27727,44,24200],["Monroe","2021-10-22",27727,114,24314],["Monroe","2021-10-23",27727,42,24356],["Monroe","2021-10-24",27727,23,24379],["Monroe","2021-10-25",27727,106,24485],["Monroe","2021-10-26",27727,142,24627],["Monroe","2021-10-27",27727,139,24766],["Monroe","2021-10-28",27727,80,24846],["Monroe","2021-10-29",27727,118,24964],["Monroe","2021-10-30",27727,30,24994],["Monroe","2021-10-31",27727,16,25010],["Monroe","2021-11-01",27727,104,25114],["Monroe","2021-11-02",27727,98,25212],["Monroe","2021-11-03",27727,85,25297],["Monroe","2021-11-04",27727,102,25399],["Monroe","2021-11-05",27727,91,25490],["Monroe","2021-11-06",27727,21,25511],["Monroe","2021-11-07",27727,15,25526],["Monroe","2021-11-08",27727,83,25609],["Monroe","2021-11-09",27727,88,25697],["Monroe","2021-11-10",27727,56,25753],["Monroe","2021-11-11",27727,53,25806],["Monroe","2021-11-12",27727,104,25910],["Monroe","2021-11-13",27727,19,25929],["Monroe","2021-11-14",27727,17,25946],["Monroe","2021-11-15",27727,64,26010],["Monroe","2021-11-16",27727,61,26071],["Monroe","2021-11-17",27727,102,26173],["Monroe","2021-11-18",27727,101,26274],["Monroe","2021-11-19",27727,107,26381],["Monroe","2021-11-20",27727,31,26412],["Monroe","2021-11-21",27727,31,26443],["Monroe","2021-11-22",27727,104,26547],["Monroe","2021-11-23",27727,74,26621],["Monroe","2021-11-24",27727,34,26655],["Monroe","2021-11-26",27727,33,26688],["Monroe","2021-11-27",27727,24,26712],["Monroe","2021-11-28",27727,18,26730],["Monroe","2021-11-29",27727,126,26856],["Monroe","2021-11-30",27727,96,26952],["Monroe","2021-12-01",27727,131,27083],["Monroe","2021-12-02",27727,104,27187],["Monroe","2021-12-03",27727,137,27324],["Monroe","2021-12-04",27727,40,27364],["Monroe","2021-12-05",27727,23,27387],["Monroe","2021-12-06",27727,99,27486],["Monroe","2021-12-07",27727,83,27569],["Monroe","2021-12-08",27727,77,27646],["Monroe","2021-12-09",27727,81,27727],["Monroe","2021-12-10",27727,102,27829],["Monroe","2021-12-11",27727,28,27857],["Monroe","2021-12-12",27727,20,27877],["Monroe","2021-12-13",27727,47,27924],["Monroe","2021-12-14",27727,49,27973],["Monroe","2021-12-15",27727,39,28012],["Monroe","2021-12-16",27727,70,28082],["Monroe","2021-12-17",27727,88,28170],["Monroe","2021-12-18",27727,36,28206],["Monroe","2021-12-19",27727,17,28223],["Monroe","2021-12-20",27727,73,28296],["Monroe","2021-12-21",27727,81,28377],["Monroe","2021-12-22",27727,72,28449],["Monroe","2021-12-23",27727,59,28508],["Monroe","2021-12-24",27727,17,28525],["Monroe","2021-12-26",27727,19,28544],["Monroe","2021-12-27",27727,87,28631],["Monroe","2021-12-28",27727,76,28707],["Monroe","2021-12-29",27727,60,28767],["Monroe","2021-12-30",27727,60,28827],["Monroe","2021-12-31",27727,38,28865],["Monroe","2022-01-01",27727,9,28874],["Monroe","2022-01-02",27727,6,28880],["Monroe","2022-01-03",27727,18,28898],["Montgomery","2020-12-22",9224,2,2],["Montgomery","2020-12-23",9224,9,11],["Montgomery","2020-12-24",9224,1,12],["Montgomery","2020-12-28",9224,5,17],["Montgomery","2020-12-29",9224,9,26],["Montgomery","2020-12-30",9224,25,51],["Montgomery","2020-12-31",9224,2,53],["Montgomery","2021-01-01",9224,3,56],["Montgomery","2021-01-03",9224,1,57],["Montgomery","2021-01-04",9224,2,59],["Montgomery","2021-01-05",9224,9,68],["Montgomery","2021-01-06",9224,10,78],["Montgomery","2021-01-07",9224,10,88],["Montgomery","2021-01-08",9224,10,98],["Montgomery","2021-01-11",9224,133,231],["Montgomery","2021-01-12",9224,10,241],["Montgomery","2021-01-13",9224,29,270],["Montgomery","2021-01-14",9224,13,283],["Montgomery","2021-01-15",9224,8,291],["Montgomery","2021-01-16",9224,8,299],["Montgomery","2021-01-17",9224,6,305],["Montgomery","2021-01-18",9224,139,444],["Montgomery","2021-01-19",9224,49,493],["Montgomery","2021-01-20",9224,28,521],["Montgomery","2021-01-21",9224,8,529],["Montgomery","2021-01-22",9224,19,548],["Montgomery","2021-01-23",9224,2,550],["Montgomery","2021-01-25",9224,124,674],["Montgomery","2021-01-26",9224,8,682],["Montgomery","2021-01-27",9224,20,702],["Montgomery","2021-01-28",9224,33,735],["Montgomery","2021-01-29",9224,5,740],["Montgomery","2021-01-30",9224,3,743],["Montgomery","2021-01-31",9224,1,744],["Montgomery","2021-02-01",9224,66,810],["Montgomery","2021-02-02",9224,10,820],["Montgomery","2021-02-03",9224,19,839],["Montgomery","2021-02-04",9224,17,856],["Montgomery","2021-02-05",9224,11,867],["Montgomery","2021-02-06",9224,9,876],["Montgomery","2021-02-07",9224,8,884],["Montgomery","2021-02-08",9224,153,1037],["Montgomery","2021-02-09",9224,22,1059],["Montgomery","2021-02-10",9224,34,1093],["Montgomery","2021-02-11",9224,20,1113],["Montgomery","2021-02-12",9224,12,1125],["Montgomery","2021-02-13",9224,15,1140],["Montgomery","2021-02-14",9224,2,1142],["Montgomery","2021-02-15",9224,151,1293],["Montgomery","2021-02-16",9224,56,1349],["Montgomery","2021-02-17",9224,24,1373],["Montgomery","2021-02-18",9224,4,1377],["Montgomery","2021-02-19",9224,11,1388],["Montgomery","2021-02-20",9224,4,1392],["Montgomery","2021-02-21",9224,2,1394],["Montgomery","2021-02-22",9224,142,1536],["Montgomery","2021-02-23",9224,17,1553],["Montgomery","2021-02-24",9224,9,1562],["Montgomery","2021-02-25",9224,24,1586],["Montgomery","2021-02-26",9224,6,1592],["Montgomery","2021-02-28",9224,2,1594],["Montgomery","2021-03-01",9224,100,1694],["Montgomery","2021-03-02",9224,21,1715],["Montgomery","2021-03-03",9224,28,1743],["Montgomery","2021-03-04",9224,16,1759],["Montgomery","2021-03-05",9224,11,1770],["Montgomery","2021-03-06",9224,3,1773],["Montgomery","2021-03-07",9224,1,1774],["Montgomery","2021-03-08",9224,73,1847],["Montgomery","2021-03-09",9224,15,1862],["Montgomery","2021-03-10",9224,31,1893],["Montgomery","2021-03-11",9224,53,1946],["Montgomery","2021-03-12",9224,52,1998],["Montgomery","2021-03-13",9224,9,2007],["Montgomery","2021-03-14",9224,4,2011],["Montgomery","2021-03-15",9224,27,2038],["Montgomery","2021-03-16",9224,110,2148],["Montgomery","2021-03-17",9224,28,2176],["Montgomery","2021-03-18",9224,21,2197],["Montgomery","2021-03-19",9224,22,2219],["Montgomery","2021-03-20",9224,5,2224],["Montgomery","2021-03-21",9224,1,2225],["Montgomery","2021-03-22",9224,30,2255],["Montgomery","2021-03-23",9224,91,2346],["Montgomery","2021-03-24",9224,27,2373],["Montgomery","2021-03-25",9224,23,2396],["Montgomery","2021-03-26",9224,30,2426],["Montgomery","2021-03-27",9224,31,2457],["Montgomery","2021-03-28",9224,2,2459],["Montgomery","2021-03-29",9224,17,2476],["Montgomery","2021-03-30",9224,106,2582],["Montgomery","2021-03-31",9224,32,2614],["Montgomery","2021-04-01",9224,31,2645],["Montgomery","2021-04-02",9224,26,2671],["Montgomery","2021-04-03",9224,7,2678],["Montgomery","2021-04-05",9224,29,2707],["Montgomery","2021-04-06",9224,89,2796],["Montgomery","2021-04-07",9224,44,2840],["Montgomery","2021-04-08",9224,55,2895],["Montgomery","2021-04-09",9224,28,2923],["Montgomery","2021-04-10",9224,8,2931],["Montgomery","2021-04-11",9224,7,2938],["Montgomery","2021-04-12",9224,26,2964],["Montgomery","2021-04-13",9224,114,3078],["Montgomery","2021-04-14",9224,32,3110],["Montgomery","2021-04-15",9224,17,3127],["Montgomery","2021-04-16",9224,29,3156],["Montgomery","2021-04-17",9224,3,3159],["Montgomery","2021-04-18",9224,1,3160],["Montgomery","2021-04-19",9224,12,3172],["Montgomery","2021-04-20",9224,93,3265],["Montgomery","2021-04-21",9224,44,3309],["Montgomery","2021-04-22",9224,32,3341],["Montgomery","2021-04-23",9224,25,3366],["Montgomery","2021-04-24",9224,33,3399],["Montgomery","2021-04-25",9224,2,3401],["Montgomery","2021-04-26",9224,14,3415],["Montgomery","2021-04-27",9224,85,3500],["Montgomery","2021-04-28",9224,25,3525],["Montgomery","2021-04-29",9224,14,3539],["Montgomery","2021-04-30",9224,26,3565],["Montgomery","2021-05-01",9224,17,3582],["Montgomery","2021-05-02",9224,1,3583],["Montgomery","2021-05-03",9224,9,3592],["Montgomery","2021-05-04",9224,72,3664],["Montgomery","2021-05-05",9224,28,3692],["Montgomery","2021-05-06",9224,26,3718],["Montgomery","2021-05-07",9224,11,3729],["Montgomery","2021-05-08",9224,9,3738],["Montgomery","2021-05-09",9224,1,3739],["Montgomery","2021-05-10",9224,13,3752],["Montgomery","2021-05-11",9224,44,3796],["Montgomery","2021-05-12",9224,14,3810],["Montgomery","2021-05-13",9224,16,3826],["Montgomery","2021-05-14",9224,20,3846],["Montgomery","2021-05-15",9224,7,3853],["Montgomery","2021-05-16",9224,2,3855],["Montgomery","2021-05-17",9224,11,3866],["Montgomery","2021-05-18",9224,44,3910],["Montgomery","2021-05-19",9224,26,3936],["Montgomery","2021-05-20",9224,9,3945],["Montgomery","2021-05-21",9224,13,3958],["Montgomery","2021-05-22",9224,9,3967],["Montgomery","2021-05-23",9224,1,3968],["Montgomery","2021-05-24",9224,19,3987],["Montgomery","2021-05-25",9224,39,4026],["Montgomery","2021-05-26",9224,7,4033],["Montgomery","2021-05-27",9224,7,4040],["Montgomery","2021-05-28",9224,13,4053],["Montgomery","2021-05-29",9224,4,4057],["Montgomery","2021-05-30",9224,1,4058],["Montgomery","2021-05-31",9224,4,4062],["Montgomery","2021-06-01",9224,37,4099],["Montgomery","2021-06-02",9224,9,4108],["Montgomery","2021-06-03",9224,8,4116],["Montgomery","2021-06-04",9224,17,4133],["Montgomery","2021-06-05",9224,5,4138],["Montgomery","2021-06-06",9224,2,4140],["Montgomery","2021-06-07",9224,11,4151],["Montgomery","2021-06-08",9224,20,4171],["Montgomery","2021-06-09",9224,3,4174],["Montgomery","2021-06-10",9224,16,4190],["Montgomery","2021-06-11",9224,14,4204],["Montgomery","2021-06-12",9224,7,4211],["Montgomery","2021-06-13",9224,4,4215],["Montgomery","2021-06-14",9224,9,4224],["Montgomery","2021-06-15",9224,21,4245],["Montgomery","2021-06-16",9224,8,4253],["Montgomery","2021-06-17",9224,3,4256],["Montgomery","2021-06-18",9224,11,4267],["Montgomery","2021-06-19",9224,10,4277],["Montgomery","2021-06-20",9224,1,4278],["Montgomery","2021-06-21",9224,6,4284],["Montgomery","2021-06-22",9224,21,4305],["Montgomery","2021-06-23",9224,7,4312],["Montgomery","2021-06-24",9224,8,4320],["Montgomery","2021-06-25",9224,5,4325],["Montgomery","2021-06-26",9224,6,4331],["Montgomery","2021-06-27",9224,1,4332],["Montgomery","2021-06-28",9224,5,4337],["Montgomery","2021-06-29",9224,16,4353],["Montgomery","2021-06-30",9224,6,4359],["Montgomery","2021-07-01",9224,7,4366],["Montgomery","2021-07-02",9224,3,4369],["Montgomery","2021-07-03",9224,4,4373],["Montgomery","2021-07-05",9224,5,4378],["Montgomery","2021-07-06",9224,9,4387],["Montgomery","2021-07-07",9224,6,4393],["Montgomery","2021-07-08",9224,8,4401],["Montgomery","2021-07-09",9224,10,4411],["Montgomery","2021-07-10",9224,9,4420],["Montgomery","2021-07-11",9224,5,4425],["Montgomery","2021-07-12",9224,6,4431],["Montgomery","2021-07-13",9224,7,4438],["Montgomery","2021-07-14",9224,3,4441],["Montgomery","2021-07-15",9224,8,4449],["Montgomery","2021-07-16",9224,15,4464],["Montgomery","2021-07-17",9224,8,4472],["Montgomery","2021-07-19",9224,12,4484],["Montgomery","2021-07-20",9224,16,4500],["Montgomery","2021-07-21",9224,13,4513],["Montgomery","2021-07-22",9224,19,4532],["Montgomery","2021-07-23",9224,17,4549],["Montgomery","2021-07-24",9224,5,4554],["Montgomery","2021-07-25",9224,3,4557],["Montgomery","2021-07-26",9224,15,4572],["Montgomery","2021-07-27",9224,25,4597],["Montgomery","2021-07-28",9224,32,4629],["Montgomery","2021-07-29",9224,21,4650],["Montgomery","2021-07-30",9224,29,4679],["Montgomery","2021-07-31",9224,7,4686],["Montgomery","2021-08-01",9224,4,4690],["Montgomery","2021-08-02",9224,31,4721],["Montgomery","2021-08-03",9224,34,4755],["Montgomery","2021-08-04",9224,30,4785],["Montgomery","2021-08-05",9224,31,4816],["Montgomery","2021-08-06",9224,29,4845],["Montgomery","2021-08-07",9224,12,4857],["Montgomery","2021-08-08",9224,8,4865],["Montgomery","2021-08-09",9224,23,4888],["Montgomery","2021-08-10",9224,26,4914],["Montgomery","2021-08-11",9224,28,4942],["Montgomery","2021-08-12",9224,25,4967],["Montgomery","2021-08-13",9224,25,4992],["Montgomery","2021-08-14",9224,12,5004],["Montgomery","2021-08-15",9224,5,5009],["Montgomery","2021-08-16",9224,70,5079],["Montgomery","2021-08-17",9224,42,5121],["Montgomery","2021-08-18",9224,43,5164],["Montgomery","2021-08-19",9224,44,5208],["Montgomery","2021-08-20",9224,30,5238],["Montgomery","2021-08-21",9224,8,5246],["Montgomery","2021-08-22",9224,7,5253],["Montgomery","2021-08-23",9224,42,5295],["Montgomery","2021-08-24",9224,32,5327],["Montgomery","2021-08-25",9224,46,5373],["Montgomery","2021-08-26",9224,57,5430],["Montgomery","2021-08-27",9224,48,5478],["Montgomery","2021-08-28",9224,18,5496],["Montgomery","2021-08-29",9224,13,5509],["Montgomery","2021-08-30",9224,45,5554],["Montgomery","2021-08-31",9224,49,5603],["Montgomery","2021-09-01",9224,47,5650],["Montgomery","2021-09-02",9224,32,5682],["Montgomery","2021-09-03",9224,32,5714],["Montgomery","2021-09-04",9224,4,5718],["Montgomery","2021-09-05",9224,9,5727],["Montgomery","2021-09-06",9224,11,5738],["Montgomery","2021-09-07",9224,60,5798],["Montgomery","2021-09-08",9224,35,5833],["Montgomery","2021-09-09",9224,26,5859],["Montgomery","2021-09-10",9224,25,5884],["Montgomery","2021-09-11",9224,11,5895],["Montgomery","2021-09-12",9224,7,5902],["Montgomery","2021-09-13",9224,28,5930],["Montgomery","2021-09-14",9224,54,5984],["Montgomery","2021-09-15",9224,39,6023],["Montgomery","2021-09-16",9224,20,6043],["Montgomery","2021-09-17",9224,39,6082],["Montgomery","2021-09-18",9224,11,6093],["Montgomery","2021-09-19",9224,5,6098],["Montgomery","2021-09-20",9224,34,6132],["Montgomery","2021-09-21",9224,47,6179],["Montgomery","2021-09-22",9224,29,6208],["Montgomery","2021-09-23",9224,20,6228],["Montgomery","2021-09-24",9224,15,6243],["Montgomery","2021-09-25",9224,9,6252],["Montgomery","2021-09-26",9224,6,6258],["Montgomery","2021-09-27",9224,24,6282],["Montgomery","2021-09-28",9224,32,6314],["Montgomery","2021-09-29",9224,17,6331],["Montgomery","2021-09-30",9224,15,6346],["Montgomery","2021-10-01",9224,24,6370],["Montgomery","2021-10-02",9224,7,6377],["Montgomery","2021-10-03",9224,4,6381],["Montgomery","2021-10-04",9224,14,6395],["Montgomery","2021-10-05",9224,18,6413],["Montgomery","2021-10-06",9224,17,6430],["Montgomery","2021-10-07",9224,11,6441],["Montgomery","2021-10-08",9224,9,6450],["Montgomery","2021-10-09",9224,5,6455],["Montgomery","2021-10-10",9224,4,6459],["Montgomery","2021-10-11",9224,11,6470],["Montgomery","2021-10-12",9224,15,6485],["Montgomery","2021-10-13",9224,16,6501],["Montgomery","2021-10-14",9224,3,6504],["Montgomery","2021-10-15",9224,10,6514],["Montgomery","2021-10-17",9224,2,6516],["Montgomery","2021-10-18",9224,8,6524],["Montgomery","2021-10-19",9224,15,6539],["Montgomery","2021-10-20",9224,9,6548],["Montgomery","2021-10-21",9224,14,6562],["Montgomery","2021-10-22",9224,7,6569],["Montgomery","2021-10-23",9224,5,6574],["Montgomery","2021-10-24",9224,2,6576],["Montgomery","2021-10-25",9224,14,6590],["Montgomery","2021-10-26",9224,47,6637],["Montgomery","2021-10-27",9224,61,6698],["Montgomery","2021-10-28",9224,21,6719],["Montgomery","2021-10-29",9224,27,6746],["Montgomery","2021-10-30",9224,6,6752],["Montgomery","2021-10-31",9224,1,6753],["Montgomery","2021-11-01",9224,23,6776],["Montgomery","2021-11-02",9224,28,6804],["Montgomery","2021-11-03",9224,42,6846],["Montgomery","2021-11-04",9224,45,6891],["Montgomery","2021-11-05",9224,20,6911],["Montgomery","2021-11-06",9224,6,6917],["Montgomery","2021-11-07",9224,4,6921],["Montgomery","2021-11-08",9224,35,6956],["Montgomery","2021-11-09",9224,35,6991],["Montgomery","2021-11-10",9224,36,7027],["Montgomery","2021-11-11",9224,18,7045],["Montgomery","2021-11-12",9224,15,7060],["Montgomery","2021-11-13",9224,4,7064],["Montgomery","2021-11-14",9224,5,7069],["Montgomery","2021-11-15",9224,30,7099],["Montgomery","2021-11-16",9224,41,7140],["Montgomery","2021-11-17",9224,45,7185],["Montgomery","2021-11-18",9224,40,7225],["Montgomery","2021-11-19",9224,11,7236],["Montgomery","2021-11-20",9224,5,7241],["Montgomery","2021-11-21",9224,1,7242],["Montgomery","2021-11-22",9224,20,7262],["Montgomery","2021-11-23",9224,24,7286],["Montgomery","2021-11-24",9224,13,7299],["Montgomery","2021-11-26",9224,7,7306],["Montgomery","2021-11-27",9224,4,7310],["Montgomery","2021-11-28",9224,2,7312],["Montgomery","2021-11-29",9224,17,7329],["Montgomery","2021-11-30",9224,27,7356],["Montgomery","2021-12-01",9224,31,7387],["Montgomery","2021-12-02",9224,23,7410],["Montgomery","2021-12-03",9224,26,7436],["Montgomery","2021-12-04",9224,5,7441],["Montgomery","2021-12-05",9224,4,7445],["Montgomery","2021-12-06",9224,31,7476],["Montgomery","2021-12-07",9224,24,7500],["Montgomery","2021-12-08",9224,20,7520],["Montgomery","2021-12-09",9224,17,7537],["Montgomery","2021-12-10",9224,13,7550],["Montgomery","2021-12-11",9224,4,7554],["Montgomery","2021-12-12",9224,2,7556],["Montgomery","2021-12-13",9224,21,7577],["Montgomery","2021-12-14",9224,16,7593],["Montgomery","2021-12-15",9224,15,7608],["Montgomery","2021-12-16",9224,11,7619],["Montgomery","2021-12-17",9224,40,7659],["Montgomery","2021-12-18",9224,3,7662],["Montgomery","2021-12-19",9224,4,7666],["Montgomery","2021-12-20",9224,21,7687],["Montgomery","2021-12-21",9224,24,7711],["Montgomery","2021-12-22",9224,17,7728],["Montgomery","2021-12-23",9224,5,7733],["Montgomery","2021-12-24",9224,2,7735],["Montgomery","2021-12-27",9224,17,7752],["Montgomery","2021-12-28",9224,27,7779],["Montgomery","2021-12-29",9224,25,7804],["Montgomery","2021-12-30",9224,34,7838],["Montgomery","2021-12-31",9224,10,7848],["Montgomery","2022-01-01",9224,1,7849],["Montgomery","2022-01-03",9224,4,7853],["Morgan","2020-12-17",19138,1,1],["Morgan","2020-12-18",19138,6,7],["Morgan","2020-12-21",19138,2,9],["Morgan","2020-12-22",19138,10,19],["Morgan","2020-12-23",19138,16,35],["Morgan","2020-12-24",19138,5,40],["Morgan","2020-12-28",19138,20,60],["Morgan","2020-12-29",19138,20,80],["Morgan","2020-12-30",19138,17,97],["Morgan","2020-12-31",19138,9,106],["Morgan","2021-01-01",19138,5,111],["Morgan","2021-01-02",19138,9,120],["Morgan","2021-01-03",19138,2,122],["Morgan","2021-01-04",19138,29,151],["Morgan","2021-01-05",19138,27,178],["Morgan","2021-01-06",19138,28,206],["Morgan","2021-01-07",19138,24,230],["Morgan","2021-01-08",19138,38,268],["Morgan","2021-01-09",19138,4,272],["Morgan","2021-01-10",19138,53,325],["Morgan","2021-01-11",19138,41,366],["Morgan","2021-01-12",19138,82,448],["Morgan","2021-01-13",19138,71,519],["Morgan","2021-01-14",19138,40,559],["Morgan","2021-01-15",19138,45,604],["Morgan","2021-01-16",19138,31,635],["Morgan","2021-01-17",19138,18,653],["Morgan","2021-01-18",19138,59,712],["Morgan","2021-01-19",19138,53,765],["Morgan","2021-01-20",19138,48,813],["Morgan","2021-01-21",19138,58,871],["Morgan","2021-01-22",19138,91,962],["Morgan","2021-01-23",19138,35,997],["Morgan","2021-01-24",19138,8,1005],["Morgan","2021-01-25",19138,181,1186],["Morgan","2021-01-26",19138,72,1258],["Morgan","2021-01-27",19138,50,1308],["Morgan","2021-01-28",19138,77,1385],["Morgan","2021-01-29",19138,72,1457],["Morgan","2021-01-30",19138,29,1486],["Morgan","2021-01-31",19138,78,1564],["Morgan","2021-02-01",19138,158,1722],["Morgan","2021-02-02",19138,33,1755],["Morgan","2021-02-03",19138,43,1798],["Morgan","2021-02-04",19138,85,1883],["Morgan","2021-02-05",19138,64,1947],["Morgan","2021-02-06",19138,34,1981],["Morgan","2021-02-07",19138,18,1999],["Morgan","2021-02-08",19138,119,2118],["Morgan","2021-02-09",19138,82,2200],["Morgan","2021-02-10",19138,81,2281],["Morgan","2021-02-11",19138,72,2353],["Morgan","2021-02-12",19138,54,2407],["Morgan","2021-02-13",19138,52,2459],["Morgan","2021-02-14",19138,19,2478],["Morgan","2021-02-15",19138,155,2633],["Morgan","2021-02-16",19138,71,2704],["Morgan","2021-02-17",19138,70,2774],["Morgan","2021-02-18",19138,90,2864],["Morgan","2021-02-19",19138,90,2954],["Morgan","2021-02-20",19138,34,2988],["Morgan","2021-02-21",19138,21,3009],["Morgan","2021-02-22",19138,212,3221],["Morgan","2021-02-23",19138,91,3312],["Morgan","2021-02-24",19138,53,3365],["Morgan","2021-02-25",19138,121,3486],["Morgan","2021-02-26",19138,75,3561],["Morgan","2021-02-27",19138,45,3606],["Morgan","2021-02-28",19138,29,3635],["Morgan","2021-03-01",19138,169,3804],["Morgan","2021-03-02",19138,56,3860],["Morgan","2021-03-03",19138,85,3945],["Morgan","2021-03-04",19138,100,4045],["Morgan","2021-03-05",19138,108,4153],["Morgan","2021-03-06",19138,57,4210],["Morgan","2021-03-07",19138,42,4252],["Morgan","2021-03-08",19138,186,4438],["Morgan","2021-03-09",19138,80,4518],["Morgan","2021-03-10",19138,120,4638],["Morgan","2021-03-11",19138,224,4862],["Morgan","2021-03-12",19138,106,4968],["Morgan","2021-03-13",19138,49,5017],["Morgan","2021-03-14",19138,25,5042],["Morgan","2021-03-15",19138,157,5199],["Morgan","2021-03-16",19138,206,5405],["Morgan","2021-03-17",19138,97,5502],["Morgan","2021-03-18",19138,131,5633],["Morgan","2021-03-19",19138,111,5744],["Morgan","2021-03-20",19138,69,5813],["Morgan","2021-03-21",19138,37,5850],["Morgan","2021-03-22",19138,193,6043],["Morgan","2021-03-23",19138,104,6147],["Morgan","2021-03-24",19138,165,6312],["Morgan","2021-03-25",19138,225,6537],["Morgan","2021-03-26",19138,167,6704],["Morgan","2021-03-27",19138,48,6752],["Morgan","2021-03-28",19138,35,6787],["Morgan","2021-03-29",19138,117,6904],["Morgan","2021-03-30",19138,121,7025],["Morgan","2021-03-31",19138,430,7455],["Morgan","2021-04-01",19138,182,7637],["Morgan","2021-04-02",19138,138,7775],["Morgan","2021-04-03",19138,72,7847],["Morgan","2021-04-04",19138,28,7875],["Morgan","2021-04-05",19138,141,8016],["Morgan","2021-04-06",19138,141,8157],["Morgan","2021-04-07",19138,144,8301],["Morgan","2021-04-08",19138,155,8456],["Morgan","2021-04-09",19138,116,8572],["Morgan","2021-04-10",19138,52,8624],["Morgan","2021-04-11",19138,42,8666],["Morgan","2021-04-12",19138,111,8777],["Morgan","2021-04-13",19138,130,8907],["Morgan","2021-04-14",19138,340,9247],["Morgan","2021-04-15",19138,134,9381],["Morgan","2021-04-16",19138,118,9499],["Morgan","2021-04-17",19138,42,9541],["Morgan","2021-04-18",19138,54,9595],["Morgan","2021-04-19",19138,183,9778],["Morgan","2021-04-20",19138,115,9893],["Morgan","2021-04-21",19138,162,10055],["Morgan","2021-04-22",19138,220,10275],["Morgan","2021-04-23",19138,107,10382],["Morgan","2021-04-24",19138,50,10432],["Morgan","2021-04-25",19138,29,10461],["Morgan","2021-04-26",19138,92,10553],["Morgan","2021-04-27",19138,74,10627],["Morgan","2021-04-28",19138,411,11038],["Morgan","2021-04-29",19138,133,11171],["Morgan","2021-04-30",19138,110,11281],["Morgan","2021-05-01",19138,78,11359],["Morgan","2021-05-02",19138,10,11369],["Morgan","2021-05-03",19138,86,11455],["Morgan","2021-05-04",19138,52,11507],["Morgan","2021-05-05",19138,95,11602],["Morgan","2021-05-06",19138,83,11685],["Morgan","2021-05-07",19138,49,11734],["Morgan","2021-05-08",19138,54,11788],["Morgan","2021-05-09",19138,22,11810],["Morgan","2021-05-10",19138,57,11867],["Morgan","2021-05-11",19138,53,11920],["Morgan","2021-05-12",19138,248,12168],["Morgan","2021-05-13",19138,90,12258],["Morgan","2021-05-14",19138,40,12298],["Morgan","2021-05-15",19138,46,12344],["Morgan","2021-05-16",19138,37,12381],["Morgan","2021-05-17",19138,69,12450],["Morgan","2021-05-18",19138,39,12489],["Morgan","2021-05-19",19138,80,12569],["Morgan","2021-05-20",19138,77,12646],["Morgan","2021-05-21",19138,46,12692],["Morgan","2021-05-22",19138,34,12726],["Morgan","2021-05-23",19138,18,12744],["Morgan","2021-05-24",19138,41,12785],["Morgan","2021-05-25",19138,25,12810],["Morgan","2021-05-26",19138,73,12883],["Morgan","2021-05-27",19138,38,12921],["Morgan","2021-05-28",19138,29,12950],["Morgan","2021-05-29",19138,22,12972],["Morgan","2021-05-30",19138,12,12984],["Morgan","2021-05-31",19138,13,12997],["Morgan","2021-06-01",19138,44,13041],["Morgan","2021-06-02",19138,42,13083],["Morgan","2021-06-03",19138,50,13133],["Morgan","2021-06-04",19138,41,13174],["Morgan","2021-06-05",19138,26,13200],["Morgan","2021-06-06",19138,16,13216],["Morgan","2021-06-07",19138,25,13241],["Morgan","2021-06-08",19138,40,13281],["Morgan","2021-06-09",19138,31,13312],["Morgan","2021-06-10",19138,26,13338],["Morgan","2021-06-11",19138,29,13367],["Morgan","2021-06-12",19138,28,13395],["Morgan","2021-06-13",19138,6,13401],["Morgan","2021-06-14",19138,31,13432],["Morgan","2021-06-15",19138,21,13453],["Morgan","2021-06-16",19138,26,13479],["Morgan","2021-06-17",19138,36,13515],["Morgan","2021-06-18",19138,20,13535],["Morgan","2021-06-19",19138,20,13555],["Morgan","2021-06-20",19138,6,13561],["Morgan","2021-06-21",19138,18,13579],["Morgan","2021-06-22",19138,21,13600],["Morgan","2021-06-23",19138,22,13622],["Morgan","2021-06-24",19138,32,13654],["Morgan","2021-06-25",19138,15,13669],["Morgan","2021-06-26",19138,19,13688],["Morgan","2021-06-27",19138,3,13691],["Morgan","2021-06-28",19138,18,13709],["Morgan","2021-06-29",19138,19,13728],["Morgan","2021-06-30",19138,42,13770],["Morgan","2021-07-01",19138,8,13778],["Morgan","2021-07-02",19138,24,13802],["Morgan","2021-07-03",19138,17,13819],["Morgan","2021-07-04",19138,2,13821],["Morgan","2021-07-05",19138,11,13832],["Morgan","2021-07-06",19138,21,13853],["Morgan","2021-07-07",19138,12,13865],["Morgan","2021-07-08",19138,27,13892],["Morgan","2021-07-09",19138,22,13914],["Morgan","2021-07-10",19138,10,13924],["Morgan","2021-07-11",19138,3,13927],["Morgan","2021-07-12",19138,24,13951],["Morgan","2021-07-13",19138,17,13968],["Morgan","2021-07-14",19138,31,13999],["Morgan","2021-07-15",19138,21,14020],["Morgan","2021-07-16",19138,28,14048],["Morgan","2021-07-17",19138,11,14059],["Morgan","2021-07-18",19138,10,14069],["Morgan","2021-07-19",19138,23,14092],["Morgan","2021-07-20",19138,17,14109],["Morgan","2021-07-21",19138,35,14144],["Morgan","2021-07-22",19138,29,14173],["Morgan","2021-07-23",19138,37,14210],["Morgan","2021-07-24",19138,17,14227],["Morgan","2021-07-25",19138,5,14232],["Morgan","2021-07-26",19138,30,14262],["Morgan","2021-07-27",19138,34,14296],["Morgan","2021-07-28",19138,41,14337],["Morgan","2021-07-29",19138,41,14378],["Morgan","2021-07-30",19138,37,14415],["Morgan","2021-07-31",19138,23,14438],["Morgan","2021-08-01",19138,24,14462],["Morgan","2021-08-02",19138,36,14498],["Morgan","2021-08-03",19138,35,14533],["Morgan","2021-08-04",19138,30,14563],["Morgan","2021-08-05",19138,25,14588],["Morgan","2021-08-06",19138,40,14628],["Morgan","2021-08-07",19138,23,14651],["Morgan","2021-08-08",19138,17,14668],["Morgan","2021-08-09",19138,39,14707],["Morgan","2021-08-10",19138,39,14746],["Morgan","2021-08-11",19138,54,14800],["Morgan","2021-08-12",19138,35,14835],["Morgan","2021-08-13",19138,46,14881],["Morgan","2021-08-14",19138,37,14918],["Morgan","2021-08-15",19138,19,14937],["Morgan","2021-08-16",19138,54,14991],["Morgan","2021-08-17",19138,38,15029],["Morgan","2021-08-18",19138,39,15068],["Morgan","2021-08-19",19138,46,15114],["Morgan","2021-08-20",19138,51,15165],["Morgan","2021-08-21",19138,25,15190],["Morgan","2021-08-22",19138,24,15214],["Morgan","2021-08-23",19138,57,15271],["Morgan","2021-08-24",19138,59,15330],["Morgan","2021-08-25",19138,74,15404],["Morgan","2021-08-26",19138,71,15475],["Morgan","2021-08-27",19138,55,15530],["Morgan","2021-08-28",19138,43,15573],["Morgan","2021-08-29",19138,21,15594],["Morgan","2021-08-30",19138,50,15644],["Morgan","2021-08-31",19138,58,15702],["Morgan","2021-09-01",19138,43,15745],["Morgan","2021-09-02",19138,46,15791],["Morgan","2021-09-03",19138,57,15848],["Morgan","2021-09-04",19138,26,15874],["Morgan","2021-09-05",19138,21,15895],["Morgan","2021-09-06",19138,14,15909],["Morgan","2021-09-07",19138,41,15950],["Morgan","2021-09-08",19138,47,15997],["Morgan","2021-09-09",19138,47,16044],["Morgan","2021-09-10",19138,61,16105],["Morgan","2021-09-11",19138,29,16134],["Morgan","2021-09-12",19138,17,16151],["Morgan","2021-09-13",19138,45,16196],["Morgan","2021-09-14",19138,45,16241],["Morgan","2021-09-15",19138,60,16301],["Morgan","2021-09-16",19138,53,16354],["Morgan","2021-09-17",19138,50,16404],["Morgan","2021-09-18",19138,15,16419],["Morgan","2021-09-19",19138,13,16432],["Morgan","2021-09-20",19138,39,16471],["Morgan","2021-09-21",19138,36,16507],["Morgan","2021-09-22",19138,41,16548],["Morgan","2021-09-23",19138,32,16580],["Morgan","2021-09-24",19138,41,16621],["Morgan","2021-09-25",19138,21,16642],["Morgan","2021-09-26",19138,16,16658],["Morgan","2021-09-27",19138,42,16700],["Morgan","2021-09-28",19138,33,16733],["Morgan","2021-09-29",19138,42,16775],["Morgan","2021-09-30",19138,37,16812],["Morgan","2021-10-01",19138,36,16848],["Morgan","2021-10-02",19138,15,16863],["Morgan","2021-10-03",19138,13,16876],["Morgan","2021-10-04",19138,32,16908],["Morgan","2021-10-05",19138,28,16936],["Morgan","2021-10-06",19138,36,16972],["Morgan","2021-10-07",19138,35,17007],["Morgan","2021-10-08",19138,32,17039],["Morgan","2021-10-09",19138,18,17057],["Morgan","2021-10-10",19138,10,17067],["Morgan","2021-10-11",19138,11,17078],["Morgan","2021-10-12",19138,31,17109],["Morgan","2021-10-13",19138,28,17137],["Morgan","2021-10-14",19138,22,17159],["Morgan","2021-10-15",19138,21,17180],["Morgan","2021-10-16",19138,5,17185],["Morgan","2021-10-17",19138,6,17191],["Morgan","2021-10-18",19138,20,17211],["Morgan","2021-10-19",19138,21,17232],["Morgan","2021-10-20",19138,29,17261],["Morgan","2021-10-21",19138,24,17285],["Morgan","2021-10-22",19138,74,17359],["Morgan","2021-10-23",19138,30,17389],["Morgan","2021-10-24",19138,19,17408],["Morgan","2021-10-25",19138,59,17467],["Morgan","2021-10-26",19138,90,17557],["Morgan","2021-10-27",19138,68,17625],["Morgan","2021-10-28",19138,76,17701],["Morgan","2021-10-29",19138,95,17796],["Morgan","2021-10-30",19138,23,17819],["Morgan","2021-10-31",19138,25,17844],["Morgan","2021-11-01",19138,147,17991],["Morgan","2021-11-02",19138,71,18062],["Morgan","2021-11-03",19138,90,18152],["Morgan","2021-11-04",19138,66,18218],["Morgan","2021-11-05",19138,67,18285],["Morgan","2021-11-06",19138,35,18320],["Morgan","2021-11-07",19138,33,18353],["Morgan","2021-11-08",19138,45,18398],["Morgan","2021-11-09",19138,49,18447],["Morgan","2021-11-10",19138,55,18502],["Morgan","2021-11-11",19138,38,18540],["Morgan","2021-11-12",19138,68,18608],["Morgan","2021-11-13",19138,32,18640],["Morgan","2021-11-14",19138,17,18657],["Morgan","2021-11-15",19138,57,18714],["Morgan","2021-11-16",19138,51,18765],["Morgan","2021-11-17",19138,45,18810],["Morgan","2021-11-18",19138,57,18867],["Morgan","2021-11-19",19138,58,18925],["Morgan","2021-11-20",19138,36,18961],["Morgan","2021-11-21",19138,27,18988],["Morgan","2021-11-22",19138,53,19041],["Morgan","2021-11-23",19138,62,19103],["Morgan","2021-11-24",19138,34,19137],["Morgan","2021-11-25",19138,1,19138],["Morgan","2021-11-26",19138,49,19187],["Morgan","2021-11-27",19138,26,19213],["Morgan","2021-11-28",19138,15,19228],["Morgan","2021-11-29",19138,59,19287],["Morgan","2021-11-30",19138,74,19361],["Morgan","2021-12-01",19138,72,19433],["Morgan","2021-12-02",19138,57,19490],["Morgan","2021-12-03",19138,91,19581],["Morgan","2021-12-04",19138,40,19621],["Morgan","2021-12-05",19138,26,19647],["Morgan","2021-12-06",19138,47,19694],["Morgan","2021-12-07",19138,73,19767],["Morgan","2021-12-08",19138,70,19837],["Morgan","2021-12-09",19138,45,19882],["Morgan","2021-12-10",19138,63,19945],["Morgan","2021-12-11",19138,20,19965],["Morgan","2021-12-12",19138,20,19985],["Morgan","2021-12-13",19138,34,20019],["Morgan","2021-12-14",19138,50,20069],["Morgan","2021-12-15",19138,69,20138],["Morgan","2021-12-16",19138,31,20169],["Morgan","2021-12-17",19138,57,20226],["Morgan","2021-12-18",19138,23,20249],["Morgan","2021-12-19",19138,22,20271],["Morgan","2021-12-20",19138,49,20320],["Morgan","2021-12-21",19138,55,20375],["Morgan","2021-12-22",19138,46,20421],["Morgan","2021-12-23",19138,46,20467],["Morgan","2021-12-24",19138,29,20496],["Morgan","2021-12-26",19138,20,20516],["Morgan","2021-12-27",19138,45,20561],["Morgan","2021-12-28",19138,66,20627],["Morgan","2021-12-29",19138,44,20671],["Morgan","2021-12-30",19138,57,20728],["Morgan","2021-12-31",19138,34,20762],["Morgan","2022-01-01",19138,14,20776],["Morgan","2022-01-02",19138,20,20796],["Morgan","2022-01-03",19138,15,20811],["Murray","2020-12-18",40261,22,22],["Murray","2020-12-20",40261,6,28],["Murray","2020-12-21",40261,34,62],["Murray","2020-12-22",40261,50,112],["Murray","2020-12-23",40261,26,138],["Murray","2020-12-24",40261,9,147],["Murray","2020-12-26",40261,1,148],["Murray","2020-12-27",40261,4,152],["Murray","2020-12-28",40261,56,208],["Murray","2020-12-29",40261,51,259],["Murray","2020-12-30",40261,38,297],["Murray","2020-12-31",40261,33,330],["Murray","2021-01-01",40261,6,336],["Murray","2021-01-02",40261,4,340],["Murray","2021-01-03",40261,2,342],["Murray","2021-01-04",40261,31,373],["Murray","2021-01-05",40261,43,416],["Murray","2021-01-06",40261,60,476],["Murray","2021-01-07",40261,89,565],["Murray","2021-01-08",40261,88,653],["Murray","2021-01-09",40261,2,655],["Murray","2021-01-10",40261,6,661],["Murray","2021-01-11",40261,313,974],["Murray","2021-01-12",40261,420,1394],["Murray","2021-01-13",40261,272,1666],["Murray","2021-01-14",40261,316,1982],["Murray","2021-01-15",40261,197,2179],["Murray","2021-01-16",40261,13,2192],["Murray","2021-01-17",40261,18,2210],["Murray","2021-01-18",40261,264,2474],["Murray","2021-01-19",40261,239,2713],["Murray","2021-01-20",40261,172,2885],["Murray","2021-01-21",40261,74,2959],["Murray","2021-01-22",40261,91,3050],["Murray","2021-01-23",40261,3,3053],["Murray","2021-01-24",40261,3,3056],["Murray","2021-01-25",40261,107,3163],["Murray","2021-01-26",40261,131,3294],["Murray","2021-01-27",40261,122,3416],["Murray","2021-01-28",40261,147,3563],["Murray","2021-01-29",40261,101,3664],["Murray","2021-01-30",40261,7,3671],["Murray","2021-01-31",40261,10,3681],["Murray","2021-02-01",40261,89,3770],["Murray","2021-02-02",40261,128,3898],["Murray","2021-02-03",40261,237,4135],["Murray","2021-02-04",40261,256,4391],["Murray","2021-02-05",40261,137,4528],["Murray","2021-02-06",40261,3,4531],["Murray","2021-02-07",40261,3,4534],["Murray","2021-02-08",40261,160,4694],["Murray","2021-02-09",40261,205,4899],["Murray","2021-02-10",40261,263,5162],["Murray","2021-02-11",40261,119,5281],["Murray","2021-02-12",40261,170,5451],["Murray","2021-02-13",40261,40,5491],["Murray","2021-02-14",40261,20,5511],["Murray","2021-02-15",40261,306,5817],["Murray","2021-02-16",40261,360,6177],["Murray","2021-02-17",40261,236,6413],["Murray","2021-02-18",40261,244,6657],["Murray","2021-02-19",40261,174,6831],["Murray","2021-02-20",40261,36,6867],["Murray","2021-02-22",40261,189,7056],["Murray","2021-02-23",40261,203,7259],["Murray","2021-02-24",40261,273,7532],["Murray","2021-02-25",40261,245,7777],["Murray","2021-02-26",40261,157,7934],["Murray","2021-02-27",40261,31,7965],["Murray","2021-02-28",40261,16,7981],["Murray","2021-03-01",40261,200,8181],["Murray","2021-03-02",40261,181,8362],["Murray","2021-03-03",40261,220,8582],["Murray","2021-03-04",40261,115,8697],["Murray","2021-03-05",40261,139,8836],["Murray","2021-03-06",40261,3,8839],["Murray","2021-03-07",40261,15,8854],["Murray","2021-03-08",40261,134,8988],["Murray","2021-03-09",40261,176,9164],["Murray","2021-03-10",40261,180,9344],["Murray","2021-03-11",40261,149,9493],["Murray","2021-03-12",40261,160,9653],["Murray","2021-03-13",40261,95,9748],["Murray","2021-03-14",40261,27,9775],["Murray","2021-03-15",40261,168,9943],["Murray","2021-03-16",40261,202,10145],["Murray","2021-03-17",40261,134,10279],["Murray","2021-03-18",40261,107,10386],["Murray","2021-03-19",40261,175,10561],["Murray","2021-03-20",40261,48,10609],["Murray","2021-03-21",40261,32,10641],["Murray","2021-03-22",40261,187,10828],["Murray","2021-03-23",40261,150,10978],["Murray","2021-03-24",40261,281,11259],["Murray","2021-03-25",40261,242,11501],["Murray","2021-03-26",40261,250,11751],["Murray","2021-03-27",40261,45,11796],["Murray","2021-03-28",40261,62,11858],["Murray","2021-03-29",40261,283,12141],["Murray","2021-03-30",40261,283,12424],["Murray","2021-03-31",40261,394,12818],["Murray","2021-04-01",40261,253,13071],["Murray","2021-04-02",40261,195,13266],["Murray","2021-04-03",40261,58,13324],["Murray","2021-04-04",40261,50,13374],["Murray","2021-04-05",40261,240,13614],["Murray","2021-04-06",40261,220,13834],["Murray","2021-04-07",40261,238,14072],["Murray","2021-04-08",40261,254,14326],["Murray","2021-04-09",40261,206,14532],["Murray","2021-04-10",40261,57,14589],["Murray","2021-04-11",40261,53,14642],["Murray","2021-04-12",40261,179,14821],["Murray","2021-04-13",40261,246,15067],["Murray","2021-04-14",40261,334,15401],["Murray","2021-04-15",40261,262,15663],["Murray","2021-04-16",40261,226,15889],["Murray","2021-04-17",40261,112,16001],["Murray","2021-04-18",40261,29,16030],["Murray","2021-04-19",40261,167,16197],["Murray","2021-04-20",40261,210,16407],["Murray","2021-04-21",40261,297,16704],["Murray","2021-04-22",40261,255,16959],["Murray","2021-04-23",40261,201,17160],["Murray","2021-04-24",40261,50,17210],["Murray","2021-04-25",40261,41,17251],["Murray","2021-04-26",40261,188,17439],["Murray","2021-04-27",40261,207,17646],["Murray","2021-04-28",40261,186,17832],["Murray","2021-04-29",40261,231,18063],["Murray","2021-04-30",40261,166,18229],["Murray","2021-05-01",40261,88,18317],["Murray","2021-05-02",40261,41,18358],["Murray","2021-05-03",40261,97,18455],["Murray","2021-05-04",40261,146,18601],["Murray","2021-05-05",40261,212,18813],["Murray","2021-05-06",40261,149,18962],["Murray","2021-05-07",40261,145,19107],["Murray","2021-05-08",40261,65,19172],["Murray","2021-05-09",40261,26,19198],["Murray","2021-05-10",40261,73,19271],["Murray","2021-05-11",40261,104,19375],["Murray","2021-05-12",40261,92,19467],["Murray","2021-05-13",40261,126,19593],["Murray","2021-05-14",40261,127,19720],["Murray","2021-05-15",40261,48,19768],["Murray","2021-05-16",40261,21,19789],["Murray","2021-05-17",40261,108,19897],["Murray","2021-05-18",40261,105,20002],["Murray","2021-05-19",40261,118,20120],["Murray","2021-05-20",40261,88,20208],["Murray","2021-05-21",40261,87,20295],["Murray","2021-05-22",40261,36,20331],["Murray","2021-05-23",40261,33,20364],["Murray","2021-05-24",40261,105,20469],["Murray","2021-05-25",40261,148,20617],["Murray","2021-05-26",40261,57,20674],["Murray","2021-05-27",40261,61,20735],["Murray","2021-05-28",40261,65,20800],["Murray","2021-05-29",40261,45,20845],["Murray","2021-05-30",40261,17,20862],["Murray","2021-05-31",40261,10,20872],["Murray","2021-06-01",40261,97,20969],["Murray","2021-06-02",40261,56,21025],["Murray","2021-06-03",40261,49,21074],["Murray","2021-06-04",40261,77,21151],["Murray","2021-06-05",40261,42,21193],["Murray","2021-06-06",40261,22,21215],["Murray","2021-06-07",40261,63,21278],["Murray","2021-06-08",40261,41,21319],["Murray","2021-06-09",40261,57,21376],["Murray","2021-06-10",40261,71,21447],["Murray","2021-06-11",40261,59,21506],["Murray","2021-06-12",40261,36,21542],["Murray","2021-06-13",40261,18,21560],["Murray","2021-06-14",40261,52,21612],["Murray","2021-06-15",40261,59,21671],["Murray","2021-06-16",40261,40,21711],["Murray","2021-06-17",40261,74,21785],["Murray","2021-06-18",40261,39,21824],["Murray","2021-06-19",40261,28,21852],["Murray","2021-06-20",40261,12,21864],["Murray","2021-06-21",40261,32,21896],["Murray","2021-06-22",40261,57,21953],["Murray","2021-06-23",40261,42,21995],["Murray","2021-06-24",40261,41,22036],["Murray","2021-06-25",40261,35,22071],["Murray","2021-06-26",40261,36,22107],["Murray","2021-06-27",40261,11,22118],["Murray","2021-06-28",40261,33,22151],["Murray","2021-06-29",40261,29,22180],["Murray","2021-06-30",40261,26,22206],["Murray","2021-07-01",40261,42,22248],["Murray","2021-07-02",40261,40,22288],["Murray","2021-07-03",40261,18,22306],["Murray","2021-07-04",40261,3,22309],["Murray","2021-07-05",40261,23,22332],["Murray","2021-07-06",40261,29,22361],["Murray","2021-07-07",40261,45,22406],["Murray","2021-07-08",40261,51,22457],["Murray","2021-07-09",40261,45,22502],["Murray","2021-07-10",40261,26,22528],["Murray","2021-07-11",40261,7,22535],["Murray","2021-07-12",40261,35,22570],["Murray","2021-07-13",40261,21,22591],["Murray","2021-07-14",40261,35,22626],["Murray","2021-07-15",40261,37,22663],["Murray","2021-07-16",40261,37,22700],["Murray","2021-07-17",40261,22,22722],["Murray","2021-07-18",40261,15,22737],["Murray","2021-07-19",40261,32,22769],["Murray","2021-07-20",40261,41,22810],["Murray","2021-07-21",40261,65,22875],["Murray","2021-07-22",40261,49,22924],["Murray","2021-07-23",40261,58,22982],["Murray","2021-07-24",40261,28,23010],["Murray","2021-07-25",40261,24,23034],["Murray","2021-07-26",40261,52,23086],["Murray","2021-07-27",40261,74,23160],["Murray","2021-07-28",40261,60,23220],["Murray","2021-07-29",40261,80,23300],["Murray","2021-07-30",40261,84,23384],["Murray","2021-07-31",40261,45,23429],["Murray","2021-08-01",40261,23,23452],["Murray","2021-08-02",40261,56,23508],["Murray","2021-08-03",40261,65,23573],["Murray","2021-08-04",40261,96,23669],["Murray","2021-08-05",40261,79,23748],["Murray","2021-08-06",40261,75,23823],["Murray","2021-08-07",40261,49,23872],["Murray","2021-08-08",40261,37,23909],["Murray","2021-08-09",40261,78,23987],["Murray","2021-08-10",40261,88,24075],["Murray","2021-08-11",40261,88,24163],["Murray","2021-08-12",40261,112,24275],["Murray","2021-08-13",40261,105,24380],["Murray","2021-08-14",40261,61,24441],["Murray","2021-08-15",40261,59,24500],["Murray","2021-08-16",40261,118,24618],["Murray","2021-08-17",40261,122,24740],["Murray","2021-08-18",40261,148,24888],["Murray","2021-08-19",40261,140,25028],["Murray","2021-08-20",40261,124,25152],["Murray","2021-08-21",40261,74,25226],["Murray","2021-08-22",40261,50,25276],["Murray","2021-08-23",40261,106,25382],["Murray","2021-08-24",40261,120,25502],["Murray","2021-08-25",40261,138,25640],["Murray","2021-08-26",40261,138,25778],["Murray","2021-08-27",40261,158,25936],["Murray","2021-08-28",40261,80,26016],["Murray","2021-08-29",40261,50,26066],["Murray","2021-08-30",40261,116,26182],["Murray","2021-08-31",40261,180,26362],["Murray","2021-09-01",40261,184,26546],["Murray","2021-09-02",40261,209,26755],["Murray","2021-09-03",40261,211,26966],["Murray","2021-09-04",40261,100,27066],["Murray","2021-09-05",40261,62,27128],["Murray","2021-09-06",40261,35,27163],["Murray","2021-09-07",40261,160,27323],["Murray","2021-09-08",40261,160,27483],["Murray","2021-09-09",40261,144,27627],["Murray","2021-09-10",40261,188,27815],["Murray","2021-09-11",40261,80,27895],["Murray","2021-09-12",40261,49,27944],["Murray","2021-09-13",40261,132,28076],["Murray","2021-09-14",40261,115,28191],["Murray","2021-09-15",40261,118,28309],["Murray","2021-09-16",40261,137,28446],["Murray","2021-09-17",40261,122,28568],["Murray","2021-09-18",40261,67,28635],["Murray","2021-09-19",40261,34,28669],["Murray","2021-09-20",40261,84,28753],["Murray","2021-09-21",40261,86,28839],["Murray","2021-09-22",40261,101,28940],["Murray","2021-09-23",40261,100,29040],["Murray","2021-09-24",40261,123,29163],["Murray","2021-09-25",40261,76,29239],["Murray","2021-09-26",40261,36,29275],["Murray","2021-09-27",40261,113,29388],["Murray","2021-09-28",40261,95,29483],["Murray","2021-09-29",40261,108,29591],["Murray","2021-09-30",40261,87,29678],["Murray","2021-10-01",40261,108,29786],["Murray","2021-10-02",40261,55,29841],["Murray","2021-10-03",40261,28,29869],["Murray","2021-10-04",40261,75,29944],["Murray","2021-10-05",40261,63,30007],["Murray","2021-10-06",40261,89,30096],["Murray","2021-10-07",40261,60,30156],["Murray","2021-10-08",40261,86,30242],["Murray","2021-10-09",40261,29,30271],["Murray","2021-10-10",40261,19,30290],["Murray","2021-10-11",40261,50,30340],["Murray","2021-10-12",40261,40,30380],["Murray","2021-10-13",40261,49,30429],["Murray","2021-10-14",40261,60,30489],["Murray","2021-10-15",40261,66,30555],["Murray","2021-10-16",40261,42,30597],["Murray","2021-10-17",40261,17,30614],["Murray","2021-10-18",40261,67,30681],["Murray","2021-10-19",40261,42,30723],["Murray","2021-10-20",40261,41,30764],["Murray","2021-10-21",40261,101,30865],["Murray","2021-10-22",40261,72,30937],["Murray","2021-10-23",40261,43,30980],["Murray","2021-10-24",40261,24,31004],["Murray","2021-10-25",40261,93,31097],["Murray","2021-10-26",40261,134,31231],["Murray","2021-10-27",40261,118,31349],["Murray","2021-10-28",40261,93,31442],["Murray","2021-10-29",40261,87,31529],["Murray","2021-10-30",40261,29,31558],["Murray","2021-10-31",40261,24,31582],["Murray","2021-11-01",40261,71,31653],["Murray","2021-11-02",40261,76,31729],["Murray","2021-11-03",40261,124,31853],["Murray","2021-11-04",40261,81,31934],["Murray","2021-11-05",40261,84,32018],["Murray","2021-11-06",40261,36,32054],["Murray","2021-11-07",40261,8,32062],["Murray","2021-11-08",40261,47,32109],["Murray","2021-11-09",40261,60,32169],["Murray","2021-11-10",40261,77,32246],["Murray","2021-11-11",40261,40,32286],["Murray","2021-11-12",40261,84,32370],["Murray","2021-11-13",40261,55,32425],["Murray","2021-11-14",40261,19,32444],["Murray","2021-11-15",40261,92,32536],["Murray","2021-11-16",40261,83,32619],["Murray","2021-11-17",40261,79,32698],["Murray","2021-11-18",40261,88,32786],["Murray","2021-11-19",40261,97,32883],["Murray","2021-11-20",40261,44,32927],["Murray","2021-11-21",40261,41,32968],["Murray","2021-11-22",40261,112,33080],["Murray","2021-11-23",40261,85,33165],["Murray","2021-11-24",40261,73,33238],["Murray","2021-11-26",40261,53,33291],["Murray","2021-11-27",40261,33,33324],["Murray","2021-11-28",40261,23,33347],["Murray","2021-11-29",40261,95,33442],["Murray","2021-11-30",40261,103,33545],["Murray","2021-12-01",40261,101,33646],["Murray","2021-12-02",40261,87,33733],["Murray","2021-12-03",40261,101,33834],["Murray","2021-12-04",40261,45,33879],["Murray","2021-12-05",40261,32,33911],["Murray","2021-12-06",40261,69,33980],["Murray","2021-12-07",40261,67,34047],["Murray","2021-12-08",40261,90,34137],["Murray","2021-12-09",40261,93,34230],["Murray","2021-12-10",40261,100,34330],["Murray","2021-12-11",40261,31,34361],["Murray","2021-12-12",40261,23,34384],["Murray","2021-12-13",40261,62,34446],["Murray","2021-12-14",40261,70,34516],["Murray","2021-12-15",40261,58,34574],["Murray","2021-12-16",40261,80,34654],["Murray","2021-12-17",40261,83,34737],["Murray","2021-12-18",40261,33,34770],["Murray","2021-12-19",40261,30,34800],["Murray","2021-12-20",40261,90,34890],["Murray","2021-12-21",40261,85,34975],["Murray","2021-12-22",40261,105,35080],["Murray","2021-12-23",40261,52,35132],["Murray","2021-12-24",40261,16,35148],["Murray","2021-12-26",40261,15,35163],["Murray","2021-12-27",40261,62,35225],["Murray","2021-12-28",40261,65,35290],["Murray","2021-12-29",40261,90,35380],["Murray","2021-12-30",40261,62,35442],["Murray","2021-12-31",40261,41,35483],["Murray","2022-01-01",40261,8,35491],["Murray","2022-01-02",40261,30,35521],["Murray","2022-01-03",40261,7,35528],["Muscogee","2020-12-12",191626,1,1],["Muscogee","2020-12-16",191626,2,3],["Muscogee","2020-12-17",191626,2,5],["Muscogee","2020-12-18",191626,10,15],["Muscogee","2020-12-19",191626,23,38],["Muscogee","2020-12-20",191626,23,61],["Muscogee","2020-12-21",191626,70,131],["Muscogee","2020-12-22",191626,109,240],["Muscogee","2020-12-23",191626,242,482],["Muscogee","2020-12-24",191626,3,485],["Muscogee","2020-12-25",191626,1,486],["Muscogee","2020-12-26",191626,7,493],["Muscogee","2020-12-27",191626,44,537],["Muscogee","2020-12-28",191626,215,752],["Muscogee","2020-12-29",191626,433,1185],["Muscogee","2020-12-30",191626,386,1571],["Muscogee","2020-12-31",191626,193,1764],["Muscogee","2021-01-01",191626,25,1789],["Muscogee","2021-01-02",191626,10,1799],["Muscogee","2021-01-03",191626,44,1843],["Muscogee","2021-01-04",191626,301,2144],["Muscogee","2021-01-05",191626,536,2680],["Muscogee","2021-01-06",191626,360,3040],["Muscogee","2021-01-07",191626,318,3358],["Muscogee","2021-01-08",191626,273,3631],["Muscogee","2021-01-09",191626,57,3688],["Muscogee","2021-01-10",191626,56,3744],["Muscogee","2021-01-11",191626,679,4423],["Muscogee","2021-01-12",191626,801,5224],["Muscogee","2021-01-13",191626,767,5991],["Muscogee","2021-01-14",191626,856,6847],["Muscogee","2021-01-15",191626,263,7110],["Muscogee","2021-01-16",191626,454,7564],["Muscogee","2021-01-17",191626,130,7694],["Muscogee","2021-01-18",191626,602,8296],["Muscogee","2021-01-19",191626,740,9036],["Muscogee","2021-01-20",191626,678,9714],["Muscogee","2021-01-21",191626,649,10363],["Muscogee","2021-01-22",191626,257,10620],["Muscogee","2021-01-23",191626,288,10908],["Muscogee","2021-01-24",191626,95,11003],["Muscogee","2021-01-25",191626,464,11467],["Muscogee","2021-01-26",191626,544,12011],["Muscogee","2021-01-27",191626,499,12510],["Muscogee","2021-01-28",191626,575,13085],["Muscogee","2021-01-29",191626,807,13892],["Muscogee","2021-01-30",191626,77,13969],["Muscogee","2021-01-31",191626,65,14034],["Muscogee","2021-02-01",191626,514,14548],["Muscogee","2021-02-02",191626,695,15243],["Muscogee","2021-02-03",191626,546,15789],["Muscogee","2021-02-04",191626,904,16693],["Muscogee","2021-02-05",191626,382,17075],["Muscogee","2021-02-06",191626,27,17102],["Muscogee","2021-02-07",191626,40,17142],["Muscogee","2021-02-08",191626,692,17834],["Muscogee","2021-02-09",191626,918,18752],["Muscogee","2021-02-10",191626,763,19515],["Muscogee","2021-02-11",191626,1082,20597],["Muscogee","2021-02-12",191626,617,21214],["Muscogee","2021-02-13",191626,366,21580],["Muscogee","2021-02-14",191626,220,21800],["Muscogee","2021-02-15",191626,819,22619],["Muscogee","2021-02-16",191626,1066,23685],["Muscogee","2021-02-17",191626,949,24634],["Muscogee","2021-02-18",191626,640,25274],["Muscogee","2021-02-19",191626,563,25837],["Muscogee","2021-02-20",191626,145,25982],["Muscogee","2021-02-21",191626,106,26088],["Muscogee","2021-02-22",191626,622,26710],["Muscogee","2021-02-23",191626,475,27185],["Muscogee","2021-02-24",191626,484,27669],["Muscogee","2021-02-25",191626,667,28336],["Muscogee","2021-02-26",191626,2040,30376],["Muscogee","2021-02-27",191626,236,30612],["Muscogee","2021-02-28",191626,90,30702],["Muscogee","2021-03-01",191626,535,31237],["Muscogee","2021-03-02",191626,469,31706],["Muscogee","2021-03-03",191626,710,32416],["Muscogee","2021-03-04",191626,756,33172],["Muscogee","2021-03-05",191626,838,34010],["Muscogee","2021-03-06",191626,182,34192],["Muscogee","2021-03-07",191626,127,34319],["Muscogee","2021-03-08",191626,864,35183],["Muscogee","2021-03-09",191626,767,35950],["Muscogee","2021-03-10",191626,1064,37014],["Muscogee","2021-03-11",191626,1561,38575],["Muscogee","2021-03-12",191626,936,39511],["Muscogee","2021-03-13",191626,399,39910],["Muscogee","2021-03-14",191626,226,40136],["Muscogee","2021-03-15",191626,1083,41219],["Muscogee","2021-03-16",191626,937,42156],["Muscogee","2021-03-17",191626,2240,44396],["Muscogee","2021-03-18",191626,1101,45497],["Muscogee","2021-03-19",191626,1496,46993],["Muscogee","2021-03-20",191626,813,47806],["Muscogee","2021-03-21",191626,296,48102],["Muscogee","2021-03-22",191626,1106,49208],["Muscogee","2021-03-23",191626,1284,50492],["Muscogee","2021-03-24",191626,1437,51929],["Muscogee","2021-03-25",191626,2315,54244],["Muscogee","2021-03-26",191626,2595,56839],["Muscogee","2021-03-27",191626,773,57612],["Muscogee","2021-03-28",191626,332,57944],["Muscogee","2021-03-29",191626,1611,59555],["Muscogee","2021-03-30",191626,1462,61017],["Muscogee","2021-03-31",191626,1487,62504],["Muscogee","2021-04-01",191626,1513,64017],["Muscogee","2021-04-02",191626,1672,65689],["Muscogee","2021-04-03",191626,357,66046],["Muscogee","2021-04-04",191626,235,66281],["Muscogee","2021-04-05",191626,1511,67792],["Muscogee","2021-04-06",191626,1354,69146],["Muscogee","2021-04-07",191626,2037,71183],["Muscogee","2021-04-08",191626,1512,72695],["Muscogee","2021-04-09",191626,1862,74557],["Muscogee","2021-04-10",191626,442,74999],["Muscogee","2021-04-11",191626,261,75260],["Muscogee","2021-04-12",191626,1771,77031],["Muscogee","2021-04-13",191626,1649,78680],["Muscogee","2021-04-14",191626,2384,81064],["Muscogee","2021-04-15",191626,1276,82340],["Muscogee","2021-04-16",191626,1798,84138],["Muscogee","2021-04-17",191626,426,84564],["Muscogee","2021-04-18",191626,263,84827],["Muscogee","2021-04-19",191626,1548,86375],["Muscogee","2021-04-20",191626,1226,87601],["Muscogee","2021-04-21",191626,1410,89011],["Muscogee","2021-04-22",191626,1111,90122],["Muscogee","2021-04-23",191626,1731,91853],["Muscogee","2021-04-24",191626,434,92287],["Muscogee","2021-04-25",191626,270,92557],["Muscogee","2021-04-26",191626,1490,94047],["Muscogee","2021-04-27",191626,1257,95304],["Muscogee","2021-04-28",191626,1244,96548],["Muscogee","2021-04-29",191626,950,97498],["Muscogee","2021-04-30",191626,1720,99218],["Muscogee","2021-05-01",191626,514,99732],["Muscogee","2021-05-02",191626,226,99958],["Muscogee","2021-05-03",191626,920,100878],["Muscogee","2021-05-04",191626,846,101724],["Muscogee","2021-05-05",191626,1016,102740],["Muscogee","2021-05-06",191626,796,103536],["Muscogee","2021-05-07",191626,875,104411],["Muscogee","2021-05-08",191626,293,104704],["Muscogee","2021-05-09",191626,127,104831],["Muscogee","2021-05-10",191626,654,105485],["Muscogee","2021-05-11",191626,542,106027],["Muscogee","2021-05-12",191626,515,106542],["Muscogee","2021-05-13",191626,624,107166],["Muscogee","2021-05-14",191626,727,107893],["Muscogee","2021-05-15",191626,352,108245],["Muscogee","2021-05-16",191626,217,108462],["Muscogee","2021-05-17",191626,1049,109511],["Muscogee","2021-05-18",191626,832,110343],["Muscogee","2021-05-19",191626,634,110977],["Muscogee","2021-05-20",191626,660,111637],["Muscogee","2021-05-21",191626,837,112474],["Muscogee","2021-05-22",191626,294,112768],["Muscogee","2021-05-23",191626,222,112990],["Muscogee","2021-05-24",191626,376,113366],["Muscogee","2021-05-25",191626,375,113741],["Muscogee","2021-05-26",191626,453,114194],["Muscogee","2021-05-27",191626,360,114554],["Muscogee","2021-05-28",191626,399,114953],["Muscogee","2021-05-29",191626,262,115215],["Muscogee","2021-05-30",191626,165,115380],["Muscogee","2021-05-31",191626,74,115454],["Muscogee","2021-06-01",191626,489,115943],["Muscogee","2021-06-02",191626,547,116490],["Muscogee","2021-06-03",191626,398,116888],["Muscogee","2021-06-04",191626,454,117342],["Muscogee","2021-06-05",191626,314,117656],["Muscogee","2021-06-06",191626,191,117847],["Muscogee","2021-06-07",191626,353,118200],["Muscogee","2021-06-08",191626,572,118772],["Muscogee","2021-06-09",191626,329,119101],["Muscogee","2021-06-10",191626,390,119491],["Muscogee","2021-06-11",191626,410,119901],["Muscogee","2021-06-12",191626,302,120203],["Muscogee","2021-06-13",191626,152,120355],["Muscogee","2021-06-14",191626,349,120704],["Muscogee","2021-06-15",191626,363,121067],["Muscogee","2021-06-16",191626,365,121432],["Muscogee","2021-06-17",191626,308,121740],["Muscogee","2021-06-18",191626,359,122099],["Muscogee","2021-06-19",191626,172,122271],["Muscogee","2021-06-20",191626,121,122392],["Muscogee","2021-06-21",191626,211,122603],["Muscogee","2021-06-22",191626,272,122875],["Muscogee","2021-06-23",191626,239,123114],["Muscogee","2021-06-24",191626,417,123531],["Muscogee","2021-06-25",191626,311,123842],["Muscogee","2021-06-26",191626,185,124027],["Muscogee","2021-06-27",191626,144,124171],["Muscogee","2021-06-28",191626,265,124436],["Muscogee","2021-06-29",191626,287,124723],["Muscogee","2021-06-30",191626,220,124943],["Muscogee","2021-07-01",191626,253,125196],["Muscogee","2021-07-02",191626,260,125456],["Muscogee","2021-07-03",191626,151,125607],["Muscogee","2021-07-04",191626,13,125620],["Muscogee","2021-07-05",191626,175,125795],["Muscogee","2021-07-06",191626,240,126035],["Muscogee","2021-07-07",191626,262,126297],["Muscogee","2021-07-08",191626,218,126515],["Muscogee","2021-07-09",191626,303,126818],["Muscogee","2021-07-10",191626,165,126983],["Muscogee","2021-07-11",191626,95,127078],["Muscogee","2021-07-12",191626,203,127281],["Muscogee","2021-07-13",191626,227,127508],["Muscogee","2021-07-14",191626,244,127752],["Muscogee","2021-07-15",191626,256,128008],["Muscogee","2021-07-16",191626,317,128325],["Muscogee","2021-07-17",191626,173,128498],["Muscogee","2021-07-18",191626,108,128606],["Muscogee","2021-07-19",191626,282,128888],["Muscogee","2021-07-20",191626,272,129160],["Muscogee","2021-07-21",191626,324,129484],["Muscogee","2021-07-22",191626,383,129867],["Muscogee","2021-07-23",191626,393,130260],["Muscogee","2021-07-24",191626,293,130553],["Muscogee","2021-07-25",191626,143,130696],["Muscogee","2021-07-26",191626,340,131036],["Muscogee","2021-07-27",191626,332,131368],["Muscogee","2021-07-28",191626,400,131768],["Muscogee","2021-07-29",191626,404,132172],["Muscogee","2021-07-30",191626,437,132609],["Muscogee","2021-07-31",191626,265,132874],["Muscogee","2021-08-01",191626,200,133074],["Muscogee","2021-08-02",191626,372,133446],["Muscogee","2021-08-03",191626,437,133883],["Muscogee","2021-08-04",191626,488,134371],["Muscogee","2021-08-05",191626,420,134791],["Muscogee","2021-08-06",191626,496,135287],["Muscogee","2021-08-07",191626,288,135575],["Muscogee","2021-08-08",191626,233,135808],["Muscogee","2021-08-09",191626,386,136194],["Muscogee","2021-08-10",191626,414,136608],["Muscogee","2021-08-11",191626,457,137065],["Muscogee","2021-08-12",191626,520,137585],["Muscogee","2021-08-13",191626,533,138118],["Muscogee","2021-08-14",191626,355,138473],["Muscogee","2021-08-15",191626,260,138733],["Muscogee","2021-08-16",191626,423,139156],["Muscogee","2021-08-17",191626,427,139583],["Muscogee","2021-08-18",191626,449,140032],["Muscogee","2021-08-19",191626,447,140479],["Muscogee","2021-08-20",191626,534,141013],["Muscogee","2021-08-21",191626,374,141387],["Muscogee","2021-08-22",191626,243,141630],["Muscogee","2021-08-23",191626,418,142048],["Muscogee","2021-08-24",191626,471,142519],["Muscogee","2021-08-25",191626,493,143012],["Muscogee","2021-08-26",191626,484,143496],["Muscogee","2021-08-27",191626,611,144107],["Muscogee","2021-08-28",191626,333,144440],["Muscogee","2021-08-29",191626,279,144719],["Muscogee","2021-08-30",191626,487,145206],["Muscogee","2021-08-31",191626,411,145617],["Muscogee","2021-09-01",191626,457,146074],["Muscogee","2021-09-02",191626,474,146548],["Muscogee","2021-09-03",191626,575,147123],["Muscogee","2021-09-04",191626,297,147420],["Muscogee","2021-09-05",191626,223,147643],["Muscogee","2021-09-06",191626,75,147718],["Muscogee","2021-09-07",191626,400,148118],["Muscogee","2021-09-08",191626,385,148503],["Muscogee","2021-09-09",191626,421,148924],["Muscogee","2021-09-10",191626,490,149414],["Muscogee","2021-09-11",191626,298,149712],["Muscogee","2021-09-12",191626,187,149899],["Muscogee","2021-09-13",191626,331,150230],["Muscogee","2021-09-14",191626,338,150568],["Muscogee","2021-09-15",191626,320,150888],["Muscogee","2021-09-16",191626,355,151243],["Muscogee","2021-09-17",191626,423,151666],["Muscogee","2021-09-18",191626,253,151919],["Muscogee","2021-09-19",191626,154,152073],["Muscogee","2021-09-20",191626,266,152339],["Muscogee","2021-09-21",191626,317,152656],["Muscogee","2021-09-22",191626,273,152929],["Muscogee","2021-09-23",191626,271,153200],["Muscogee","2021-09-24",191626,368,153568],["Muscogee","2021-09-25",191626,222,153790],["Muscogee","2021-09-26",191626,147,153937],["Muscogee","2021-09-27",191626,337,154274],["Muscogee","2021-09-28",191626,339,154613],["Muscogee","2021-09-29",191626,418,155031],["Muscogee","2021-09-30",191626,347,155378],["Muscogee","2021-10-01",191626,496,155874],["Muscogee","2021-10-02",191626,207,156081],["Muscogee","2021-10-03",191626,114,156195],["Muscogee","2021-10-04",191626,306,156501],["Muscogee","2021-10-05",191626,285,156786],["Muscogee","2021-10-06",191626,283,157069],["Muscogee","2021-10-07",191626,313,157382],["Muscogee","2021-10-08",191626,356,157738],["Muscogee","2021-10-09",191626,144,157882],["Muscogee","2021-10-10",191626,119,158001],["Muscogee","2021-10-11",191626,253,158254],["Muscogee","2021-10-12",191626,297,158551],["Muscogee","2021-10-13",191626,282,158833],["Muscogee","2021-10-14",191626,237,159070],["Muscogee","2021-10-15",191626,334,159404],["Muscogee","2021-10-16",191626,160,159564],["Muscogee","2021-10-17",191626,89,159653],["Muscogee","2021-10-18",191626,290,159943],["Muscogee","2021-10-19",191626,254,160197],["Muscogee","2021-10-20",191626,225,160422],["Muscogee","2021-10-21",191626,254,160676],["Muscogee","2021-10-22",191626,515,161191],["Muscogee","2021-10-23",191626,425,161616],["Muscogee","2021-10-24",191626,276,161892],["Muscogee","2021-10-25",191626,727,162619],["Muscogee","2021-10-26",191626,476,163095],["Muscogee","2021-10-27",191626,729,163824],["Muscogee","2021-10-28",191626,573,164397],["Muscogee","2021-10-29",191626,618,165015],["Muscogee","2021-10-30",191626,324,165339],["Muscogee","2021-10-31",191626,187,165526],["Muscogee","2021-11-01",191626,514,166040],["Muscogee","2021-11-02",191626,494,166534],["Muscogee","2021-11-03",191626,526,167060],["Muscogee","2021-11-04",191626,477,167537],["Muscogee","2021-11-05",191626,688,168225],["Muscogee","2021-11-06",191626,291,168516],["Muscogee","2021-11-07",191626,179,168695],["Muscogee","2021-11-08",191626,454,169149],["Muscogee","2021-11-09",191626,491,169640],["Muscogee","2021-11-10",191626,548,170188],["Muscogee","2021-11-11",191626,484,170672],["Muscogee","2021-11-12",191626,777,171449],["Muscogee","2021-11-13",191626,371,171820],["Muscogee","2021-11-14",191626,153,171973],["Muscogee","2021-11-15",191626,545,172518],["Muscogee","2021-11-16",191626,484,173002],["Muscogee","2021-11-17",191626,482,173484],["Muscogee","2021-11-18",191626,490,173974],["Muscogee","2021-11-19",191626,612,174586],["Muscogee","2021-11-20",191626,391,174977],["Muscogee","2021-11-21",191626,254,175231],["Muscogee","2021-11-22",191626,625,175856],["Muscogee","2021-11-23",191626,517,176373],["Muscogee","2021-11-24",191626,325,176698],["Muscogee","2021-11-25",191626,3,176701],["Muscogee","2021-11-26",191626,422,177123],["Muscogee","2021-11-27",191626,308,177431],["Muscogee","2021-11-28",191626,211,177642],["Muscogee","2021-11-29",191626,607,178249],["Muscogee","2021-11-30",191626,722,178971],["Muscogee","2021-12-01",191626,730,179701],["Muscogee","2021-12-02",191626,738,180439],["Muscogee","2021-12-03",191626,925,181364],["Muscogee","2021-12-04",191626,441,181805],["Muscogee","2021-12-05",191626,254,182059],["Muscogee","2021-12-06",191626,558,182617],["Muscogee","2021-12-07",191626,621,183238],["Muscogee","2021-12-08",191626,513,183751],["Muscogee","2021-12-09",191626,495,184246],["Muscogee","2021-12-10",191626,748,184994],["Muscogee","2021-12-11",191626,378,185372],["Muscogee","2021-12-12",191626,191,185563],["Muscogee","2021-12-13",191626,427,185990],["Muscogee","2021-12-14",191626,386,186376],["Muscogee","2021-12-15",191626,432,186808],["Muscogee","2021-12-16",191626,369,187177],["Muscogee","2021-12-17",191626,571,187748],["Muscogee","2021-12-18",191626,303,188051],["Muscogee","2021-12-19",191626,251,188302],["Muscogee","2021-12-20",191626,548,188850],["Muscogee","2021-12-21",191626,601,189451],["Muscogee","2021-12-22",191626,558,190009],["Muscogee","2021-12-23",191626,417,190426],["Muscogee","2021-12-24",191626,158,190584],["Muscogee","2021-12-26",191626,181,190765],["Muscogee","2021-12-27",191626,557,191322],["Muscogee","2021-12-28",191626,584,191906],["Muscogee","2021-12-29",191626,563,192469],["Muscogee","2021-12-30",191626,469,192938],["Muscogee","2021-12-31",191626,282,193220],["Muscogee","2022-01-01",191626,56,193276],["Muscogee","2022-01-02",191626,147,193423],["Muscogee","2022-01-03",191626,155,193578],["Newton","2020-12-16",112354,1,1],["Newton","2020-12-17",112354,30,31],["Newton","2020-12-18",112354,34,65],["Newton","2020-12-19",112354,13,78],["Newton","2020-12-20",112354,2,80],["Newton","2020-12-21",112354,27,107],["Newton","2020-12-22",112354,38,145],["Newton","2020-12-23",112354,62,207],["Newton","2020-12-24",112354,20,227],["Newton","2020-12-25",112354,3,230],["Newton","2020-12-26",112354,9,239],["Newton","2020-12-27",112354,8,247],["Newton","2020-12-28",112354,96,343],["Newton","2020-12-29",112354,138,481],["Newton","2020-12-30",112354,93,574],["Newton","2020-12-31",112354,63,637],["Newton","2021-01-01",112354,8,645],["Newton","2021-01-02",112354,41,686],["Newton","2021-01-03",112354,76,762],["Newton","2021-01-04",112354,164,926],["Newton","2021-01-05",112354,137,1063],["Newton","2021-01-06",112354,160,1223],["Newton","2021-01-07",112354,173,1396],["Newton","2021-01-08",112354,136,1532],["Newton","2021-01-09",112354,47,1579],["Newton","2021-01-10",112354,25,1604],["Newton","2021-01-11",112354,147,1751],["Newton","2021-01-12",112354,253,2004],["Newton","2021-01-13",112354,331,2335],["Newton","2021-01-14",112354,350,2685],["Newton","2021-01-15",112354,383,3068],["Newton","2021-01-16",112354,333,3401],["Newton","2021-01-17",112354,57,3458],["Newton","2021-01-18",112354,317,3775],["Newton","2021-01-19",112354,398,4173],["Newton","2021-01-20",112354,274,4447],["Newton","2021-01-21",112354,281,4728],["Newton","2021-01-22",112354,204,4932],["Newton","2021-01-23",112354,120,5052],["Newton","2021-01-24",112354,111,5163],["Newton","2021-01-25",112354,231,5394],["Newton","2021-01-26",112354,314,5708],["Newton","2021-01-27",112354,251,5959],["Newton","2021-01-28",112354,299,6258],["Newton","2021-01-29",112354,237,6495],["Newton","2021-01-30",112354,177,6672],["Newton","2021-01-31",112354,19,6691],["Newton","2021-02-01",112354,264,6955],["Newton","2021-02-02",112354,248,7203],["Newton","2021-02-03",112354,265,7468],["Newton","2021-02-04",112354,320,7788],["Newton","2021-02-05",112354,290,8078],["Newton","2021-02-06",112354,226,8304],["Newton","2021-02-07",112354,38,8342],["Newton","2021-02-08",112354,219,8561],["Newton","2021-02-09",112354,298,8859],["Newton","2021-02-10",112354,479,9338],["Newton","2021-02-11",112354,425,9763],["Newton","2021-02-12",112354,448,10211],["Newton","2021-02-13",112354,302,10513],["Newton","2021-02-14",112354,56,10569],["Newton","2021-02-15",112354,415,10984],["Newton","2021-02-16",112354,454,11438],["Newton","2021-02-17",112354,437,11875],["Newton","2021-02-18",112354,367,12242],["Newton","2021-02-19",112354,319,12561],["Newton","2021-02-20",112354,175,12736],["Newton","2021-02-21",112354,48,12784],["Newton","2021-02-22",112354,280,13064],["Newton","2021-02-23",112354,306,13370],["Newton","2021-02-24",112354,332,13702],["Newton","2021-02-25",112354,377,14079],["Newton","2021-02-26",112354,389,14468],["Newton","2021-02-27",112354,123,14591],["Newton","2021-02-28",112354,71,14662],["Newton","2021-03-01",112354,326,14988],["Newton","2021-03-02",112354,421,15409],["Newton","2021-03-03",112354,441,15850],["Newton","2021-03-04",112354,519,16369],["Newton","2021-03-05",112354,491,16860],["Newton","2021-03-06",112354,217,17077],["Newton","2021-03-07",112354,78,17155],["Newton","2021-03-08",112354,443,17598],["Newton","2021-03-09",112354,516,18114],["Newton","2021-03-10",112354,533,18647],["Newton","2021-03-11",112354,607,19254],["Newton","2021-03-12",112354,730,19984],["Newton","2021-03-13",112354,195,20179],["Newton","2021-03-14",112354,131,20310],["Newton","2021-03-15",112354,621,20931],["Newton","2021-03-16",112354,801,21732],["Newton","2021-03-17",112354,808,22540],["Newton","2021-03-18",112354,583,23123],["Newton","2021-03-19",112354,735,23858],["Newton","2021-03-20",112354,305,24163],["Newton","2021-03-21",112354,169,24332],["Newton","2021-03-22",112354,559,24891],["Newton","2021-03-23",112354,683,25574],["Newton","2021-03-24",112354,884,26458],["Newton","2021-03-25",112354,812,27270],["Newton","2021-03-26",112354,805,28075],["Newton","2021-03-27",112354,327,28402],["Newton","2021-03-28",112354,190,28592],["Newton","2021-03-29",112354,708,29300],["Newton","2021-03-30",112354,985,30285],["Newton","2021-03-31",112354,960,31245],["Newton","2021-04-01",112354,994,32239],["Newton","2021-04-02",112354,841,33080],["Newton","2021-04-03",112354,484,33564],["Newton","2021-04-04",112354,167,33731],["Newton","2021-04-05",112354,839,34570],["Newton","2021-04-06",112354,1035,35605],["Newton","2021-04-07",112354,879,36484],["Newton","2021-04-08",112354,876,37360],["Newton","2021-04-09",112354,966,38326],["Newton","2021-04-10",112354,404,38730],["Newton","2021-04-11",112354,223,38953],["Newton","2021-04-12",112354,721,39674],["Newton","2021-04-13",112354,812,40486],["Newton","2021-04-14",112354,1008,41494],["Newton","2021-04-15",112354,898,42392],["Newton","2021-04-16",112354,1005,43397],["Newton","2021-04-17",112354,320,43717],["Newton","2021-04-18",112354,292,44009],["Newton","2021-04-19",112354,720,44729],["Newton","2021-04-20",112354,859,45588],["Newton","2021-04-21",112354,967,46555],["Newton","2021-04-22",112354,904,47459],["Newton","2021-04-23",112354,888,48347],["Newton","2021-04-24",112354,437,48784],["Newton","2021-04-25",112354,237,49021],["Newton","2021-04-26",112354,701,49722],["Newton","2021-04-27",112354,780,50502],["Newton","2021-04-28",112354,862,51364],["Newton","2021-04-29",112354,714,52078],["Newton","2021-04-30",112354,787,52865],["Newton","2021-05-01",112354,462,53327],["Newton","2021-05-02",112354,148,53475],["Newton","2021-05-03",112354,498,53973],["Newton","2021-05-04",112354,535,54508],["Newton","2021-05-05",112354,530,55038],["Newton","2021-05-06",112354,727,55765],["Newton","2021-05-07",112354,668,56433],["Newton","2021-05-08",112354,242,56675],["Newton","2021-05-09",112354,106,56781],["Newton","2021-05-10",112354,415,57196],["Newton","2021-05-11",112354,421,57617],["Newton","2021-05-12",112354,437,58054],["Newton","2021-05-13",112354,501,58555],["Newton","2021-05-14",112354,464,59019],["Newton","2021-05-15",112354,403,59422],["Newton","2021-05-16",112354,193,59615],["Newton","2021-05-17",112354,437,60052],["Newton","2021-05-18",112354,468,60520],["Newton","2021-05-19",112354,479,60999],["Newton","2021-05-20",112354,389,61388],["Newton","2021-05-21",112354,427,61815],["Newton","2021-05-22",112354,239,62054],["Newton","2021-05-23",112354,157,62211],["Newton","2021-05-24",112354,241,62452],["Newton","2021-05-25",112354,265,62717],["Newton","2021-05-26",112354,347,63064],["Newton","2021-05-27",112354,343,63407],["Newton","2021-05-28",112354,289,63696],["Newton","2021-05-29",112354,215,63911],["Newton","2021-05-30",112354,81,63992],["Newton","2021-05-31",112354,40,64032],["Newton","2021-06-01",112354,300,64332],["Newton","2021-06-02",112354,300,64632],["Newton","2021-06-03",112354,328,64960],["Newton","2021-06-04",112354,341,65301],["Newton","2021-06-05",112354,253,65554],["Newton","2021-06-06",112354,135,65689],["Newton","2021-06-07",112354,288,65977],["Newton","2021-06-08",112354,297,66274],["Newton","2021-06-09",112354,273,66547],["Newton","2021-06-10",112354,268,66815],["Newton","2021-06-11",112354,334,67149],["Newton","2021-06-12",112354,209,67358],["Newton","2021-06-13",112354,104,67462],["Newton","2021-06-14",112354,202,67664],["Newton","2021-06-15",112354,234,67898],["Newton","2021-06-16",112354,225,68123],["Newton","2021-06-17",112354,210,68333],["Newton","2021-06-18",112354,245,68578],["Newton","2021-06-19",112354,138,68716],["Newton","2021-06-20",112354,69,68785],["Newton","2021-06-21",112354,164,68949],["Newton","2021-06-22",112354,179,69128],["Newton","2021-06-23",112354,202,69330],["Newton","2021-06-24",112354,177,69507],["Newton","2021-06-25",112354,229,69736],["Newton","2021-06-26",112354,164,69900],["Newton","2021-06-27",112354,58,69958],["Newton","2021-06-28",112354,149,70107],["Newton","2021-06-29",112354,178,70285],["Newton","2021-06-30",112354,154,70439],["Newton","2021-07-01",112354,143,70582],["Newton","2021-07-02",112354,178,70760],["Newton","2021-07-03",112354,118,70878],["Newton","2021-07-04",112354,12,70890],["Newton","2021-07-05",112354,127,71017],["Newton","2021-07-06",112354,181,71198],["Newton","2021-07-07",112354,188,71386],["Newton","2021-07-08",112354,158,71544],["Newton","2021-07-09",112354,176,71720],["Newton","2021-07-10",112354,130,71850],["Newton","2021-07-11",112354,82,71932],["Newton","2021-07-12",112354,159,72091],["Newton","2021-07-13",112354,153,72244],["Newton","2021-07-14",112354,218,72462],["Newton","2021-07-15",112354,163,72625],["Newton","2021-07-16",112354,192,72817],["Newton","2021-07-17",112354,125,72942],["Newton","2021-07-18",112354,47,72989],["Newton","2021-07-19",112354,182,73171],["Newton","2021-07-20",112354,172,73343],["Newton","2021-07-21",112354,186,73529],["Newton","2021-07-22",112354,209,73738],["Newton","2021-07-23",112354,253,73991],["Newton","2021-07-24",112354,177,74168],["Newton","2021-07-25",112354,66,74234],["Newton","2021-07-26",112354,182,74416],["Newton","2021-07-27",112354,303,74719],["Newton","2021-07-28",112354,232,74951],["Newton","2021-07-29",112354,223,75174],["Newton","2021-07-30",112354,287,75461],["Newton","2021-07-31",112354,224,75685],["Newton","2021-08-01",112354,123,75808],["Newton","2021-08-02",112354,248,76056],["Newton","2021-08-03",112354,258,76314],["Newton","2021-08-04",112354,245,76559],["Newton","2021-08-05",112354,272,76831],["Newton","2021-08-06",112354,347,77178],["Newton","2021-08-07",112354,256,77434],["Newton","2021-08-08",112354,156,77590],["Newton","2021-08-09",112354,288,77878],["Newton","2021-08-10",112354,295,78173],["Newton","2021-08-11",112354,300,78473],["Newton","2021-08-12",112354,280,78753],["Newton","2021-08-13",112354,331,79084],["Newton","2021-08-14",112354,254,79338],["Newton","2021-08-15",112354,128,79466],["Newton","2021-08-16",112354,226,79692],["Newton","2021-08-17",112354,278,79970],["Newton","2021-08-18",112354,275,80245],["Newton","2021-08-19",112354,259,80504],["Newton","2021-08-20",112354,328,80832],["Newton","2021-08-21",112354,234,81066],["Newton","2021-08-22",112354,144,81210],["Newton","2021-08-23",112354,271,81481],["Newton","2021-08-24",112354,265,81746],["Newton","2021-08-25",112354,281,82027],["Newton","2021-08-26",112354,307,82334],["Newton","2021-08-27",112354,359,82693],["Newton","2021-08-28",112354,324,83017],["Newton","2021-08-29",112354,175,83192],["Newton","2021-08-30",112354,319,83511],["Newton","2021-08-31",112354,324,83835],["Newton","2021-09-01",112354,318,84153],["Newton","2021-09-02",112354,316,84469],["Newton","2021-09-03",112354,366,84835],["Newton","2021-09-04",112354,236,85071],["Newton","2021-09-05",112354,163,85234],["Newton","2021-09-06",112354,58,85292],["Newton","2021-09-07",112354,309,85601],["Newton","2021-09-08",112354,289,85890],["Newton","2021-09-09",112354,239,86129],["Newton","2021-09-10",112354,385,86514],["Newton","2021-09-11",112354,190,86704],["Newton","2021-09-12",112354,132,86836],["Newton","2021-09-13",112354,239,87075],["Newton","2021-09-14",112354,224,87299],["Newton","2021-09-15",112354,231,87530],["Newton","2021-09-16",112354,193,87723],["Newton","2021-09-17",112354,277,88000],["Newton","2021-09-18",112354,150,88150],["Newton","2021-09-19",112354,104,88254],["Newton","2021-09-20",112354,189,88443],["Newton","2021-09-21",112354,217,88660],["Newton","2021-09-22",112354,188,88848],["Newton","2021-09-23",112354,219,89067],["Newton","2021-09-24",112354,256,89323],["Newton","2021-09-25",112354,158,89481],["Newton","2021-09-26",112354,86,89567],["Newton","2021-09-27",112354,232,89799],["Newton","2021-09-28",112354,232,90031],["Newton","2021-09-29",112354,232,90263],["Newton","2021-09-30",112354,246,90509],["Newton","2021-10-01",112354,292,90801],["Newton","2021-10-02",112354,172,90973],["Newton","2021-10-03",112354,90,91063],["Newton","2021-10-04",112354,211,91274],["Newton","2021-10-05",112354,182,91456],["Newton","2021-10-06",112354,186,91642],["Newton","2021-10-07",112354,176,91818],["Newton","2021-10-08",112354,195,92013],["Newton","2021-10-09",112354,119,92132],["Newton","2021-10-10",112354,91,92223],["Newton","2021-10-11",112354,157,92380],["Newton","2021-10-12",112354,169,92549],["Newton","2021-10-13",112354,194,92743],["Newton","2021-10-14",112354,160,92903],["Newton","2021-10-15",112354,179,93082],["Newton","2021-10-16",112354,124,93206],["Newton","2021-10-17",112354,61,93267],["Newton","2021-10-18",112354,160,93427],["Newton","2021-10-19",112354,137,93564],["Newton","2021-10-20",112354,184,93748],["Newton","2021-10-21",112354,162,93910],["Newton","2021-10-22",112354,222,94132],["Newton","2021-10-23",112354,230,94362],["Newton","2021-10-24",112354,114,94476],["Newton","2021-10-25",112354,329,94805],["Newton","2021-10-26",112354,298,95103],["Newton","2021-10-27",112354,301,95404],["Newton","2021-10-28",112354,262,95666],["Newton","2021-10-29",112354,331,95997],["Newton","2021-10-30",112354,136,96133],["Newton","2021-10-31",112354,88,96221],["Newton","2021-11-01",112354,290,96511],["Newton","2021-11-02",112354,256,96767],["Newton","2021-11-03",112354,299,97066],["Newton","2021-11-04",112354,258,97324],["Newton","2021-11-05",112354,331,97655],["Newton","2021-11-06",112354,153,97808],["Newton","2021-11-07",112354,87,97895],["Newton","2021-11-08",112354,234,98129],["Newton","2021-11-09",112354,292,98421],["Newton","2021-11-10",112354,260,98681],["Newton","2021-11-11",112354,238,98919],["Newton","2021-11-12",112354,341,99260],["Newton","2021-11-13",112354,184,99444],["Newton","2021-11-14",112354,97,99541],["Newton","2021-11-15",112354,245,99786],["Newton","2021-11-16",112354,268,100054],["Newton","2021-11-17",112354,258,100312],["Newton","2021-11-18",112354,241,100553],["Newton","2021-11-19",112354,317,100870],["Newton","2021-11-20",112354,193,101063],["Newton","2021-11-21",112354,133,101196],["Newton","2021-11-22",112354,348,101544],["Newton","2021-11-23",112354,320,101864],["Newton","2021-11-24",112354,212,102076],["Newton","2021-11-26",112354,238,102314],["Newton","2021-11-27",112354,144,102458],["Newton","2021-11-28",112354,124,102582],["Newton","2021-11-29",112354,319,102901],["Newton","2021-11-30",112354,344,103245],["Newton","2021-12-01",112354,422,103667],["Newton","2021-12-02",112354,386,104053],["Newton","2021-12-03",112354,426,104479],["Newton","2021-12-04",112354,268,104747],["Newton","2021-12-05",112354,137,104884],["Newton","2021-12-06",112354,306,105190],["Newton","2021-12-07",112354,266,105456],["Newton","2021-12-08",112354,298,105754],["Newton","2021-12-09",112354,332,106086],["Newton","2021-12-10",112354,337,106423],["Newton","2021-12-11",112354,196,106619],["Newton","2021-12-12",112354,120,106739],["Newton","2021-12-13",112354,234,106973],["Newton","2021-12-14",112354,314,107287],["Newton","2021-12-15",112354,263,107550],["Newton","2021-12-16",112354,266,107816],["Newton","2021-12-17",112354,340,108156],["Newton","2021-12-18",112354,189,108345],["Newton","2021-12-19",112354,121,108466],["Newton","2021-12-20",112354,348,108814],["Newton","2021-12-21",112354,356,109170],["Newton","2021-12-22",112354,342,109512],["Newton","2021-12-23",112354,245,109757],["Newton","2021-12-24",112354,110,109867],["Newton","2021-12-25",112354,1,109868],["Newton","2021-12-26",112354,98,109966],["Newton","2021-12-27",112354,265,110231],["Newton","2021-12-28",112354,320,110551],["Newton","2021-12-29",112354,322,110873],["Newton","2021-12-30",112354,256,111129],["Newton","2021-12-31",112354,146,111275],["Newton","2022-01-01",112354,35,111310],["Newton","2022-01-02",112354,98,111408],["Newton","2022-01-03",112354,82,111490],["Oconee","2020-12-15",41737,1,1],["Oconee","2020-12-17",41737,5,6],["Oconee","2020-12-18",41737,37,43],["Oconee","2020-12-19",41737,19,62],["Oconee","2020-12-20",41737,2,64],["Oconee","2020-12-21",41737,62,126],["Oconee","2020-12-22",41737,123,249],["Oconee","2020-12-23",41737,149,398],["Oconee","2020-12-24",41737,38,436],["Oconee","2020-12-26",41737,31,467],["Oconee","2020-12-27",41737,10,477],["Oconee","2020-12-28",41737,156,633],["Oconee","2020-12-29",41737,196,829],["Oconee","2020-12-30",41737,84,913],["Oconee","2020-12-31",41737,50,963],["Oconee","2021-01-01",41737,10,973],["Oconee","2021-01-02",41737,32,1005],["Oconee","2021-01-03",41737,8,1013],["Oconee","2021-01-04",41737,121,1134],["Oconee","2021-01-05",41737,93,1227],["Oconee","2021-01-06",41737,167,1394],["Oconee","2021-01-07",41737,94,1488],["Oconee","2021-01-08",41737,177,1665],["Oconee","2021-01-09",41737,24,1689],["Oconee","2021-01-10",41737,13,1702],["Oconee","2021-01-11",41737,246,1948],["Oconee","2021-01-12",41737,236,2184],["Oconee","2021-01-13",41737,207,2391],["Oconee","2021-01-14",41737,263,2654],["Oconee","2021-01-15",41737,305,2959],["Oconee","2021-01-16",41737,253,3212],["Oconee","2021-01-17",41737,38,3250],["Oconee","2021-01-18",41737,196,3446],["Oconee","2021-01-19",41737,243,3689],["Oconee","2021-01-20",41737,200,3889],["Oconee","2021-01-21",41737,320,4209],["Oconee","2021-01-22",41737,212,4421],["Oconee","2021-01-23",41737,223,4644],["Oconee","2021-01-24",41737,20,4664],["Oconee","2021-01-25",41737,209,4873],["Oconee","2021-01-26",41737,228,5101],["Oconee","2021-01-27",41737,311,5412],["Oconee","2021-01-28",41737,495,5907],["Oconee","2021-01-29",41737,327,6234],["Oconee","2021-01-30",41737,80,6314],["Oconee","2021-01-31",41737,13,6327],["Oconee","2021-02-01",41737,228,6555],["Oconee","2021-02-02",41737,159,6714],["Oconee","2021-02-03",41737,201,6915],["Oconee","2021-02-04",41737,298,7213],["Oconee","2021-02-05",41737,162,7375],["Oconee","2021-02-06",41737,175,7550],["Oconee","2021-02-07",41737,28,7578],["Oconee","2021-02-08",41737,135,7713],["Oconee","2021-02-09",41737,210,7923],["Oconee","2021-02-10",41737,202,8125],["Oconee","2021-02-11",41737,349,8474],["Oconee","2021-02-12",41737,210,8684],["Oconee","2021-02-13",41737,280,8964],["Oconee","2021-02-14",41737,46,9010],["Oconee","2021-02-15",41737,217,9227],["Oconee","2021-02-16",41737,242,9469],["Oconee","2021-02-17",41737,284,9753],["Oconee","2021-02-18",41737,441,10194],["Oconee","2021-02-19",41737,272,10466],["Oconee","2021-02-20",41737,115,10581],["Oconee","2021-02-21",41737,18,10599],["Oconee","2021-02-22",41737,159,10758],["Oconee","2021-02-23",41737,166,10924],["Oconee","2021-02-24",41737,165,11089],["Oconee","2021-02-25",41737,393,11482],["Oconee","2021-02-26",41737,236,11718],["Oconee","2021-02-27",41737,66,11784],["Oconee","2021-02-28",41737,55,11839],["Oconee","2021-03-01",41737,189,12028],["Oconee","2021-03-02",41737,202,12230],["Oconee","2021-03-03",41737,216,12446],["Oconee","2021-03-04",41737,317,12763],["Oconee","2021-03-05",41737,172,12935],["Oconee","2021-03-06",41737,66,13001],["Oconee","2021-03-07",41737,48,13049],["Oconee","2021-03-08",41737,816,13865],["Oconee","2021-03-09",41737,362,14227],["Oconee","2021-03-10",41737,424,14651],["Oconee","2021-03-11",41737,448,15099],["Oconee","2021-03-12",41737,236,15335],["Oconee","2021-03-13",41737,335,15670],["Oconee","2021-03-14",41737,67,15737],["Oconee","2021-03-15",41737,367,16104],["Oconee","2021-03-16",41737,344,16448],["Oconee","2021-03-17",41737,533,16981],["Oconee","2021-03-18",41737,564,17545],["Oconee","2021-03-19",41737,315,17860],["Oconee","2021-03-20",41737,85,17945],["Oconee","2021-03-21",41737,78,18023],["Oconee","2021-03-22",41737,384,18407],["Oconee","2021-03-23",41737,396,18803],["Oconee","2021-03-24",41737,528,19331],["Oconee","2021-03-25",41737,645,19976],["Oconee","2021-03-26",41737,380,20356],["Oconee","2021-03-27",41737,95,20451],["Oconee","2021-03-28",41737,90,20541],["Oconee","2021-03-29",41737,577,21118],["Oconee","2021-03-30",41737,581,21699],["Oconee","2021-03-31",41737,766,22465],["Oconee","2021-04-01",41737,635,23100],["Oconee","2021-04-02",41737,754,23854],["Oconee","2021-04-03",41737,303,24157],["Oconee","2021-04-04",41737,53,24210],["Oconee","2021-04-05",41737,437,24647],["Oconee","2021-04-06",41737,508,25155],["Oconee","2021-04-07",41737,525,25680],["Oconee","2021-04-08",41737,500,26180],["Oconee","2021-04-09",41737,345,26525],["Oconee","2021-04-10",41737,132,26657],["Oconee","2021-04-11",41737,89,26746],["Oconee","2021-04-12",41737,474,27220],["Oconee","2021-04-13",41737,407,27627],["Oconee","2021-04-14",41737,575,28202],["Oconee","2021-04-15",41737,534,28736],["Oconee","2021-04-16",41737,419,29155],["Oconee","2021-04-17",41737,440,29595],["Oconee","2021-04-18",41737,55,29650],["Oconee","2021-04-19",41737,387,30037],["Oconee","2021-04-20",41737,464,30501],["Oconee","2021-04-21",41737,469,30970],["Oconee","2021-04-22",41737,488,31458],["Oconee","2021-04-23",41737,431,31889],["Oconee","2021-04-24",41737,82,31971],["Oconee","2021-04-25",41737,39,32010],["Oconee","2021-04-26",41737,316,32326],["Oconee","2021-04-27",41737,350,32676],["Oconee","2021-04-28",41737,283,32959],["Oconee","2021-04-29",41737,287,33246],["Oconee","2021-04-30",41737,296,33542],["Oconee","2021-05-01",41737,74,33616],["Oconee","2021-05-02",41737,39,33655],["Oconee","2021-05-03",41737,167,33822],["Oconee","2021-05-04",41737,222,34044],["Oconee","2021-05-05",41737,211,34255],["Oconee","2021-05-06",41737,213,34468],["Oconee","2021-05-07",41737,166,34634],["Oconee","2021-05-08",41737,372,35006],["Oconee","2021-05-09",41737,27,35033],["Oconee","2021-05-10",41737,111,35144],["Oconee","2021-05-11",41737,143,35287],["Oconee","2021-05-12",41737,177,35464],["Oconee","2021-05-13",41737,231,35695],["Oconee","2021-05-14",41737,201,35896],["Oconee","2021-05-15",41737,87,35983],["Oconee","2021-05-16",41737,55,36038],["Oconee","2021-05-17",41737,152,36190],["Oconee","2021-05-18",41737,134,36324],["Oconee","2021-05-19",41737,143,36467],["Oconee","2021-05-20",41737,123,36590],["Oconee","2021-05-21",41737,127,36717],["Oconee","2021-05-22",41737,57,36774],["Oconee","2021-05-23",41737,39,36813],["Oconee","2021-05-24",41737,106,36919],["Oconee","2021-05-25",41737,103,37022],["Oconee","2021-05-26",41737,97,37119],["Oconee","2021-05-27",41737,88,37207],["Oconee","2021-05-28",41737,81,37288],["Oconee","2021-05-29",41737,39,37327],["Oconee","2021-05-30",41737,36,37363],["Oconee","2021-05-31",41737,7,37370],["Oconee","2021-06-01",41737,110,37480],["Oconee","2021-06-02",41737,109,37589],["Oconee","2021-06-03",41737,154,37743],["Oconee","2021-06-04",41737,143,37886],["Oconee","2021-06-05",41737,87,37973],["Oconee","2021-06-06",41737,57,38030],["Oconee","2021-06-07",41737,117,38147],["Oconee","2021-06-08",41737,102,38249],["Oconee","2021-06-09",41737,94,38343],["Oconee","2021-06-10",41737,78,38421],["Oconee","2021-06-11",41737,110,38531],["Oconee","2021-06-12",41737,50,38581],["Oconee","2021-06-13",41737,13,38594],["Oconee","2021-06-14",41737,77,38671],["Oconee","2021-06-15",41737,66,38737],["Oconee","2021-06-16",41737,59,38796],["Oconee","2021-06-17",41737,43,38839],["Oconee","2021-06-18",41737,60,38899],["Oconee","2021-06-19",41737,47,38946],["Oconee","2021-06-20",41737,22,38968],["Oconee","2021-06-21",41737,32,39000],["Oconee","2021-06-22",41737,69,39069],["Oconee","2021-06-23",41737,52,39121],["Oconee","2021-06-24",41737,57,39178],["Oconee","2021-06-25",41737,63,39241],["Oconee","2021-06-26",41737,49,39290],["Oconee","2021-06-27",41737,22,39312],["Oconee","2021-06-28",41737,53,39365],["Oconee","2021-06-29",41737,32,39397],["Oconee","2021-06-30",41737,41,39438],["Oconee","2021-07-01",41737,41,39479],["Oconee","2021-07-02",41737,39,39518],["Oconee","2021-07-03",41737,31,39549],["Oconee","2021-07-04",41737,2,39551],["Oconee","2021-07-05",41737,36,39587],["Oconee","2021-07-06",41737,36,39623],["Oconee","2021-07-07",41737,44,39667],["Oconee","2021-07-08",41737,43,39710],["Oconee","2021-07-09",41737,33,39743],["Oconee","2021-07-10",41737,28,39771],["Oconee","2021-07-11",41737,14,39785],["Oconee","2021-07-12",41737,39,39824],["Oconee","2021-07-13",41737,41,39865],["Oconee","2021-07-14",41737,38,39903],["Oconee","2021-07-15",41737,31,39934],["Oconee","2021-07-16",41737,51,39985],["Oconee","2021-07-17",41737,29,40014],["Oconee","2021-07-18",41737,23,40037],["Oconee","2021-07-19",41737,56,40093],["Oconee","2021-07-20",41737,49,40142],["Oconee","2021-07-21",41737,47,40189],["Oconee","2021-07-22",41737,48,40237],["Oconee","2021-07-23",41737,63,40300],["Oconee","2021-07-24",41737,43,40343],["Oconee","2021-07-25",41737,34,40377],["Oconee","2021-07-26",41737,70,40447],["Oconee","2021-07-27",41737,61,40508],["Oconee","2021-07-28",41737,68,40576],["Oconee","2021-07-29",41737,74,40650],["Oconee","2021-07-30",41737,82,40732],["Oconee","2021-07-31",41737,39,40771],["Oconee","2021-08-01",41737,33,40804],["Oconee","2021-08-02",41737,82,40886],["Oconee","2021-08-03",41737,81,40967],["Oconee","2021-08-04",41737,60,41027],["Oconee","2021-08-05",41737,75,41102],["Oconee","2021-08-06",41737,97,41199],["Oconee","2021-08-07",41737,61,41260],["Oconee","2021-08-08",41737,49,41309],["Oconee","2021-08-09",41737,101,41410],["Oconee","2021-08-10",41737,97,41507],["Oconee","2021-08-11",41737,69,41576],["Oconee","2021-08-12",41737,72,41648],["Oconee","2021-08-13",41737,99,41747],["Oconee","2021-08-14",41737,77,41824],["Oconee","2021-08-15",41737,68,41892],["Oconee","2021-08-16",41737,119,42011],["Oconee","2021-08-17",41737,102,42113],["Oconee","2021-08-18",41737,83,42196],["Oconee","2021-08-19",41737,113,42309],["Oconee","2021-08-20",41737,135,42444],["Oconee","2021-08-21",41737,71,42515],["Oconee","2021-08-22",41737,49,42564],["Oconee","2021-08-23",41737,113,42677],["Oconee","2021-08-24",41737,124,42801],["Oconee","2021-08-25",41737,122,42923],["Oconee","2021-08-26",41737,139,43062],["Oconee","2021-08-27",41737,156,43218],["Oconee","2021-08-28",41737,83,43301],["Oconee","2021-08-29",41737,49,43350],["Oconee","2021-08-30",41737,112,43462],["Oconee","2021-08-31",41737,123,43585],["Oconee","2021-09-01",41737,100,43685],["Oconee","2021-09-02",41737,95,43780],["Oconee","2021-09-03",41737,136,43916],["Oconee","2021-09-04",41737,58,43974],["Oconee","2021-09-05",41737,37,44011],["Oconee","2021-09-06",41737,11,44022],["Oconee","2021-09-07",41737,119,44141],["Oconee","2021-09-08",41737,93,44234],["Oconee","2021-09-09",41737,101,44335],["Oconee","2021-09-10",41737,106,44441],["Oconee","2021-09-11",41737,44,44485],["Oconee","2021-09-12",41737,38,44523],["Oconee","2021-09-13",41737,107,44630],["Oconee","2021-09-14",41737,113,44743],["Oconee","2021-09-15",41737,77,44820],["Oconee","2021-09-16",41737,81,44901],["Oconee","2021-09-17",41737,82,44983],["Oconee","2021-09-18",41737,41,45024],["Oconee","2021-09-19",41737,27,45051],["Oconee","2021-09-20",41737,75,45126],["Oconee","2021-09-21",41737,61,45187],["Oconee","2021-09-22",41737,64,45251],["Oconee","2021-09-23",41737,79,45330],["Oconee","2021-09-24",41737,118,45448],["Oconee","2021-09-25",41737,91,45539],["Oconee","2021-09-26",41737,69,45608],["Oconee","2021-09-27",41737,159,45767],["Oconee","2021-09-28",41737,160,45927],["Oconee","2021-09-29",41737,138,46065],["Oconee","2021-09-30",41737,131,46196],["Oconee","2021-10-01",41737,159,46355],["Oconee","2021-10-02",41737,43,46398],["Oconee","2021-10-03",41737,32,46430],["Oconee","2021-10-04",41737,147,46577],["Oconee","2021-10-05",41737,128,46705],["Oconee","2021-10-06",41737,92,46797],["Oconee","2021-10-07",41737,121,46918],["Oconee","2021-10-08",41737,164,47082],["Oconee","2021-10-09",41737,47,47129],["Oconee","2021-10-10",41737,23,47152],["Oconee","2021-10-11",41737,88,47240],["Oconee","2021-10-12",41737,91,47331],["Oconee","2021-10-13",41737,64,47395],["Oconee","2021-10-14",41737,102,47497],["Oconee","2021-10-15",41737,115,47612],["Oconee","2021-10-16",41737,29,47641],["Oconee","2021-10-17",41737,16,47657],["Oconee","2021-10-18",41737,96,47753],["Oconee","2021-10-19",41737,91,47844],["Oconee","2021-10-20",41737,60,47904],["Oconee","2021-10-21",41737,97,48001],["Oconee","2021-10-22",41737,168,48169],["Oconee","2021-10-23",41737,85,48254],["Oconee","2021-10-24",41737,53,48307],["Oconee","2021-10-25",41737,161,48468],["Oconee","2021-10-26",41737,109,48577],["Oconee","2021-10-27",41737,183,48760],["Oconee","2021-10-28",41737,135,48895],["Oconee","2021-10-29",41737,195,49090],["Oconee","2021-10-30",41737,64,49154],["Oconee","2021-10-31",41737,32,49186],["Oconee","2021-11-01",41737,169,49355],["Oconee","2021-11-02",41737,144,49499],["Oconee","2021-11-03",41737,163,49662],["Oconee","2021-11-04",41737,145,49807],["Oconee","2021-11-05",41737,219,50026],["Oconee","2021-11-06",41737,104,50130],["Oconee","2021-11-07",41737,59,50189],["Oconee","2021-11-08",41737,175,50364],["Oconee","2021-11-09",41737,172,50536],["Oconee","2021-11-10",41737,220,50756],["Oconee","2021-11-11",41737,123,50879],["Oconee","2021-11-12",41737,232,51111],["Oconee","2021-11-13",41737,151,51262],["Oconee","2021-11-14",41737,53,51315],["Oconee","2021-11-15",41737,141,51456],["Oconee","2021-11-16",41737,135,51591],["Oconee","2021-11-17",41737,113,51704],["Oconee","2021-11-18",41737,131,51835],["Oconee","2021-11-19",41737,197,52032],["Oconee","2021-11-20",41737,97,52129],["Oconee","2021-11-21",41737,67,52196],["Oconee","2021-11-22",41737,190,52386],["Oconee","2021-11-23",41737,139,52525],["Oconee","2021-11-24",41737,72,52597],["Oconee","2021-11-25",41737,1,52598],["Oconee","2021-11-26",41737,121,52719],["Oconee","2021-11-27",41737,105,52824],["Oconee","2021-11-28",41737,82,52906],["Oconee","2021-11-29",41737,185,53091],["Oconee","2021-11-30",41737,201,53292],["Oconee","2021-12-01",41737,194,53486],["Oconee","2021-12-02",41737,178,53664],["Oconee","2021-12-03",41737,287,53951],["Oconee","2021-12-04",41737,127,54078],["Oconee","2021-12-05",41737,66,54144],["Oconee","2021-12-06",41737,205,54349],["Oconee","2021-12-07",41737,142,54491],["Oconee","2021-12-08",41737,123,54614],["Oconee","2021-12-09",41737,133,54747],["Oconee","2021-12-10",41737,214,54961],["Oconee","2021-12-11",41737,102,55063],["Oconee","2021-12-12",41737,60,55123],["Oconee","2021-12-13",41737,115,55238],["Oconee","2021-12-14",41737,137,55375],["Oconee","2021-12-15",41737,124,55499],["Oconee","2021-12-16",41737,145,55644],["Oconee","2021-12-17",41737,202,55846],["Oconee","2021-12-18",41737,108,55954],["Oconee","2021-12-19",41737,85,56039],["Oconee","2021-12-20",41737,202,56241],["Oconee","2021-12-21",41737,211,56452],["Oconee","2021-12-22",41737,165,56617],["Oconee","2021-12-23",41737,136,56753],["Oconee","2021-12-24",41737,45,56798],["Oconee","2021-12-26",41737,64,56862],["Oconee","2021-12-27",41737,156,57018],["Oconee","2021-12-28",41737,148,57166],["Oconee","2021-12-29",41737,136,57302],["Oconee","2021-12-30",41737,104,57406],["Oconee","2021-12-31",41737,78,57484],["Oconee","2022-01-01",41737,20,57504],["Oconee","2022-01-02",41737,66,57570],["Oconee","2022-01-03",41737,34,57604],["Oglethorpe","2020-12-17",15240,1,1],["Oglethorpe","2020-12-18",15240,8,9],["Oglethorpe","2020-12-19",15240,6,15],["Oglethorpe","2020-12-21",15240,4,19],["Oglethorpe","2020-12-22",15240,6,25],["Oglethorpe","2020-12-23",15240,13,38],["Oglethorpe","2020-12-24",15240,7,45],["Oglethorpe","2020-12-26",15240,3,48],["Oglethorpe","2020-12-27",15240,3,51],["Oglethorpe","2020-12-28",15240,28,79],["Oglethorpe","2020-12-29",15240,22,101],["Oglethorpe","2020-12-30",15240,23,124],["Oglethorpe","2020-12-31",15240,12,136],["Oglethorpe","2021-01-01",15240,1,137],["Oglethorpe","2021-01-02",15240,6,143],["Oglethorpe","2021-01-03",15240,3,146],["Oglethorpe","2021-01-04",15240,23,169],["Oglethorpe","2021-01-05",15240,14,183],["Oglethorpe","2021-01-06",15240,28,211],["Oglethorpe","2021-01-07",15240,10,221],["Oglethorpe","2021-01-08",15240,24,245],["Oglethorpe","2021-01-09",15240,8,253],["Oglethorpe","2021-01-10",15240,2,255],["Oglethorpe","2021-01-11",15240,30,285],["Oglethorpe","2021-01-12",15240,69,354],["Oglethorpe","2021-01-13",15240,48,402],["Oglethorpe","2021-01-14",15240,38,440],["Oglethorpe","2021-01-15",15240,66,506],["Oglethorpe","2021-01-16",15240,27,533],["Oglethorpe","2021-01-17",15240,3,536],["Oglethorpe","2021-01-18",15240,55,591],["Oglethorpe","2021-01-19",15240,51,642],["Oglethorpe","2021-01-20",15240,59,701],["Oglethorpe","2021-01-21",15240,109,810],["Oglethorpe","2021-01-22",15240,68,878],["Oglethorpe","2021-01-23",15240,50,928],["Oglethorpe","2021-01-24",15240,7,935],["Oglethorpe","2021-01-25",15240,57,992],["Oglethorpe","2021-01-26",15240,37,1029],["Oglethorpe","2021-01-27",15240,38,1067],["Oglethorpe","2021-01-28",15240,130,1197],["Oglethorpe","2021-01-29",15240,48,1245],["Oglethorpe","2021-01-30",15240,9,1254],["Oglethorpe","2021-01-31",15240,3,1257],["Oglethorpe","2021-02-01",15240,45,1302],["Oglethorpe","2021-02-02",15240,102,1404],["Oglethorpe","2021-02-03",15240,50,1454],["Oglethorpe","2021-02-04",15240,131,1585],["Oglethorpe","2021-02-05",15240,52,1637],["Oglethorpe","2021-02-06",15240,23,1660],["Oglethorpe","2021-02-07",15240,8,1668],["Oglethorpe","2021-02-08",15240,20,1688],["Oglethorpe","2021-02-09",15240,53,1741],["Oglethorpe","2021-02-10",15240,75,1816],["Oglethorpe","2021-02-11",15240,134,1950],["Oglethorpe","2021-02-12",15240,41,1991],["Oglethorpe","2021-02-13",15240,43,2034],["Oglethorpe","2021-02-14",15240,6,2040],["Oglethorpe","2021-02-15",15240,39,2079],["Oglethorpe","2021-02-16",15240,51,2130],["Oglethorpe","2021-02-17",15240,55,2185],["Oglethorpe","2021-02-18",15240,129,2314],["Oglethorpe","2021-02-19",15240,77,2391],["Oglethorpe","2021-02-20",15240,20,2411],["Oglethorpe","2021-02-21",15240,3,2414],["Oglethorpe","2021-02-22",15240,70,2484],["Oglethorpe","2021-02-23",15240,46,2530],["Oglethorpe","2021-02-24",15240,62,2592],["Oglethorpe","2021-02-25",15240,145,2737],["Oglethorpe","2021-02-26",15240,58,2795],["Oglethorpe","2021-02-27",15240,14,2809],["Oglethorpe","2021-02-28",15240,8,2817],["Oglethorpe","2021-03-01",15240,62,2879],["Oglethorpe","2021-03-02",15240,61,2940],["Oglethorpe","2021-03-03",15240,64,3004],["Oglethorpe","2021-03-04",15240,135,3139],["Oglethorpe","2021-03-05",15240,45,3184],["Oglethorpe","2021-03-06",15240,15,3199],["Oglethorpe","2021-03-07",15240,15,3214],["Oglethorpe","2021-03-08",15240,64,3278],["Oglethorpe","2021-03-09",15240,74,3352],["Oglethorpe","2021-03-10",15240,322,3674],["Oglethorpe","2021-03-11",15240,158,3832],["Oglethorpe","2021-03-12",15240,232,4064],["Oglethorpe","2021-03-13",15240,42,4106],["Oglethorpe","2021-03-14",15240,4,4110],["Oglethorpe","2021-03-15",15240,54,4164],["Oglethorpe","2021-03-16",15240,63,4227],["Oglethorpe","2021-03-17",15240,309,4536],["Oglethorpe","2021-03-18",15240,141,4677],["Oglethorpe","2021-03-19",15240,64,4741],["Oglethorpe","2021-03-20",15240,14,4755],["Oglethorpe","2021-03-21",15240,10,4765],["Oglethorpe","2021-03-22",15240,100,4865],["Oglethorpe","2021-03-23",15240,66,4931],["Oglethorpe","2021-03-24",15240,195,5126],["Oglethorpe","2021-03-25",15240,144,5270],["Oglethorpe","2021-03-26",15240,97,5367],["Oglethorpe","2021-03-27",15240,8,5375],["Oglethorpe","2021-03-28",15240,14,5389],["Oglethorpe","2021-03-29",15240,88,5477],["Oglethorpe","2021-03-30",15240,81,5558],["Oglethorpe","2021-03-31",15240,507,6065],["Oglethorpe","2021-04-01",15240,125,6190],["Oglethorpe","2021-04-02",15240,88,6278],["Oglethorpe","2021-04-03",15240,52,6330],["Oglethorpe","2021-04-04",15240,14,6344],["Oglethorpe","2021-04-05",15240,83,6427],["Oglethorpe","2021-04-06",15240,88,6515],["Oglethorpe","2021-04-07",15240,303,6818],["Oglethorpe","2021-04-08",15240,114,6932],["Oglethorpe","2021-04-09",15240,144,7076],["Oglethorpe","2021-04-10",15240,24,7100],["Oglethorpe","2021-04-11",15240,10,7110],["Oglethorpe","2021-04-12",15240,63,7173],["Oglethorpe","2021-04-13",15240,90,7263],["Oglethorpe","2021-04-14",15240,239,7502],["Oglethorpe","2021-04-15",15240,139,7641],["Oglethorpe","2021-04-16",15240,177,7818],["Oglethorpe","2021-04-17",15240,27,7845],["Oglethorpe","2021-04-18",15240,3,7848],["Oglethorpe","2021-04-19",15240,72,7920],["Oglethorpe","2021-04-20",15240,63,7983],["Oglethorpe","2021-04-21",15240,243,8226],["Oglethorpe","2021-04-22",15240,144,8370],["Oglethorpe","2021-04-23",15240,107,8477],["Oglethorpe","2021-04-24",15240,27,8504],["Oglethorpe","2021-04-25",15240,12,8516],["Oglethorpe","2021-04-26",15240,44,8560],["Oglethorpe","2021-04-27",15240,78,8638],["Oglethorpe","2021-04-28",15240,73,8711],["Oglethorpe","2021-04-29",15240,84,8795],["Oglethorpe","2021-04-30",15240,73,8868],["Oglethorpe","2021-05-01",15240,18,8886],["Oglethorpe","2021-05-02",15240,3,8889],["Oglethorpe","2021-05-03",15240,31,8920],["Oglethorpe","2021-05-04",15240,57,8977],["Oglethorpe","2021-05-05",15240,49,9026],["Oglethorpe","2021-05-06",15240,69,9095],["Oglethorpe","2021-05-07",15240,69,9164],["Oglethorpe","2021-05-08",15240,32,9196],["Oglethorpe","2021-05-09",15240,3,9199],["Oglethorpe","2021-05-10",15240,38,9237],["Oglethorpe","2021-05-11",15240,31,9268],["Oglethorpe","2021-05-12",15240,42,9310],["Oglethorpe","2021-05-13",15240,77,9387],["Oglethorpe","2021-05-14",15240,47,9434],["Oglethorpe","2021-05-15",15240,20,9454],["Oglethorpe","2021-05-16",15240,10,9464],["Oglethorpe","2021-05-17",15240,35,9499],["Oglethorpe","2021-05-18",15240,28,9527],["Oglethorpe","2021-05-19",15240,43,9570],["Oglethorpe","2021-05-20",15240,49,9619],["Oglethorpe","2021-05-21",15240,38,9657],["Oglethorpe","2021-05-22",15240,23,9680],["Oglethorpe","2021-05-23",15240,6,9686],["Oglethorpe","2021-05-24",15240,19,9705],["Oglethorpe","2021-05-25",15240,33,9738],["Oglethorpe","2021-05-26",15240,35,9773],["Oglethorpe","2021-05-27",15240,37,9810],["Oglethorpe","2021-05-28",15240,29,9839],["Oglethorpe","2021-05-29",15240,11,9850],["Oglethorpe","2021-05-30",15240,4,9854],["Oglethorpe","2021-05-31",15240,8,9862],["Oglethorpe","2021-06-01",15240,24,9886],["Oglethorpe","2021-06-02",15240,34,9920],["Oglethorpe","2021-06-03",15240,25,9945],["Oglethorpe","2021-06-04",15240,49,9994],["Oglethorpe","2021-06-05",15240,14,10008],["Oglethorpe","2021-06-06",15240,8,10016],["Oglethorpe","2021-06-07",15240,28,10044],["Oglethorpe","2021-06-08",15240,29,10073],["Oglethorpe","2021-06-09",15240,26,10099],["Oglethorpe","2021-06-10",15240,38,10137],["Oglethorpe","2021-06-11",15240,38,10175],["Oglethorpe","2021-06-12",15240,20,10195],["Oglethorpe","2021-06-13",15240,6,10201],["Oglethorpe","2021-06-14",15240,21,10222],["Oglethorpe","2021-06-15",15240,17,10239],["Oglethorpe","2021-06-16",15240,33,10272],["Oglethorpe","2021-06-17",15240,16,10288],["Oglethorpe","2021-06-18",15240,14,10302],["Oglethorpe","2021-06-19",15240,11,10313],["Oglethorpe","2021-06-20",15240,6,10319],["Oglethorpe","2021-06-21",15240,7,10326],["Oglethorpe","2021-06-22",15240,13,10339],["Oglethorpe","2021-06-23",15240,20,10359],["Oglethorpe","2021-06-24",15240,21,10380],["Oglethorpe","2021-06-25",15240,27,10407],["Oglethorpe","2021-06-26",15240,10,10417],["Oglethorpe","2021-06-27",15240,8,10425],["Oglethorpe","2021-06-28",15240,7,10432],["Oglethorpe","2021-06-29",15240,15,10447],["Oglethorpe","2021-06-30",15240,31,10478],["Oglethorpe","2021-07-01",15240,22,10500],["Oglethorpe","2021-07-02",15240,17,10517],["Oglethorpe","2021-07-03",15240,9,10526],["Oglethorpe","2021-07-05",15240,6,10532],["Oglethorpe","2021-07-06",15240,8,10540],["Oglethorpe","2021-07-07",15240,13,10553],["Oglethorpe","2021-07-08",15240,26,10579],["Oglethorpe","2021-07-09",15240,10,10589],["Oglethorpe","2021-07-10",15240,7,10596],["Oglethorpe","2021-07-11",15240,6,10602],["Oglethorpe","2021-07-12",15240,10,10612],["Oglethorpe","2021-07-13",15240,11,10623],["Oglethorpe","2021-07-14",15240,22,10645],["Oglethorpe","2021-07-15",15240,15,10660],["Oglethorpe","2021-07-16",15240,19,10679],["Oglethorpe","2021-07-17",15240,10,10689],["Oglethorpe","2021-07-18",15240,7,10696],["Oglethorpe","2021-07-19",15240,16,10712],["Oglethorpe","2021-07-20",15240,8,10720],["Oglethorpe","2021-07-21",15240,25,10745],["Oglethorpe","2021-07-22",15240,39,10784],["Oglethorpe","2021-07-23",15240,14,10798],["Oglethorpe","2021-07-24",15240,16,10814],["Oglethorpe","2021-07-25",15240,7,10821],["Oglethorpe","2021-07-26",15240,13,10834],["Oglethorpe","2021-07-27",15240,24,10858],["Oglethorpe","2021-07-28",15240,10,10868],["Oglethorpe","2021-07-29",15240,39,10907],["Oglethorpe","2021-07-30",15240,27,10934],["Oglethorpe","2021-07-31",15240,23,10957],["Oglethorpe","2021-08-01",15240,6,10963],["Oglethorpe","2021-08-02",15240,23,10986],["Oglethorpe","2021-08-03",15240,26,11012],["Oglethorpe","2021-08-04",15240,38,11050],["Oglethorpe","2021-08-05",15240,32,11082],["Oglethorpe","2021-08-06",15240,32,11114],["Oglethorpe","2021-08-07",15240,24,11138],["Oglethorpe","2021-08-08",15240,12,11150],["Oglethorpe","2021-08-09",15240,33,11183],["Oglethorpe","2021-08-10",15240,26,11209],["Oglethorpe","2021-08-11",15240,33,11242],["Oglethorpe","2021-08-12",15240,29,11271],["Oglethorpe","2021-08-13",15240,36,11307],["Oglethorpe","2021-08-14",15240,15,11322],["Oglethorpe","2021-08-15",15240,17,11339],["Oglethorpe","2021-08-16",15240,22,11361],["Oglethorpe","2021-08-17",15240,35,11396],["Oglethorpe","2021-08-18",15240,24,11420],["Oglethorpe","2021-08-19",15240,52,11472],["Oglethorpe","2021-08-20",15240,41,11513],["Oglethorpe","2021-08-21",15240,16,11529],["Oglethorpe","2021-08-22",15240,10,11539],["Oglethorpe","2021-08-23",15240,36,11575],["Oglethorpe","2021-08-24",15240,39,11614],["Oglethorpe","2021-08-25",15240,38,11652],["Oglethorpe","2021-08-26",15240,53,11705],["Oglethorpe","2021-08-27",15240,48,11753],["Oglethorpe","2021-08-28",15240,30,11783],["Oglethorpe","2021-08-29",15240,17,11800],["Oglethorpe","2021-08-30",15240,42,11842],["Oglethorpe","2021-08-31",15240,43,11885],["Oglethorpe","2021-09-01",15240,58,11943],["Oglethorpe","2021-09-02",15240,43,11986],["Oglethorpe","2021-09-03",15240,47,12033],["Oglethorpe","2021-09-04",15240,10,12043],["Oglethorpe","2021-09-05",15240,11,12054],["Oglethorpe","2021-09-06",15240,7,12061],["Oglethorpe","2021-09-07",15240,32,12093],["Oglethorpe","2021-09-08",15240,37,12130],["Oglethorpe","2021-09-09",15240,28,12158],["Oglethorpe","2021-09-10",15240,55,12213],["Oglethorpe","2021-09-11",15240,16,12229],["Oglethorpe","2021-09-12",15240,9,12238],["Oglethorpe","2021-09-13",15240,31,12269],["Oglethorpe","2021-09-14",15240,31,12300],["Oglethorpe","2021-09-15",15240,33,12333],["Oglethorpe","2021-09-16",15240,35,12368],["Oglethorpe","2021-09-17",15240,37,12405],["Oglethorpe","2021-09-18",15240,24,12429],["Oglethorpe","2021-09-19",15240,10,12439],["Oglethorpe","2021-09-20",15240,26,12465],["Oglethorpe","2021-09-21",15240,33,12498],["Oglethorpe","2021-09-22",15240,38,12536],["Oglethorpe","2021-09-23",15240,31,12567],["Oglethorpe","2021-09-24",15240,22,12589],["Oglethorpe","2021-09-25",15240,13,12602],["Oglethorpe","2021-09-26",15240,13,12615],["Oglethorpe","2021-09-27",15240,43,12658],["Oglethorpe","2021-09-28",15240,34,12692],["Oglethorpe","2021-09-29",15240,38,12730],["Oglethorpe","2021-09-30",15240,50,12780],["Oglethorpe","2021-10-01",15240,37,12817],["Oglethorpe","2021-10-02",15240,20,12837],["Oglethorpe","2021-10-03",15240,10,12847],["Oglethorpe","2021-10-04",15240,50,12897],["Oglethorpe","2021-10-05",15240,39,12936],["Oglethorpe","2021-10-06",15240,28,12964],["Oglethorpe","2021-10-07",15240,53,13017],["Oglethorpe","2021-10-08",15240,35,13052],["Oglethorpe","2021-10-09",15240,15,13067],["Oglethorpe","2021-10-10",15240,6,13073],["Oglethorpe","2021-10-11",15240,27,13100],["Oglethorpe","2021-10-12",15240,24,13124],["Oglethorpe","2021-10-13",15240,20,13144],["Oglethorpe","2021-10-14",15240,34,13178],["Oglethorpe","2021-10-15",15240,22,13200],["Oglethorpe","2021-10-16",15240,7,13207],["Oglethorpe","2021-10-17",15240,4,13211],["Oglethorpe","2021-10-18",15240,18,13229],["Oglethorpe","2021-10-19",15240,22,13251],["Oglethorpe","2021-10-20",15240,24,13275],["Oglethorpe","2021-10-21",15240,32,13307],["Oglethorpe","2021-10-22",15240,40,13347],["Oglethorpe","2021-10-23",15240,19,13366],["Oglethorpe","2021-10-24",15240,5,13371],["Oglethorpe","2021-10-25",15240,38,13409],["Oglethorpe","2021-10-26",15240,48,13457],["Oglethorpe","2021-10-27",15240,63,13520],["Oglethorpe","2021-10-28",15240,64,13584],["Oglethorpe","2021-10-29",15240,52,13636],["Oglethorpe","2021-10-30",15240,14,13650],["Oglethorpe","2021-10-31",15240,10,13660],["Oglethorpe","2021-11-01",15240,86,13746],["Oglethorpe","2021-11-02",15240,44,13790],["Oglethorpe","2021-11-03",15240,64,13854],["Oglethorpe","2021-11-04",15240,109,13963],["Oglethorpe","2021-11-05",15240,42,14005],["Oglethorpe","2021-11-06",15240,8,14013],["Oglethorpe","2021-11-07",15240,7,14020],["Oglethorpe","2021-11-08",15240,40,14060],["Oglethorpe","2021-11-09",15240,33,14093],["Oglethorpe","2021-11-10",15240,52,14145],["Oglethorpe","2021-11-11",15240,58,14203],["Oglethorpe","2021-11-12",15240,47,14250],["Oglethorpe","2021-11-13",15240,19,14269],["Oglethorpe","2021-11-14",15240,5,14274],["Oglethorpe","2021-11-15",15240,28,14302],["Oglethorpe","2021-11-16",15240,39,14341],["Oglethorpe","2021-11-17",15240,57,14398],["Oglethorpe","2021-11-18",15240,74,14472],["Oglethorpe","2021-11-19",15240,42,14514],["Oglethorpe","2021-11-20",15240,14,14528],["Oglethorpe","2021-11-21",15240,8,14536],["Oglethorpe","2021-11-22",15240,60,14596],["Oglethorpe","2021-11-23",15240,26,14622],["Oglethorpe","2021-11-24",15240,16,14638],["Oglethorpe","2021-11-26",15240,15,14653],["Oglethorpe","2021-11-27",15240,9,14662],["Oglethorpe","2021-11-28",15240,5,14667],["Oglethorpe","2021-11-29",15240,64,14731],["Oglethorpe","2021-11-30",15240,41,14772],["Oglethorpe","2021-12-01",15240,67,14839],["Oglethorpe","2021-12-02",15240,86,14925],["Oglethorpe","2021-12-03",15240,52,14977],["Oglethorpe","2021-12-04",15240,28,15005],["Oglethorpe","2021-12-05",15240,6,15011],["Oglethorpe","2021-12-06",15240,41,15052],["Oglethorpe","2021-12-07",15240,39,15091],["Oglethorpe","2021-12-08",15240,39,15130],["Oglethorpe","2021-12-09",15240,47,15177],["Oglethorpe","2021-12-10",15240,51,15228],["Oglethorpe","2021-12-11",15240,11,15239],["Oglethorpe","2021-12-12",15240,6,15245],["Oglethorpe","2021-12-13",15240,28,15273],["Oglethorpe","2021-12-14",15240,36,15309],["Oglethorpe","2021-12-15",15240,35,15344],["Oglethorpe","2021-12-16",15240,30,15374],["Oglethorpe","2021-12-17",15240,26,15400],["Oglethorpe","2021-12-18",15240,22,15422],["Oglethorpe","2021-12-19",15240,5,15427],["Oglethorpe","2021-12-20",15240,37,15464],["Oglethorpe","2021-12-21",15240,47,15511],["Oglethorpe","2021-12-22",15240,56,15567],["Oglethorpe","2021-12-23",15240,19,15586],["Oglethorpe","2021-12-24",15240,8,15594],["Oglethorpe","2021-12-26",15240,6,15600],["Oglethorpe","2021-12-27",15240,47,15647],["Oglethorpe","2021-12-28",15240,42,15689],["Oglethorpe","2021-12-29",15240,49,15738],["Oglethorpe","2021-12-30",15240,31,15769],["Oglethorpe","2021-12-31",15240,12,15781],["Oglethorpe","2022-01-01",15240,4,15785],["Oglethorpe","2022-01-02",15240,1,15786],["Oglethorpe","2022-01-03",15240,13,15799],["Paulding","2020-12-15",172542,1,1],["Paulding","2020-12-17",172542,3,4],["Paulding","2020-12-18",172542,23,27],["Paulding","2020-12-19",172542,10,37],["Paulding","2020-12-20",172542,17,54],["Paulding","2020-12-21",172542,89,143],["Paulding","2020-12-22",172542,214,357],["Paulding","2020-12-23",172542,117,474],["Paulding","2020-12-24",172542,29,503],["Paulding","2020-12-26",172542,19,522],["Paulding","2020-12-27",172542,37,559],["Paulding","2020-12-28",172542,202,761],["Paulding","2020-12-29",172542,137,898],["Paulding","2020-12-30",172542,206,1104],["Paulding","2020-12-31",172542,59,1163],["Paulding","2021-01-01",172542,20,1183],["Paulding","2021-01-02",172542,18,1201],["Paulding","2021-01-03",172542,21,1222],["Paulding","2021-01-04",172542,165,1387],["Paulding","2021-01-05",172542,146,1533],["Paulding","2021-01-06",172542,148,1681],["Paulding","2021-01-07",172542,159,1840],["Paulding","2021-01-08",172542,224,2064],["Paulding","2021-01-09",172542,65,2129],["Paulding","2021-01-10",172542,47,2176],["Paulding","2021-01-11",172542,450,2626],["Paulding","2021-01-12",172542,426,3052],["Paulding","2021-01-13",172542,637,3689],["Paulding","2021-01-14",172542,543,4232],["Paulding","2021-01-15",172542,445,4677],["Paulding","2021-01-16",172542,150,4827],["Paulding","2021-01-17",172542,53,4880],["Paulding","2021-01-18",172542,370,5250],["Paulding","2021-01-19",172542,764,6014],["Paulding","2021-01-20",172542,580,6594],["Paulding","2021-01-21",172542,563,7157],["Paulding","2021-01-22",172542,494,7651],["Paulding","2021-01-23",172542,57,7708],["Paulding","2021-01-24",172542,69,7777],["Paulding","2021-01-25",172542,651,8428],["Paulding","2021-01-26",172542,640,9068],["Paulding","2021-01-27",172542,588,9656],["Paulding","2021-01-28",172542,613,10269],["Paulding","2021-01-29",172542,543,10812],["Paulding","2021-01-30",172542,73,10885],["Paulding","2021-01-31",172542,27,10912],["Paulding","2021-02-01",172542,533,11445],["Paulding","2021-02-02",172542,379,11824],["Paulding","2021-02-03",172542,519,12343],["Paulding","2021-02-04",172542,405,12748],["Paulding","2021-02-05",172542,405,13153],["Paulding","2021-02-06",172542,91,13244],["Paulding","2021-02-07",172542,55,13299],["Paulding","2021-02-08",172542,494,13793],["Paulding","2021-02-09",172542,617,14410],["Paulding","2021-02-10",172542,704,15114],["Paulding","2021-02-11",172542,580,15694],["Paulding","2021-02-12",172542,540,16234],["Paulding","2021-02-13",172542,222,16456],["Paulding","2021-02-14",172542,65,16521],["Paulding","2021-02-15",172542,434,16955],["Paulding","2021-02-16",172542,428,17383],["Paulding","2021-02-17",172542,668,18051],["Paulding","2021-02-18",172542,439,18490],["Paulding","2021-02-19",172542,408,18898],["Paulding","2021-02-20",172542,90,18988],["Paulding","2021-02-21",172542,37,19025],["Paulding","2021-02-22",172542,312,19337],["Paulding","2021-02-23",172542,558,19895],["Paulding","2021-02-24",172542,635,20530],["Paulding","2021-02-25",172542,835,21365],["Paulding","2021-02-26",172542,627,21992],["Paulding","2021-02-27",172542,150,22142],["Paulding","2021-02-28",172542,150,22292],["Paulding","2021-03-01",172542,701,22993],["Paulding","2021-03-02",172542,618,23611],["Paulding","2021-03-03",172542,640,24251],["Paulding","2021-03-04",172542,590,24841],["Paulding","2021-03-05",172542,630,25471],["Paulding","2021-03-06",172542,127,25598],["Paulding","2021-03-07",172542,186,25784],["Paulding","2021-03-08",172542,715,26499],["Paulding","2021-03-09",172542,704,27203],["Paulding","2021-03-10",172542,780,27983],["Paulding","2021-03-11",172542,665,28648],["Paulding","2021-03-12",172542,658,29306],["Paulding","2021-03-13",172542,185,29491],["Paulding","2021-03-14",172542,173,29664],["Paulding","2021-03-15",172542,803,30467],["Paulding","2021-03-16",172542,1043,31510],["Paulding","2021-03-17",172542,825,32335],["Paulding","2021-03-18",172542,746,33081],["Paulding","2021-03-19",172542,948,34029],["Paulding","2021-03-20",172542,296,34325],["Paulding","2021-03-21",172542,200,34525],["Paulding","2021-03-22",172542,714,35239],["Paulding","2021-03-23",172542,748,35987],["Paulding","2021-03-24",172542,977,36964],["Paulding","2021-03-25",172542,881,37845],["Paulding","2021-03-26",172542,860,38705],["Paulding","2021-03-27",172542,310,39015],["Paulding","2021-03-28",172542,299,39314],["Paulding","2021-03-29",172542,958,40272],["Paulding","2021-03-30",172542,1219,41491],["Paulding","2021-03-31",172542,1249,42740],["Paulding","2021-04-01",172542,1165,43905],["Paulding","2021-04-02",172542,911,44816],["Paulding","2021-04-03",172542,278,45094],["Paulding","2021-04-04",172542,334,45428],["Paulding","2021-04-05",172542,1183,46611],["Paulding","2021-04-06",172542,1509,48120],["Paulding","2021-04-07",172542,1221,49341],["Paulding","2021-04-08",172542,1328,50669],["Paulding","2021-04-09",172542,1197,51866],["Paulding","2021-04-10",172542,515,52381],["Paulding","2021-04-11",172542,310,52691],["Paulding","2021-04-12",172542,1170,53861],["Paulding","2021-04-13",172542,1288,55149],["Paulding","2021-04-14",172542,1225,56374],["Paulding","2021-04-15",172542,1240,57614],["Paulding","2021-04-16",172542,1360,58974],["Paulding","2021-04-17",172542,257,59231],["Paulding","2021-04-18",172542,270,59501],["Paulding","2021-04-19",172542,1071,60572],["Paulding","2021-04-20",172542,1103,61675],["Paulding","2021-04-21",172542,1170,62845],["Paulding","2021-04-22",172542,1132,63977],["Paulding","2021-04-23",172542,1148,65125],["Paulding","2021-04-24",172542,418,65543],["Paulding","2021-04-25",172542,163,65706],["Paulding","2021-04-26",172542,967,66673],["Paulding","2021-04-27",172542,978,67651],["Paulding","2021-04-28",172542,1112,68763],["Paulding","2021-04-29",172542,955,69718],["Paulding","2021-04-30",172542,1135,70853],["Paulding","2021-05-01",172542,491,71344],["Paulding","2021-05-02",172542,224,71568],["Paulding","2021-05-03",172542,728,72296],["Paulding","2021-05-04",172542,914,73210],["Paulding","2021-05-05",172542,957,74167],["Paulding","2021-05-06",172542,819,74986],["Paulding","2021-05-07",172542,897,75883],["Paulding","2021-05-08",172542,330,76213],["Paulding","2021-05-09",172542,114,76327],["Paulding","2021-05-10",172542,663,76990],["Paulding","2021-05-11",172542,602,77592],["Paulding","2021-05-12",172542,686,78278],["Paulding","2021-05-13",172542,597,78875],["Paulding","2021-05-14",172542,866,79741],["Paulding","2021-05-15",172542,428,80169],["Paulding","2021-05-16",172542,244,80413],["Paulding","2021-05-17",172542,631,81044],["Paulding","2021-05-18",172542,720,81764],["Paulding","2021-05-19",172542,626,82390],["Paulding","2021-05-20",172542,610,83000],["Paulding","2021-05-21",172542,583,83583],["Paulding","2021-05-22",172542,379,83962],["Paulding","2021-05-23",172542,165,84127],["Paulding","2021-05-24",172542,433,84560],["Paulding","2021-05-25",172542,402,84962],["Paulding","2021-05-26",172542,559,85521],["Paulding","2021-05-27",172542,378,85899],["Paulding","2021-05-28",172542,370,86269],["Paulding","2021-05-29",172542,175,86444],["Paulding","2021-05-30",172542,136,86580],["Paulding","2021-05-31",172542,72,86652],["Paulding","2021-06-01",172542,455,87107],["Paulding","2021-06-02",172542,339,87446],["Paulding","2021-06-03",172542,444,87890],["Paulding","2021-06-04",172542,468,88358],["Paulding","2021-06-05",172542,327,88685],["Paulding","2021-06-06",172542,200,88885],["Paulding","2021-06-07",172542,384,89269],["Paulding","2021-06-08",172542,331,89600],["Paulding","2021-06-09",172542,340,89940],["Paulding","2021-06-10",172542,355,90295],["Paulding","2021-06-11",172542,414,90709],["Paulding","2021-06-12",172542,292,91001],["Paulding","2021-06-13",172542,111,91112],["Paulding","2021-06-14",172542,274,91386],["Paulding","2021-06-15",172542,307,91693],["Paulding","2021-06-16",172542,303,91996],["Paulding","2021-06-17",172542,297,92293],["Paulding","2021-06-18",172542,267,92560],["Paulding","2021-06-19",172542,193,92753],["Paulding","2021-06-20",172542,110,92863],["Paulding","2021-06-21",172542,197,93060],["Paulding","2021-06-22",172542,259,93319],["Paulding","2021-06-23",172542,269,93588],["Paulding","2021-06-24",172542,218,93806],["Paulding","2021-06-25",172542,265,94071],["Paulding","2021-06-26",172542,167,94238],["Paulding","2021-06-27",172542,105,94343],["Paulding","2021-06-28",172542,157,94500],["Paulding","2021-06-29",172542,209,94709],["Paulding","2021-06-30",172542,151,94860],["Paulding","2021-07-01",172542,220,95080],["Paulding","2021-07-02",172542,224,95304],["Paulding","2021-07-03",172542,150,95454],["Paulding","2021-07-04",172542,13,95467],["Paulding","2021-07-05",172542,156,95623],["Paulding","2021-07-06",172542,197,95820],["Paulding","2021-07-07",172542,191,96011],["Paulding","2021-07-08",172542,165,96176],["Paulding","2021-07-09",172542,211,96387],["Paulding","2021-07-10",172542,164,96551],["Paulding","2021-07-11",172542,94,96645],["Paulding","2021-07-12",172542,153,96798],["Paulding","2021-07-13",172542,199,96997],["Paulding","2021-07-14",172542,182,97179],["Paulding","2021-07-15",172542,184,97363],["Paulding","2021-07-16",172542,209,97572],["Paulding","2021-07-17",172542,170,97742],["Paulding","2021-07-18",172542,100,97842],["Paulding","2021-07-19",172542,223,98065],["Paulding","2021-07-20",172542,220,98285],["Paulding","2021-07-21",172542,232,98517],["Paulding","2021-07-22",172542,260,98777],["Paulding","2021-07-23",172542,311,99088],["Paulding","2021-07-24",172542,241,99329],["Paulding","2021-07-25",172542,139,99468],["Paulding","2021-07-26",172542,257,99725],["Paulding","2021-07-27",172542,299,100024],["Paulding","2021-07-28",172542,265,100289],["Paulding","2021-07-29",172542,288,100577],["Paulding","2021-07-30",172542,344,100921],["Paulding","2021-07-31",172542,274,101195],["Paulding","2021-08-01",172542,177,101372],["Paulding","2021-08-02",172542,295,101667],["Paulding","2021-08-03",172542,284,101951],["Paulding","2021-08-04",172542,306,102257],["Paulding","2021-08-05",172542,339,102596],["Paulding","2021-08-06",172542,436,103032],["Paulding","2021-08-07",172542,269,103301],["Paulding","2021-08-08",172542,219,103520],["Paulding","2021-08-09",172542,364,103884],["Paulding","2021-08-10",172542,380,104264],["Paulding","2021-08-11",172542,336,104600],["Paulding","2021-08-12",172542,377,104977],["Paulding","2021-08-13",172542,405,105382],["Paulding","2021-08-14",172542,329,105711],["Paulding","2021-08-15",172542,228,105939],["Paulding","2021-08-16",172542,367,106306],["Paulding","2021-08-17",172542,321,106627],["Paulding","2021-08-18",172542,358,106985],["Paulding","2021-08-19",172542,411,107396],["Paulding","2021-08-20",172542,495,107891],["Paulding","2021-08-21",172542,346,108237],["Paulding","2021-08-22",172542,198,108435],["Paulding","2021-08-23",172542,373,108808],["Paulding","2021-08-24",172542,387,109195],["Paulding","2021-08-25",172542,409,109604],["Paulding","2021-08-26",172542,400,110004],["Paulding","2021-08-27",172542,500,110504],["Paulding","2021-08-28",172542,362,110866],["Paulding","2021-08-29",172542,230,111096],["Paulding","2021-08-30",172542,453,111549],["Paulding","2021-08-31",172542,394,111943],["Paulding","2021-09-01",172542,403,112346],["Paulding","2021-09-02",172542,420,112766],["Paulding","2021-09-03",172542,528,113294],["Paulding","2021-09-04",172542,274,113568],["Paulding","2021-09-05",172542,228,113796],["Paulding","2021-09-06",172542,75,113871],["Paulding","2021-09-07",172542,366,114237],["Paulding","2021-09-08",172542,355,114592],["Paulding","2021-09-09",172542,354,114946],["Paulding","2021-09-10",172542,475,115421],["Paulding","2021-09-11",172542,303,115724],["Paulding","2021-09-12",172542,171,115895],["Paulding","2021-09-13",172542,341,116236],["Paulding","2021-09-14",172542,310,116546],["Paulding","2021-09-15",172542,296,116842],["Paulding","2021-09-16",172542,287,117129],["Paulding","2021-09-17",172542,352,117481],["Paulding","2021-09-18",172542,228,117709],["Paulding","2021-09-19",172542,137,117846],["Paulding","2021-09-20",172542,254,118100],["Paulding","2021-09-21",172542,258,118358],["Paulding","2021-09-22",172542,231,118589],["Paulding","2021-09-23",172542,249,118838],["Paulding","2021-09-24",172542,301,119139],["Paulding","2021-09-25",172542,190,119329],["Paulding","2021-09-26",172542,170,119499],["Paulding","2021-09-27",172542,267,119766],["Paulding","2021-09-28",172542,291,120057],["Paulding","2021-09-29",172542,326,120383],["Paulding","2021-09-30",172542,299,120682],["Paulding","2021-10-01",172542,340,121022],["Paulding","2021-10-02",172542,179,121201],["Paulding","2021-10-03",172542,114,121315],["Paulding","2021-10-04",172542,251,121566],["Paulding","2021-10-05",172542,278,121844],["Paulding","2021-10-06",172542,248,122092],["Paulding","2021-10-07",172542,240,122332],["Paulding","2021-10-08",172542,280,122612],["Paulding","2021-10-09",172542,173,122785],["Paulding","2021-10-10",172542,101,122886],["Paulding","2021-10-11",172542,187,123073],["Paulding","2021-10-12",172542,194,123267],["Paulding","2021-10-13",172542,157,123424],["Paulding","2021-10-14",172542,224,123648],["Paulding","2021-10-15",172542,234,123882],["Paulding","2021-10-16",172542,160,124042],["Paulding","2021-10-17",172542,81,124123],["Paulding","2021-10-18",172542,182,124305],["Paulding","2021-10-19",172542,215,124520],["Paulding","2021-10-20",172542,168,124688],["Paulding","2021-10-21",172542,165,124853],["Paulding","2021-10-22",172542,297,125150],["Paulding","2021-10-23",172542,220,125370],["Paulding","2021-10-24",172542,157,125527],["Paulding","2021-10-25",172542,408,125935],["Paulding","2021-10-26",172542,420,126355],["Paulding","2021-10-27",172542,410,126765],["Paulding","2021-10-28",172542,376,127141],["Paulding","2021-10-29",172542,427,127568],["Paulding","2021-10-30",172542,198,127766],["Paulding","2021-10-31",172542,144,127910],["Paulding","2021-11-01",172542,325,128235],["Paulding","2021-11-02",172542,354,128589],["Paulding","2021-11-03",172542,320,128909],["Paulding","2021-11-04",172542,290,129199],["Paulding","2021-11-05",172542,418,129617],["Paulding","2021-11-06",172542,234,129851],["Paulding","2021-11-07",172542,152,130003],["Paulding","2021-11-08",172542,281,130284],["Paulding","2021-11-09",172542,323,130607],["Paulding","2021-11-10",172542,296,130903],["Paulding","2021-11-11",172542,254,131157],["Paulding","2021-11-12",172542,375,131532],["Paulding","2021-11-13",172542,251,131783],["Paulding","2021-11-14",172542,135,131918],["Paulding","2021-11-15",172542,302,132220],["Paulding","2021-11-16",172542,313,132533],["Paulding","2021-11-17",172542,343,132876],["Paulding","2021-11-18",172542,327,133203],["Paulding","2021-11-19",172542,416,133619],["Paulding","2021-11-20",172542,322,133941],["Paulding","2021-11-21",172542,146,134087],["Paulding","2021-11-22",172542,429,134516],["Paulding","2021-11-23",172542,372,134888],["Paulding","2021-11-24",172542,240,135128],["Paulding","2021-11-25",172542,5,135133],["Paulding","2021-11-26",172542,319,135452],["Paulding","2021-11-27",172542,243,135695],["Paulding","2021-11-28",172542,181,135876],["Paulding","2021-11-29",172542,436,136312],["Paulding","2021-11-30",172542,497,136809],["Paulding","2021-12-01",172542,464,137273],["Paulding","2021-12-02",172542,460,137733],["Paulding","2021-12-03",172542,591,138324],["Paulding","2021-12-04",172542,407,138731],["Paulding","2021-12-05",172542,209,138940],["Paulding","2021-12-06",172542,402,139342],["Paulding","2021-12-07",172542,360,139702],["Paulding","2021-12-08",172542,373,140075],["Paulding","2021-12-09",172542,356,140431],["Paulding","2021-12-10",172542,464,140895],["Paulding","2021-12-11",172542,356,141251],["Paulding","2021-12-12",172542,169,141420],["Paulding","2021-12-13",172542,291,141711],["Paulding","2021-12-14",172542,316,142027],["Paulding","2021-12-15",172542,329,142356],["Paulding","2021-12-16",172542,337,142693],["Paulding","2021-12-17",172542,399,143092],["Paulding","2021-12-18",172542,283,143375],["Paulding","2021-12-19",172542,176,143551],["Paulding","2021-12-20",172542,393,143944],["Paulding","2021-12-21",172542,457,144401],["Paulding","2021-12-22",172542,434,144835],["Paulding","2021-12-23",172542,359,145194],["Paulding","2021-12-24",172542,172,145366],["Paulding","2021-12-25",172542,1,145367],["Paulding","2021-12-26",172542,158,145525],["Paulding","2021-12-27",172542,385,145910],["Paulding","2021-12-28",172542,448,146358],["Paulding","2021-12-29",172542,439,146797],["Paulding","2021-12-30",172542,305,147102],["Paulding","2021-12-31",172542,194,147296],["Paulding","2022-01-01",172542,37,147333],["Paulding","2022-01-02",172542,114,147447],["Paulding","2022-01-03",172542,94,147541],["Peach","2020-12-18",27375,1,1],["Peach","2020-12-19",27375,1,2],["Peach","2020-12-21",27375,2,4],["Peach","2020-12-22",27375,9,13],["Peach","2020-12-23",27375,26,39],["Peach","2020-12-24",27375,27,66],["Peach","2020-12-26",27375,10,76],["Peach","2020-12-27",27375,3,79],["Peach","2020-12-28",27375,37,116],["Peach","2020-12-29",27375,29,145],["Peach","2020-12-30",27375,26,171],["Peach","2020-12-31",27375,12,183],["Peach","2021-01-01",27375,5,188],["Peach","2021-01-02",27375,6,194],["Peach","2021-01-03",27375,5,199],["Peach","2021-01-04",27375,17,216],["Peach","2021-01-05",27375,70,286],["Peach","2021-01-06",27375,29,315],["Peach","2021-01-07",27375,36,351],["Peach","2021-01-08",27375,22,373],["Peach","2021-01-09",27375,8,381],["Peach","2021-01-10",27375,2,383],["Peach","2021-01-11",27375,64,447],["Peach","2021-01-12",27375,100,547],["Peach","2021-01-13",27375,67,614],["Peach","2021-01-14",27375,98,712],["Peach","2021-01-15",27375,97,809],["Peach","2021-01-16",27375,35,844],["Peach","2021-01-17",27375,22,866],["Peach","2021-01-18",27375,139,1005],["Peach","2021-01-19",27375,66,1071],["Peach","2021-01-20",27375,121,1192],["Peach","2021-01-21",27375,75,1267],["Peach","2021-01-22",27375,152,1419],["Peach","2021-01-23",27375,26,1445],["Peach","2021-01-24",27375,12,1457],["Peach","2021-01-25",27375,106,1563],["Peach","2021-01-26",27375,158,1721],["Peach","2021-01-27",27375,122,1843],["Peach","2021-01-28",27375,110,1953],["Peach","2021-01-29",27375,125,2078],["Peach","2021-01-30",27375,13,2091],["Peach","2021-01-31",27375,2,2093],["Peach","2021-02-01",27375,80,2173],["Peach","2021-02-02",27375,32,2205],["Peach","2021-02-03",27375,122,2327],["Peach","2021-02-04",27375,78,2405],["Peach","2021-02-05",27375,122,2527],["Peach","2021-02-06",27375,19,2546],["Peach","2021-02-07",27375,7,2553],["Peach","2021-02-08",27375,157,2710],["Peach","2021-02-09",27375,104,2814],["Peach","2021-02-10",27375,121,2935],["Peach","2021-02-11",27375,115,3050],["Peach","2021-02-12",27375,185,3235],["Peach","2021-02-13",27375,42,3277],["Peach","2021-02-14",27375,12,3289],["Peach","2021-02-15",27375,187,3476],["Peach","2021-02-16",27375,105,3581],["Peach","2021-02-17",27375,140,3721],["Peach","2021-02-18",27375,85,3806],["Peach","2021-02-19",27375,188,3994],["Peach","2021-02-20",27375,16,4010],["Peach","2021-02-21",27375,1,4011],["Peach","2021-02-22",27375,87,4098],["Peach","2021-02-23",27375,116,4214],["Peach","2021-02-24",27375,110,4324],["Peach","2021-02-25",27375,132,4456],["Peach","2021-02-26",27375,186,4642],["Peach","2021-02-27",27375,13,4655],["Peach","2021-02-28",27375,20,4675],["Peach","2021-03-01",27375,238,4913],["Peach","2021-03-02",27375,103,5016],["Peach","2021-03-03",27375,208,5224],["Peach","2021-03-04",27375,168,5392],["Peach","2021-03-05",27375,203,5595],["Peach","2021-03-06",27375,55,5650],["Peach","2021-03-07",27375,11,5661],["Peach","2021-03-08",27375,264,5925],["Peach","2021-03-09",27375,170,6095],["Peach","2021-03-10",27375,221,6316],["Peach","2021-03-11",27375,139,6455],["Peach","2021-03-12",27375,283,6738],["Peach","2021-03-13",27375,50,6788],["Peach","2021-03-14",27375,14,6802],["Peach","2021-03-15",27375,273,7075],["Peach","2021-03-16",27375,167,7242],["Peach","2021-03-17",27375,191,7433],["Peach","2021-03-18",27375,167,7600],["Peach","2021-03-19",27375,351,7951],["Peach","2021-03-20",27375,38,7989],["Peach","2021-03-21",27375,23,8012],["Peach","2021-03-22",27375,178,8190],["Peach","2021-03-23",27375,129,8319],["Peach","2021-03-24",27375,148,8467],["Peach","2021-03-25",27375,198,8665],["Peach","2021-03-26",27375,229,8894],["Peach","2021-03-27",27375,25,8919],["Peach","2021-03-28",27375,28,8947],["Peach","2021-03-29",27375,298,9245],["Peach","2021-03-30",27375,240,9485],["Peach","2021-03-31",27375,279,9764],["Peach","2021-04-01",27375,253,10017],["Peach","2021-04-02",27375,177,10194],["Peach","2021-04-03",27375,97,10291],["Peach","2021-04-04",27375,25,10316],["Peach","2021-04-05",27375,388,10704],["Peach","2021-04-06",27375,260,10964],["Peach","2021-04-07",27375,267,11231],["Peach","2021-04-08",27375,267,11498],["Peach","2021-04-09",27375,390,11888],["Peach","2021-04-10",27375,59,11947],["Peach","2021-04-11",27375,37,11984],["Peach","2021-04-12",27375,349,12333],["Peach","2021-04-13",27375,296,12629],["Peach","2021-04-14",27375,146,12775],["Peach","2021-04-15",27375,169,12944],["Peach","2021-04-16",27375,321,13265],["Peach","2021-04-17",27375,39,13304],["Peach","2021-04-18",27375,25,13329],["Peach","2021-04-19",27375,193,13522],["Peach","2021-04-20",27375,251,13773],["Peach","2021-04-21",27375,116,13889],["Peach","2021-04-22",27375,161,14050],["Peach","2021-04-23",27375,247,14297],["Peach","2021-04-24",27375,41,14338],["Peach","2021-04-25",27375,22,14360],["Peach","2021-04-26",27375,177,14537],["Peach","2021-04-27",27375,178,14715],["Peach","2021-04-28",27375,173,14888],["Peach","2021-04-29",27375,124,15012],["Peach","2021-04-30",27375,178,15190],["Peach","2021-05-01",27375,62,15252],["Peach","2021-05-02",27375,29,15281],["Peach","2021-05-03",27375,121,15402],["Peach","2021-05-04",27375,94,15496],["Peach","2021-05-05",27375,157,15653],["Peach","2021-05-06",27375,97,15750],["Peach","2021-05-07",27375,214,15964],["Peach","2021-05-08",27375,24,15988],["Peach","2021-05-09",27375,16,16004],["Peach","2021-05-10",27375,76,16080],["Peach","2021-05-11",27375,247,16327],["Peach","2021-05-12",27375,70,16397],["Peach","2021-05-13",27375,87,16484],["Peach","2021-05-14",27375,342,16826],["Peach","2021-05-15",27375,56,16882],["Peach","2021-05-16",27375,29,16911],["Peach","2021-05-17",27375,91,17002],["Peach","2021-05-18",27375,96,17098],["Peach","2021-05-19",27375,91,17189],["Peach","2021-05-20",27375,69,17258],["Peach","2021-05-21",27375,104,17362],["Peach","2021-05-22",27375,49,17411],["Peach","2021-05-23",27375,22,17433],["Peach","2021-05-24",27375,52,17485],["Peach","2021-05-25",27375,46,17531],["Peach","2021-05-26",27375,67,17598],["Peach","2021-05-27",27375,46,17644],["Peach","2021-05-28",27375,66,17710],["Peach","2021-05-29",27375,36,17746],["Peach","2021-05-30",27375,11,17757],["Peach","2021-05-31",27375,7,17764],["Peach","2021-06-01",27375,62,17826],["Peach","2021-06-02",27375,62,17888],["Peach","2021-06-03",27375,62,17950],["Peach","2021-06-04",27375,67,18017],["Peach","2021-06-05",27375,46,18063],["Peach","2021-06-06",27375,17,18080],["Peach","2021-06-07",27375,59,18139],["Peach","2021-06-08",27375,42,18181],["Peach","2021-06-09",27375,49,18230],["Peach","2021-06-10",27375,51,18281],["Peach","2021-06-11",27375,82,18363],["Peach","2021-06-12",27375,41,18404],["Peach","2021-06-13",27375,12,18416],["Peach","2021-06-14",27375,45,18461],["Peach","2021-06-15",27375,43,18504],["Peach","2021-06-16",27375,51,18555],["Peach","2021-06-17",27375,31,18586],["Peach","2021-06-18",27375,60,18646],["Peach","2021-06-19",27375,29,18675],["Peach","2021-06-20",27375,4,18679],["Peach","2021-06-21",27375,36,18715],["Peach","2021-06-22",27375,20,18735],["Peach","2021-06-23",27375,33,18768],["Peach","2021-06-24",27375,19,18787],["Peach","2021-06-25",27375,33,18820],["Peach","2021-06-26",27375,20,18840],["Peach","2021-06-27",27375,12,18852],["Peach","2021-06-28",27375,31,18883],["Peach","2021-06-29",27375,38,18921],["Peach","2021-06-30",27375,29,18950],["Peach","2021-07-01",27375,29,18979],["Peach","2021-07-02",27375,37,19016],["Peach","2021-07-03",27375,16,19032],["Peach","2021-07-04",27375,1,19033],["Peach","2021-07-05",27375,18,19051],["Peach","2021-07-06",27375,33,19084],["Peach","2021-07-07",27375,33,19117],["Peach","2021-07-08",27375,20,19137],["Peach","2021-07-09",27375,36,19173],["Peach","2021-07-10",27375,27,19200],["Peach","2021-07-11",27375,2,19202],["Peach","2021-07-12",27375,14,19216],["Peach","2021-07-13",27375,34,19250],["Peach","2021-07-14",27375,27,19277],["Peach","2021-07-15",27375,31,19308],["Peach","2021-07-16",27375,46,19354],["Peach","2021-07-17",27375,28,19382],["Peach","2021-07-18",27375,11,19393],["Peach","2021-07-19",27375,34,19427],["Peach","2021-07-20",27375,34,19461],["Peach","2021-07-21",27375,51,19512],["Peach","2021-07-22",27375,43,19555],["Peach","2021-07-23",27375,60,19615],["Peach","2021-07-24",27375,54,19669],["Peach","2021-07-25",27375,23,19692],["Peach","2021-07-26",27375,66,19758],["Peach","2021-07-27",27375,58,19816],["Peach","2021-07-28",27375,71,19887],["Peach","2021-07-29",27375,58,19945],["Peach","2021-07-30",27375,75,20020],["Peach","2021-07-31",27375,36,20056],["Peach","2021-08-01",27375,17,20073],["Peach","2021-08-02",27375,50,20123],["Peach","2021-08-03",27375,59,20182],["Peach","2021-08-04",27375,50,20232],["Peach","2021-08-05",27375,51,20283],["Peach","2021-08-06",27375,114,20397],["Peach","2021-08-07",27375,49,20446],["Peach","2021-08-08",27375,31,20477],["Peach","2021-08-09",27375,57,20534],["Peach","2021-08-10",27375,108,20642],["Peach","2021-08-11",27375,69,20711],["Peach","2021-08-12",27375,75,20786],["Peach","2021-08-13",27375,129,20915],["Peach","2021-08-14",27375,58,20973],["Peach","2021-08-15",27375,32,21005],["Peach","2021-08-16",27375,85,21090],["Peach","2021-08-17",27375,60,21150],["Peach","2021-08-18",27375,92,21242],["Peach","2021-08-19",27375,94,21336],["Peach","2021-08-20",27375,107,21443],["Peach","2021-08-21",27375,57,21500],["Peach","2021-08-22",27375,35,21535],["Peach","2021-08-23",27375,92,21627],["Peach","2021-08-24",27375,72,21699],["Peach","2021-08-25",27375,81,21780],["Peach","2021-08-26",27375,94,21874],["Peach","2021-08-27",27375,105,21979],["Peach","2021-08-28",27375,66,22045],["Peach","2021-08-29",27375,39,22084],["Peach","2021-08-30",27375,67,22151],["Peach","2021-08-31",27375,94,22245],["Peach","2021-09-01",27375,71,22316],["Peach","2021-09-02",27375,69,22385],["Peach","2021-09-03",27375,163,22548],["Peach","2021-09-04",27375,52,22600],["Peach","2021-09-05",27375,48,22648],["Peach","2021-09-06",27375,11,22659],["Peach","2021-09-07",27375,90,22749],["Peach","2021-09-08",27375,65,22814],["Peach","2021-09-09",27375,58,22872],["Peach","2021-09-10",27375,135,23007],["Peach","2021-09-11",27375,48,23055],["Peach","2021-09-12",27375,34,23089],["Peach","2021-09-13",27375,63,23152],["Peach","2021-09-14",27375,66,23218],["Peach","2021-09-15",27375,64,23282],["Peach","2021-09-16",27375,64,23346],["Peach","2021-09-17",27375,91,23437],["Peach","2021-09-18",27375,41,23478],["Peach","2021-09-19",27375,32,23510],["Peach","2021-09-20",27375,58,23568],["Peach","2021-09-21",27375,43,23611],["Peach","2021-09-22",27375,46,23657],["Peach","2021-09-23",27375,54,23711],["Peach","2021-09-24",27375,70,23781],["Peach","2021-09-25",27375,29,23810],["Peach","2021-09-26",27375,28,23838],["Peach","2021-09-27",27375,45,23883],["Peach","2021-09-28",27375,70,23953],["Peach","2021-09-29",27375,64,24017],["Peach","2021-09-30",27375,45,24062],["Peach","2021-10-01",27375,100,24162],["Peach","2021-10-02",27375,21,24183],["Peach","2021-10-03",27375,16,24199],["Peach","2021-10-04",27375,32,24231],["Peach","2021-10-05",27375,57,24288],["Peach","2021-10-06",27375,40,24328],["Peach","2021-10-07",27375,46,24374],["Peach","2021-10-08",27375,58,24432],["Peach","2021-10-09",27375,19,24451],["Peach","2021-10-10",27375,10,24461],["Peach","2021-10-11",27375,50,24511],["Peach","2021-10-12",27375,43,24554],["Peach","2021-10-13",27375,40,24594],["Peach","2021-10-14",27375,45,24639],["Peach","2021-10-15",27375,60,24699],["Peach","2021-10-16",27375,18,24717],["Peach","2021-10-17",27375,13,24730],["Peach","2021-10-18",27375,47,24777],["Peach","2021-10-19",27375,39,24816],["Peach","2021-10-20",27375,43,24859],["Peach","2021-10-21",27375,32,24891],["Peach","2021-10-22",27375,49,24940],["Peach","2021-10-23",27375,25,24965],["Peach","2021-10-24",27375,30,24995],["Peach","2021-10-25",27375,192,25187],["Peach","2021-10-26",27375,257,25444],["Peach","2021-10-27",27375,146,25590],["Peach","2021-10-28",27375,99,25689],["Peach","2021-10-29",27375,187,25876],["Peach","2021-10-30",27375,24,25900],["Peach","2021-10-31",27375,9,25909],["Peach","2021-11-01",27375,88,25997],["Peach","2021-11-02",27375,89,26086],["Peach","2021-11-03",27375,71,26157],["Peach","2021-11-04",27375,75,26232],["Peach","2021-11-05",27375,112,26344],["Peach","2021-11-06",27375,39,26383],["Peach","2021-11-07",27375,16,26399],["Peach","2021-11-08",27375,97,26496],["Peach","2021-11-09",27375,82,26578],["Peach","2021-11-10",27375,66,26644],["Peach","2021-11-11",27375,56,26700],["Peach","2021-11-12",27375,152,26852],["Peach","2021-11-13",27375,36,26888],["Peach","2021-11-14",27375,18,26906],["Peach","2021-11-15",27375,62,26968],["Peach","2021-11-16",27375,70,27038],["Peach","2021-11-17",27375,79,27117],["Peach","2021-11-18",27375,65,27182],["Peach","2021-11-19",27375,127,27309],["Peach","2021-11-20",27375,35,27344],["Peach","2021-11-21",27375,24,27368],["Peach","2021-11-22",27375,65,27433],["Peach","2021-11-23",27375,65,27498],["Peach","2021-11-24",27375,36,27534],["Peach","2021-11-26",27375,49,27583],["Peach","2021-11-27",27375,16,27599],["Peach","2021-11-28",27375,11,27610],["Peach","2021-11-29",27375,83,27693],["Peach","2021-11-30",27375,80,27773],["Peach","2021-12-01",27375,103,27876],["Peach","2021-12-02",27375,93,27969],["Peach","2021-12-03",27375,171,28140],["Peach","2021-12-04",27375,53,28193],["Peach","2021-12-05",27375,21,28214],["Peach","2021-12-06",27375,81,28295],["Peach","2021-12-07",27375,74,28369],["Peach","2021-12-08",27375,69,28438],["Peach","2021-12-09",27375,92,28530],["Peach","2021-12-10",27375,121,28651],["Peach","2021-12-11",27375,21,28672],["Peach","2021-12-12",27375,11,28683],["Peach","2021-12-13",27375,44,28727],["Peach","2021-12-14",27375,69,28796],["Peach","2021-12-15",27375,59,28855],["Peach","2021-12-16",27375,25,28880],["Peach","2021-12-17",27375,115,28995],["Peach","2021-12-18",27375,30,29025],["Peach","2021-12-19",27375,20,29045],["Peach","2021-12-20",27375,82,29127],["Peach","2021-12-21",27375,74,29201],["Peach","2021-12-22",27375,83,29284],["Peach","2021-12-23",27375,51,29335],["Peach","2021-12-24",27375,10,29345],["Peach","2021-12-25",27375,2,29347],["Peach","2021-12-26",27375,23,29370],["Peach","2021-12-27",27375,76,29446],["Peach","2021-12-28",27375,84,29530],["Peach","2021-12-29",27375,87,29617],["Peach","2021-12-30",27375,58,29675],["Peach","2021-12-31",27375,37,29712],["Peach","2022-01-01",27375,3,29715],["Peach","2022-01-02",27375,11,29726],["Peach","2022-01-03",27375,22,29748],["Pickens","2020-12-17",33530,1,1],["Pickens","2020-12-18",33530,6,7],["Pickens","2020-12-19",33530,2,9],["Pickens","2020-12-20",33530,3,12],["Pickens","2020-12-21",33530,9,21],["Pickens","2020-12-22",33530,17,38],["Pickens","2020-12-23",33530,49,87],["Pickens","2020-12-24",33530,8,95],["Pickens","2020-12-26",33530,3,98],["Pickens","2020-12-27",33530,4,102],["Pickens","2020-12-28",33530,41,143],["Pickens","2020-12-29",33530,88,231],["Pickens","2020-12-30",33530,49,280],["Pickens","2020-12-31",33530,26,306],["Pickens","2021-01-01",33530,17,323],["Pickens","2021-01-02",33530,4,327],["Pickens","2021-01-03",33530,5,332],["Pickens","2021-01-04",33530,57,389],["Pickens","2021-01-05",33530,59,448],["Pickens","2021-01-06",33530,71,519],["Pickens","2021-01-07",33530,43,562],["Pickens","2021-01-08",33530,47,609],["Pickens","2021-01-09",33530,4,613],["Pickens","2021-01-10",33530,8,621],["Pickens","2021-01-11",33530,166,787],["Pickens","2021-01-12",33530,259,1046],["Pickens","2021-01-13",33530,283,1329],["Pickens","2021-01-14",33530,279,1608],["Pickens","2021-01-15",33530,283,1891],["Pickens","2021-01-16",33530,127,2018],["Pickens","2021-01-17",33530,30,2048],["Pickens","2021-01-18",33530,236,2284],["Pickens","2021-01-19",33530,325,2609],["Pickens","2021-01-20",33530,280,2889],["Pickens","2021-01-21",33530,231,3120],["Pickens","2021-01-22",33530,168,3288],["Pickens","2021-01-23",33530,47,3335],["Pickens","2021-01-24",33530,7,3342],["Pickens","2021-01-25",33530,219,3561],["Pickens","2021-01-26",33530,165,3726],["Pickens","2021-01-27",33530,225,3951],["Pickens","2021-01-28",33530,139,4090],["Pickens","2021-01-29",33530,123,4213],["Pickens","2021-01-30",33530,37,4250],["Pickens","2021-01-31",33530,9,4259],["Pickens","2021-02-01",33530,119,4378],["Pickens","2021-02-02",33530,196,4574],["Pickens","2021-02-03",33530,197,4771],["Pickens","2021-02-04",33530,157,4928],["Pickens","2021-02-05",33530,150,5078],["Pickens","2021-02-06",33530,32,5110],["Pickens","2021-02-07",33530,10,5120],["Pickens","2021-02-08",33530,206,5326],["Pickens","2021-02-09",33530,341,5667],["Pickens","2021-02-10",33530,303,5970],["Pickens","2021-02-11",33530,322,6292],["Pickens","2021-02-12",33530,300,6592],["Pickens","2021-02-13",33530,119,6711],["Pickens","2021-02-14",33530,33,6744],["Pickens","2021-02-15",33530,233,6977],["Pickens","2021-02-16",33530,359,7336],["Pickens","2021-02-17",33530,258,7594],["Pickens","2021-02-18",33530,263,7857],["Pickens","2021-02-19",33530,159,8016],["Pickens","2021-02-20",33530,44,8060],["Pickens","2021-02-21",33530,14,8074],["Pickens","2021-02-22",33530,122,8196],["Pickens","2021-02-23",33530,171,8367],["Pickens","2021-02-24",33530,263,8630],["Pickens","2021-02-25",33530,366,8996],["Pickens","2021-02-26",33530,219,9215],["Pickens","2021-02-27",33530,52,9267],["Pickens","2021-02-28",33530,47,9314],["Pickens","2021-03-01",33530,227,9541],["Pickens","2021-03-02",33530,282,9823],["Pickens","2021-03-03",33530,359,10182],["Pickens","2021-03-04",33530,235,10417],["Pickens","2021-03-05",33530,252,10669],["Pickens","2021-03-06",33530,25,10694],["Pickens","2021-03-07",33530,21,10715],["Pickens","2021-03-08",33530,233,10948],["Pickens","2021-03-09",33530,253,11201],["Pickens","2021-03-10",33530,200,11401],["Pickens","2021-03-11",33530,215,11616],["Pickens","2021-03-12",33530,202,11818],["Pickens","2021-03-13",33530,33,11851],["Pickens","2021-03-14",33530,50,11901],["Pickens","2021-03-15",33530,340,12241],["Pickens","2021-03-16",33530,272,12513],["Pickens","2021-03-17",33530,197,12710],["Pickens","2021-03-18",33530,152,12862],["Pickens","2021-03-19",33530,177,13039],["Pickens","2021-03-20",33530,20,13059],["Pickens","2021-03-21",33530,29,13088],["Pickens","2021-03-22",33530,108,13196],["Pickens","2021-03-23",33530,233,13429],["Pickens","2021-03-24",33530,241,13670],["Pickens","2021-03-25",33530,228,13898],["Pickens","2021-03-26",33530,204,14102],["Pickens","2021-03-27",33530,60,14162],["Pickens","2021-03-28",33530,72,14234],["Pickens","2021-03-29",33530,233,14467],["Pickens","2021-03-30",33530,330,14797],["Pickens","2021-03-31",33530,298,15095],["Pickens","2021-04-01",33530,246,15341],["Pickens","2021-04-02",33530,149,15490],["Pickens","2021-04-03",33530,32,15522],["Pickens","2021-04-04",33530,33,15555],["Pickens","2021-04-05",33530,231,15786],["Pickens","2021-04-06",33530,332,16118],["Pickens","2021-04-07",33530,248,16366],["Pickens","2021-04-08",33530,248,16614],["Pickens","2021-04-09",33530,293,16907],["Pickens","2021-04-10",33530,108,17015],["Pickens","2021-04-11",33530,55,17070],["Pickens","2021-04-12",33530,358,17428],["Pickens","2021-04-13",33530,190,17618],["Pickens","2021-04-14",33530,143,17761],["Pickens","2021-04-15",33530,172,17933],["Pickens","2021-04-16",33530,179,18112],["Pickens","2021-04-17",33530,17,18129],["Pickens","2021-04-18",33530,28,18157],["Pickens","2021-04-19",33530,176,18333],["Pickens","2021-04-20",33530,216,18549],["Pickens","2021-04-21",33530,231,18780],["Pickens","2021-04-22",33530,183,18963],["Pickens","2021-04-23",33530,170,19133],["Pickens","2021-04-24",33530,49,19182],["Pickens","2021-04-25",33530,28,19210],["Pickens","2021-04-26",33530,155,19365],["Pickens","2021-04-27",33530,136,19501],["Pickens","2021-04-28",33530,186,19687],["Pickens","2021-04-29",33530,143,19830],["Pickens","2021-04-30",33530,142,19972],["Pickens","2021-05-01",33530,33,20005],["Pickens","2021-05-02",33530,19,20024],["Pickens","2021-05-03",33530,139,20163],["Pickens","2021-05-04",33530,143,20306],["Pickens","2021-05-05",33530,133,20439],["Pickens","2021-05-06",33530,81,20520],["Pickens","2021-05-07",33530,154,20674],["Pickens","2021-05-08",33530,32,20706],["Pickens","2021-05-09",33530,18,20724],["Pickens","2021-05-10",33530,71,20795],["Pickens","2021-05-11",33530,87,20882],["Pickens","2021-05-12",33530,77,20959],["Pickens","2021-05-13",33530,94,21053],["Pickens","2021-05-14",33530,131,21184],["Pickens","2021-05-15",33530,34,21218],["Pickens","2021-05-16",33530,23,21241],["Pickens","2021-05-17",33530,91,21332],["Pickens","2021-05-18",33530,72,21404],["Pickens","2021-05-19",33530,83,21487],["Pickens","2021-05-20",33530,76,21563],["Pickens","2021-05-21",33530,92,21655],["Pickens","2021-05-22",33530,28,21683],["Pickens","2021-05-23",33530,25,21708],["Pickens","2021-05-24",33530,63,21771],["Pickens","2021-05-25",33530,51,21822],["Pickens","2021-05-26",33530,99,21921],["Pickens","2021-05-27",33530,46,21967],["Pickens","2021-05-28",33530,56,22023],["Pickens","2021-05-29",33530,21,22044],["Pickens","2021-05-30",33530,11,22055],["Pickens","2021-05-31",33530,14,22069],["Pickens","2021-06-01",33530,60,22129],["Pickens","2021-06-02",33530,44,22173],["Pickens","2021-06-03",33530,46,22219],["Pickens","2021-06-04",33530,64,22283],["Pickens","2021-06-05",33530,28,22311],["Pickens","2021-06-06",33530,19,22330],["Pickens","2021-06-07",33530,58,22388],["Pickens","2021-06-08",33530,55,22443],["Pickens","2021-06-09",33530,56,22499],["Pickens","2021-06-10",33530,35,22534],["Pickens","2021-06-11",33530,45,22579],["Pickens","2021-06-12",33530,24,22603],["Pickens","2021-06-13",33530,17,22620],["Pickens","2021-06-14",33530,32,22652],["Pickens","2021-06-15",33530,38,22690],["Pickens","2021-06-16",33530,54,22744],["Pickens","2021-06-17",33530,26,22770],["Pickens","2021-06-18",33530,38,22808],["Pickens","2021-06-19",33530,20,22828],["Pickens","2021-06-20",33530,10,22838],["Pickens","2021-06-21",33530,25,22863],["Pickens","2021-06-22",33530,37,22900],["Pickens","2021-06-23",33530,22,22922],["Pickens","2021-06-24",33530,25,22947],["Pickens","2021-06-25",33530,38,22985],["Pickens","2021-06-26",33530,22,23007],["Pickens","2021-06-27",33530,10,23017],["Pickens","2021-06-28",33530,14,23031],["Pickens","2021-06-29",33530,29,23060],["Pickens","2021-06-30",33530,27,23087],["Pickens","2021-07-01",33530,30,23117],["Pickens","2021-07-02",33530,22,23139],["Pickens","2021-07-03",33530,18,23157],["Pickens","2021-07-04",33530,1,23158],["Pickens","2021-07-05",33530,14,23172],["Pickens","2021-07-06",33530,30,23202],["Pickens","2021-07-07",33530,25,23227],["Pickens","2021-07-08",33530,26,23253],["Pickens","2021-07-09",33530,27,23280],["Pickens","2021-07-10",33530,18,23298],["Pickens","2021-07-11",33530,9,23307],["Pickens","2021-07-12",33530,25,23332],["Pickens","2021-07-13",33530,29,23361],["Pickens","2021-07-14",33530,26,23387],["Pickens","2021-07-15",33530,25,23412],["Pickens","2021-07-16",33530,21,23433],["Pickens","2021-07-17",33530,16,23449],["Pickens","2021-07-18",33530,14,23463],["Pickens","2021-07-19",33530,33,23496],["Pickens","2021-07-20",33530,45,23541],["Pickens","2021-07-21",33530,27,23568],["Pickens","2021-07-22",33530,44,23612],["Pickens","2021-07-23",33530,62,23674],["Pickens","2021-07-24",33530,27,23701],["Pickens","2021-07-25",33530,20,23721],["Pickens","2021-07-26",33530,40,23761],["Pickens","2021-07-27",33530,39,23800],["Pickens","2021-07-28",33530,46,23846],["Pickens","2021-07-29",33530,51,23897],["Pickens","2021-07-30",33530,49,23946],["Pickens","2021-07-31",33530,33,23979],["Pickens","2021-08-01",33530,22,24001],["Pickens","2021-08-02",33530,49,24050],["Pickens","2021-08-03",33530,62,24112],["Pickens","2021-08-04",33530,45,24157],["Pickens","2021-08-05",33530,55,24212],["Pickens","2021-08-06",33530,87,24299],["Pickens","2021-08-07",33530,50,24349],["Pickens","2021-08-08",33530,29,24378],["Pickens","2021-08-09",33530,56,24434],["Pickens","2021-08-10",33530,76,24510],["Pickens","2021-08-11",33530,45,24555],["Pickens","2021-08-12",33530,41,24596],["Pickens","2021-08-13",33530,84,24680],["Pickens","2021-08-14",33530,44,24724],["Pickens","2021-08-15",33530,26,24750],["Pickens","2021-08-16",33530,58,24808],["Pickens","2021-08-17",33530,69,24877],["Pickens","2021-08-18",33530,70,24947],["Pickens","2021-08-19",33530,90,25037],["Pickens","2021-08-20",33530,90,25127],["Pickens","2021-08-21",33530,50,25177],["Pickens","2021-08-22",33530,32,25209],["Pickens","2021-08-23",33530,81,25290],["Pickens","2021-08-24",33530,77,25367],["Pickens","2021-08-25",33530,57,25424],["Pickens","2021-08-26",33530,99,25523],["Pickens","2021-08-27",33530,105,25628],["Pickens","2021-08-28",33530,68,25696],["Pickens","2021-08-29",33530,38,25734],["Pickens","2021-08-30",33530,87,25821],["Pickens","2021-08-31",33530,106,25927],["Pickens","2021-09-01",33530,68,25995],["Pickens","2021-09-02",33530,94,26089],["Pickens","2021-09-03",33530,104,26193],["Pickens","2021-09-04",33530,50,26243],["Pickens","2021-09-05",33530,29,26272],["Pickens","2021-09-06",33530,9,26281],["Pickens","2021-09-07",33530,78,26359],["Pickens","2021-09-08",33530,67,26426],["Pickens","2021-09-09",33530,76,26502],["Pickens","2021-09-10",33530,115,26617],["Pickens","2021-09-11",33530,40,26657],["Pickens","2021-09-12",33530,28,26685],["Pickens","2021-09-13",33530,62,26747],["Pickens","2021-09-14",33530,82,26829],["Pickens","2021-09-15",33530,51,26880],["Pickens","2021-09-16",33530,60,26940],["Pickens","2021-09-17",33530,54,26994],["Pickens","2021-09-18",33530,39,27033],["Pickens","2021-09-19",33530,20,27053],["Pickens","2021-09-20",33530,56,27109],["Pickens","2021-09-21",33530,57,27166],["Pickens","2021-09-22",33530,40,27206],["Pickens","2021-09-23",33530,48,27254],["Pickens","2021-09-24",33530,62,27316],["Pickens","2021-09-25",33530,43,27359],["Pickens","2021-09-26",33530,38,27397],["Pickens","2021-09-27",33530,67,27464],["Pickens","2021-09-28",33530,83,27547],["Pickens","2021-09-29",33530,121,27668],["Pickens","2021-09-30",33530,92,27760],["Pickens","2021-10-01",33530,90,27850],["Pickens","2021-10-02",33530,23,27873],["Pickens","2021-10-03",33530,23,27896],["Pickens","2021-10-04",33530,59,27955],["Pickens","2021-10-05",33530,95,28050],["Pickens","2021-10-06",33530,54,28104],["Pickens","2021-10-07",33530,53,28157],["Pickens","2021-10-08",33530,68,28225],["Pickens","2021-10-09",33530,38,28263],["Pickens","2021-10-10",33530,21,28284],["Pickens","2021-10-11",33530,36,28320],["Pickens","2021-10-12",33530,55,28375],["Pickens","2021-10-13",33530,37,28412],["Pickens","2021-10-14",33530,111,28523],["Pickens","2021-10-15",33530,47,28570],["Pickens","2021-10-16",33530,11,28581],["Pickens","2021-10-17",33530,14,28595],["Pickens","2021-10-18",33530,43,28638],["Pickens","2021-10-19",33530,50,28688],["Pickens","2021-10-20",33530,42,28730],["Pickens","2021-10-21",33530,71,28801],["Pickens","2021-10-22",33530,94,28895],["Pickens","2021-10-23",33530,65,28960],["Pickens","2021-10-24",33530,42,29002],["Pickens","2021-10-25",33530,142,29144],["Pickens","2021-10-26",33530,243,29387],["Pickens","2021-10-27",33530,151,29538],["Pickens","2021-10-28",33530,180,29718],["Pickens","2021-10-29",33530,154,29872],["Pickens","2021-10-30",33530,43,29915],["Pickens","2021-10-31",33530,29,29944],["Pickens","2021-11-01",33530,115,30059],["Pickens","2021-11-02",33530,190,30249],["Pickens","2021-11-03",33530,91,30340],["Pickens","2021-11-04",33530,149,30489],["Pickens","2021-11-05",33530,127,30616],["Pickens","2021-11-06",33530,55,30671],["Pickens","2021-11-07",33530,37,30708],["Pickens","2021-11-08",33530,116,30824],["Pickens","2021-11-09",33530,116,30940],["Pickens","2021-11-10",33530,91,31031],["Pickens","2021-11-11",33530,91,31122],["Pickens","2021-11-12",33530,92,31214],["Pickens","2021-11-13",33530,46,31260],["Pickens","2021-11-14",33530,25,31285],["Pickens","2021-11-15",33530,109,31394],["Pickens","2021-11-16",33530,146,31540],["Pickens","2021-11-17",33530,76,31616],["Pickens","2021-11-18",33530,118,31734],["Pickens","2021-11-19",33530,118,31852],["Pickens","2021-11-20",33530,53,31905],["Pickens","2021-11-21",33530,37,31942],["Pickens","2021-11-22",33530,121,32063],["Pickens","2021-11-23",33530,94,32157],["Pickens","2021-11-24",33530,63,32220],["Pickens","2021-11-26",33530,85,32305],["Pickens","2021-11-27",33530,37,32342],["Pickens","2021-11-28",33530,31,32373],["Pickens","2021-11-29",33530,117,32490],["Pickens","2021-11-30",33530,156,32646],["Pickens","2021-12-01",33530,103,32749],["Pickens","2021-12-02",33530,114,32863],["Pickens","2021-12-03",33530,91,32954],["Pickens","2021-12-04",33530,56,33010],["Pickens","2021-12-05",33530,23,33033],["Pickens","2021-12-06",33530,113,33146],["Pickens","2021-12-07",33530,103,33249],["Pickens","2021-12-08",33530,69,33318],["Pickens","2021-12-09",33530,86,33404],["Pickens","2021-12-10",33530,86,33490],["Pickens","2021-12-11",33530,33,33523],["Pickens","2021-12-12",33530,26,33549],["Pickens","2021-12-13",33530,76,33625],["Pickens","2021-12-14",33530,61,33686],["Pickens","2021-12-15",33530,56,33742],["Pickens","2021-12-16",33530,47,33789],["Pickens","2021-12-17",33530,80,33869],["Pickens","2021-12-18",33530,31,33900],["Pickens","2021-12-19",33530,30,33930],["Pickens","2021-12-20",33530,109,34039],["Pickens","2021-12-21",33530,90,34129],["Pickens","2021-12-22",33530,97,34226],["Pickens","2021-12-23",33530,66,34292],["Pickens","2021-12-24",33530,15,34307],["Pickens","2021-12-26",33530,16,34323],["Pickens","2021-12-27",33530,62,34385],["Pickens","2021-12-28",33530,68,34453],["Pickens","2021-12-29",33530,54,34507],["Pickens","2021-12-30",33530,67,34574],["Pickens","2021-12-31",33530,52,34626],["Pickens","2022-01-01",33530,9,34635],["Pickens","2022-01-02",33530,25,34660],["Pickens","2022-01-03",33530,13,34673],["Pierce","2020-12-17",19545,2,2],["Pierce","2020-12-18",19545,1,3],["Pierce","2020-12-19",19545,1,4],["Pierce","2020-12-21",19545,1,5],["Pierce","2020-12-22",19545,9,14],["Pierce","2020-12-23",19545,21,35],["Pierce","2020-12-24",19545,10,45],["Pierce","2020-12-28",19545,22,67],["Pierce","2020-12-29",19545,34,101],["Pierce","2020-12-30",19545,28,129],["Pierce","2020-12-31",19545,13,142],["Pierce","2021-01-01",19545,1,143],["Pierce","2021-01-04",19545,9,152],["Pierce","2021-01-05",19545,23,175],["Pierce","2021-01-06",19545,23,198],["Pierce","2021-01-07",19545,32,230],["Pierce","2021-01-08",19545,17,247],["Pierce","2021-01-09",19545,1,248],["Pierce","2021-01-11",19545,64,312],["Pierce","2021-01-12",19545,37,349],["Pierce","2021-01-13",19545,46,395],["Pierce","2021-01-14",19545,19,414],["Pierce","2021-01-15",19545,85,499],["Pierce","2021-01-16",19545,49,548],["Pierce","2021-01-17",19545,6,554],["Pierce","2021-01-18",19545,117,671],["Pierce","2021-01-19",19545,40,711],["Pierce","2021-01-20",19545,69,780],["Pierce","2021-01-21",19545,36,816],["Pierce","2021-01-22",19545,75,891],["Pierce","2021-01-23",19545,12,903],["Pierce","2021-01-24",19545,11,914],["Pierce","2021-01-25",19545,117,1031],["Pierce","2021-01-26",19545,50,1081],["Pierce","2021-01-27",19545,51,1132],["Pierce","2021-01-28",19545,22,1154],["Pierce","2021-01-29",19545,93,1247],["Pierce","2021-01-30",19545,66,1313],["Pierce","2021-02-01",19545,117,1430],["Pierce","2021-02-02",19545,47,1477],["Pierce","2021-02-03",19545,94,1571],["Pierce","2021-02-04",19545,34,1605],["Pierce","2021-02-05",19545,80,1685],["Pierce","2021-02-06",19545,3,1688],["Pierce","2021-02-07",19545,3,1691],["Pierce","2021-02-08",19545,163,1854],["Pierce","2021-02-09",19545,34,1888],["Pierce","2021-02-10",19545,78,1966],["Pierce","2021-02-11",19545,47,2013],["Pierce","2021-02-12",19545,119,2132],["Pierce","2021-02-13",19545,80,2212],["Pierce","2021-02-14",19545,2,2214],["Pierce","2021-02-15",19545,181,2395],["Pierce","2021-02-16",19545,73,2468],["Pierce","2021-02-17",19545,128,2596],["Pierce","2021-02-18",19545,30,2626],["Pierce","2021-02-19",19545,122,2748],["Pierce","2021-02-20",19545,24,2772],["Pierce","2021-02-21",19545,1,2773],["Pierce","2021-02-22",19545,166,2939],["Pierce","2021-02-23",19545,47,2986],["Pierce","2021-02-24",19545,56,3042],["Pierce","2021-02-25",19545,47,3089],["Pierce","2021-02-26",19545,108,3197],["Pierce","2021-02-27",19545,3,3200],["Pierce","2021-02-28",19545,2,3202],["Pierce","2021-03-01",19545,141,3343],["Pierce","2021-03-02",19545,71,3414],["Pierce","2021-03-03",19545,68,3482],["Pierce","2021-03-04",19545,48,3530],["Pierce","2021-03-05",19545,142,3672],["Pierce","2021-03-06",19545,5,3677],["Pierce","2021-03-07",19545,2,3679],["Pierce","2021-03-08",19545,101,3780],["Pierce","2021-03-09",19545,42,3822],["Pierce","2021-03-10",19545,83,3905],["Pierce","2021-03-11",19545,142,4047],["Pierce","2021-03-12",19545,154,4201],["Pierce","2021-03-13",19545,5,4206],["Pierce","2021-03-14",19545,6,4212],["Pierce","2021-03-15",19545,139,4351],["Pierce","2021-03-16",19545,93,4444],["Pierce","2021-03-17",19545,198,4642],["Pierce","2021-03-18",19545,62,4704],["Pierce","2021-03-19",19545,122,4826],["Pierce","2021-03-20",19545,31,4857],["Pierce","2021-03-21",19545,9,4866],["Pierce","2021-03-22",19545,146,5012],["Pierce","2021-03-23",19545,68,5080],["Pierce","2021-03-24",19545,121,5201],["Pierce","2021-03-25",19545,97,5298],["Pierce","2021-03-26",19545,128,5426],["Pierce","2021-03-27",19545,36,5462],["Pierce","2021-03-28",19545,4,5466],["Pierce","2021-03-29",19545,85,5551],["Pierce","2021-03-30",19545,125,5676],["Pierce","2021-03-31",19545,121,5797],["Pierce","2021-04-01",19545,103,5900],["Pierce","2021-04-02",19545,109,6009],["Pierce","2021-04-03",19545,33,6042],["Pierce","2021-04-04",19545,3,6045],["Pierce","2021-04-05",19545,70,6115],["Pierce","2021-04-06",19545,75,6190],["Pierce","2021-04-07",19545,94,6284],["Pierce","2021-04-08",19545,111,6395],["Pierce","2021-04-09",19545,85,6480],["Pierce","2021-04-10",19545,47,6527],["Pierce","2021-04-11",19545,21,6548],["Pierce","2021-04-12",19545,53,6601],["Pierce","2021-04-13",19545,129,6730],["Pierce","2021-04-14",19545,139,6869],["Pierce","2021-04-15",19545,165,7034],["Pierce","2021-04-16",19545,90,7124],["Pierce","2021-04-17",19545,43,7167],["Pierce","2021-04-19",19545,79,7246],["Pierce","2021-04-20",19545,123,7369],["Pierce","2021-04-21",19545,79,7448],["Pierce","2021-04-22",19545,96,7544],["Pierce","2021-04-23",19545,103,7647],["Pierce","2021-04-24",19545,46,7693],["Pierce","2021-04-26",19545,62,7755],["Pierce","2021-04-27",19545,92,7847],["Pierce","2021-04-28",19545,77,7924],["Pierce","2021-04-29",19545,50,7974],["Pierce","2021-04-30",19545,72,8046],["Pierce","2021-05-01",19545,36,8082],["Pierce","2021-05-02",19545,3,8085],["Pierce","2021-05-03",19545,19,8104],["Pierce","2021-05-04",19545,66,8170],["Pierce","2021-05-05",19545,42,8212],["Pierce","2021-05-06",19545,46,8258],["Pierce","2021-05-07",19545,23,8281],["Pierce","2021-05-08",19545,26,8307],["Pierce","2021-05-10",19545,10,8317],["Pierce","2021-05-11",19545,65,8382],["Pierce","2021-05-12",19545,56,8438],["Pierce","2021-05-13",19545,31,8469],["Pierce","2021-05-14",19545,40,8509],["Pierce","2021-05-15",19545,19,8528],["Pierce","2021-05-16",19545,4,8532],["Pierce","2021-05-17",19545,21,8553],["Pierce","2021-05-18",19545,56,8609],["Pierce","2021-05-19",19545,56,8665],["Pierce","2021-05-20",19545,52,8717],["Pierce","2021-05-21",19545,36,8753],["Pierce","2021-05-22",19545,5,8758],["Pierce","2021-05-23",19545,10,8768],["Pierce","2021-05-24",19545,18,8786],["Pierce","2021-05-25",19545,37,8823],["Pierce","2021-05-26",19545,25,8848],["Pierce","2021-05-27",19545,18,8866],["Pierce","2021-05-28",19545,23,8889],["Pierce","2021-05-29",19545,1,8890],["Pierce","2021-05-31",19545,2,8892],["Pierce","2021-06-01",19545,38,8930],["Pierce","2021-06-02",19545,28,8958],["Pierce","2021-06-03",19545,10,8968],["Pierce","2021-06-04",19545,9,8977],["Pierce","2021-06-05",19545,18,8995],["Pierce","2021-06-06",19545,4,8999],["Pierce","2021-06-07",19545,15,9014],["Pierce","2021-06-08",19545,26,9040],["Pierce","2021-06-09",19545,44,9084],["Pierce","2021-06-10",19545,14,9098],["Pierce","2021-06-11",19545,25,9123],["Pierce","2021-06-12",19545,12,9135],["Pierce","2021-06-13",19545,5,9140],["Pierce","2021-06-14",19545,14,9154],["Pierce","2021-06-15",19545,24,9178],["Pierce","2021-06-16",19545,28,9206],["Pierce","2021-06-17",19545,5,9211],["Pierce","2021-06-18",19545,10,9221],["Pierce","2021-06-19",19545,2,9223],["Pierce","2021-06-20",19545,2,9225],["Pierce","2021-06-21",19545,10,9235],["Pierce","2021-06-22",19545,26,9261],["Pierce","2021-06-23",19545,16,9277],["Pierce","2021-06-24",19545,6,9283],["Pierce","2021-06-25",19545,6,9289],["Pierce","2021-06-26",19545,2,9291],["Pierce","2021-06-28",19545,10,9301],["Pierce","2021-06-29",19545,28,9329],["Pierce","2021-06-30",19545,14,9343],["Pierce","2021-07-01",19545,7,9350],["Pierce","2021-07-02",19545,16,9366],["Pierce","2021-07-03",19545,5,9371],["Pierce","2021-07-05",19545,10,9381],["Pierce","2021-07-06",19545,25,9406],["Pierce","2021-07-07",19545,17,9423],["Pierce","2021-07-08",19545,16,9439],["Pierce","2021-07-09",19545,8,9447],["Pierce","2021-07-10",19545,1,9448],["Pierce","2021-07-11",19545,1,9449],["Pierce","2021-07-12",19545,11,9460],["Pierce","2021-07-13",19545,17,9477],["Pierce","2021-07-14",19545,18,9495],["Pierce","2021-07-15",19545,7,9502],["Pierce","2021-07-16",19545,13,9515],["Pierce","2021-07-17",19545,6,9521],["Pierce","2021-07-18",19545,3,9524],["Pierce","2021-07-19",19545,3,9527],["Pierce","2021-07-20",19545,34,9561],["Pierce","2021-07-21",19545,28,9589],["Pierce","2021-07-22",19545,19,9608],["Pierce","2021-07-23",19545,45,9653],["Pierce","2021-07-24",19545,11,9664],["Pierce","2021-07-25",19545,10,9674],["Pierce","2021-07-26",19545,43,9717],["Pierce","2021-07-27",19545,63,9780],["Pierce","2021-07-28",19545,55,9835],["Pierce","2021-07-29",19545,41,9876],["Pierce","2021-07-30",19545,55,9931],["Pierce","2021-07-31",19545,30,9961],["Pierce","2021-08-01",19545,28,9989],["Pierce","2021-08-02",19545,49,10038],["Pierce","2021-08-03",19545,50,10088],["Pierce","2021-08-04",19545,49,10137],["Pierce","2021-08-05",19545,52,10189],["Pierce","2021-08-06",19545,62,10251],["Pierce","2021-08-07",19545,15,10266],["Pierce","2021-08-08",19545,10,10276],["Pierce","2021-08-09",19545,42,10318],["Pierce","2021-08-10",19545,66,10384],["Pierce","2021-08-11",19545,59,10443],["Pierce","2021-08-12",19545,54,10497],["Pierce","2021-08-13",19545,74,10571],["Pierce","2021-08-14",19545,13,10584],["Pierce","2021-08-15",19545,18,10602],["Pierce","2021-08-16",19545,53,10655],["Pierce","2021-08-17",19545,54,10709],["Pierce","2021-08-18",19545,62,10771],["Pierce","2021-08-19",19545,29,10800],["Pierce","2021-08-20",19545,104,10904],["Pierce","2021-08-21",19545,32,10936],["Pierce","2021-08-22",19545,27,10963],["Pierce","2021-08-23",19545,48,11011],["Pierce","2021-08-24",19545,72,11083],["Pierce","2021-08-25",19545,61,11144],["Pierce","2021-08-26",19545,99,11243],["Pierce","2021-08-27",19545,89,11332],["Pierce","2021-08-28",19545,18,11350],["Pierce","2021-08-29",19545,26,11376],["Pierce","2021-08-30",19545,65,11441],["Pierce","2021-08-31",19545,62,11503],["Pierce","2021-09-01",19545,75,11578],["Pierce","2021-09-02",19545,66,11644],["Pierce","2021-09-03",19545,64,11708],["Pierce","2021-09-04",19545,20,11728],["Pierce","2021-09-05",19545,9,11737],["Pierce","2021-09-06",19545,11,11748],["Pierce","2021-09-07",19545,64,11812],["Pierce","2021-09-08",19545,55,11867],["Pierce","2021-09-09",19545,52,11919],["Pierce","2021-09-10",19545,57,11976],["Pierce","2021-09-11",19545,27,12003],["Pierce","2021-09-12",19545,8,12011],["Pierce","2021-09-13",19545,47,12058],["Pierce","2021-09-14",19545,52,12110],["Pierce","2021-09-15",19545,45,12155],["Pierce","2021-09-16",19545,48,12203],["Pierce","2021-09-17",19545,84,12287],["Pierce","2021-09-18",19545,13,12300],["Pierce","2021-09-19",19545,8,12308],["Pierce","2021-09-20",19545,36,12344],["Pierce","2021-09-21",19545,32,12376],["Pierce","2021-09-22",19545,26,12402],["Pierce","2021-09-23",19545,34,12436],["Pierce","2021-09-24",19545,30,12466],["Pierce","2021-09-25",19545,12,12478],["Pierce","2021-09-26",19545,8,12486],["Pierce","2021-09-27",19545,24,12510],["Pierce","2021-09-28",19545,33,12543],["Pierce","2021-09-29",19545,20,12563],["Pierce","2021-09-30",19545,33,12596],["Pierce","2021-10-01",19545,37,12633],["Pierce","2021-10-02",19545,11,12644],["Pierce","2021-10-03",19545,4,12648],["Pierce","2021-10-04",19545,21,12669],["Pierce","2021-10-05",19545,18,12687],["Pierce","2021-10-06",19545,16,12703],["Pierce","2021-10-07",19545,17,12720],["Pierce","2021-10-08",19545,23,12743],["Pierce","2021-10-09",19545,8,12751],["Pierce","2021-10-10",19545,4,12755],["Pierce","2021-10-11",19545,7,12762],["Pierce","2021-10-12",19545,17,12779],["Pierce","2021-10-13",19545,15,12794],["Pierce","2021-10-14",19545,18,12812],["Pierce","2021-10-15",19545,23,12835],["Pierce","2021-10-16",19545,4,12839],["Pierce","2021-10-17",19545,2,12841],["Pierce","2021-10-18",19545,16,12857],["Pierce","2021-10-19",19545,14,12871],["Pierce","2021-10-20",19545,18,12889],["Pierce","2021-10-21",19545,11,12900],["Pierce","2021-10-22",19545,25,12925],["Pierce","2021-10-23",19545,11,12936],["Pierce","2021-10-24",19545,9,12945],["Pierce","2021-10-25",19545,18,12963],["Pierce","2021-10-26",19545,42,13005],["Pierce","2021-10-27",19545,70,13075],["Pierce","2021-10-28",19545,48,13123],["Pierce","2021-10-29",19545,61,13184],["Pierce","2021-10-30",19545,5,13189],["Pierce","2021-10-31",19545,4,13193],["Pierce","2021-11-01",19545,51,13244],["Pierce","2021-11-02",19545,58,13302],["Pierce","2021-11-03",19545,49,13351],["Pierce","2021-11-04",19545,50,13401],["Pierce","2021-11-05",19545,43,13444],["Pierce","2021-11-06",19545,10,13454],["Pierce","2021-11-07",19545,6,13460],["Pierce","2021-11-08",19545,54,13514],["Pierce","2021-11-09",19545,54,13568],["Pierce","2021-11-10",19545,46,13614],["Pierce","2021-11-11",19545,18,13632],["Pierce","2021-11-12",19545,58,13690],["Pierce","2021-11-13",19545,9,13699],["Pierce","2021-11-14",19545,1,13700],["Pierce","2021-11-15",19545,40,13740],["Pierce","2021-11-16",19545,30,13770],["Pierce","2021-11-17",19545,43,13813],["Pierce","2021-11-18",19545,28,13841],["Pierce","2021-11-19",19545,40,13881],["Pierce","2021-11-20",19545,9,13890],["Pierce","2021-11-21",19545,8,13898],["Pierce","2021-11-22",19545,41,13939],["Pierce","2021-11-23",19545,34,13973],["Pierce","2021-11-24",19545,15,13988],["Pierce","2021-11-26",19545,15,14003],["Pierce","2021-11-27",19545,6,14009],["Pierce","2021-11-28",19545,2,14011],["Pierce","2021-11-29",19545,64,14075],["Pierce","2021-11-30",19545,80,14155],["Pierce","2021-12-01",19545,61,14216],["Pierce","2021-12-02",19545,37,14253],["Pierce","2021-12-03",19545,54,14307],["Pierce","2021-12-04",19545,16,14323],["Pierce","2021-12-05",19545,4,14327],["Pierce","2021-12-06",19545,32,14359],["Pierce","2021-12-07",19545,41,14400],["Pierce","2021-12-08",19545,53,14453],["Pierce","2021-12-09",19545,43,14496],["Pierce","2021-12-10",19545,36,14532],["Pierce","2021-12-11",19545,9,14541],["Pierce","2021-12-12",19545,2,14543],["Pierce","2021-12-13",19545,25,14568],["Pierce","2021-12-14",19545,28,14596],["Pierce","2021-12-15",19545,33,14629],["Pierce","2021-12-16",19545,26,14655],["Pierce","2021-12-17",19545,37,14692],["Pierce","2021-12-18",19545,11,14703],["Pierce","2021-12-19",19545,7,14710],["Pierce","2021-12-20",19545,35,14745],["Pierce","2021-12-21",19545,46,14791],["Pierce","2021-12-22",19545,33,14824],["Pierce","2021-12-23",19545,8,14832],["Pierce","2021-12-24",19545,5,14837],["Pierce","2021-12-26",19545,5,14842],["Pierce","2021-12-27",19545,22,14864],["Pierce","2021-12-28",19545,63,14927],["Pierce","2021-12-29",19545,37,14964],["Pierce","2021-12-30",19545,24,14988],["Pierce","2021-12-31",19545,23,15011],["Pierce","2022-01-02",19545,7,15018],["Pierce","2022-01-03",19545,6,15024],["Pike","2020-12-17",18860,1,1],["Pike","2020-12-18",18860,2,3],["Pike","2020-12-19",18860,14,17],["Pike","2020-12-21",18860,10,27],["Pike","2020-12-22",18860,7,34],["Pike","2020-12-23",18860,18,52],["Pike","2020-12-24",18860,4,56],["Pike","2020-12-27",18860,2,58],["Pike","2020-12-28",18860,16,74],["Pike","2020-12-29",18860,31,105],["Pike","2020-12-30",18860,29,134],["Pike","2020-12-31",18860,14,148],["Pike","2021-01-01",18860,5,153],["Pike","2021-01-02",18860,1,154],["Pike","2021-01-03",18860,3,157],["Pike","2021-01-04",18860,18,175],["Pike","2021-01-05",18860,27,202],["Pike","2021-01-06",18860,14,216],["Pike","2021-01-07",18860,10,226],["Pike","2021-01-08",18860,24,250],["Pike","2021-01-09",18860,28,278],["Pike","2021-01-10",18860,6,284],["Pike","2021-01-11",18860,17,301],["Pike","2021-01-12",18860,50,351],["Pike","2021-01-13",18860,42,393],["Pike","2021-01-14",18860,55,448],["Pike","2021-01-15",18860,67,515],["Pike","2021-01-16",18860,14,529],["Pike","2021-01-17",18860,8,537],["Pike","2021-01-18",18860,44,581],["Pike","2021-01-19",18860,109,690],["Pike","2021-01-20",18860,53,743],["Pike","2021-01-21",18860,73,816],["Pike","2021-01-22",18860,62,878],["Pike","2021-01-23",18860,6,884],["Pike","2021-01-24",18860,17,901],["Pike","2021-01-25",18860,53,954],["Pike","2021-01-26",18860,67,1021],["Pike","2021-01-27",18860,38,1059],["Pike","2021-01-28",18860,58,1117],["Pike","2021-01-29",18860,67,1184],["Pike","2021-01-30",18860,8,1192],["Pike","2021-01-31",18860,6,1198],["Pike","2021-02-01",18860,42,1240],["Pike","2021-02-02",18860,88,1328],["Pike","2021-02-03",18860,38,1366],["Pike","2021-02-04",18860,87,1453],["Pike","2021-02-05",18860,88,1541],["Pike","2021-02-06",18860,4,1545],["Pike","2021-02-07",18860,5,1550],["Pike","2021-02-08",18860,15,1565],["Pike","2021-02-09",18860,77,1642],["Pike","2021-02-10",18860,47,1689],["Pike","2021-02-11",18860,127,1816],["Pike","2021-02-12",18860,106,1922],["Pike","2021-02-13",18860,18,1940],["Pike","2021-02-14",18860,6,1946],["Pike","2021-02-15",18860,45,1991],["Pike","2021-02-16",18860,129,2120],["Pike","2021-02-17",18860,58,2178],["Pike","2021-02-18",18860,103,2281],["Pike","2021-02-19",18860,79,2360],["Pike","2021-02-20",18860,13,2373],["Pike","2021-02-21",18860,10,2383],["Pike","2021-02-22",18860,19,2402],["Pike","2021-02-23",18860,97,2499],["Pike","2021-02-24",18860,32,2531],["Pike","2021-02-25",18860,115,2646],["Pike","2021-02-26",18860,79,2725],["Pike","2021-02-27",18860,7,2732],["Pike","2021-02-28",18860,7,2739],["Pike","2021-03-01",18860,35,2774],["Pike","2021-03-02",18860,117,2891],["Pike","2021-03-03",18860,34,2925],["Pike","2021-03-04",18860,130,3055],["Pike","2021-03-05",18860,108,3163],["Pike","2021-03-06",18860,8,3171],["Pike","2021-03-07",18860,8,3179],["Pike","2021-03-08",18860,48,3227],["Pike","2021-03-09",18860,96,3323],["Pike","2021-03-10",18860,60,3383],["Pike","2021-03-11",18860,132,3515],["Pike","2021-03-12",18860,108,3623],["Pike","2021-03-13",18860,9,3632],["Pike","2021-03-14",18860,10,3642],["Pike","2021-03-15",18860,65,3707],["Pike","2021-03-16",18860,131,3838],["Pike","2021-03-17",18860,56,3894],["Pike","2021-03-18",18860,96,3990],["Pike","2021-03-19",18860,176,4166],["Pike","2021-03-20",18860,17,4183],["Pike","2021-03-21",18860,23,4206],["Pike","2021-03-22",18860,50,4256],["Pike","2021-03-23",18860,127,4383],["Pike","2021-03-24",18860,81,4464],["Pike","2021-03-25",18860,146,4610],["Pike","2021-03-26",18860,123,4733],["Pike","2021-03-27",18860,14,4747],["Pike","2021-03-28",18860,15,4762],["Pike","2021-03-29",18860,61,4823],["Pike","2021-03-30",18860,127,4950],["Pike","2021-03-31",18860,79,5029],["Pike","2021-04-01",18860,175,5204],["Pike","2021-04-02",18860,95,5299],["Pike","2021-04-03",18860,15,5314],["Pike","2021-04-04",18860,22,5336],["Pike","2021-04-05",18860,65,5401],["Pike","2021-04-06",18860,135,5536],["Pike","2021-04-07",18860,107,5643],["Pike","2021-04-08",18860,134,5777],["Pike","2021-04-09",18860,126,5903],["Pike","2021-04-10",18860,24,5927],["Pike","2021-04-11",18860,26,5953],["Pike","2021-04-12",18860,76,6029],["Pike","2021-04-13",18860,148,6177],["Pike","2021-04-14",18860,108,6285],["Pike","2021-04-15",18860,135,6420],["Pike","2021-04-16",18860,93,6513],["Pike","2021-04-17",18860,20,6533],["Pike","2021-04-18",18860,13,6546],["Pike","2021-04-19",18860,68,6614],["Pike","2021-04-20",18860,89,6703],["Pike","2021-04-21",18860,99,6802],["Pike","2021-04-22",18860,91,6893],["Pike","2021-04-23",18860,77,6970],["Pike","2021-04-24",18860,20,6990],["Pike","2021-04-25",18860,8,6998],["Pike","2021-04-26",18860,44,7042],["Pike","2021-04-27",18860,103,7145],["Pike","2021-04-28",18860,75,7220],["Pike","2021-04-29",18860,92,7312],["Pike","2021-04-30",18860,107,7419],["Pike","2021-05-01",18860,24,7443],["Pike","2021-05-02",18860,15,7458],["Pike","2021-05-03",18860,40,7498],["Pike","2021-05-04",18860,67,7565],["Pike","2021-05-05",18860,81,7646],["Pike","2021-05-06",18860,73,7719],["Pike","2021-05-07",18860,92,7811],["Pike","2021-05-08",18860,25,7836],["Pike","2021-05-09",18860,8,7844],["Pike","2021-05-10",18860,22,7866],["Pike","2021-05-11",18860,68,7934],["Pike","2021-05-12",18860,66,8000],["Pike","2021-05-13",18860,41,8041],["Pike","2021-05-14",18860,59,8100],["Pike","2021-05-15",18860,24,8124],["Pike","2021-05-16",18860,14,8138],["Pike","2021-05-17",18860,58,8196],["Pike","2021-05-18",18860,52,8248],["Pike","2021-05-19",18860,39,8287],["Pike","2021-05-20",18860,38,8325],["Pike","2021-05-21",18860,51,8376],["Pike","2021-05-22",18860,17,8393],["Pike","2021-05-23",18860,9,8402],["Pike","2021-05-24",18860,19,8421],["Pike","2021-05-25",18860,27,8448],["Pike","2021-05-26",18860,31,8479],["Pike","2021-05-27",18860,36,8515],["Pike","2021-05-28",18860,33,8548],["Pike","2021-05-29",18860,12,8560],["Pike","2021-05-30",18860,8,8568],["Pike","2021-05-31",18860,4,8572],["Pike","2021-06-01",18860,34,8606],["Pike","2021-06-02",18860,26,8632],["Pike","2021-06-03",18860,30,8662],["Pike","2021-06-04",18860,36,8698],["Pike","2021-06-05",18860,12,8710],["Pike","2021-06-06",18860,13,8723],["Pike","2021-06-07",18860,22,8745],["Pike","2021-06-08",18860,23,8768],["Pike","2021-06-09",18860,15,8783],["Pike","2021-06-10",18860,27,8810],["Pike","2021-06-11",18860,47,8857],["Pike","2021-06-12",18860,10,8867],["Pike","2021-06-13",18860,10,8877],["Pike","2021-06-14",18860,17,8894],["Pike","2021-06-15",18860,29,8923],["Pike","2021-06-16",18860,26,8949],["Pike","2021-06-17",18860,14,8963],["Pike","2021-06-18",18860,15,8978],["Pike","2021-06-19",18860,13,8991],["Pike","2021-06-20",18860,6,8997],["Pike","2021-06-21",18860,10,9007],["Pike","2021-06-22",18860,21,9028],["Pike","2021-06-23",18860,15,9043],["Pike","2021-06-24",18860,14,9057],["Pike","2021-06-25",18860,29,9086],["Pike","2021-06-26",18860,9,9095],["Pike","2021-06-27",18860,5,9100],["Pike","2021-06-28",18860,9,9109],["Pike","2021-06-29",18860,21,9130],["Pike","2021-06-30",18860,14,9144],["Pike","2021-07-01",18860,12,9156],["Pike","2021-07-02",18860,26,9182],["Pike","2021-07-03",18860,12,9194],["Pike","2021-07-04",18860,2,9196],["Pike","2021-07-05",18860,6,9202],["Pike","2021-07-06",18860,15,9217],["Pike","2021-07-07",18860,11,9228],["Pike","2021-07-08",18860,11,9239],["Pike","2021-07-09",18860,16,9255],["Pike","2021-07-10",18860,11,9266],["Pike","2021-07-11",18860,4,9270],["Pike","2021-07-12",18860,9,9279],["Pike","2021-07-13",18860,19,9298],["Pike","2021-07-14",18860,13,9311],["Pike","2021-07-15",18860,11,9322],["Pike","2021-07-16",18860,25,9347],["Pike","2021-07-17",18860,11,9358],["Pike","2021-07-18",18860,5,9363],["Pike","2021-07-19",18860,17,9380],["Pike","2021-07-20",18860,22,9402],["Pike","2021-07-21",18860,15,9417],["Pike","2021-07-22",18860,24,9441],["Pike","2021-07-23",18860,32,9473],["Pike","2021-07-24",18860,15,9488],["Pike","2021-07-25",18860,8,9496],["Pike","2021-07-26",18860,19,9515],["Pike","2021-07-27",18860,26,9541],["Pike","2021-07-28",18860,22,9563],["Pike","2021-07-29",18860,27,9590],["Pike","2021-07-30",18860,28,9618],["Pike","2021-07-31",18860,12,9630],["Pike","2021-08-01",18860,23,9653],["Pike","2021-08-02",18860,25,9678],["Pike","2021-08-03",18860,51,9729],["Pike","2021-08-04",18860,25,9754],["Pike","2021-08-05",18860,39,9793],["Pike","2021-08-06",18860,49,9842],["Pike","2021-08-07",18860,20,9862],["Pike","2021-08-08",18860,13,9875],["Pike","2021-08-09",18860,28,9903],["Pike","2021-08-10",18860,39,9942],["Pike","2021-08-11",18860,30,9972],["Pike","2021-08-12",18860,41,10013],["Pike","2021-08-13",18860,57,10070],["Pike","2021-08-14",18860,12,10082],["Pike","2021-08-15",18860,15,10097],["Pike","2021-08-16",18860,31,10128],["Pike","2021-08-17",18860,49,10177],["Pike","2021-08-18",18860,49,10226],["Pike","2021-08-19",18860,39,10265],["Pike","2021-08-20",18860,60,10325],["Pike","2021-08-21",18860,28,10353],["Pike","2021-08-22",18860,26,10379],["Pike","2021-08-23",18860,56,10435],["Pike","2021-08-24",18860,75,10510],["Pike","2021-08-25",18860,48,10558],["Pike","2021-08-26",18860,69,10627],["Pike","2021-08-27",18860,94,10721],["Pike","2021-08-28",18860,34,10755],["Pike","2021-08-29",18860,28,10783],["Pike","2021-08-30",18860,54,10837],["Pike","2021-08-31",18860,57,10894],["Pike","2021-09-01",18860,50,10944],["Pike","2021-09-02",18860,48,10992],["Pike","2021-09-03",18860,82,11074],["Pike","2021-09-04",18860,35,11109],["Pike","2021-09-05",18860,17,11126],["Pike","2021-09-06",18860,23,11149],["Pike","2021-09-07",18860,48,11197],["Pike","2021-09-08",18860,50,11247],["Pike","2021-09-09",18860,40,11287],["Pike","2021-09-10",18860,73,11360],["Pike","2021-09-11",18860,22,11382],["Pike","2021-09-12",18860,17,11399],["Pike","2021-09-13",18860,41,11440],["Pike","2021-09-14",18860,57,11497],["Pike","2021-09-15",18860,54,11551],["Pike","2021-09-16",18860,54,11605],["Pike","2021-09-17",18860,66,11671],["Pike","2021-09-18",18860,24,11695],["Pike","2021-09-19",18860,25,11720],["Pike","2021-09-20",18860,21,11741],["Pike","2021-09-21",18860,51,11792],["Pike","2021-09-22",18860,34,11826],["Pike","2021-09-23",18860,48,11874],["Pike","2021-09-24",18860,48,11922],["Pike","2021-09-25",18860,23,11945],["Pike","2021-09-26",18860,26,11971],["Pike","2021-09-27",18860,43,12014],["Pike","2021-09-28",18860,66,12080],["Pike","2021-09-29",18860,39,12119],["Pike","2021-09-30",18860,40,12159],["Pike","2021-10-01",18860,81,12240],["Pike","2021-10-02",18860,19,12259],["Pike","2021-10-03",18860,10,12269],["Pike","2021-10-04",18860,57,12326],["Pike","2021-10-05",18860,53,12379],["Pike","2021-10-06",18860,29,12408],["Pike","2021-10-07",18860,45,12453],["Pike","2021-10-08",18860,60,12513],["Pike","2021-10-09",18860,22,12535],["Pike","2021-10-10",18860,12,12547],["Pike","2021-10-11",18860,26,12573],["Pike","2021-10-12",18860,43,12616],["Pike","2021-10-13",18860,29,12645],["Pike","2021-10-14",18860,36,12681],["Pike","2021-10-15",18860,58,12739],["Pike","2021-10-16",18860,2,12741],["Pike","2021-10-17",18860,9,12750],["Pike","2021-10-18",18860,17,12767],["Pike","2021-10-19",18860,37,12804],["Pike","2021-10-20",18860,13,12817],["Pike","2021-10-21",18860,39,12856],["Pike","2021-10-22",18860,43,12899],["Pike","2021-10-23",18860,13,12912],["Pike","2021-10-24",18860,15,12927],["Pike","2021-10-25",18860,36,12963],["Pike","2021-10-26",18860,58,13021],["Pike","2021-10-27",18860,36,13057],["Pike","2021-10-28",18860,53,13110],["Pike","2021-10-29",18860,42,13152],["Pike","2021-10-30",18860,14,13166],["Pike","2021-10-31",18860,6,13172],["Pike","2021-11-01",18860,29,13201],["Pike","2021-11-02",18860,57,13258],["Pike","2021-11-03",18860,20,13278],["Pike","2021-11-04",18860,36,13314],["Pike","2021-11-05",18860,63,13377],["Pike","2021-11-06",18860,10,13387],["Pike","2021-11-07",18860,12,13399],["Pike","2021-11-08",18860,23,13422],["Pike","2021-11-09",18860,44,13466],["Pike","2021-11-10",18860,26,13492],["Pike","2021-11-11",18860,41,13533],["Pike","2021-11-12",18860,40,13573],["Pike","2021-11-13",18860,15,13588],["Pike","2021-11-14",18860,3,13591],["Pike","2021-11-15",18860,22,13613],["Pike","2021-11-16",18860,48,13661],["Pike","2021-11-17",18860,26,13687],["Pike","2021-11-18",18860,33,13720],["Pike","2021-11-19",18860,77,13797],["Pike","2021-11-20",18860,16,13813],["Pike","2021-11-21",18860,14,13827],["Pike","2021-11-22",18860,34,13861],["Pike","2021-11-23",18860,34,13895],["Pike","2021-11-24",18860,16,13911],["Pike","2021-11-26",18860,16,13927],["Pike","2021-11-27",18860,7,13934],["Pike","2021-11-28",18860,19,13953],["Pike","2021-11-29",18860,41,13994],["Pike","2021-11-30",18860,55,14049],["Pike","2021-12-01",18860,36,14085],["Pike","2021-12-02",18860,43,14128],["Pike","2021-12-03",18860,79,14207],["Pike","2021-12-04",18860,30,14237],["Pike","2021-12-05",18860,16,14253],["Pike","2021-12-06",18860,19,14272],["Pike","2021-12-07",18860,58,14330],["Pike","2021-12-08",18860,33,14363],["Pike","2021-12-09",18860,31,14394],["Pike","2021-12-10",18860,53,14447],["Pike","2021-12-11",18860,11,14458],["Pike","2021-12-12",18860,9,14467],["Pike","2021-12-13",18860,20,14487],["Pike","2021-12-14",18860,44,14531],["Pike","2021-12-15",18860,25,14556],["Pike","2021-12-16",18860,16,14572],["Pike","2021-12-17",18860,41,14613],["Pike","2021-12-18",18860,11,14624],["Pike","2021-12-19",18860,10,14634],["Pike","2021-12-20",18860,19,14653],["Pike","2021-12-21",18860,54,14707],["Pike","2021-12-22",18860,44,14751],["Pike","2021-12-23",18860,27,14778],["Pike","2021-12-24",18860,12,14790],["Pike","2021-12-26",18860,5,14795],["Pike","2021-12-27",18860,10,14805],["Pike","2021-12-28",18860,56,14861],["Pike","2021-12-29",18860,21,14882],["Pike","2021-12-30",18860,33,14915],["Pike","2021-12-31",18860,27,14942],["Pike","2022-01-01",18860,10,14952],["Pike","2022-01-02",18860,8,14960],["Pike","2022-01-03",18860,10,14970],["Polk","2020-12-12",43482,1,1],["Polk","2020-12-18",43482,9,10],["Polk","2020-12-19",43482,2,12],["Polk","2020-12-21",43482,16,28],["Polk","2020-12-22",43482,35,63],["Polk","2020-12-23",43482,52,115],["Polk","2020-12-24",43482,5,120],["Polk","2020-12-26",43482,8,128],["Polk","2020-12-27",43482,5,133],["Polk","2020-12-28",43482,122,255],["Polk","2020-12-29",43482,33,288],["Polk","2020-12-30",43482,34,322],["Polk","2020-12-31",43482,42,364],["Polk","2021-01-01",43482,8,372],["Polk","2021-01-02",43482,7,379],["Polk","2021-01-03",43482,5,384],["Polk","2021-01-04",43482,50,434],["Polk","2021-01-05",43482,59,493],["Polk","2021-01-06",43482,74,567],["Polk","2021-01-07",43482,94,661],["Polk","2021-01-08",43482,77,738],["Polk","2021-01-09",43482,2,740],["Polk","2021-01-10",43482,12,752],["Polk","2021-01-11",43482,152,904],["Polk","2021-01-12",43482,188,1092],["Polk","2021-01-13",43482,218,1310],["Polk","2021-01-14",43482,274,1584],["Polk","2021-01-15",43482,250,1834],["Polk","2021-01-16",43482,16,1850],["Polk","2021-01-17",43482,9,1859],["Polk","2021-01-18",43482,366,2225],["Polk","2021-01-19",43482,311,2536],["Polk","2021-01-20",43482,292,2828],["Polk","2021-01-21",43482,139,2967],["Polk","2021-01-22",43482,117,3084],["Polk","2021-01-23",43482,6,3090],["Polk","2021-01-24",43482,9,3099],["Polk","2021-01-25",43482,244,3343],["Polk","2021-01-26",43482,324,3667],["Polk","2021-01-27",43482,246,3913],["Polk","2021-01-28",43482,272,4185],["Polk","2021-01-29",43482,236,4421],["Polk","2021-01-30",43482,5,4426],["Polk","2021-01-31",43482,3,4429],["Polk","2021-02-01",43482,229,4658],["Polk","2021-02-02",43482,164,4822],["Polk","2021-02-03",43482,201,5023],["Polk","2021-02-04",43482,175,5198],["Polk","2021-02-05",43482,220,5418],["Polk","2021-02-06",43482,54,5472],["Polk","2021-02-07",43482,6,5478],["Polk","2021-02-08",43482,264,5742],["Polk","2021-02-09",43482,230,5972],["Polk","2021-02-10",43482,295,6267],["Polk","2021-02-11",43482,234,6501],["Polk","2021-02-12",43482,262,6763],["Polk","2021-02-13",43482,35,6798],["Polk","2021-02-14",43482,2,6800],["Polk","2021-02-15",43482,288,7088],["Polk","2021-02-16",43482,98,7186],["Polk","2021-02-17",43482,369,7555],["Polk","2021-02-18",43482,199,7754],["Polk","2021-02-19",43482,216,7970],["Polk","2021-02-20",43482,6,7976],["Polk","2021-02-21",43482,7,7983],["Polk","2021-02-22",43482,116,8099],["Polk","2021-02-23",43482,214,8313],["Polk","2021-02-24",43482,272,8585],["Polk","2021-02-25",43482,235,8820],["Polk","2021-02-26",43482,237,9057],["Polk","2021-02-27",43482,21,9078],["Polk","2021-02-28",43482,30,9108],["Polk","2021-03-01",43482,337,9445],["Polk","2021-03-02",43482,306,9751],["Polk","2021-03-03",43482,195,9946],["Polk","2021-03-04",43482,157,10103],["Polk","2021-03-05",43482,139,10242],["Polk","2021-03-06",43482,35,10277],["Polk","2021-03-07",43482,26,10303],["Polk","2021-03-08",43482,159,10462],["Polk","2021-03-09",43482,195,10657],["Polk","2021-03-10",43482,215,10872],["Polk","2021-03-11",43482,149,11021],["Polk","2021-03-12",43482,189,11210],["Polk","2021-03-13",43482,168,11378],["Polk","2021-03-14",43482,17,11395],["Polk","2021-03-15",43482,209,11604],["Polk","2021-03-16",43482,269,11873],["Polk","2021-03-17",43482,345,12218],["Polk","2021-03-18",43482,189,12407],["Polk","2021-03-19",43482,246,12653],["Polk","2021-03-20",43482,22,12675],["Polk","2021-03-21",43482,27,12702],["Polk","2021-03-22",43482,124,12826],["Polk","2021-03-23",43482,284,13110],["Polk","2021-03-24",43482,152,13262],["Polk","2021-03-25",43482,157,13419],["Polk","2021-03-26",43482,209,13628],["Polk","2021-03-27",43482,34,13662],["Polk","2021-03-28",43482,38,13700],["Polk","2021-03-29",43482,171,13871],["Polk","2021-03-30",43482,246,14117],["Polk","2021-03-31",43482,221,14338],["Polk","2021-04-01",43482,212,14550],["Polk","2021-04-02",43482,312,14862],["Polk","2021-04-03",43482,29,14891],["Polk","2021-04-04",43482,41,14932],["Polk","2021-04-05",43482,297,15229],["Polk","2021-04-06",43482,174,15403],["Polk","2021-04-07",43482,321,15724],["Polk","2021-04-08",43482,157,15881],["Polk","2021-04-09",43482,278,16159],["Polk","2021-04-10",43482,146,16305],["Polk","2021-04-11",43482,32,16337],["Polk","2021-04-12",43482,314,16651],["Polk","2021-04-13",43482,181,16832],["Polk","2021-04-14",43482,452,17284],["Polk","2021-04-15",43482,252,17536],["Polk","2021-04-16",43482,389,17925],["Polk","2021-04-17",43482,35,17960],["Polk","2021-04-18",43482,20,17980],["Polk","2021-04-19",43482,156,18136],["Polk","2021-04-20",43482,168,18304],["Polk","2021-04-21",43482,184,18488],["Polk","2021-04-22",43482,181,18669],["Polk","2021-04-23",43482,220,18889],["Polk","2021-04-24",43482,35,18924],["Polk","2021-04-25",43482,24,18948],["Polk","2021-04-26",43482,193,19141],["Polk","2021-04-27",43482,133,19274],["Polk","2021-04-28",43482,183,19457],["Polk","2021-04-29",43482,124,19581],["Polk","2021-04-30",43482,210,19791],["Polk","2021-05-01",43482,164,19955],["Polk","2021-05-02",43482,31,19986],["Polk","2021-05-03",43482,147,20133],["Polk","2021-05-04",43482,100,20233],["Polk","2021-05-05",43482,177,20410],["Polk","2021-05-06",43482,189,20599],["Polk","2021-05-07",43482,137,20736],["Polk","2021-05-08",43482,58,20794],["Polk","2021-05-09",43482,20,20814],["Polk","2021-05-10",43482,106,20920],["Polk","2021-05-11",43482,84,21004],["Polk","2021-05-12",43482,98,21102],["Polk","2021-05-13",43482,103,21205],["Polk","2021-05-14",43482,148,21353],["Polk","2021-05-15",43482,45,21398],["Polk","2021-05-16",43482,30,21428],["Polk","2021-05-17",43482,100,21528],["Polk","2021-05-18",43482,88,21616],["Polk","2021-05-19",43482,119,21735],["Polk","2021-05-20",43482,167,21902],["Polk","2021-05-21",43482,110,22012],["Polk","2021-05-22",43482,64,22076],["Polk","2021-05-23",43482,15,22091],["Polk","2021-05-24",43482,85,22176],["Polk","2021-05-25",43482,71,22247],["Polk","2021-05-26",43482,88,22335],["Polk","2021-05-27",43482,103,22438],["Polk","2021-05-28",43482,87,22525],["Polk","2021-05-29",43482,31,22556],["Polk","2021-05-30",43482,18,22574],["Polk","2021-05-31",43482,15,22589],["Polk","2021-06-01",43482,60,22649],["Polk","2021-06-02",43482,66,22715],["Polk","2021-06-03",43482,68,22783],["Polk","2021-06-04",43482,82,22865],["Polk","2021-06-05",43482,28,22893],["Polk","2021-06-06",43482,27,22920],["Polk","2021-06-07",43482,73,22993],["Polk","2021-06-08",43482,43,23036],["Polk","2021-06-09",43482,59,23095],["Polk","2021-06-10",43482,73,23168],["Polk","2021-06-11",43482,94,23262],["Polk","2021-06-12",43482,34,23296],["Polk","2021-06-13",43482,18,23314],["Polk","2021-06-14",43482,51,23365],["Polk","2021-06-15",43482,52,23417],["Polk","2021-06-16",43482,57,23474],["Polk","2021-06-17",43482,88,23562],["Polk","2021-06-18",43482,93,23655],["Polk","2021-06-19",43482,24,23679],["Polk","2021-06-20",43482,10,23689],["Polk","2021-06-21",43482,21,23710],["Polk","2021-06-22",43482,50,23760],["Polk","2021-06-23",43482,43,23803],["Polk","2021-06-24",43482,79,23882],["Polk","2021-06-25",43482,84,23966],["Polk","2021-06-26",43482,27,23993],["Polk","2021-06-27",43482,15,24008],["Polk","2021-06-28",43482,37,24045],["Polk","2021-06-29",43482,43,24088],["Polk","2021-06-30",43482,39,24127],["Polk","2021-07-01",43482,53,24180],["Polk","2021-07-02",43482,52,24232],["Polk","2021-07-03",43482,15,24247],["Polk","2021-07-04",43482,9,24256],["Polk","2021-07-05",43482,14,24270],["Polk","2021-07-06",43482,42,24312],["Polk","2021-07-07",43482,35,24347],["Polk","2021-07-08",43482,53,24400],["Polk","2021-07-09",43482,48,24448],["Polk","2021-07-10",43482,14,24462],["Polk","2021-07-11",43482,14,24476],["Polk","2021-07-12",43482,24,24500],["Polk","2021-07-13",43482,38,24538],["Polk","2021-07-14",43482,26,24564],["Polk","2021-07-15",43482,87,24651],["Polk","2021-07-16",43482,47,24698],["Polk","2021-07-17",43482,27,24725],["Polk","2021-07-18",43482,11,24736],["Polk","2021-07-19",43482,48,24784],["Polk","2021-07-20",43482,54,24838],["Polk","2021-07-21",43482,53,24891],["Polk","2021-07-22",43482,83,24974],["Polk","2021-07-23",43482,82,25056],["Polk","2021-07-24",43482,45,25101],["Polk","2021-07-25",43482,24,25125],["Polk","2021-07-26",43482,47,25172],["Polk","2021-07-27",43482,66,25238],["Polk","2021-07-28",43482,52,25290],["Polk","2021-07-29",43482,125,25415],["Polk","2021-07-30",43482,110,25525],["Polk","2021-07-31",43482,33,25558],["Polk","2021-08-01",43482,28,25586],["Polk","2021-08-02",43482,59,25645],["Polk","2021-08-03",43482,87,25732],["Polk","2021-08-04",43482,55,25787],["Polk","2021-08-05",43482,100,25887],["Polk","2021-08-06",43482,136,26023],["Polk","2021-08-07",43482,33,26056],["Polk","2021-08-08",43482,27,26083],["Polk","2021-08-09",43482,97,26180],["Polk","2021-08-10",43482,118,26298],["Polk","2021-08-11",43482,62,26360],["Polk","2021-08-12",43482,117,26477],["Polk","2021-08-13",43482,126,26603],["Polk","2021-08-14",43482,70,26673],["Polk","2021-08-15",43482,35,26708],["Polk","2021-08-16",43482,90,26798],["Polk","2021-08-17",43482,113,26911],["Polk","2021-08-18",43482,93,27004],["Polk","2021-08-19",43482,160,27164],["Polk","2021-08-20",43482,158,27322],["Polk","2021-08-21",43482,61,27383],["Polk","2021-08-22",43482,72,27455],["Polk","2021-08-23",43482,144,27599],["Polk","2021-08-24",43482,164,27763],["Polk","2021-08-25",43482,112,27875],["Polk","2021-08-26",43482,195,28070],["Polk","2021-08-27",43482,214,28284],["Polk","2021-08-28",43482,78,28362],["Polk","2021-08-29",43482,39,28401],["Polk","2021-08-30",43482,167,28568],["Polk","2021-08-31",43482,172,28740],["Polk","2021-09-01",43482,128,28868],["Polk","2021-09-02",43482,168,29036],["Polk","2021-09-03",43482,203,29239],["Polk","2021-09-04",43482,76,29315],["Polk","2021-09-05",43482,41,29356],["Polk","2021-09-06",43482,31,29387],["Polk","2021-09-07",43482,167,29554],["Polk","2021-09-08",43482,91,29645],["Polk","2021-09-09",43482,137,29782],["Polk","2021-09-10",43482,188,29970],["Polk","2021-09-11",43482,72,30042],["Polk","2021-09-12",43482,65,30107],["Polk","2021-09-13",43482,143,30250],["Polk","2021-09-14",43482,141,30391],["Polk","2021-09-15",43482,113,30504],["Polk","2021-09-16",43482,135,30639],["Polk","2021-09-17",43482,176,30815],["Polk","2021-09-18",43482,72,30887],["Polk","2021-09-19",43482,57,30944],["Polk","2021-09-20",43482,109,31053],["Polk","2021-09-21",43482,131,31184],["Polk","2021-09-22",43482,104,31288],["Polk","2021-09-23",43482,136,31424],["Polk","2021-09-24",43482,145,31569],["Polk","2021-09-25",43482,55,31624],["Polk","2021-09-26",43482,55,31679],["Polk","2021-09-27",43482,63,31742],["Polk","2021-09-28",43482,93,31835],["Polk","2021-09-29",43482,93,31928],["Polk","2021-09-30",43482,100,32028],["Polk","2021-10-01",43482,154,32182],["Polk","2021-10-02",43482,42,32224],["Polk","2021-10-03",43482,38,32262],["Polk","2021-10-04",43482,66,32328],["Polk","2021-10-05",43482,118,32446],["Polk","2021-10-06",43482,50,32496],["Polk","2021-10-07",43482,87,32583],["Polk","2021-10-08",43482,146,32729],["Polk","2021-10-09",43482,37,32766],["Polk","2021-10-10",43482,33,32799],["Polk","2021-10-11",43482,50,32849],["Polk","2021-10-12",43482,97,32946],["Polk","2021-10-13",43482,65,33011],["Polk","2021-10-14",43482,62,33073],["Polk","2021-10-15",43482,84,33157],["Polk","2021-10-16",43482,33,33190],["Polk","2021-10-17",43482,34,33224],["Polk","2021-10-18",43482,39,33263],["Polk","2021-10-19",43482,82,33345],["Polk","2021-10-20",43482,39,33384],["Polk","2021-10-21",43482,63,33447],["Polk","2021-10-22",43482,129,33576],["Polk","2021-10-23",43482,48,33624],["Polk","2021-10-24",43482,36,33660],["Polk","2021-10-25",43482,174,33834],["Polk","2021-10-26",43482,180,34014],["Polk","2021-10-27",43482,177,34191],["Polk","2021-10-28",43482,281,34472],["Polk","2021-10-29",43482,139,34611],["Polk","2021-10-30",43482,31,34642],["Polk","2021-10-31",43482,20,34662],["Polk","2021-11-01",43482,165,34827],["Polk","2021-11-02",43482,147,34974],["Polk","2021-11-03",43482,164,35138],["Polk","2021-11-04",43482,133,35271],["Polk","2021-11-05",43482,104,35375],["Polk","2021-11-06",43482,33,35408],["Polk","2021-11-07",43482,29,35437],["Polk","2021-11-08",43482,165,35602],["Polk","2021-11-09",43482,154,35756],["Polk","2021-11-10",43482,96,35852],["Polk","2021-11-11",43482,62,35914],["Polk","2021-11-12",43482,126,36040],["Polk","2021-11-13",43482,36,36076],["Polk","2021-11-14",43482,22,36098],["Polk","2021-11-15",43482,110,36208],["Polk","2021-11-16",43482,106,36314],["Polk","2021-11-17",43482,102,36416],["Polk","2021-11-18",43482,237,36653],["Polk","2021-11-19",43482,114,36767],["Polk","2021-11-20",43482,49,36816],["Polk","2021-11-21",43482,21,36837],["Polk","2021-11-22",43482,98,36935],["Polk","2021-11-23",43482,108,37043],["Polk","2021-11-24",43482,65,37108],["Polk","2021-11-25",43482,1,37109],["Polk","2021-11-26",43482,33,37142],["Polk","2021-11-27",43482,33,37175],["Polk","2021-11-28",43482,26,37201],["Polk","2021-11-29",43482,124,37325],["Polk","2021-11-30",43482,143,37468],["Polk","2021-12-01",43482,153,37621],["Polk","2021-12-02",43482,169,37790],["Polk","2021-12-03",43482,180,37970],["Polk","2021-12-04",43482,42,38012],["Polk","2021-12-05",43482,25,38037],["Polk","2021-12-06",43482,129,38166],["Polk","2021-12-07",43482,125,38291],["Polk","2021-12-08",43482,97,38388],["Polk","2021-12-09",43482,98,38486],["Polk","2021-12-10",43482,111,38597],["Polk","2021-12-11",43482,41,38638],["Polk","2021-12-12",43482,32,38670],["Polk","2021-12-13",43482,60,38730],["Polk","2021-12-14",43482,95,38825],["Polk","2021-12-15",43482,75,38900],["Polk","2021-12-16",43482,65,38965],["Polk","2021-12-17",43482,92,39057],["Polk","2021-12-18",43482,32,39089],["Polk","2021-12-19",43482,32,39121],["Polk","2021-12-20",43482,99,39220],["Polk","2021-12-21",43482,114,39334],["Polk","2021-12-22",43482,90,39424],["Polk","2021-12-23",43482,38,39462],["Polk","2021-12-24",43482,23,39485],["Polk","2021-12-26",43482,21,39506],["Polk","2021-12-27",43482,89,39595],["Polk","2021-12-28",43482,131,39726],["Polk","2021-12-29",43482,94,39820],["Polk","2021-12-30",43482,102,39922],["Polk","2021-12-31",43482,40,39962],["Polk","2022-01-01",43482,16,39978],["Polk","2022-01-02",43482,32,40010],["Polk","2022-01-03",43482,23,40033],["Pulaski","2020-12-17",10893,1,1],["Pulaski","2020-12-18",10893,2,3],["Pulaski","2020-12-21",10893,2,5],["Pulaski","2020-12-22",10893,4,9],["Pulaski","2020-12-23",10893,6,15],["Pulaski","2020-12-24",10893,4,19],["Pulaski","2020-12-26",10893,1,20],["Pulaski","2020-12-27",10893,1,21],["Pulaski","2020-12-28",10893,5,26],["Pulaski","2020-12-29",10893,30,56],["Pulaski","2020-12-30",10893,16,72],["Pulaski","2020-12-31",10893,1,73],["Pulaski","2021-01-01",10893,8,81],["Pulaski","2021-01-02",10893,1,82],["Pulaski","2021-01-03",10893,5,87],["Pulaski","2021-01-04",10893,13,100],["Pulaski","2021-01-05",10893,20,120],["Pulaski","2021-01-06",10893,91,211],["Pulaski","2021-01-07",10893,16,227],["Pulaski","2021-01-08",10893,32,259],["Pulaski","2021-01-09",10893,3,262],["Pulaski","2021-01-10",10893,1,263],["Pulaski","2021-01-11",10893,97,360],["Pulaski","2021-01-12",10893,43,403],["Pulaski","2021-01-13",10893,279,682],["Pulaski","2021-01-14",10893,76,758],["Pulaski","2021-01-15",10893,32,790],["Pulaski","2021-01-16",10893,4,794],["Pulaski","2021-01-17",10893,1,795],["Pulaski","2021-01-18",10893,16,811],["Pulaski","2021-01-19",10893,16,827],["Pulaski","2021-01-20",10893,39,866],["Pulaski","2021-01-21",10893,88,954],["Pulaski","2021-01-22",10893,16,970],["Pulaski","2021-01-23",10893,2,972],["Pulaski","2021-01-24",10893,5,977],["Pulaski","2021-01-25",10893,58,1035],["Pulaski","2021-01-26",10893,41,1076],["Pulaski","2021-01-27",10893,24,1100],["Pulaski","2021-01-28",10893,118,1218],["Pulaski","2021-01-29",10893,18,1236],["Pulaski","2021-01-30",10893,2,1238],["Pulaski","2021-02-01",10893,35,1273],["Pulaski","2021-02-02",10893,29,1302],["Pulaski","2021-02-03",10893,53,1355],["Pulaski","2021-02-04",10893,133,1488],["Pulaski","2021-02-05",10893,39,1527],["Pulaski","2021-02-06",10893,5,1532],["Pulaski","2021-02-07",10893,1,1533],["Pulaski","2021-02-08",10893,47,1580],["Pulaski","2021-02-09",10893,38,1618],["Pulaski","2021-02-10",10893,41,1659],["Pulaski","2021-02-11",10893,260,1919],["Pulaski","2021-02-12",10893,40,1959],["Pulaski","2021-02-13",10893,1,1960],["Pulaski","2021-02-15",10893,19,1979],["Pulaski","2021-02-16",10893,25,2004],["Pulaski","2021-02-17",10893,13,2017],["Pulaski","2021-02-18",10893,272,2289],["Pulaski","2021-02-19",10893,17,2306],["Pulaski","2021-02-20",10893,4,2310],["Pulaski","2021-02-22",10893,28,2338],["Pulaski","2021-02-23",10893,23,2361],["Pulaski","2021-02-24",10893,24,2385],["Pulaski","2021-02-25",10893,206,2591],["Pulaski","2021-02-26",10893,24,2615],["Pulaski","2021-02-27",10893,3,2618],["Pulaski","2021-02-28",10893,2,2620],["Pulaski","2021-03-01",10893,16,2636],["Pulaski","2021-03-02",10893,18,2654],["Pulaski","2021-03-03",10893,46,2700],["Pulaski","2021-03-04",10893,152,2852],["Pulaski","2021-03-05",10893,22,2874],["Pulaski","2021-03-06",10893,2,2876],["Pulaski","2021-03-07",10893,3,2879],["Pulaski","2021-03-08",10893,38,2917],["Pulaski","2021-03-09",10893,13,2930],["Pulaski","2021-03-10",10893,31,2961],["Pulaski","2021-03-11",10893,115,3076],["Pulaski","2021-03-12",10893,40,3116],["Pulaski","2021-03-13",10893,7,3123],["Pulaski","2021-03-14",10893,24,3147],["Pulaski","2021-03-15",10893,32,3179],["Pulaski","2021-03-16",10893,67,3246],["Pulaski","2021-03-17",10893,38,3284],["Pulaski","2021-03-18",10893,135,3419],["Pulaski","2021-03-19",10893,39,3458],["Pulaski","2021-03-20",10893,6,3464],["Pulaski","2021-03-21",10893,2,3466],["Pulaski","2021-03-22",10893,20,3486],["Pulaski","2021-03-23",10893,30,3516],["Pulaski","2021-03-24",10893,49,3565],["Pulaski","2021-03-25",10893,167,3732],["Pulaski","2021-03-26",10893,39,3771],["Pulaski","2021-03-27",10893,7,3778],["Pulaski","2021-03-28",10893,7,3785],["Pulaski","2021-03-29",10893,26,3811],["Pulaski","2021-03-30",10893,28,3839],["Pulaski","2021-03-31",10893,42,3881],["Pulaski","2021-04-01",10893,163,4044],["Pulaski","2021-04-02",10893,29,4073],["Pulaski","2021-04-03",10893,5,4078],["Pulaski","2021-04-04",10893,8,4086],["Pulaski","2021-04-05",10893,33,4119],["Pulaski","2021-04-06",10893,24,4143],["Pulaski","2021-04-07",10893,51,4194],["Pulaski","2021-04-08",10893,139,4333],["Pulaski","2021-04-09",10893,46,4379],["Pulaski","2021-04-10",10893,11,4390],["Pulaski","2021-04-11",10893,4,4394],["Pulaski","2021-04-12",10893,21,4415],["Pulaski","2021-04-13",10893,54,4469],["Pulaski","2021-04-14",10893,27,4496],["Pulaski","2021-04-15",10893,139,4635],["Pulaski","2021-04-16",10893,48,4683],["Pulaski","2021-04-17",10893,5,4688],["Pulaski","2021-04-18",10893,3,4691],["Pulaski","2021-04-19",10893,20,4711],["Pulaski","2021-04-20",10893,44,4755],["Pulaski","2021-04-21",10893,46,4801],["Pulaski","2021-04-22",10893,100,4901],["Pulaski","2021-04-23",10893,42,4943],["Pulaski","2021-04-24",10893,6,4949],["Pulaski","2021-04-25",10893,7,4956],["Pulaski","2021-04-26",10893,16,4972],["Pulaski","2021-04-27",10893,32,5004],["Pulaski","2021-04-28",10893,39,5043],["Pulaski","2021-04-29",10893,73,5116],["Pulaski","2021-04-30",10893,85,5201],["Pulaski","2021-05-01",10893,7,5208],["Pulaski","2021-05-02",10893,5,5213],["Pulaski","2021-05-03",10893,16,5229],["Pulaski","2021-05-04",10893,11,5240],["Pulaski","2021-05-05",10893,36,5276],["Pulaski","2021-05-06",10893,54,5330],["Pulaski","2021-05-07",10893,48,5378],["Pulaski","2021-05-08",10893,7,5385],["Pulaski","2021-05-09",10893,2,5387],["Pulaski","2021-05-10",10893,8,5395],["Pulaski","2021-05-11",10893,33,5428],["Pulaski","2021-05-12",10893,15,5443],["Pulaski","2021-05-13",10893,48,5491],["Pulaski","2021-05-14",10893,36,5527],["Pulaski","2021-05-15",10893,10,5537],["Pulaski","2021-05-16",10893,6,5543],["Pulaski","2021-05-17",10893,12,5555],["Pulaski","2021-05-18",10893,24,5579],["Pulaski","2021-05-19",10893,15,5594],["Pulaski","2021-05-20",10893,31,5625],["Pulaski","2021-05-21",10893,18,5643],["Pulaski","2021-05-22",10893,10,5653],["Pulaski","2021-05-23",10893,6,5659],["Pulaski","2021-05-24",10893,17,5676],["Pulaski","2021-05-25",10893,21,5697],["Pulaski","2021-05-26",10893,13,5710],["Pulaski","2021-05-27",10893,24,5734],["Pulaski","2021-05-28",10893,9,5743],["Pulaski","2021-05-29",10893,6,5749],["Pulaski","2021-05-30",10893,4,5753],["Pulaski","2021-05-31",10893,3,5756],["Pulaski","2021-06-01",10893,86,5842],["Pulaski","2021-06-02",10893,18,5860],["Pulaski","2021-06-03",10893,18,5878],["Pulaski","2021-06-04",10893,31,5909],["Pulaski","2021-06-05",10893,7,5916],["Pulaski","2021-06-06",10893,6,5922],["Pulaski","2021-06-07",10893,9,5931],["Pulaski","2021-06-08",10893,10,5941],["Pulaski","2021-06-09",10893,16,5957],["Pulaski","2021-06-10",10893,14,5971],["Pulaski","2021-06-11",10893,21,5992],["Pulaski","2021-06-12",10893,7,5999],["Pulaski","2021-06-13",10893,1,6000],["Pulaski","2021-06-14",10893,9,6009],["Pulaski","2021-06-15",10893,16,6025],["Pulaski","2021-06-16",10893,16,6041],["Pulaski","2021-06-17",10893,12,6053],["Pulaski","2021-06-18",10893,11,6064],["Pulaski","2021-06-19",10893,5,6069],["Pulaski","2021-06-20",10893,2,6071],["Pulaski","2021-06-21",10893,9,6080],["Pulaski","2021-06-22",10893,19,6099],["Pulaski","2021-06-23",10893,9,6108],["Pulaski","2021-06-24",10893,7,6115],["Pulaski","2021-06-25",10893,12,6127],["Pulaski","2021-06-26",10893,2,6129],["Pulaski","2021-06-27",10893,3,6132],["Pulaski","2021-06-28",10893,8,6140],["Pulaski","2021-06-29",10893,7,6147],["Pulaski","2021-06-30",10893,14,6161],["Pulaski","2021-07-01",10893,13,6174],["Pulaski","2021-07-02",10893,15,6189],["Pulaski","2021-07-03",10893,1,6190],["Pulaski","2021-07-05",10893,5,6195],["Pulaski","2021-07-06",10893,7,6202],["Pulaski","2021-07-07",10893,9,6211],["Pulaski","2021-07-08",10893,6,6217],["Pulaski","2021-07-09",10893,8,6225],["Pulaski","2021-07-10",10893,3,6228],["Pulaski","2021-07-11",10893,1,6229],["Pulaski","2021-07-12",10893,4,6233],["Pulaski","2021-07-13",10893,15,6248],["Pulaski","2021-07-14",10893,7,6255],["Pulaski","2021-07-15",10893,9,6264],["Pulaski","2021-07-16",10893,8,6272],["Pulaski","2021-07-17",10893,2,6274],["Pulaski","2021-07-18",10893,2,6276],["Pulaski","2021-07-19",10893,9,6285],["Pulaski","2021-07-20",10893,11,6296],["Pulaski","2021-07-21",10893,18,6314],["Pulaski","2021-07-22",10893,12,6326],["Pulaski","2021-07-23",10893,27,6353],["Pulaski","2021-07-24",10893,13,6366],["Pulaski","2021-07-25",10893,3,6369],["Pulaski","2021-07-26",10893,13,6382],["Pulaski","2021-07-27",10893,16,6398],["Pulaski","2021-07-28",10893,16,6414],["Pulaski","2021-07-29",10893,33,6447],["Pulaski","2021-07-30",10893,28,6475],["Pulaski","2021-07-31",10893,5,6480],["Pulaski","2021-08-01",10893,8,6488],["Pulaski","2021-08-02",10893,21,6509],["Pulaski","2021-08-03",10893,24,6533],["Pulaski","2021-08-04",10893,27,6560],["Pulaski","2021-08-05",10893,20,6580],["Pulaski","2021-08-06",10893,41,6621],["Pulaski","2021-08-07",10893,15,6636],["Pulaski","2021-08-08",10893,15,6651],["Pulaski","2021-08-09",10893,36,6687],["Pulaski","2021-08-10",10893,33,6720],["Pulaski","2021-08-11",10893,28,6748],["Pulaski","2021-08-12",10893,26,6774],["Pulaski","2021-08-13",10893,57,6831],["Pulaski","2021-08-14",10893,16,6847],["Pulaski","2021-08-15",10893,11,6858],["Pulaski","2021-08-16",10893,33,6891],["Pulaski","2021-08-17",10893,41,6932],["Pulaski","2021-08-18",10893,20,6952],["Pulaski","2021-08-19",10893,35,6987],["Pulaski","2021-08-20",10893,68,7055],["Pulaski","2021-08-21",10893,15,7070],["Pulaski","2021-08-22",10893,15,7085],["Pulaski","2021-08-23",10893,27,7112],["Pulaski","2021-08-24",10893,37,7149],["Pulaski","2021-08-25",10893,29,7178],["Pulaski","2021-08-26",10893,25,7203],["Pulaski","2021-08-27",10893,56,7259],["Pulaski","2021-08-28",10893,14,7273],["Pulaski","2021-08-29",10893,16,7289],["Pulaski","2021-08-30",10893,30,7319],["Pulaski","2021-08-31",10893,39,7358],["Pulaski","2021-09-01",10893,64,7422],["Pulaski","2021-09-02",10893,41,7463],["Pulaski","2021-09-03",10893,58,7521],["Pulaski","2021-09-04",10893,11,7532],["Pulaski","2021-09-05",10893,19,7551],["Pulaski","2021-09-06",10893,4,7555],["Pulaski","2021-09-07",10893,55,7610],["Pulaski","2021-09-08",10893,24,7634],["Pulaski","2021-09-09",10893,33,7667],["Pulaski","2021-09-10",10893,51,7718],["Pulaski","2021-09-11",10893,21,7739],["Pulaski","2021-09-12",10893,7,7746],["Pulaski","2021-09-13",10893,25,7771],["Pulaski","2021-09-14",10893,29,7800],["Pulaski","2021-09-15",10893,16,7816],["Pulaski","2021-09-16",10893,38,7854],["Pulaski","2021-09-17",10893,50,7904],["Pulaski","2021-09-18",10893,22,7926],["Pulaski","2021-09-19",10893,6,7932],["Pulaski","2021-09-20",10893,18,7950],["Pulaski","2021-09-21",10893,28,7978],["Pulaski","2021-09-22",10893,29,8007],["Pulaski","2021-09-23",10893,25,8032],["Pulaski","2021-09-24",10893,39,8071],["Pulaski","2021-09-25",10893,8,8079],["Pulaski","2021-09-26",10893,3,8082],["Pulaski","2021-09-27",10893,12,8094],["Pulaski","2021-09-28",10893,24,8118],["Pulaski","2021-09-29",10893,19,8137],["Pulaski","2021-09-30",10893,26,8163],["Pulaski","2021-10-01",10893,32,8195],["Pulaski","2021-10-02",10893,8,8203],["Pulaski","2021-10-03",10893,4,8207],["Pulaski","2021-10-04",10893,17,8224],["Pulaski","2021-10-05",10893,14,8238],["Pulaski","2021-10-06",10893,10,8248],["Pulaski","2021-10-07",10893,11,8259],["Pulaski","2021-10-08",10893,22,8281],["Pulaski","2021-10-09",10893,5,8286],["Pulaski","2021-10-10",10893,2,8288],["Pulaski","2021-10-11",10893,17,8305],["Pulaski","2021-10-12",10893,14,8319],["Pulaski","2021-10-13",10893,6,8325],["Pulaski","2021-10-14",10893,10,8335],["Pulaski","2021-10-15",10893,19,8354],["Pulaski","2021-10-16",10893,10,8364],["Pulaski","2021-10-17",10893,2,8366],["Pulaski","2021-10-18",10893,17,8383],["Pulaski","2021-10-19",10893,23,8406],["Pulaski","2021-10-20",10893,11,8417],["Pulaski","2021-10-21",10893,16,8433],["Pulaski","2021-10-22",10893,40,8473],["Pulaski","2021-10-23",10893,6,8479],["Pulaski","2021-10-24",10893,5,8484],["Pulaski","2021-10-25",10893,28,8512],["Pulaski","2021-10-26",10893,16,8528],["Pulaski","2021-10-27",10893,26,8554],["Pulaski","2021-10-28",10893,61,8615],["Pulaski","2021-10-29",10893,46,8661],["Pulaski","2021-10-30",10893,11,8672],["Pulaski","2021-11-01",10893,21,8693],["Pulaski","2021-11-02",10893,73,8766],["Pulaski","2021-11-03",10893,28,8794],["Pulaski","2021-11-04",10893,62,8856],["Pulaski","2021-11-05",10893,26,8882],["Pulaski","2021-11-06",10893,7,8889],["Pulaski","2021-11-07",10893,4,8893],["Pulaski","2021-11-08",10893,17,8910],["Pulaski","2021-11-09",10893,59,8969],["Pulaski","2021-11-10",10893,34,9003],["Pulaski","2021-11-11",10893,24,9027],["Pulaski","2021-11-12",10893,48,9075],["Pulaski","2021-11-13",10893,6,9081],["Pulaski","2021-11-14",10893,5,9086],["Pulaski","2021-11-15",10893,34,9120],["Pulaski","2021-11-16",10893,54,9174],["Pulaski","2021-11-17",10893,71,9245],["Pulaski","2021-11-18",10893,37,9282],["Pulaski","2021-11-19",10893,34,9316],["Pulaski","2021-11-20",10893,9,9325],["Pulaski","2021-11-21",10893,3,9328],["Pulaski","2021-11-22",10893,18,9346],["Pulaski","2021-11-23",10893,43,9389],["Pulaski","2021-11-24",10893,6,9395],["Pulaski","2021-11-26",10893,10,9405],["Pulaski","2021-11-27",10893,7,9412],["Pulaski","2021-11-28",10893,6,9418],["Pulaski","2021-11-29",10893,22,9440],["Pulaski","2021-11-30",10893,54,9494],["Pulaski","2021-12-01",10893,33,9527],["Pulaski","2021-12-02",10893,87,9614],["Pulaski","2021-12-03",10893,32,9646],["Pulaski","2021-12-04",10893,17,9663],["Pulaski","2021-12-05",10893,7,9670],["Pulaski","2021-12-06",10893,11,9681],["Pulaski","2021-12-07",10893,44,9725],["Pulaski","2021-12-08",10893,7,9732],["Pulaski","2021-12-09",10893,54,9786],["Pulaski","2021-12-10",10893,37,9823],["Pulaski","2021-12-11",10893,7,9830],["Pulaski","2021-12-12",10893,1,9831],["Pulaski","2021-12-13",10893,14,9845],["Pulaski","2021-12-14",10893,26,9871],["Pulaski","2021-12-15",10893,9,9880],["Pulaski","2021-12-16",10893,32,9912],["Pulaski","2021-12-17",10893,14,9926],["Pulaski","2021-12-18",10893,3,9929],["Pulaski","2021-12-19",10893,3,9932],["Pulaski","2021-12-20",10893,30,9962],["Pulaski","2021-12-21",10893,34,9996],["Pulaski","2021-12-22",10893,10,10006],["Pulaski","2021-12-23",10893,15,10021],["Pulaski","2021-12-24",10893,5,10026],["Pulaski","2021-12-26",10893,5,10031],["Pulaski","2021-12-27",10893,20,10051],["Pulaski","2021-12-28",10893,57,10108],["Pulaski","2021-12-29",10893,18,10126],["Pulaski","2021-12-30",10893,13,10139],["Pulaski","2021-12-31",10893,7,10146],["Pulaski","2022-01-01",10893,5,10151],["Pulaski","2022-01-02",10893,6,10157],["Pulaski","2022-01-03",10893,7,10164],["Putnam","2020-12-16",21885,2,2],["Putnam","2020-12-18",21885,1,3],["Putnam","2020-12-19",21885,3,6],["Putnam","2020-12-21",21885,1,7],["Putnam","2020-12-22",21885,6,13],["Putnam","2020-12-23",21885,31,44],["Putnam","2020-12-24",21885,6,50],["Putnam","2020-12-26",21885,3,53],["Putnam","2020-12-28",21885,25,78],["Putnam","2020-12-29",21885,57,135],["Putnam","2020-12-30",21885,30,165],["Putnam","2020-12-31",21885,13,178],["Putnam","2021-01-01",21885,3,181],["Putnam","2021-01-02",21885,3,184],["Putnam","2021-01-03",21885,1,185],["Putnam","2021-01-04",21885,32,217],["Putnam","2021-01-05",21885,18,235],["Putnam","2021-01-06",21885,28,263],["Putnam","2021-01-07",21885,14,277],["Putnam","2021-01-08",21885,30,307],["Putnam","2021-01-09",21885,14,321],["Putnam","2021-01-10",21885,5,326],["Putnam","2021-01-11",21885,41,367],["Putnam","2021-01-12",21885,67,434],["Putnam","2021-01-13",21885,124,558],["Putnam","2021-01-14",21885,52,610],["Putnam","2021-01-15",21885,114,724],["Putnam","2021-01-16",21885,33,757],["Putnam","2021-01-17",21885,21,778],["Putnam","2021-01-18",21885,87,865],["Putnam","2021-01-19",21885,150,1015],["Putnam","2021-01-20",21885,231,1246],["Putnam","2021-01-21",21885,177,1423],["Putnam","2021-01-22",21885,210,1633],["Putnam","2021-01-23",21885,88,1721],["Putnam","2021-01-24",21885,7,1728],["Putnam","2021-01-25",21885,126,1854],["Putnam","2021-01-26",21885,36,1890],["Putnam","2021-01-27",21885,141,2031],["Putnam","2021-01-28",21885,75,2106],["Putnam","2021-01-29",21885,100,2206],["Putnam","2021-01-30",21885,22,2228],["Putnam","2021-01-31",21885,16,2244],["Putnam","2021-02-01",21885,57,2301],["Putnam","2021-02-02",21885,48,2349],["Putnam","2021-02-03",21885,159,2508],["Putnam","2021-02-04",21885,62,2570],["Putnam","2021-02-05",21885,109,2679],["Putnam","2021-02-06",21885,27,2706],["Putnam","2021-02-07",21885,13,2719],["Putnam","2021-02-08",21885,76,2795],["Putnam","2021-02-09",21885,138,2933],["Putnam","2021-02-10",21885,172,3105],["Putnam","2021-02-11",21885,123,3228],["Putnam","2021-02-12",21885,136,3364],["Putnam","2021-02-13",21885,40,3404],["Putnam","2021-02-14",21885,31,3435],["Putnam","2021-02-15",21885,92,3527],["Putnam","2021-02-16",21885,191,3718],["Putnam","2021-02-17",21885,236,3954],["Putnam","2021-02-18",21885,150,4104],["Putnam","2021-02-19",21885,259,4363],["Putnam","2021-02-20",21885,41,4404],["Putnam","2021-02-21",21885,7,4411],["Putnam","2021-02-22",21885,56,4467],["Putnam","2021-02-23",21885,67,4534],["Putnam","2021-02-24",21885,168,4702],["Putnam","2021-02-25",21885,191,4893],["Putnam","2021-02-26",21885,219,5112],["Putnam","2021-02-27",21885,96,5208],["Putnam","2021-02-28",21885,40,5248],["Putnam","2021-03-01",21885,105,5353],["Putnam","2021-03-02",21885,100,5453],["Putnam","2021-03-03",21885,210,5663],["Putnam","2021-03-04",21885,109,5772],["Putnam","2021-03-05",21885,170,5942],["Putnam","2021-03-06",21885,19,5961],["Putnam","2021-03-07",21885,18,5979],["Putnam","2021-03-08",21885,115,6094],["Putnam","2021-03-09",21885,108,6202],["Putnam","2021-03-10",21885,196,6398],["Putnam","2021-03-11",21885,149,6547],["Putnam","2021-03-12",21885,169,6716],["Putnam","2021-03-13",21885,43,6759],["Putnam","2021-03-14",21885,16,6775],["Putnam","2021-03-15",21885,103,6878],["Putnam","2021-03-16",21885,271,7149],["Putnam","2021-03-17",21885,241,7390],["Putnam","2021-03-18",21885,131,7521],["Putnam","2021-03-19",21885,257,7778],["Putnam","2021-03-20",21885,160,7938],["Putnam","2021-03-21",21885,14,7952],["Putnam","2021-03-22",21885,54,8006],["Putnam","2021-03-23",21885,63,8069],["Putnam","2021-03-24",21885,197,8266],["Putnam","2021-03-25",21885,175,8441],["Putnam","2021-03-26",21885,311,8752],["Putnam","2021-03-27",21885,47,8799],["Putnam","2021-03-28",21885,26,8825],["Putnam","2021-03-29",21885,103,8928],["Putnam","2021-03-30",21885,149,9077],["Putnam","2021-03-31",21885,234,9311],["Putnam","2021-04-01",21885,189,9500],["Putnam","2021-04-02",21885,163,9663],["Putnam","2021-04-03",21885,33,9696],["Putnam","2021-04-04",21885,21,9717],["Putnam","2021-04-05",21885,88,9805],["Putnam","2021-04-06",21885,134,9939],["Putnam","2021-04-07",21885,185,10124],["Putnam","2021-04-08",21885,140,10264],["Putnam","2021-04-09",21885,129,10393],["Putnam","2021-04-10",21885,31,10424],["Putnam","2021-04-11",21885,29,10453],["Putnam","2021-04-12",21885,72,10525],["Putnam","2021-04-13",21885,143,10668],["Putnam","2021-04-14",21885,231,10899],["Putnam","2021-04-15",21885,114,11013],["Putnam","2021-04-16",21885,308,11321],["Putnam","2021-04-17",21885,45,11366],["Putnam","2021-04-18",21885,24,11390],["Putnam","2021-04-19",21885,63,11453],["Putnam","2021-04-20",21885,107,11560],["Putnam","2021-04-21",21885,189,11749],["Putnam","2021-04-22",21885,124,11873],["Putnam","2021-04-23",21885,263,12136],["Putnam","2021-04-24",21885,20,12156],["Putnam","2021-04-25",21885,16,12172],["Putnam","2021-04-26",21885,63,12235],["Putnam","2021-04-27",21885,92,12327],["Putnam","2021-04-28",21885,183,12510],["Putnam","2021-04-29",21885,153,12663],["Putnam","2021-04-30",21885,153,12816],["Putnam","2021-05-01",21885,30,12846],["Putnam","2021-05-02",21885,19,12865],["Putnam","2021-05-03",21885,40,12905],["Putnam","2021-05-04",21885,76,12981],["Putnam","2021-05-05",21885,117,13098],["Putnam","2021-05-06",21885,85,13183],["Putnam","2021-05-07",21885,64,13247],["Putnam","2021-05-08",21885,36,13283],["Putnam","2021-05-09",21885,12,13295],["Putnam","2021-05-10",21885,58,13353],["Putnam","2021-05-11",21885,74,13427],["Putnam","2021-05-12",21885,83,13510],["Putnam","2021-05-13",21885,48,13558],["Putnam","2021-05-14",21885,68,13626],["Putnam","2021-05-15",21885,41,13667],["Putnam","2021-05-16",21885,26,13693],["Putnam","2021-05-17",21885,47,13740],["Putnam","2021-05-18",21885,65,13805],["Putnam","2021-05-19",21885,78,13883],["Putnam","2021-05-20",21885,63,13946],["Putnam","2021-05-21",21885,64,14010],["Putnam","2021-05-22",21885,33,14043],["Putnam","2021-05-23",21885,16,14059],["Putnam","2021-05-24",21885,18,14077],["Putnam","2021-05-25",21885,36,14113],["Putnam","2021-05-26",21885,82,14195],["Putnam","2021-05-27",21885,42,14237],["Putnam","2021-05-28",21885,29,14266],["Putnam","2021-05-29",21885,22,14288],["Putnam","2021-05-30",21885,8,14296],["Putnam","2021-05-31",21885,5,14301],["Putnam","2021-06-01",21885,33,14334],["Putnam","2021-06-02",21885,63,14397],["Putnam","2021-06-03",21885,36,14433],["Putnam","2021-06-04",21885,32,14465],["Putnam","2021-06-05",21885,18,14483],["Putnam","2021-06-06",21885,17,14500],["Putnam","2021-06-07",21885,32,14532],["Putnam","2021-06-08",21885,27,14559],["Putnam","2021-06-09",21885,35,14594],["Putnam","2021-06-10",21885,36,14630],["Putnam","2021-06-11",21885,36,14666],["Putnam","2021-06-12",21885,28,14694],["Putnam","2021-06-13",21885,14,14708],["Putnam","2021-06-14",21885,29,14737],["Putnam","2021-06-15",21885,25,14762],["Putnam","2021-06-16",21885,50,14812],["Putnam","2021-06-17",21885,25,14837],["Putnam","2021-06-18",21885,27,14864],["Putnam","2021-06-19",21885,23,14887],["Putnam","2021-06-20",21885,7,14894],["Putnam","2021-06-21",21885,23,14917],["Putnam","2021-06-22",21885,17,14934],["Putnam","2021-06-23",21885,46,14980],["Putnam","2021-06-24",21885,24,15004],["Putnam","2021-06-25",21885,30,15034],["Putnam","2021-06-26",21885,13,15047],["Putnam","2021-06-27",21885,8,15055],["Putnam","2021-06-28",21885,16,15071],["Putnam","2021-06-29",21885,16,15087],["Putnam","2021-06-30",21885,30,15117],["Putnam","2021-07-01",21885,26,15143],["Putnam","2021-07-02",21885,15,15158],["Putnam","2021-07-03",21885,8,15166],["Putnam","2021-07-04",21885,1,15167],["Putnam","2021-07-05",21885,13,15180],["Putnam","2021-07-06",21885,15,15195],["Putnam","2021-07-07",21885,21,15216],["Putnam","2021-07-08",21885,18,15234],["Putnam","2021-07-09",21885,20,15254],["Putnam","2021-07-10",21885,12,15266],["Putnam","2021-07-11",21885,7,15273],["Putnam","2021-07-12",21885,17,15290],["Putnam","2021-07-13",21885,14,15304],["Putnam","2021-07-14",21885,40,15344],["Putnam","2021-07-15",21885,16,15360],["Putnam","2021-07-16",21885,20,15380],["Putnam","2021-07-17",21885,19,15399],["Putnam","2021-07-18",21885,9,15408],["Putnam","2021-07-19",21885,23,15431],["Putnam","2021-07-20",21885,19,15450],["Putnam","2021-07-21",21885,44,15494],["Putnam","2021-07-22",21885,41,15535],["Putnam","2021-07-23",21885,41,15576],["Putnam","2021-07-24",21885,23,15599],["Putnam","2021-07-25",21885,12,15611],["Putnam","2021-07-26",21885,30,15641],["Putnam","2021-07-27",21885,42,15683],["Putnam","2021-07-28",21885,50,15733],["Putnam","2021-07-29",21885,28,15761],["Putnam","2021-07-30",21885,48,15809],["Putnam","2021-07-31",21885,33,15842],["Putnam","2021-08-01",21885,15,15857],["Putnam","2021-08-02",21885,47,15904],["Putnam","2021-08-03",21885,47,15951],["Putnam","2021-08-04",21885,57,16008],["Putnam","2021-08-05",21885,66,16074],["Putnam","2021-08-06",21885,48,16122],["Putnam","2021-08-07",21885,27,16149],["Putnam","2021-08-08",21885,51,16200],["Putnam","2021-08-09",21885,46,16246],["Putnam","2021-08-10",21885,43,16289],["Putnam","2021-08-11",21885,69,16358],["Putnam","2021-08-12",21885,49,16407],["Putnam","2021-08-13",21885,58,16465],["Putnam","2021-08-14",21885,51,16516],["Putnam","2021-08-15",21885,34,16550],["Putnam","2021-08-16",21885,49,16599],["Putnam","2021-08-17",21885,64,16663],["Putnam","2021-08-18",21885,66,16729],["Putnam","2021-08-19",21885,49,16778],["Putnam","2021-08-20",21885,73,16851],["Putnam","2021-08-21",21885,34,16885],["Putnam","2021-08-22",21885,24,16909],["Putnam","2021-08-23",21885,56,16965],["Putnam","2021-08-24",21885,60,17025],["Putnam","2021-08-25",21885,79,17104],["Putnam","2021-08-26",21885,87,17191],["Putnam","2021-08-27",21885,73,17264],["Putnam","2021-08-28",21885,38,17302],["Putnam","2021-08-29",21885,63,17365],["Putnam","2021-08-30",21885,52,17417],["Putnam","2021-08-31",21885,69,17486],["Putnam","2021-09-01",21885,67,17553],["Putnam","2021-09-02",21885,48,17601],["Putnam","2021-09-03",21885,73,17674],["Putnam","2021-09-04",21885,33,17707],["Putnam","2021-09-05",21885,23,17730],["Putnam","2021-09-06",21885,23,17753],["Putnam","2021-09-07",21885,55,17808],["Putnam","2021-09-08",21885,61,17869],["Putnam","2021-09-09",21885,46,17915],["Putnam","2021-09-10",21885,98,18013],["Putnam","2021-09-11",21885,34,18047],["Putnam","2021-09-12",21885,17,18064],["Putnam","2021-09-13",21885,45,18109],["Putnam","2021-09-14",21885,40,18149],["Putnam","2021-09-15",21885,52,18201],["Putnam","2021-09-16",21885,42,18243],["Putnam","2021-09-17",21885,39,18282],["Putnam","2021-09-18",21885,21,18303],["Putnam","2021-09-19",21885,23,18326],["Putnam","2021-09-20",21885,40,18366],["Putnam","2021-09-21",21885,42,18408],["Putnam","2021-09-22",21885,55,18463],["Putnam","2021-09-23",21885,37,18500],["Putnam","2021-09-24",21885,43,18543],["Putnam","2021-09-25",21885,26,18569],["Putnam","2021-09-26",21885,16,18585],["Putnam","2021-09-27",21885,38,18623],["Putnam","2021-09-28",21885,40,18663],["Putnam","2021-09-29",21885,43,18706],["Putnam","2021-09-30",21885,39,18745],["Putnam","2021-10-01",21885,52,18797],["Putnam","2021-10-02",21885,24,18821],["Putnam","2021-10-03",21885,9,18830],["Putnam","2021-10-04",21885,27,18857],["Putnam","2021-10-05",21885,30,18887],["Putnam","2021-10-06",21885,51,18938],["Putnam","2021-10-07",21885,31,18969],["Putnam","2021-10-08",21885,32,19001],["Putnam","2021-10-09",21885,6,19007],["Putnam","2021-10-10",21885,7,19014],["Putnam","2021-10-11",21885,17,19031],["Putnam","2021-10-12",21885,27,19058],["Putnam","2021-10-13",21885,36,19094],["Putnam","2021-10-14",21885,18,19112],["Putnam","2021-10-15",21885,21,19133],["Putnam","2021-10-16",21885,10,19143],["Putnam","2021-10-17",21885,7,19150],["Putnam","2021-10-18",21885,12,19162],["Putnam","2021-10-19",21885,23,19185],["Putnam","2021-10-20",21885,24,19209],["Putnam","2021-10-21",21885,22,19231],["Putnam","2021-10-22",21885,40,19271],["Putnam","2021-10-23",21885,33,19304],["Putnam","2021-10-24",21885,32,19336],["Putnam","2021-10-25",21885,65,19401],["Putnam","2021-10-26",21885,84,19485],["Putnam","2021-10-27",21885,173,19658],["Putnam","2021-10-28",21885,82,19740],["Putnam","2021-10-29",21885,88,19828],["Putnam","2021-10-30",21885,23,19851],["Putnam","2021-10-31",21885,23,19874],["Putnam","2021-11-01",21885,76,19950],["Putnam","2021-11-02",21885,68,20018],["Putnam","2021-11-03",21885,98,20116],["Putnam","2021-11-04",21885,61,20177],["Putnam","2021-11-05",21885,85,20262],["Putnam","2021-11-06",21885,30,20292],["Putnam","2021-11-07",21885,12,20304],["Putnam","2021-11-08",21885,57,20361],["Putnam","2021-11-09",21885,49,20410],["Putnam","2021-11-10",21885,138,20548],["Putnam","2021-11-11",21885,25,20573],["Putnam","2021-11-12",21885,78,20651],["Putnam","2021-11-13",21885,17,20668],["Putnam","2021-11-14",21885,8,20676],["Putnam","2021-11-15",21885,70,20746],["Putnam","2021-11-16",21885,61,20807],["Putnam","2021-11-17",21885,144,20951],["Putnam","2021-11-18",21885,103,21054],["Putnam","2021-11-19",21885,89,21143],["Putnam","2021-11-20",21885,21,21164],["Putnam","2021-11-21",21885,22,21186],["Putnam","2021-11-22",21885,72,21258],["Putnam","2021-11-23",21885,53,21311],["Putnam","2021-11-24",21885,45,21356],["Putnam","2021-11-26",21885,32,21388],["Putnam","2021-11-27",21885,23,21411],["Putnam","2021-11-28",21885,22,21433],["Putnam","2021-11-29",21885,54,21487],["Putnam","2021-11-30",21885,85,21572],["Putnam","2021-12-01",21885,169,21741],["Putnam","2021-12-02",21885,76,21817],["Putnam","2021-12-03",21885,66,21883],["Putnam","2021-12-04",21885,24,21907],["Putnam","2021-12-05",21885,24,21931],["Putnam","2021-12-06",21885,61,21992],["Putnam","2021-12-07",21885,59,22051],["Putnam","2021-12-08",21885,131,22182],["Putnam","2021-12-09",21885,34,22216],["Putnam","2021-12-10",21885,44,22260],["Putnam","2021-12-11",21885,31,22291],["Putnam","2021-12-12",21885,43,22334],["Putnam","2021-12-13",21885,47,22381],["Putnam","2021-12-14",21885,58,22439],["Putnam","2021-12-15",21885,88,22527],["Putnam","2021-12-16",21885,32,22559],["Putnam","2021-12-17",21885,38,22597],["Putnam","2021-12-18",21885,24,22621],["Putnam","2021-12-19",21885,30,22651],["Putnam","2021-12-20",21885,49,22700],["Putnam","2021-12-21",21885,51,22751],["Putnam","2021-12-22",21885,117,22868],["Putnam","2021-12-23",21885,44,22912],["Putnam","2021-12-24",21885,15,22927],["Putnam","2021-12-26",21885,15,22942],["Putnam","2021-12-27",21885,55,22997],["Putnam","2021-12-28",21885,55,23052],["Putnam","2021-12-29",21885,126,23178],["Putnam","2021-12-30",21885,47,23225],["Putnam","2021-12-31",21885,23,23248],["Putnam","2022-01-01",21885,14,23262],["Putnam","2022-01-02",21885,26,23288],["Putnam","2022-01-03",21885,17,23305],["Quitman","2020-12-21",2294,1,1],["Quitman","2020-12-22",2294,1,2],["Quitman","2020-12-24",2294,1,3],["Quitman","2020-12-26",2294,2,5],["Quitman","2020-12-28",2294,2,7],["Quitman","2020-12-29",2294,1,8],["Quitman","2021-01-01",2294,1,9],["Quitman","2021-01-02",2294,1,10],["Quitman","2021-01-04",2294,1,11],["Quitman","2021-01-05",2294,2,13],["Quitman","2021-01-06",2294,1,14],["Quitman","2021-01-07",2294,7,21],["Quitman","2021-01-08",2294,1,22],["Quitman","2021-01-11",2294,7,29],["Quitman","2021-01-12",2294,25,54],["Quitman","2021-01-13",2294,4,58],["Quitman","2021-01-14",2294,5,63],["Quitman","2021-01-15",2294,63,126],["Quitman","2021-01-18",2294,8,134],["Quitman","2021-01-19",2294,3,137],["Quitman","2021-01-20",2294,19,156],["Quitman","2021-01-21",2294,52,208],["Quitman","2021-01-22",2294,2,210],["Quitman","2021-01-23",2294,2,212],["Quitman","2021-01-25",2294,2,214],["Quitman","2021-01-26",2294,21,235],["Quitman","2021-01-27",2294,8,243],["Quitman","2021-01-28",2294,9,252],["Quitman","2021-01-29",2294,1,253],["Quitman","2021-02-01",2294,5,258],["Quitman","2021-02-02",2294,21,279],["Quitman","2021-02-03",2294,3,282],["Quitman","2021-02-04",2294,11,293],["Quitman","2021-02-05",2294,3,296],["Quitman","2021-02-06",2294,2,298],["Quitman","2021-02-08",2294,5,303],["Quitman","2021-02-09",2294,71,374],["Quitman","2021-02-10",2294,5,379],["Quitman","2021-02-11",2294,3,382],["Quitman","2021-02-12",2294,11,393],["Quitman","2021-02-15",2294,5,398],["Quitman","2021-02-16",2294,77,475],["Quitman","2021-02-17",2294,5,480],["Quitman","2021-02-18",2294,56,536],["Quitman","2021-02-19",2294,3,539],["Quitman","2021-02-20",2294,2,541],["Quitman","2021-02-21",2294,1,542],["Quitman","2021-02-23",2294,53,595],["Quitman","2021-02-24",2294,8,603],["Quitman","2021-02-25",2294,9,612],["Quitman","2021-02-26",2294,10,622],["Quitman","2021-02-27",2294,2,624],["Quitman","2021-02-28",2294,1,625],["Quitman","2021-03-01",2294,5,630],["Quitman","2021-03-02",2294,38,668],["Quitman","2021-03-03",2294,3,671],["Quitman","2021-03-05",2294,11,682],["Quitman","2021-03-08",2294,6,688],["Quitman","2021-03-09",2294,55,743],["Quitman","2021-03-10",2294,7,750],["Quitman","2021-03-12",2294,4,754],["Quitman","2021-03-15",2294,4,758],["Quitman","2021-03-16",2294,54,812],["Quitman","2021-03-17",2294,2,814],["Quitman","2021-03-18",2294,5,819],["Quitman","2021-03-19",2294,10,829],["Quitman","2021-03-22",2294,1,830],["Quitman","2021-03-23",2294,51,881],["Quitman","2021-03-24",2294,4,885],["Quitman","2021-03-25",2294,5,890],["Quitman","2021-03-26",2294,3,893],["Quitman","2021-03-28",2294,1,894],["Quitman","2021-03-29",2294,3,897],["Quitman","2021-03-30",2294,44,941],["Quitman","2021-03-31",2294,11,952],["Quitman","2021-04-01",2294,9,961],["Quitman","2021-04-02",2294,3,964],["Quitman","2021-04-05",2294,3,967],["Quitman","2021-04-06",2294,36,1003],["Quitman","2021-04-07",2294,9,1012],["Quitman","2021-04-08",2294,6,1018],["Quitman","2021-04-09",2294,2,1020],["Quitman","2021-04-10",2294,5,1025],["Quitman","2021-04-11",2294,2,1027],["Quitman","2021-04-12",2294,4,1031],["Quitman","2021-04-13",2294,42,1073],["Quitman","2021-04-14",2294,4,1077],["Quitman","2021-04-15",2294,7,1084],["Quitman","2021-04-16",2294,7,1091],["Quitman","2021-04-19",2294,4,1095],["Quitman","2021-04-20",2294,30,1125],["Quitman","2021-04-21",2294,2,1127],["Quitman","2021-04-22",2294,7,1134],["Quitman","2021-04-23",2294,6,1140],["Quitman","2021-04-24",2294,1,1141],["Quitman","2021-04-26",2294,3,1144],["Quitman","2021-04-27",2294,49,1193],["Quitman","2021-04-28",2294,11,1204],["Quitman","2021-04-29",2294,5,1209],["Quitman","2021-04-30",2294,6,1215],["Quitman","2021-05-02",2294,1,1216],["Quitman","2021-05-03",2294,3,1219],["Quitman","2021-05-04",2294,8,1227],["Quitman","2021-05-05",2294,9,1236],["Quitman","2021-05-06",2294,4,1240],["Quitman","2021-05-07",2294,3,1243],["Quitman","2021-05-11",2294,28,1271],["Quitman","2021-05-12",2294,5,1276],["Quitman","2021-05-13",2294,2,1278],["Quitman","2021-05-14",2294,7,1285],["Quitman","2021-05-15",2294,2,1287],["Quitman","2021-05-16",2294,1,1288],["Quitman","2021-05-17",2294,3,1291],["Quitman","2021-05-18",2294,2,1293],["Quitman","2021-05-19",2294,1,1294],["Quitman","2021-05-20",2294,3,1297],["Quitman","2021-05-21",2294,3,1300],["Quitman","2021-05-24",2294,1,1301],["Quitman","2021-05-25",2294,27,1328],["Quitman","2021-05-26",2294,3,1331],["Quitman","2021-05-27",2294,2,1333],["Quitman","2021-05-28",2294,2,1335],["Quitman","2021-05-29",2294,1,1336],["Quitman","2021-05-30",2294,1,1337],["Quitman","2021-06-01",2294,2,1339],["Quitman","2021-06-02",2294,1,1340],["Quitman","2021-06-03",2294,2,1342],["Quitman","2021-06-07",2294,2,1344],["Quitman","2021-06-08",2294,25,1369],["Quitman","2021-06-09",2294,1,1370],["Quitman","2021-06-10",2294,3,1373],["Quitman","2021-06-11",2294,1,1374],["Quitman","2021-06-14",2294,1,1375],["Quitman","2021-06-15",2294,4,1379],["Quitman","2021-06-16",2294,1,1380],["Quitman","2021-06-18",2294,2,1382],["Quitman","2021-06-21",2294,3,1385],["Quitman","2021-06-22",2294,2,1387],["Quitman","2021-06-23",2294,1,1388],["Quitman","2021-06-24",2294,2,1390],["Quitman","2021-06-25",2294,1,1391],["Quitman","2021-06-26",2294,1,1392],["Quitman","2021-06-28",2294,1,1393],["Quitman","2021-06-29",2294,14,1407],["Quitman","2021-07-01",2294,2,1409],["Quitman","2021-07-05",2294,1,1410],["Quitman","2021-07-07",2294,1,1411],["Quitman","2021-07-08",2294,1,1412],["Quitman","2021-07-13",2294,7,1419],["Quitman","2021-07-14",2294,1,1420],["Quitman","2021-07-16",2294,2,1422],["Quitman","2021-07-19",2294,3,1425],["Quitman","2021-07-20",2294,2,1427],["Quitman","2021-07-21",2294,1,1428],["Quitman","2021-07-23",2294,2,1430],["Quitman","2021-07-27",2294,17,1447],["Quitman","2021-07-29",2294,7,1454],["Quitman","2021-07-30",2294,4,1458],["Quitman","2021-07-31",2294,2,1460],["Quitman","2021-08-03",2294,1,1461],["Quitman","2021-08-04",2294,1,1462],["Quitman","2021-08-05",2294,3,1465],["Quitman","2021-08-06",2294,2,1467],["Quitman","2021-08-08",2294,3,1470],["Quitman","2021-08-10",2294,4,1474],["Quitman","2021-08-11",2294,2,1476],["Quitman","2021-08-12",2294,1,1477],["Quitman","2021-08-13",2294,5,1482],["Quitman","2021-08-14",2294,1,1483],["Quitman","2021-08-16",2294,8,1491],["Quitman","2021-08-17",2294,3,1494],["Quitman","2021-08-18",2294,1,1495],["Quitman","2021-08-19",2294,5,1500],["Quitman","2021-08-20",2294,3,1503],["Quitman","2021-08-21",2294,1,1504],["Quitman","2021-08-23",2294,1,1505],["Quitman","2021-08-24",2294,3,1508],["Quitman","2021-08-25",2294,1,1509],["Quitman","2021-08-26",2294,2,1511],["Quitman","2021-08-27",2294,1,1512],["Quitman","2021-08-28",2294,2,1514],["Quitman","2021-08-29",2294,2,1516],["Quitman","2021-08-30",2294,1,1517],["Quitman","2021-08-31",2294,8,1525],["Quitman","2021-09-02",2294,3,1528],["Quitman","2021-09-03",2294,2,1530],["Quitman","2021-09-04",2294,2,1532],["Quitman","2021-09-05",2294,1,1533],["Quitman","2021-09-07",2294,4,1537],["Quitman","2021-09-08",2294,1,1538],["Quitman","2021-09-09",2294,1,1539],["Quitman","2021-09-10",2294,5,1544],["Quitman","2021-09-11",2294,1,1545],["Quitman","2021-09-12",2294,4,1549],["Quitman","2021-09-13",2294,9,1558],["Quitman","2021-09-14",2294,3,1561],["Quitman","2021-09-15",2294,3,1564],["Quitman","2021-09-16",2294,2,1566],["Quitman","2021-09-17",2294,2,1568],["Quitman","2021-09-18",2294,2,1570],["Quitman","2021-09-19",2294,2,1572],["Quitman","2021-09-20",2294,2,1574],["Quitman","2021-09-21",2294,1,1575],["Quitman","2021-09-22",2294,4,1579],["Quitman","2021-09-23",2294,1,1580],["Quitman","2021-09-25",2294,1,1581],["Quitman","2021-09-26",2294,1,1582],["Quitman","2021-09-27",2294,3,1585],["Quitman","2021-09-29",2294,3,1588],["Quitman","2021-09-30",2294,2,1590],["Quitman","2021-10-01",2294,5,1595],["Quitman","2021-10-02",2294,1,1596],["Quitman","2021-10-03",2294,3,1599],["Quitman","2021-10-04",2294,2,1601],["Quitman","2021-10-05",2294,2,1603],["Quitman","2021-10-06",2294,1,1604],["Quitman","2021-10-07",2294,2,1606],["Quitman","2021-10-08",2294,1,1607],["Quitman","2021-10-09",2294,2,1609],["Quitman","2021-10-11",2294,1,1610],["Quitman","2021-10-12",2294,1,1611],["Quitman","2021-10-13",2294,2,1613],["Quitman","2021-10-14",2294,1,1614],["Quitman","2021-10-15",2294,2,1616],["Quitman","2021-10-19",2294,2,1618],["Quitman","2021-10-20",2294,2,1620],["Quitman","2021-10-21",2294,3,1623],["Quitman","2021-10-23",2294,1,1624],["Quitman","2021-10-24",2294,1,1625],["Quitman","2021-10-25",2294,5,1630],["Quitman","2021-10-26",2294,8,1638],["Quitman","2021-10-27",2294,3,1641],["Quitman","2021-10-28",2294,1,1642],["Quitman","2021-10-29",2294,1,1643],["Quitman","2021-10-30",2294,1,1644],["Quitman","2021-11-01",2294,19,1663],["Quitman","2021-11-02",2294,5,1668],["Quitman","2021-11-03",2294,5,1673],["Quitman","2021-11-04",2294,4,1677],["Quitman","2021-11-05",2294,5,1682],["Quitman","2021-11-08",2294,20,1702],["Quitman","2021-11-09",2294,2,1704],["Quitman","2021-11-10",2294,6,1710],["Quitman","2021-11-11",2294,4,1714],["Quitman","2021-11-12",2294,2,1716],["Quitman","2021-11-15",2294,35,1751],["Quitman","2021-11-16",2294,2,1753],["Quitman","2021-11-17",2294,5,1758],["Quitman","2021-11-19",2294,2,1760],["Quitman","2021-11-22",2294,14,1774],["Quitman","2021-11-23",2294,4,1778],["Quitman","2021-11-24",2294,9,1787],["Quitman","2021-11-26",2294,2,1789],["Quitman","2021-11-27",2294,1,1790],["Quitman","2021-11-29",2294,21,1811],["Quitman","2021-11-30",2294,16,1827],["Quitman","2021-12-01",2294,3,1830],["Quitman","2021-12-02",2294,5,1835],["Quitman","2021-12-03",2294,3,1838],["Quitman","2021-12-06",2294,19,1857],["Quitman","2021-12-07",2294,7,1864],["Quitman","2021-12-08",2294,2,1866],["Quitman","2021-12-09",2294,3,1869],["Quitman","2021-12-10",2294,1,1870],["Quitman","2021-12-11",2294,2,1872],["Quitman","2021-12-13",2294,21,1893],["Quitman","2021-12-14",2294,17,1910],["Quitman","2021-12-15",2294,2,1912],["Quitman","2021-12-16",2294,3,1915],["Quitman","2021-12-17",2294,3,1918],["Quitman","2021-12-19",2294,1,1919],["Quitman","2021-12-20",2294,9,1928],["Quitman","2021-12-21",2294,2,1930],["Quitman","2021-12-22",2294,3,1933],["Quitman","2021-12-24",2294,2,1935],["Quitman","2021-12-27",2294,6,1941],["Quitman","2021-12-28",2294,2,1943],["Quitman","2021-12-29",2294,1,1944],["Quitman","2022-01-03",2294,4,1948],["Rabun","2020-12-18",16986,4,4],["Rabun","2020-12-19",16986,5,9],["Rabun","2020-12-20",16986,1,10],["Rabun","2020-12-21",16986,5,15],["Rabun","2020-12-22",16986,9,24],["Rabun","2020-12-23",16986,14,38],["Rabun","2020-12-24",16986,7,45],["Rabun","2020-12-27",16986,1,46],["Rabun","2020-12-28",16986,26,72],["Rabun","2020-12-29",16986,43,115],["Rabun","2020-12-30",16986,42,157],["Rabun","2020-12-31",16986,8,165],["Rabun","2021-01-01",16986,17,182],["Rabun","2021-01-03",16986,2,184],["Rabun","2021-01-04",16986,43,227],["Rabun","2021-01-05",16986,49,276],["Rabun","2021-01-06",16986,20,296],["Rabun","2021-01-07",16986,27,323],["Rabun","2021-01-08",16986,27,350],["Rabun","2021-01-09",16986,8,358],["Rabun","2021-01-10",16986,8,366],["Rabun","2021-01-11",16986,55,421],["Rabun","2021-01-12",16986,82,503],["Rabun","2021-01-13",16986,121,624],["Rabun","2021-01-14",16986,112,736],["Rabun","2021-01-15",16986,73,809],["Rabun","2021-01-16",16986,31,840],["Rabun","2021-01-17",16986,11,851],["Rabun","2021-01-18",16986,120,971],["Rabun","2021-01-19",16986,617,1588],["Rabun","2021-01-20",16986,143,1731],["Rabun","2021-01-21",16986,88,1819],["Rabun","2021-01-22",16986,154,1973],["Rabun","2021-01-23",16986,13,1986],["Rabun","2021-01-24",16986,63,2049],["Rabun","2021-01-25",16986,115,2164],["Rabun","2021-01-26",16986,145,2309],["Rabun","2021-01-27",16986,147,2456],["Rabun","2021-01-28",16986,47,2503],["Rabun","2021-01-29",16986,47,2550],["Rabun","2021-01-30",16986,19,2569],["Rabun","2021-01-31",16986,5,2574],["Rabun","2021-02-01",16986,66,2640],["Rabun","2021-02-02",16986,196,2836],["Rabun","2021-02-03",16986,120,2956],["Rabun","2021-02-04",16986,103,3059],["Rabun","2021-02-05",16986,103,3162],["Rabun","2021-02-06",16986,6,3168],["Rabun","2021-02-07",16986,1,3169],["Rabun","2021-02-08",16986,130,3299],["Rabun","2021-02-09",16986,123,3422],["Rabun","2021-02-10",16986,115,3537],["Rabun","2021-02-11",16986,69,3606],["Rabun","2021-02-12",16986,107,3713],["Rabun","2021-02-13",16986,47,3760],["Rabun","2021-02-14",16986,12,3772],["Rabun","2021-02-15",16986,151,3923],["Rabun","2021-02-16",16986,599,4522],["Rabun","2021-02-17",16986,155,4677],["Rabun","2021-02-18",16986,88,4765],["Rabun","2021-02-19",16986,140,4905],["Rabun","2021-02-20",16986,11,4916],["Rabun","2021-02-21",16986,19,4935],["Rabun","2021-02-22",16986,109,5044],["Rabun","2021-02-23",16986,140,5184],["Rabun","2021-02-24",16986,167,5351],["Rabun","2021-02-25",16986,126,5477],["Rabun","2021-02-26",16986,91,5568],["Rabun","2021-02-27",16986,25,5593],["Rabun","2021-02-28",16986,27,5620],["Rabun","2021-03-01",16986,98,5718],["Rabun","2021-03-02",16986,242,5960],["Rabun","2021-03-03",16986,189,6149],["Rabun","2021-03-04",16986,126,6275],["Rabun","2021-03-05",16986,148,6423],["Rabun","2021-03-06",16986,7,6430],["Rabun","2021-03-07",16986,24,6454],["Rabun","2021-03-08",16986,202,6656],["Rabun","2021-03-09",16986,163,6819],["Rabun","2021-03-10",16986,121,6940],["Rabun","2021-03-11",16986,72,7012],["Rabun","2021-03-12",16986,157,7169],["Rabun","2021-03-13",16986,31,7200],["Rabun","2021-03-14",16986,11,7211],["Rabun","2021-03-15",16986,127,7338],["Rabun","2021-03-16",16986,135,7473],["Rabun","2021-03-17",16986,169,7642],["Rabun","2021-03-18",16986,100,7742],["Rabun","2021-03-19",16986,162,7904],["Rabun","2021-03-20",16986,37,7941],["Rabun","2021-03-21",16986,43,7984],["Rabun","2021-03-22",16986,101,8085],["Rabun","2021-03-23",16986,105,8190],["Rabun","2021-03-24",16986,135,8325],["Rabun","2021-03-25",16986,122,8447],["Rabun","2021-03-26",16986,117,8564],["Rabun","2021-03-27",16986,26,8590],["Rabun","2021-03-28",16986,24,8614],["Rabun","2021-03-29",16986,91,8705],["Rabun","2021-03-30",16986,117,8822],["Rabun","2021-03-31",16986,149,8971],["Rabun","2021-04-01",16986,112,9083],["Rabun","2021-04-02",16986,144,9227],["Rabun","2021-04-03",16986,26,9253],["Rabun","2021-04-04",16986,35,9288],["Rabun","2021-04-05",16986,133,9421],["Rabun","2021-04-06",16986,113,9534],["Rabun","2021-04-07",16986,133,9667],["Rabun","2021-04-08",16986,109,9776],["Rabun","2021-04-09",16986,126,9902],["Rabun","2021-04-10",16986,21,9923],["Rabun","2021-04-11",16986,18,9941],["Rabun","2021-04-12",16986,128,10069],["Rabun","2021-04-13",16986,114,10183],["Rabun","2021-04-14",16986,169,10352],["Rabun","2021-04-15",16986,138,10490],["Rabun","2021-04-16",16986,205,10695],["Rabun","2021-04-17",16986,32,10727],["Rabun","2021-04-18",16986,16,10743],["Rabun","2021-04-19",16986,92,10835],["Rabun","2021-04-20",16986,102,10937],["Rabun","2021-04-21",16986,117,11054],["Rabun","2021-04-22",16986,109,11163],["Rabun","2021-04-23",16986,112,11275],["Rabun","2021-04-24",16986,19,11294],["Rabun","2021-04-25",16986,7,11301],["Rabun","2021-04-26",16986,69,11370],["Rabun","2021-04-27",16986,72,11442],["Rabun","2021-04-28",16986,119,11561],["Rabun","2021-04-29",16986,58,11619],["Rabun","2021-04-30",16986,145,11764],["Rabun","2021-05-01",16986,27,11791],["Rabun","2021-05-02",16986,10,11801],["Rabun","2021-05-03",16986,47,11848],["Rabun","2021-05-04",16986,47,11895],["Rabun","2021-05-05",16986,71,11966],["Rabun","2021-05-06",16986,51,12017],["Rabun","2021-05-07",16986,100,12117],["Rabun","2021-05-08",16986,13,12130],["Rabun","2021-05-09",16986,8,12138],["Rabun","2021-05-10",16986,52,12190],["Rabun","2021-05-11",16986,41,12231],["Rabun","2021-05-12",16986,72,12303],["Rabun","2021-05-13",16986,43,12346],["Rabun","2021-05-14",16986,64,12410],["Rabun","2021-05-15",16986,35,12445],["Rabun","2021-05-16",16986,9,12454],["Rabun","2021-05-17",16986,40,12494],["Rabun","2021-05-18",16986,49,12543],["Rabun","2021-05-19",16986,53,12596],["Rabun","2021-05-20",16986,70,12666],["Rabun","2021-05-21",16986,36,12702],["Rabun","2021-05-22",16986,19,12721],["Rabun","2021-05-23",16986,5,12726],["Rabun","2021-05-24",16986,21,12747],["Rabun","2021-05-25",16986,19,12766],["Rabun","2021-05-26",16986,41,12807],["Rabun","2021-05-27",16986,31,12838],["Rabun","2021-05-28",16986,43,12881],["Rabun","2021-05-29",16986,10,12891],["Rabun","2021-05-30",16986,4,12895],["Rabun","2021-05-31",16986,2,12897],["Rabun","2021-06-01",16986,45,12942],["Rabun","2021-06-02",16986,40,12982],["Rabun","2021-06-03",16986,22,13004],["Rabun","2021-06-04",16986,52,13056],["Rabun","2021-06-05",16986,14,13070],["Rabun","2021-06-06",16986,10,13080],["Rabun","2021-06-07",16986,20,13100],["Rabun","2021-06-08",16986,22,13122],["Rabun","2021-06-09",16986,29,13151],["Rabun","2021-06-10",16986,21,13172],["Rabun","2021-06-11",16986,26,13198],["Rabun","2021-06-12",16986,15,13213],["Rabun","2021-06-13",16986,2,13215],["Rabun","2021-06-14",16986,35,13250],["Rabun","2021-06-15",16986,33,13283],["Rabun","2021-06-16",16986,20,13303],["Rabun","2021-06-17",16986,15,13318],["Rabun","2021-06-18",16986,25,13343],["Rabun","2021-06-19",16986,6,13349],["Rabun","2021-06-20",16986,3,13352],["Rabun","2021-06-21",16986,16,13368],["Rabun","2021-06-22",16986,20,13388],["Rabun","2021-06-23",16986,24,13412],["Rabun","2021-06-24",16986,10,13422],["Rabun","2021-06-25",16986,14,13436],["Rabun","2021-06-26",16986,8,13444],["Rabun","2021-06-27",16986,2,13446],["Rabun","2021-06-28",16986,14,13460],["Rabun","2021-06-29",16986,18,13478],["Rabun","2021-06-30",16986,17,13495],["Rabun","2021-07-01",16986,10,13505],["Rabun","2021-07-02",16986,14,13519],["Rabun","2021-07-03",16986,2,13521],["Rabun","2021-07-05",16986,15,13536],["Rabun","2021-07-06",16986,31,13567],["Rabun","2021-07-07",16986,8,13575],["Rabun","2021-07-08",16986,15,13590],["Rabun","2021-07-09",16986,19,13609],["Rabun","2021-07-11",16986,6,13615],["Rabun","2021-07-12",16986,15,13630],["Rabun","2021-07-13",16986,33,13663],["Rabun","2021-07-14",16986,16,13679],["Rabun","2021-07-15",16986,17,13696],["Rabun","2021-07-16",16986,20,13716],["Rabun","2021-07-17",16986,9,13725],["Rabun","2021-07-18",16986,7,13732],["Rabun","2021-07-19",16986,6,13738],["Rabun","2021-07-20",16986,19,13757],["Rabun","2021-07-21",16986,13,13770],["Rabun","2021-07-22",16986,14,13784],["Rabun","2021-07-23",16986,22,13806],["Rabun","2021-07-24",16986,9,13815],["Rabun","2021-07-25",16986,1,13816],["Rabun","2021-07-26",16986,18,13834],["Rabun","2021-07-27",16986,21,13855],["Rabun","2021-07-28",16986,21,13876],["Rabun","2021-07-29",16986,32,13908],["Rabun","2021-07-30",16986,23,13931],["Rabun","2021-07-31",16986,15,13946],["Rabun","2021-08-01",16986,9,13955],["Rabun","2021-08-02",16986,33,13988],["Rabun","2021-08-03",16986,46,14034],["Rabun","2021-08-04",16986,51,14085],["Rabun","2021-08-05",16986,22,14107],["Rabun","2021-08-06",16986,33,14140],["Rabun","2021-08-07",16986,30,14170],["Rabun","2021-08-08",16986,10,14180],["Rabun","2021-08-09",16986,41,14221],["Rabun","2021-08-10",16986,33,14254],["Rabun","2021-08-11",16986,26,14280],["Rabun","2021-08-12",16986,32,14312],["Rabun","2021-08-13",16986,50,14362],["Rabun","2021-08-14",16986,21,14383],["Rabun","2021-08-15",16986,21,14404],["Rabun","2021-08-16",16986,39,14443],["Rabun","2021-08-17",16986,29,14472],["Rabun","2021-08-18",16986,49,14521],["Rabun","2021-08-19",16986,30,14551],["Rabun","2021-08-20",16986,43,14594],["Rabun","2021-08-21",16986,18,14612],["Rabun","2021-08-22",16986,8,14620],["Rabun","2021-08-23",16986,51,14671],["Rabun","2021-08-24",16986,49,14720],["Rabun","2021-08-25",16986,49,14769],["Rabun","2021-08-26",16986,55,14824],["Rabun","2021-08-27",16986,87,14911],["Rabun","2021-08-28",16986,37,14948],["Rabun","2021-08-29",16986,31,14979],["Rabun","2021-08-30",16986,61,15040],["Rabun","2021-08-31",16986,49,15089],["Rabun","2021-09-01",16986,66,15155],["Rabun","2021-09-02",16986,68,15223],["Rabun","2021-09-03",16986,69,15292],["Rabun","2021-09-04",16986,21,15313],["Rabun","2021-09-05",16986,34,15347],["Rabun","2021-09-06",16986,3,15350],["Rabun","2021-09-07",16986,22,15372],["Rabun","2021-09-08",16986,52,15424],["Rabun","2021-09-09",16986,42,15466],["Rabun","2021-09-10",16986,53,15519],["Rabun","2021-09-11",16986,31,15550],["Rabun","2021-09-12",16986,15,15565],["Rabun","2021-09-13",16986,37,15602],["Rabun","2021-09-14",16986,30,15632],["Rabun","2021-09-15",16986,32,15664],["Rabun","2021-09-16",16986,33,15697],["Rabun","2021-09-17",16986,59,15756],["Rabun","2021-09-18",16986,18,15774],["Rabun","2021-09-19",16986,9,15783],["Rabun","2021-09-20",16986,27,15810],["Rabun","2021-09-21",16986,25,15835],["Rabun","2021-09-22",16986,37,15872],["Rabun","2021-09-23",16986,40,15912],["Rabun","2021-09-24",16986,31,15943],["Rabun","2021-09-25",16986,24,15967],["Rabun","2021-09-26",16986,14,15981],["Rabun","2021-09-27",16986,28,16009],["Rabun","2021-09-28",16986,29,16038],["Rabun","2021-09-29",16986,37,16075],["Rabun","2021-09-30",16986,39,16114],["Rabun","2021-10-01",16986,40,16154],["Rabun","2021-10-02",16986,21,16175],["Rabun","2021-10-03",16986,10,16185],["Rabun","2021-10-04",16986,32,16217],["Rabun","2021-10-05",16986,24,16241],["Rabun","2021-10-06",16986,19,16260],["Rabun","2021-10-07",16986,18,16278],["Rabun","2021-10-08",16986,29,16307],["Rabun","2021-10-09",16986,11,16318],["Rabun","2021-10-10",16986,11,16329],["Rabun","2021-10-11",16986,7,16336],["Rabun","2021-10-12",16986,20,16356],["Rabun","2021-10-13",16986,17,16373],["Rabun","2021-10-14",16986,18,16391],["Rabun","2021-10-15",16986,18,16409],["Rabun","2021-10-16",16986,7,16416],["Rabun","2021-10-17",16986,2,16418],["Rabun","2021-10-18",16986,20,16438],["Rabun","2021-10-19",16986,21,16459],["Rabun","2021-10-20",16986,21,16480],["Rabun","2021-10-21",16986,21,16501],["Rabun","2021-10-22",16986,64,16565],["Rabun","2021-10-23",16986,44,16609],["Rabun","2021-10-24",16986,28,16637],["Rabun","2021-10-25",16986,96,16733],["Rabun","2021-10-26",16986,105,16838],["Rabun","2021-10-27",16986,171,17009],["Rabun","2021-10-28",16986,127,17136],["Rabun","2021-10-29",16986,111,17247],["Rabun","2021-10-30",16986,20,17267],["Rabun","2021-10-31",16986,10,17277],["Rabun","2021-11-01",16986,111,17388],["Rabun","2021-11-02",16986,85,17473],["Rabun","2021-11-03",16986,71,17544],["Rabun","2021-11-04",16986,75,17619],["Rabun","2021-11-05",16986,73,17692],["Rabun","2021-11-06",16986,26,17718],["Rabun","2021-11-07",16986,17,17735],["Rabun","2021-11-08",16986,61,17796],["Rabun","2021-11-09",16986,41,17837],["Rabun","2021-11-10",16986,61,17898],["Rabun","2021-11-11",16986,77,17975],["Rabun","2021-11-12",16986,90,18065],["Rabun","2021-11-13",16986,13,18078],["Rabun","2021-11-14",16986,7,18085],["Rabun","2021-11-15",16986,47,18132],["Rabun","2021-11-16",16986,60,18192],["Rabun","2021-11-17",16986,66,18258],["Rabun","2021-11-18",16986,35,18293],["Rabun","2021-11-19",16986,58,18351],["Rabun","2021-11-20",16986,29,18380],["Rabun","2021-11-21",16986,12,18392],["Rabun","2021-11-22",16986,54,18446],["Rabun","2021-11-23",16986,49,18495],["Rabun","2021-11-24",16986,19,18514],["Rabun","2021-11-26",16986,23,18537],["Rabun","2021-11-27",16986,27,18564],["Rabun","2021-11-28",16986,17,18581],["Rabun","2021-11-29",16986,63,18644],["Rabun","2021-11-30",16986,57,18701],["Rabun","2021-12-01",16986,92,18793],["Rabun","2021-12-02",16986,58,18851],["Rabun","2021-12-03",16986,117,18968],["Rabun","2021-12-04",16986,27,18995],["Rabun","2021-12-05",16986,13,19008],["Rabun","2021-12-06",16986,41,19049],["Rabun","2021-12-07",16986,40,19089],["Rabun","2021-12-08",16986,45,19134],["Rabun","2021-12-09",16986,42,19176],["Rabun","2021-12-10",16986,74,19250],["Rabun","2021-12-11",16986,19,19269],["Rabun","2021-12-12",16986,15,19284],["Rabun","2021-12-13",16986,34,19318],["Rabun","2021-12-14",16986,50,19368],["Rabun","2021-12-15",16986,70,19438],["Rabun","2021-12-16",16986,40,19478],["Rabun","2021-12-17",16986,54,19532],["Rabun","2021-12-18",16986,23,19555],["Rabun","2021-12-19",16986,16,19571],["Rabun","2021-12-20",16986,53,19624],["Rabun","2021-12-21",16986,78,19702],["Rabun","2021-12-22",16986,44,19746],["Rabun","2021-12-23",16986,42,19788],["Rabun","2021-12-24",16986,12,19800],["Rabun","2021-12-26",16986,7,19807],["Rabun","2021-12-27",16986,37,19844],["Rabun","2021-12-28",16986,43,19887],["Rabun","2021-12-29",16986,53,19940],["Rabun","2021-12-30",16986,55,19995],["Rabun","2021-12-31",16986,31,20026],["Rabun","2022-01-01",16986,6,20032],["Rabun","2022-01-02",16986,12,20044],["Rabun","2022-01-03",16986,9,20053],["Randolph","2020-12-20",6754,1,1],["Randolph","2020-12-21",6754,2,3],["Randolph","2020-12-22",6754,5,8],["Randolph","2020-12-23",6754,5,13],["Randolph","2020-12-24",6754,8,21],["Randolph","2020-12-26",6754,8,29],["Randolph","2020-12-28",6754,5,34],["Randolph","2020-12-29",6754,7,41],["Randolph","2020-12-30",6754,4,45],["Randolph","2020-12-31",6754,5,50],["Randolph","2021-01-01",6754,2,52],["Randolph","2021-01-02",6754,7,59],["Randolph","2021-01-03",6754,1,60],["Randolph","2021-01-04",6754,38,98],["Randolph","2021-01-05",6754,9,107],["Randolph","2021-01-06",6754,15,122],["Randolph","2021-01-07",6754,5,127],["Randolph","2021-01-08",6754,8,135],["Randolph","2021-01-11",6754,41,176],["Randolph","2021-01-12",6754,20,196],["Randolph","2021-01-13",6754,28,224],["Randolph","2021-01-14",6754,121,345],["Randolph","2021-01-15",6754,97,442],["Randolph","2021-01-16",6754,6,448],["Randolph","2021-01-18",6754,21,469],["Randolph","2021-01-19",6754,10,479],["Randolph","2021-01-20",6754,17,496],["Randolph","2021-01-21",6754,25,521],["Randolph","2021-01-22",6754,146,667],["Randolph","2021-01-23",6754,5,672],["Randolph","2021-01-25",6754,45,717],["Randolph","2021-01-26",6754,20,737],["Randolph","2021-01-27",6754,28,765],["Randolph","2021-01-28",6754,55,820],["Randolph","2021-01-29",6754,17,837],["Randolph","2021-01-31",6754,3,840],["Randolph","2021-02-01",6754,27,867],["Randolph","2021-02-02",6754,23,890],["Randolph","2021-02-03",6754,30,920],["Randolph","2021-02-04",6754,73,993],["Randolph","2021-02-05",6754,34,1027],["Randolph","2021-02-06",6754,6,1033],["Randolph","2021-02-07",6754,1,1034],["Randolph","2021-02-08",6754,43,1077],["Randolph","2021-02-09",6754,27,1104],["Randolph","2021-02-10",6754,35,1139],["Randolph","2021-02-11",6754,103,1242],["Randolph","2021-02-12",6754,23,1265],["Randolph","2021-02-13",6754,8,1273],["Randolph","2021-02-15",6754,148,1421],["Randolph","2021-02-16",6754,28,1449],["Randolph","2021-02-17",6754,11,1460],["Randolph","2021-02-18",6754,24,1484],["Randolph","2021-02-19",6754,141,1625],["Randolph","2021-02-20",6754,2,1627],["Randolph","2021-02-21",6754,2,1629],["Randolph","2021-02-22",6754,8,1637],["Randolph","2021-02-23",6754,17,1654],["Randolph","2021-02-24",6754,34,1688],["Randolph","2021-02-25",6754,30,1718],["Randolph","2021-02-26",6754,122,1840],["Randolph","2021-02-27",6754,3,1843],["Randolph","2021-03-01",6754,13,1856],["Randolph","2021-03-02",6754,17,1873],["Randolph","2021-03-03",6754,11,1884],["Randolph","2021-03-04",6754,15,1899],["Randolph","2021-03-05",6754,134,2033],["Randolph","2021-03-06",6754,2,2035],["Randolph","2021-03-08",6754,20,2055],["Randolph","2021-03-09",6754,30,2085],["Randolph","2021-03-10",6754,37,2122],["Randolph","2021-03-11",6754,145,2267],["Randolph","2021-03-12",6754,19,2286],["Randolph","2021-03-13",6754,4,2290],["Randolph","2021-03-15",6754,26,2316],["Randolph","2021-03-16",6754,21,2337],["Randolph","2021-03-17",6754,30,2367],["Randolph","2021-03-18",6754,17,2384],["Randolph","2021-03-19",6754,90,2474],["Randolph","2021-03-20",6754,8,2482],["Randolph","2021-03-22",6754,11,2493],["Randolph","2021-03-23",6754,21,2514],["Randolph","2021-03-24",6754,27,2541],["Randolph","2021-03-25",6754,101,2642],["Randolph","2021-03-26",6754,11,2653],["Randolph","2021-03-27",6754,2,2655],["Randolph","2021-03-28",6754,2,2657],["Randolph","2021-03-29",6754,77,2734],["Randolph","2021-03-30",6754,29,2763],["Randolph","2021-03-31",6754,26,2789],["Randolph","2021-04-01",6754,64,2853],["Randolph","2021-04-02",6754,12,2865],["Randolph","2021-04-03",6754,2,2867],["Randolph","2021-04-04",6754,5,2872],["Randolph","2021-04-05",6754,13,2885],["Randolph","2021-04-06",6754,25,2910],["Randolph","2021-04-07",6754,25,2935],["Randolph","2021-04-08",6754,43,2978],["Randolph","2021-04-09",6754,105,3083],["Randolph","2021-04-10",6754,61,3144],["Randolph","2021-04-11",6754,4,3148],["Randolph","2021-04-12",6754,15,3163],["Randolph","2021-04-13",6754,51,3214],["Randolph","2021-04-14",6754,17,3231],["Randolph","2021-04-15",6754,47,3278],["Randolph","2021-04-16",6754,73,3351],["Randolph","2021-04-17",6754,2,3353],["Randolph","2021-04-18",6754,2,3355],["Randolph","2021-04-19",6754,22,3377],["Randolph","2021-04-20",6754,24,3401],["Randolph","2021-04-21",6754,6,3407],["Randolph","2021-04-22",6754,135,3542],["Randolph","2021-04-23",6754,51,3593],["Randolph","2021-04-24",6754,1,3594],["Randolph","2021-04-25",6754,3,3597],["Randolph","2021-04-26",6754,29,3626],["Randolph","2021-04-27",6754,37,3663],["Randolph","2021-04-28",6754,24,3687],["Randolph","2021-04-29",6754,45,3732],["Randolph","2021-04-30",6754,54,3786],["Randolph","2021-05-01",6754,5,3791],["Randolph","2021-05-03",6754,7,3798],["Randolph","2021-05-04",6754,13,3811],["Randolph","2021-05-05",6754,15,3826],["Randolph","2021-05-06",6754,37,3863],["Randolph","2021-05-07",6754,36,3899],["Randolph","2021-05-08",6754,7,3906],["Randolph","2021-05-09",6754,1,3907],["Randolph","2021-05-10",6754,11,3918],["Randolph","2021-05-11",6754,8,3926],["Randolph","2021-05-12",6754,12,3938],["Randolph","2021-05-13",6754,15,3953],["Randolph","2021-05-14",6754,31,3984],["Randolph","2021-05-15",6754,25,4009],["Randolph","2021-05-16",6754,3,4012],["Randolph","2021-05-17",6754,14,4026],["Randolph","2021-05-18",6754,18,4044],["Randolph","2021-05-19",6754,19,4063],["Randolph","2021-05-20",6754,24,4087],["Randolph","2021-05-21",6754,14,4101],["Randolph","2021-05-22",6754,7,4108],["Randolph","2021-05-24",6754,35,4143],["Randolph","2021-05-25",6754,18,4161],["Randolph","2021-05-26",6754,13,4174],["Randolph","2021-05-27",6754,9,4183],["Randolph","2021-05-28",6754,52,4235],["Randolph","2021-05-29",6754,7,4242],["Randolph","2021-05-30",6754,3,4245],["Randolph","2021-06-01",6754,24,4269],["Randolph","2021-06-02",6754,11,4280],["Randolph","2021-06-03",6754,13,4293],["Randolph","2021-06-04",6754,6,4299],["Randolph","2021-06-05",6754,1,4300],["Randolph","2021-06-06",6754,2,4302],["Randolph","2021-06-07",6754,8,4310],["Randolph","2021-06-08",6754,17,4327],["Randolph","2021-06-09",6754,11,4338],["Randolph","2021-06-10",6754,12,4350],["Randolph","2021-06-11",6754,23,4373],["Randolph","2021-06-12",6754,6,4379],["Randolph","2021-06-14",6754,6,4385],["Randolph","2021-06-15",6754,7,4392],["Randolph","2021-06-16",6754,16,4408],["Randolph","2021-06-17",6754,13,4421],["Randolph","2021-06-18",6754,14,4435],["Randolph","2021-06-19",6754,7,4442],["Randolph","2021-06-20",6754,4,4446],["Randolph","2021-06-21",6754,33,4479],["Randolph","2021-06-22",6754,4,4483],["Randolph","2021-06-23",6754,13,4496],["Randolph","2021-06-24",6754,22,4518],["Randolph","2021-06-25",6754,5,4523],["Randolph","2021-06-26",6754,16,4539],["Randolph","2021-06-27",6754,4,4543],["Randolph","2021-06-28",6754,14,4557],["Randolph","2021-06-29",6754,18,4575],["Randolph","2021-06-30",6754,10,4585],["Randolph","2021-07-01",6754,20,4605],["Randolph","2021-07-02",6754,5,4610],["Randolph","2021-07-03",6754,3,4613],["Randolph","2021-07-04",6754,1,4614],["Randolph","2021-07-05",6754,2,4616],["Randolph","2021-07-06",6754,4,4620],["Randolph","2021-07-07",6754,13,4633],["Randolph","2021-07-08",6754,12,4645],["Randolph","2021-07-09",6754,20,4665],["Randolph","2021-07-10",6754,3,4668],["Randolph","2021-07-11",6754,3,4671],["Randolph","2021-07-12",6754,9,4680],["Randolph","2021-07-13",6754,4,4684],["Randolph","2021-07-14",6754,10,4694],["Randolph","2021-07-15",6754,12,4706],["Randolph","2021-07-16",6754,7,4713],["Randolph","2021-07-17",6754,8,4721],["Randolph","2021-07-18",6754,4,4725],["Randolph","2021-07-19",6754,13,4738],["Randolph","2021-07-20",6754,7,4745],["Randolph","2021-07-21",6754,12,4757],["Randolph","2021-07-22",6754,9,4766],["Randolph","2021-07-23",6754,31,4797],["Randolph","2021-07-24",6754,11,4808],["Randolph","2021-07-25",6754,7,4815],["Randolph","2021-07-26",6754,12,4827],["Randolph","2021-07-27",6754,13,4840],["Randolph","2021-07-28",6754,15,4855],["Randolph","2021-07-29",6754,24,4879],["Randolph","2021-07-30",6754,18,4897],["Randolph","2021-07-31",6754,9,4906],["Randolph","2021-08-01",6754,5,4911],["Randolph","2021-08-02",6754,23,4934],["Randolph","2021-08-03",6754,15,4949],["Randolph","2021-08-04",6754,24,4973],["Randolph","2021-08-05",6754,40,5013],["Randolph","2021-08-06",6754,28,5041],["Randolph","2021-08-07",6754,11,5052],["Randolph","2021-08-08",6754,10,5062],["Randolph","2021-08-09",6754,21,5083],["Randolph","2021-08-10",6754,19,5102],["Randolph","2021-08-11",6754,28,5130],["Randolph","2021-08-12",6754,33,5163],["Randolph","2021-08-13",6754,29,5192],["Randolph","2021-08-14",6754,11,5203],["Randolph","2021-08-15",6754,10,5213],["Randolph","2021-08-16",6754,20,5233],["Randolph","2021-08-17",6754,28,5261],["Randolph","2021-08-18",6754,21,5282],["Randolph","2021-08-19",6754,47,5329],["Randolph","2021-08-20",6754,55,5384],["Randolph","2021-08-21",6754,35,5419],["Randolph","2021-08-22",6754,7,5426],["Randolph","2021-08-23",6754,21,5447],["Randolph","2021-08-24",6754,21,5468],["Randolph","2021-08-25",6754,14,5482],["Randolph","2021-08-26",6754,43,5525],["Randolph","2021-08-27",6754,25,5550],["Randolph","2021-08-28",6754,8,5558],["Randolph","2021-08-29",6754,15,5573],["Randolph","2021-08-30",6754,31,5604],["Randolph","2021-08-31",6754,25,5629],["Randolph","2021-09-01",6754,36,5665],["Randolph","2021-09-02",6754,47,5712],["Randolph","2021-09-03",6754,23,5735],["Randolph","2021-09-04",6754,10,5745],["Randolph","2021-09-05",6754,8,5753],["Randolph","2021-09-06",6754,3,5756],["Randolph","2021-09-07",6754,27,5783],["Randolph","2021-09-08",6754,30,5813],["Randolph","2021-09-09",6754,34,5847],["Randolph","2021-09-10",6754,42,5889],["Randolph","2021-09-11",6754,33,5922],["Randolph","2021-09-12",6754,10,5932],["Randolph","2021-09-13",6754,30,5962],["Randolph","2021-09-14",6754,22,5984],["Randolph","2021-09-15",6754,23,6007],["Randolph","2021-09-16",6754,18,6025],["Randolph","2021-09-17",6754,41,6066],["Randolph","2021-09-18",6754,17,6083],["Randolph","2021-09-19",6754,5,6088],["Randolph","2021-09-20",6754,10,6098],["Randolph","2021-09-21",6754,21,6119],["Randolph","2021-09-22",6754,13,6132],["Randolph","2021-09-23",6754,13,6145],["Randolph","2021-09-24",6754,35,6180],["Randolph","2021-09-25",6754,12,6192],["Randolph","2021-09-26",6754,9,6201],["Randolph","2021-09-27",6754,16,6217],["Randolph","2021-09-28",6754,17,6234],["Randolph","2021-09-29",6754,10,6244],["Randolph","2021-09-30",6754,27,6271],["Randolph","2021-10-01",6754,33,6304],["Randolph","2021-10-02",6754,4,6308],["Randolph","2021-10-03",6754,4,6312],["Randolph","2021-10-04",6754,12,6324],["Randolph","2021-10-05",6754,15,6339],["Randolph","2021-10-06",6754,13,6352],["Randolph","2021-10-07",6754,5,6357],["Randolph","2021-10-08",6754,24,6381],["Randolph","2021-10-09",6754,14,6395],["Randolph","2021-10-10",6754,3,6398],["Randolph","2021-10-11",6754,9,6407],["Randolph","2021-10-12",6754,11,6418],["Randolph","2021-10-13",6754,13,6431],["Randolph","2021-10-14",6754,11,6442],["Randolph","2021-10-15",6754,17,6459],["Randolph","2021-10-16",6754,7,6466],["Randolph","2021-10-18",6754,11,6477],["Randolph","2021-10-19",6754,4,6481],["Randolph","2021-10-20",6754,10,6491],["Randolph","2021-10-21",6754,3,6494],["Randolph","2021-10-22",6754,12,6506],["Randolph","2021-10-23",6754,6,6512],["Randolph","2021-10-24",6754,2,6514],["Randolph","2021-10-25",6754,26,6540],["Randolph","2021-10-26",6754,34,6574],["Randolph","2021-10-27",6754,31,6605],["Randolph","2021-10-28",6754,39,6644],["Randolph","2021-10-29",6754,26,6670],["Randolph","2021-10-30",6754,4,6674],["Randolph","2021-10-31",6754,3,6677],["Randolph","2021-11-01",6754,20,6697],["Randolph","2021-11-02",6754,26,6723],["Randolph","2021-11-03",6754,25,6748],["Randolph","2021-11-04",6754,27,6775],["Randolph","2021-11-05",6754,66,6841],["Randolph","2021-11-06",6754,9,6850],["Randolph","2021-11-07",6754,2,6852],["Randolph","2021-11-08",6754,17,6869],["Randolph","2021-11-09",6754,17,6886],["Randolph","2021-11-10",6754,27,6913],["Randolph","2021-11-11",6754,18,6931],["Randolph","2021-11-12",6754,55,6986],["Randolph","2021-11-13",6754,7,6993],["Randolph","2021-11-14",6754,1,6994],["Randolph","2021-11-15",6754,37,7031],["Randolph","2021-11-16",6754,32,7063],["Randolph","2021-11-17",6754,36,7099],["Randolph","2021-11-18",6754,25,7124],["Randolph","2021-11-19",6754,71,7195],["Randolph","2021-11-20",6754,6,7201],["Randolph","2021-11-21",6754,5,7206],["Randolph","2021-11-22",6754,16,7222],["Randolph","2021-11-23",6754,17,7239],["Randolph","2021-11-24",6754,7,7246],["Randolph","2021-11-25",6754,2,7248],["Randolph","2021-11-26",6754,7,7255],["Randolph","2021-11-27",6754,5,7260],["Randolph","2021-11-28",6754,3,7263],["Randolph","2021-11-29",6754,12,7275],["Randolph","2021-11-30",6754,21,7296],["Randolph","2021-12-01",6754,36,7332],["Randolph","2021-12-02",6754,52,7384],["Randolph","2021-12-03",6754,34,7418],["Randolph","2021-12-04",6754,7,7425],["Randolph","2021-12-05",6754,4,7429],["Randolph","2021-12-06",6754,20,7449],["Randolph","2021-12-07",6754,25,7474],["Randolph","2021-12-08",6754,50,7524],["Randolph","2021-12-09",6754,22,7546],["Randolph","2021-12-10",6754,40,7586],["Randolph","2021-12-11",6754,4,7590],["Randolph","2021-12-12",6754,2,7592],["Randolph","2021-12-13",6754,11,7603],["Randolph","2021-12-14",6754,15,7618],["Randolph","2021-12-15",6754,11,7629],["Randolph","2021-12-16",6754,18,7647],["Randolph","2021-12-17",6754,32,7679],["Randolph","2021-12-18",6754,8,7687],["Randolph","2021-12-19",6754,5,7692],["Randolph","2021-12-20",6754,9,7701],["Randolph","2021-12-21",6754,17,7718],["Randolph","2021-12-22",6754,19,7737],["Randolph","2021-12-23",6754,15,7752],["Randolph","2021-12-24",6754,1,7753],["Randolph","2021-12-27",6754,16,7769],["Randolph","2021-12-28",6754,6,7775],["Randolph","2021-12-29",6754,12,7787],["Randolph","2021-12-30",6754,16,7803],["Randolph","2021-12-31",6754,29,7832],["Randolph","2022-01-02",6754,1,7833],["Randolph","2022-01-03",6754,17,7850],["Richmond","2020-12-12",202240,1,1],["Richmond","2020-12-15",202240,1,2],["Richmond","2020-12-16",202240,8,10],["Richmond","2020-12-17",202240,111,121],["Richmond","2020-12-18",202240,263,384],["Richmond","2020-12-19",202240,105,489],["Richmond","2020-12-20",202240,10,499],["Richmond","2020-12-21",202240,53,552],["Richmond","2020-12-22",202240,640,1192],["Richmond","2020-12-23",202240,654,1846],["Richmond","2020-12-24",202240,104,1950],["Richmond","2020-12-26",202240,43,1993],["Richmond","2020-12-27",202240,22,2015],["Richmond","2020-12-28",202240,173,2188],["Richmond","2020-12-29",202240,385,2573],["Richmond","2020-12-30",202240,432,3005],["Richmond","2020-12-31",202240,276,3281],["Richmond","2021-01-01",202240,27,3308],["Richmond","2021-01-02",202240,73,3381],["Richmond","2021-01-03",202240,10,3391],["Richmond","2021-01-04",202240,431,3822],["Richmond","2021-01-05",202240,510,4332],["Richmond","2021-01-06",202240,424,4756],["Richmond","2021-01-07",202240,463,5219],["Richmond","2021-01-08",202240,594,5813],["Richmond","2021-01-09",202240,272,6085],["Richmond","2021-01-10",202240,86,6171],["Richmond","2021-01-11",202240,376,6547],["Richmond","2021-01-12",202240,1033,7580],["Richmond","2021-01-13",202240,1083,8663],["Richmond","2021-01-14",202240,920,9583],["Richmond","2021-01-15",202240,438,10021],["Richmond","2021-01-16",202240,171,10192],["Richmond","2021-01-17",202240,29,10221],["Richmond","2021-01-18",202240,290,10511],["Richmond","2021-01-19",202240,668,11179],["Richmond","2021-01-20",202240,868,12047],["Richmond","2021-01-21",202240,1176,13223],["Richmond","2021-01-22",202240,718,13941],["Richmond","2021-01-23",202240,108,14049],["Richmond","2021-01-24",202240,153,14202],["Richmond","2021-01-25",202240,763,14965],["Richmond","2021-01-26",202240,765,15730],["Richmond","2021-01-27",202240,801,16531],["Richmond","2021-01-28",202240,1590,18121],["Richmond","2021-01-29",202240,565,18686],["Richmond","2021-01-30",202240,681,19367],["Richmond","2021-01-31",202240,34,19401],["Richmond","2021-02-01",202240,505,19906],["Richmond","2021-02-02",202240,1372,21278],["Richmond","2021-02-03",202240,821,22099],["Richmond","2021-02-04",202240,1069,23168],["Richmond","2021-02-05",202240,632,23800],["Richmond","2021-02-06",202240,205,24005],["Richmond","2021-02-07",202240,9,24014],["Richmond","2021-02-08",202240,415,24429],["Richmond","2021-02-09",202240,724,25153],["Richmond","2021-02-10",202240,1164,26317],["Richmond","2021-02-11",202240,1293,27610],["Richmond","2021-02-12",202240,678,28288],["Richmond","2021-02-13",202240,1060,29348],["Richmond","2021-02-14",202240,60,29408],["Richmond","2021-02-15",202240,677,30085],["Richmond","2021-02-16",202240,658,30743],["Richmond","2021-02-17",202240,1331,32074],["Richmond","2021-02-18",202240,1071,33145],["Richmond","2021-02-19",202240,983,34128],["Richmond","2021-02-20",202240,732,34860],["Richmond","2021-02-21",202240,66,34926],["Richmond","2021-02-22",202240,441,35367],["Richmond","2021-02-23",202240,930,36297],["Richmond","2021-02-24",202240,472,36769],["Richmond","2021-02-25",202240,1834,38603],["Richmond","2021-02-26",202240,1076,39679],["Richmond","2021-02-27",202240,308,39987],["Richmond","2021-02-28",202240,102,40089],["Richmond","2021-03-01",202240,563,40652],["Richmond","2021-03-02",202240,711,41363],["Richmond","2021-03-03",202240,1078,42441],["Richmond","2021-03-04",202240,1072,43513],["Richmond","2021-03-05",202240,654,44167],["Richmond","2021-03-06",202240,986,45153],["Richmond","2021-03-07",202240,136,45289],["Richmond","2021-03-08",202240,658,45947],["Richmond","2021-03-09",202240,916,46863],["Richmond","2021-03-10",202240,1333,48196],["Richmond","2021-03-11",202240,2005,50201],["Richmond","2021-03-12",202240,1457,51658],["Richmond","2021-03-13",202240,772,52430],["Richmond","2021-03-14",202240,177,52607],["Richmond","2021-03-15",202240,721,53328],["Richmond","2021-03-16",202240,974,54302],["Richmond","2021-03-17",202240,1600,55902],["Richmond","2021-03-18",202240,866,56768],["Richmond","2021-03-19",202240,706,57474],["Richmond","2021-03-20",202240,620,58094],["Richmond","2021-03-21",202240,201,58295],["Richmond","2021-03-22",202240,1357,59652],["Richmond","2021-03-23",202240,942,60594],["Richmond","2021-03-24",202240,855,61449],["Richmond","2021-03-25",202240,1807,63256],["Richmond","2021-03-26",202240,653,63909],["Richmond","2021-03-27",202240,930,64839],["Richmond","2021-03-28",202240,293,65132],["Richmond","2021-03-29",202240,918,66050],["Richmond","2021-03-30",202240,1663,67713],["Richmond","2021-03-31",202240,1301,69014],["Richmond","2021-04-01",202240,2502,71516],["Richmond","2021-04-02",202240,1588,73104],["Richmond","2021-04-03",202240,788,73892],["Richmond","2021-04-04",202240,306,74198],["Richmond","2021-04-05",202240,1148,75346],["Richmond","2021-04-06",202240,1062,76408],["Richmond","2021-04-07",202240,1648,78056],["Richmond","2021-04-08",202240,1205,79261],["Richmond","2021-04-09",202240,930,80191],["Richmond","2021-04-10",202240,476,80667],["Richmond","2021-04-11",202240,326,80993],["Richmond","2021-04-12",202240,1465,82458],["Richmond","2021-04-13",202240,1435,83893],["Richmond","2021-04-14",202240,953,84846],["Richmond","2021-04-15",202240,1824,86670],["Richmond","2021-04-16",202240,1084,87754],["Richmond","2021-04-17",202240,827,88581],["Richmond","2021-04-18",202240,169,88750],["Richmond","2021-04-19",202240,995,89745],["Richmond","2021-04-20",202240,1551,91296],["Richmond","2021-04-21",202240,1153,92449],["Richmond","2021-04-22",202240,1771,94220],["Richmond","2021-04-23",202240,979,95199],["Richmond","2021-04-24",202240,588,95787],["Richmond","2021-04-25",202240,203,95990],["Richmond","2021-04-26",202240,854,96844],["Richmond","2021-04-27",202240,1302,98146],["Richmond","2021-04-28",202240,1006,99152],["Richmond","2021-04-29",202240,1279,100431],["Richmond","2021-04-30",202240,1009,101440],["Richmond","2021-05-01",202240,442,101882],["Richmond","2021-05-02",202240,211,102093],["Richmond","2021-05-03",202240,591,102684],["Richmond","2021-05-04",202240,773,103457],["Richmond","2021-05-05",202240,867,104324],["Richmond","2021-05-06",202240,1148,105472],["Richmond","2021-05-07",202240,764,106236],["Richmond","2021-05-08",202240,401,106637],["Richmond","2021-05-09",202240,156,106793],["Richmond","2021-05-10",202240,321,107114],["Richmond","2021-05-11",202240,768,107882],["Richmond","2021-05-12",202240,470,108352],["Richmond","2021-05-13",202240,650,109002],["Richmond","2021-05-14",202240,658,109660],["Richmond","2021-05-15",202240,461,110121],["Richmond","2021-05-16",202240,198,110319],["Richmond","2021-05-17",202240,560,110879],["Richmond","2021-05-18",202240,959,111838],["Richmond","2021-05-19",202240,655,112493],["Richmond","2021-05-20",202240,822,113315],["Richmond","2021-05-21",202240,528,113843],["Richmond","2021-05-22",202240,513,114356],["Richmond","2021-05-23",202240,167,114523],["Richmond","2021-05-24",202240,399,114922],["Richmond","2021-05-25",202240,490,115412],["Richmond","2021-05-26",202240,545,115957],["Richmond","2021-05-27",202240,509,116466],["Richmond","2021-05-28",202240,419,116885],["Richmond","2021-05-29",202240,228,117113],["Richmond","2021-05-30",202240,125,117238],["Richmond","2021-05-31",202240,75,117313],["Richmond","2021-06-01",202240,517,117830],["Richmond","2021-06-02",202240,430,118260],["Richmond","2021-06-03",202240,484,118744],["Richmond","2021-06-04",202240,499,119243],["Richmond","2021-06-05",202240,334,119577],["Richmond","2021-06-06",202240,183,119760],["Richmond","2021-06-07",202240,468,120228],["Richmond","2021-06-08",202240,427,120655],["Richmond","2021-06-09",202240,401,121056],["Richmond","2021-06-10",202240,614,121670],["Richmond","2021-06-11",202240,473,122143],["Richmond","2021-06-12",202240,408,122551],["Richmond","2021-06-13",202240,129,122680],["Richmond","2021-06-14",202240,349,123029],["Richmond","2021-06-15",202240,424,123453],["Richmond","2021-06-16",202240,386,123839],["Richmond","2021-06-17",202240,400,124239],["Richmond","2021-06-18",202240,421,124660],["Richmond","2021-06-19",202240,193,124853],["Richmond","2021-06-20",202240,105,124958],["Richmond","2021-06-21",202240,197,125155],["Richmond","2021-06-22",202240,281,125436],["Richmond","2021-06-23",202240,309,125745],["Richmond","2021-06-24",202240,376,126121],["Richmond","2021-06-25",202240,346,126467],["Richmond","2021-06-26",202240,219,126686],["Richmond","2021-06-27",202240,123,126809],["Richmond","2021-06-28",202240,218,127027],["Richmond","2021-06-29",202240,269,127296],["Richmond","2021-06-30",202240,294,127590],["Richmond","2021-07-01",202240,381,127971],["Richmond","2021-07-02",202240,285,128256],["Richmond","2021-07-03",202240,162,128418],["Richmond","2021-07-04",202240,19,128437],["Richmond","2021-07-05",202240,214,128651],["Richmond","2021-07-06",202240,285,128936],["Richmond","2021-07-07",202240,231,129167],["Richmond","2021-07-08",202240,307,129474],["Richmond","2021-07-09",202240,290,129764],["Richmond","2021-07-10",202240,168,129932],["Richmond","2021-07-11",202240,112,130044],["Richmond","2021-07-12",202240,218,130262],["Richmond","2021-07-13",202240,258,130520],["Richmond","2021-07-14",202240,263,130783],["Richmond","2021-07-15",202240,273,131056],["Richmond","2021-07-16",202240,323,131379],["Richmond","2021-07-17",202240,178,131557],["Richmond","2021-07-18",202240,110,131667],["Richmond","2021-07-19",202240,303,131970],["Richmond","2021-07-20",202240,279,132249],["Richmond","2021-07-21",202240,283,132532],["Richmond","2021-07-22",202240,419,132951],["Richmond","2021-07-23",202240,366,133317],["Richmond","2021-07-24",202240,268,133585],["Richmond","2021-07-25",202240,149,133734],["Richmond","2021-07-26",202240,348,134082],["Richmond","2021-07-27",202240,393,134475],["Richmond","2021-07-28",202240,397,134872],["Richmond","2021-07-29",202240,435,135307],["Richmond","2021-07-30",202240,460,135767],["Richmond","2021-07-31",202240,313,136080],["Richmond","2021-08-01",202240,229,136309],["Richmond","2021-08-02",202240,381,136690],["Richmond","2021-08-03",202240,461,137151],["Richmond","2021-08-04",202240,449,137600],["Richmond","2021-08-05",202240,543,138143],["Richmond","2021-08-06",202240,508,138651],["Richmond","2021-08-07",202240,311,138962],["Richmond","2021-08-08",202240,217,139179],["Richmond","2021-08-09",202240,391,139570],["Richmond","2021-08-10",202240,502,140072],["Richmond","2021-08-11",202240,453,140525],["Richmond","2021-08-12",202240,531,141056],["Richmond","2021-08-13",202240,455,141511],["Richmond","2021-08-14",202240,327,141838],["Richmond","2021-08-15",202240,261,142099],["Richmond","2021-08-16",202240,454,142553],["Richmond","2021-08-17",202240,409,142962],["Richmond","2021-08-18",202240,422,143384],["Richmond","2021-08-19",202240,437,143821],["Richmond","2021-08-20",202240,471,144292],["Richmond","2021-08-21",202240,296,144588],["Richmond","2021-08-22",202240,197,144785],["Richmond","2021-08-23",202240,450,145235],["Richmond","2021-08-24",202240,468,145703],["Richmond","2021-08-25",202240,489,146192],["Richmond","2021-08-26",202240,541,146733],["Richmond","2021-08-27",202240,522,147255],["Richmond","2021-08-28",202240,305,147560],["Richmond","2021-08-29",202240,245,147805],["Richmond","2021-08-30",202240,475,148280],["Richmond","2021-08-31",202240,530,148810],["Richmond","2021-09-01",202240,547,149357],["Richmond","2021-09-02",202240,528,149885],["Richmond","2021-09-03",202240,508,150393],["Richmond","2021-09-04",202240,311,150704],["Richmond","2021-09-05",202240,191,150895],["Richmond","2021-09-06",202240,55,150950],["Richmond","2021-09-07",202240,515,151465],["Richmond","2021-09-08",202240,505,151970],["Richmond","2021-09-09",202240,502,152472],["Richmond","2021-09-10",202240,481,152953],["Richmond","2021-09-11",202240,235,153188],["Richmond","2021-09-12",202240,173,153361],["Richmond","2021-09-13",202240,400,153761],["Richmond","2021-09-14",202240,424,154185],["Richmond","2021-09-15",202240,401,154586],["Richmond","2021-09-16",202240,413,154999],["Richmond","2021-09-17",202240,370,155369],["Richmond","2021-09-18",202240,190,155559],["Richmond","2021-09-19",202240,124,155683],["Richmond","2021-09-20",202240,356,156039],["Richmond","2021-09-21",202240,333,156372],["Richmond","2021-09-22",202240,336,156708],["Richmond","2021-09-23",202240,327,157035],["Richmond","2021-09-24",202240,409,157444],["Richmond","2021-09-25",202240,238,157682],["Richmond","2021-09-26",202240,145,157827],["Richmond","2021-09-27",202240,403,158230],["Richmond","2021-09-28",202240,517,158747],["Richmond","2021-09-29",202240,460,159207],["Richmond","2021-09-30",202240,704,159911],["Richmond","2021-10-01",202240,549,160460],["Richmond","2021-10-02",202240,176,160636],["Richmond","2021-10-03",202240,140,160776],["Richmond","2021-10-04",202240,416,161192],["Richmond","2021-10-05",202240,456,161648],["Richmond","2021-10-06",202240,481,162129],["Richmond","2021-10-07",202240,485,162614],["Richmond","2021-10-08",202240,607,163221],["Richmond","2021-10-09",202240,230,163451],["Richmond","2021-10-10",202240,113,163564],["Richmond","2021-10-11",202240,360,163924],["Richmond","2021-10-12",202240,398,164322],["Richmond","2021-10-13",202240,401,164723],["Richmond","2021-10-14",202240,348,165071],["Richmond","2021-10-15",202240,380,165451],["Richmond","2021-10-16",202240,148,165599],["Richmond","2021-10-17",202240,91,165690],["Richmond","2021-10-18",202240,325,166015],["Richmond","2021-10-19",202240,277,166292],["Richmond","2021-10-20",202240,432,166724],["Richmond","2021-10-21",202240,293,167017],["Richmond","2021-10-22",202240,504,167521],["Richmond","2021-10-23",202240,253,167774],["Richmond","2021-10-24",202240,150,167924],["Richmond","2021-10-25",202240,558,168482],["Richmond","2021-10-26",202240,642,169124],["Richmond","2021-10-27",202240,649,169773],["Richmond","2021-10-28",202240,516,170289],["Richmond","2021-10-29",202240,872,171161],["Richmond","2021-10-30",202240,356,171517],["Richmond","2021-10-31",202240,136,171653],["Richmond","2021-11-01",202240,610,172263],["Richmond","2021-11-02",202240,579,172842],["Richmond","2021-11-03",202240,633,173475],["Richmond","2021-11-04",202240,575,174050],["Richmond","2021-11-05",202240,614,174664],["Richmond","2021-11-06",202240,332,174996],["Richmond","2021-11-07",202240,136,175132],["Richmond","2021-11-08",202240,516,175648],["Richmond","2021-11-09",202240,551,176199],["Richmond","2021-11-10",202240,549,176748],["Richmond","2021-11-11",202240,642,177390],["Richmond","2021-11-12",202240,643,178033],["Richmond","2021-11-13",202240,301,178334],["Richmond","2021-11-14",202240,118,178452],["Richmond","2021-11-15",202240,497,178949],["Richmond","2021-11-16",202240,693,179642],["Richmond","2021-11-17",202240,592,180234],["Richmond","2021-11-18",202240,571,180805],["Richmond","2021-11-19",202240,692,181497],["Richmond","2021-11-20",202240,427,181924],["Richmond","2021-11-21",202240,172,182096],["Richmond","2021-11-22",202240,601,182697],["Richmond","2021-11-23",202240,597,183294],["Richmond","2021-11-24",202240,441,183735],["Richmond","2021-11-26",202240,300,184035],["Richmond","2021-11-27",202240,224,184259],["Richmond","2021-11-28",202240,186,184445],["Richmond","2021-11-29",202240,606,185051],["Richmond","2021-11-30",202240,760,185811],["Richmond","2021-12-01",202240,751,186562],["Richmond","2021-12-02",202240,791,187353],["Richmond","2021-12-03",202240,823,188176],["Richmond","2021-12-04",202240,366,188542],["Richmond","2021-12-05",202240,173,188715],["Richmond","2021-12-06",202240,600,189315],["Richmond","2021-12-07",202240,589,189904],["Richmond","2021-12-08",202240,595,190499],["Richmond","2021-12-09",202240,600,191099],["Richmond","2021-12-10",202240,586,191685],["Richmond","2021-12-11",202240,266,191951],["Richmond","2021-12-12",202240,154,192105],["Richmond","2021-12-13",202240,513,192618],["Richmond","2021-12-14",202240,498,193116],["Richmond","2021-12-15",202240,438,193554],["Richmond","2021-12-16",202240,453,194007],["Richmond","2021-12-17",202240,582,194589],["Richmond","2021-12-18",202240,306,194895],["Richmond","2021-12-19",202240,189,195084],["Richmond","2021-12-20",202240,633,195717],["Richmond","2021-12-21",202240,654,196371],["Richmond","2021-12-22",202240,579,196950],["Richmond","2021-12-23",202240,476,197426],["Richmond","2021-12-24",202240,112,197538],["Richmond","2021-12-26",202240,124,197662],["Richmond","2021-12-27",202240,460,198122],["Richmond","2021-12-28",202240,554,198676],["Richmond","2021-12-29",202240,589,199265],["Richmond","2021-12-30",202240,513,199778],["Richmond","2021-12-31",202240,301,200079],["Richmond","2022-01-01",202240,37,200116],["Richmond","2022-01-02",202240,160,200276],["Richmond","2022-01-03",202240,137,200413],["Rockdale","2020-12-16",94960,1,1],["Rockdale","2020-12-17",94960,24,25],["Rockdale","2020-12-18",94960,21,46],["Rockdale","2020-12-19",94960,24,70],["Rockdale","2020-12-20",94960,19,89],["Rockdale","2020-12-21",94960,28,117],["Rockdale","2020-12-22",94960,48,165],["Rockdale","2020-12-23",94960,64,229],["Rockdale","2020-12-24",94960,20,249],["Rockdale","2020-12-25",94960,2,251],["Rockdale","2020-12-26",94960,12,263],["Rockdale","2020-12-27",94960,10,273],["Rockdale","2020-12-28",94960,86,359],["Rockdale","2020-12-29",94960,135,494],["Rockdale","2020-12-30",94960,100,594],["Rockdale","2020-12-31",94960,71,665],["Rockdale","2021-01-01",94960,16,681],["Rockdale","2021-01-02",94960,23,704],["Rockdale","2021-01-03",94960,85,789],["Rockdale","2021-01-04",94960,132,921],["Rockdale","2021-01-05",94960,101,1022],["Rockdale","2021-01-06",94960,105,1127],["Rockdale","2021-01-07",94960,108,1235],["Rockdale","2021-01-08",94960,123,1358],["Rockdale","2021-01-09",94960,68,1426],["Rockdale","2021-01-10",94960,47,1473],["Rockdale","2021-01-11",94960,146,1619],["Rockdale","2021-01-12",94960,141,1760],["Rockdale","2021-01-13",94960,284,2044],["Rockdale","2021-01-14",94960,222,2266],["Rockdale","2021-01-15",94960,301,2567],["Rockdale","2021-01-16",94960,169,2736],["Rockdale","2021-01-17",94960,60,2796],["Rockdale","2021-01-18",94960,261,3057],["Rockdale","2021-01-19",94960,361,3418],["Rockdale","2021-01-20",94960,347,3765],["Rockdale","2021-01-21",94960,360,4125],["Rockdale","2021-01-22",94960,273,4398],["Rockdale","2021-01-23",94960,84,4482],["Rockdale","2021-01-24",94960,124,4606],["Rockdale","2021-01-25",94960,392,4998],["Rockdale","2021-01-26",94960,357,5355],["Rockdale","2021-01-27",94960,354,5709],["Rockdale","2021-01-28",94960,415,6124],["Rockdale","2021-01-29",94960,324,6448],["Rockdale","2021-01-30",94960,196,6644],["Rockdale","2021-01-31",94960,21,6665],["Rockdale","2021-02-01",94960,261,6926],["Rockdale","2021-02-02",94960,212,7138],["Rockdale","2021-02-03",94960,245,7383],["Rockdale","2021-02-04",94960,330,7713],["Rockdale","2021-02-05",94960,294,8007],["Rockdale","2021-02-06",94960,170,8177],["Rockdale","2021-02-07",94960,39,8216],["Rockdale","2021-02-08",94960,271,8487],["Rockdale","2021-02-09",94960,283,8770],["Rockdale","2021-02-10",94960,382,9152],["Rockdale","2021-02-11",94960,403,9555],["Rockdale","2021-02-12",94960,337,9892],["Rockdale","2021-02-13",94960,216,10108],["Rockdale","2021-02-14",94960,79,10187],["Rockdale","2021-02-15",94960,435,10622],["Rockdale","2021-02-16",94960,423,11045],["Rockdale","2021-02-17",94960,424,11469],["Rockdale","2021-02-18",94960,379,11848],["Rockdale","2021-02-19",94960,391,12239],["Rockdale","2021-02-20",94960,227,12466],["Rockdale","2021-02-21",94960,52,12518],["Rockdale","2021-02-22",94960,360,12878],["Rockdale","2021-02-23",94960,426,13304],["Rockdale","2021-02-24",94960,551,13855],["Rockdale","2021-02-25",94960,573,14428],["Rockdale","2021-02-26",94960,532,14960],["Rockdale","2021-02-27",94960,120,15080],["Rockdale","2021-02-28",94960,80,15160],["Rockdale","2021-03-01",94960,448,15608],["Rockdale","2021-03-02",94960,490,16098],["Rockdale","2021-03-03",94960,532,16630],["Rockdale","2021-03-04",94960,591,17221],["Rockdale","2021-03-05",94960,634,17855],["Rockdale","2021-03-06",94960,192,18047],["Rockdale","2021-03-07",94960,99,18146],["Rockdale","2021-03-08",94960,550,18696],["Rockdale","2021-03-09",94960,608,19304],["Rockdale","2021-03-10",94960,640,19944],["Rockdale","2021-03-11",94960,711,20655],["Rockdale","2021-03-12",94960,686,21341],["Rockdale","2021-03-13",94960,229,21570],["Rockdale","2021-03-14",94960,130,21700],["Rockdale","2021-03-15",94960,665,22365],["Rockdale","2021-03-16",94960,810,23175],["Rockdale","2021-03-17",94960,794,23969],["Rockdale","2021-03-18",94960,710,24679],["Rockdale","2021-03-19",94960,751,25430],["Rockdale","2021-03-20",94960,351,25781],["Rockdale","2021-03-21",94960,232,26013],["Rockdale","2021-03-22",94960,634,26647],["Rockdale","2021-03-23",94960,709,27356],["Rockdale","2021-03-24",94960,807,28163],["Rockdale","2021-03-25",94960,815,28978],["Rockdale","2021-03-26",94960,906,29884],["Rockdale","2021-03-27",94960,338,30222],["Rockdale","2021-03-28",94960,199,30421],["Rockdale","2021-03-29",94960,806,31227],["Rockdale","2021-03-30",94960,901,32128],["Rockdale","2021-03-31",94960,940,33068],["Rockdale","2021-04-01",94960,1049,34117],["Rockdale","2021-04-02",94960,829,34946],["Rockdale","2021-04-03",94960,467,35413],["Rockdale","2021-04-04",94960,157,35570],["Rockdale","2021-04-05",94960,817,36387],["Rockdale","2021-04-06",94960,1082,37469],["Rockdale","2021-04-07",94960,1026,38495],["Rockdale","2021-04-08",94960,922,39417],["Rockdale","2021-04-09",94960,1061,40478],["Rockdale","2021-04-10",94960,474,40952],["Rockdale","2021-04-11",94960,179,41131],["Rockdale","2021-04-12",94960,692,41823],["Rockdale","2021-04-13",94960,825,42648],["Rockdale","2021-04-14",94960,797,43445],["Rockdale","2021-04-15",94960,882,44327],["Rockdale","2021-04-16",94960,910,45237],["Rockdale","2021-04-17",94960,355,45592],["Rockdale","2021-04-18",94960,397,45989],["Rockdale","2021-04-19",94960,676,46665],["Rockdale","2021-04-20",94960,828,47493],["Rockdale","2021-04-21",94960,901,48394],["Rockdale","2021-04-22",94960,906,49300],["Rockdale","2021-04-23",94960,991,50291],["Rockdale","2021-04-24",94960,371,50662],["Rockdale","2021-04-25",94960,225,50887],["Rockdale","2021-04-26",94960,634,51521],["Rockdale","2021-04-27",94960,655,52176],["Rockdale","2021-04-28",94960,746,52922],["Rockdale","2021-04-29",94960,787,53709],["Rockdale","2021-04-30",94960,869,54578],["Rockdale","2021-05-01",94960,549,55127],["Rockdale","2021-05-02",94960,157,55284],["Rockdale","2021-05-03",94960,426,55710],["Rockdale","2021-05-04",94960,556,56266],["Rockdale","2021-05-05",94960,569,56835],["Rockdale","2021-05-06",94960,607,57442],["Rockdale","2021-05-07",94960,647,58089],["Rockdale","2021-05-08",94960,256,58345],["Rockdale","2021-05-09",94960,111,58456],["Rockdale","2021-05-10",94960,338,58794],["Rockdale","2021-05-11",94960,436,59230],["Rockdale","2021-05-12",94960,387,59617],["Rockdale","2021-05-13",94960,444,60061],["Rockdale","2021-05-14",94960,505,60566],["Rockdale","2021-05-15",94960,419,60985],["Rockdale","2021-05-16",94960,242,61227],["Rockdale","2021-05-17",94960,450,61677],["Rockdale","2021-05-18",94960,446,62123],["Rockdale","2021-05-19",94960,416,62539],["Rockdale","2021-05-20",94960,384,62923],["Rockdale","2021-05-21",94960,465,63388],["Rockdale","2021-05-22",94960,264,63652],["Rockdale","2021-05-23",94960,146,63798],["Rockdale","2021-05-24",94960,256,64054],["Rockdale","2021-05-25",94960,257,64311],["Rockdale","2021-05-26",94960,297,64608],["Rockdale","2021-05-27",94960,268,64876],["Rockdale","2021-05-28",94960,276,65152],["Rockdale","2021-05-29",94960,191,65343],["Rockdale","2021-05-30",94960,85,65428],["Rockdale","2021-05-31",94960,37,65465],["Rockdale","2021-06-01",94960,298,65763],["Rockdale","2021-06-02",94960,238,66001],["Rockdale","2021-06-03",94960,240,66241],["Rockdale","2021-06-04",94960,335,66576],["Rockdale","2021-06-05",94960,295,66871],["Rockdale","2021-06-06",94960,171,67042],["Rockdale","2021-06-07",94960,258,67300],["Rockdale","2021-06-08",94960,236,67536],["Rockdale","2021-06-09",94960,220,67756],["Rockdale","2021-06-10",94960,257,68013],["Rockdale","2021-06-11",94960,293,68306],["Rockdale","2021-06-12",94960,285,68591],["Rockdale","2021-06-13",94960,90,68681],["Rockdale","2021-06-14",94960,199,68880],["Rockdale","2021-06-15",94960,177,69057],["Rockdale","2021-06-16",94960,202,69259],["Rockdale","2021-06-17",94960,205,69464],["Rockdale","2021-06-18",94960,244,69708],["Rockdale","2021-06-19",94960,125,69833],["Rockdale","2021-06-20",94960,38,69871],["Rockdale","2021-06-21",94960,151,70022],["Rockdale","2021-06-22",94960,161,70183],["Rockdale","2021-06-23",94960,209,70392],["Rockdale","2021-06-24",94960,161,70553],["Rockdale","2021-06-25",94960,214,70767],["Rockdale","2021-06-26",94960,179,70946],["Rockdale","2021-06-27",94960,83,71029],["Rockdale","2021-06-28",94960,143,71172],["Rockdale","2021-06-29",94960,139,71311],["Rockdale","2021-06-30",94960,166,71477],["Rockdale","2021-07-01",94960,136,71613],["Rockdale","2021-07-02",94960,157,71770],["Rockdale","2021-07-03",94960,129,71899],["Rockdale","2021-07-04",94960,16,71915],["Rockdale","2021-07-05",94960,118,72033],["Rockdale","2021-07-06",94960,128,72161],["Rockdale","2021-07-07",94960,136,72297],["Rockdale","2021-07-08",94960,149,72446],["Rockdale","2021-07-09",94960,175,72621],["Rockdale","2021-07-10",94960,216,72837],["Rockdale","2021-07-11",94960,59,72896],["Rockdale","2021-07-12",94960,142,73038],["Rockdale","2021-07-13",94960,95,73133],["Rockdale","2021-07-14",94960,143,73276],["Rockdale","2021-07-15",94960,137,73413],["Rockdale","2021-07-16",94960,170,73583],["Rockdale","2021-07-17",94960,85,73668],["Rockdale","2021-07-18",94960,65,73733],["Rockdale","2021-07-19",94960,158,73891],["Rockdale","2021-07-20",94960,149,74040],["Rockdale","2021-07-21",94960,171,74211],["Rockdale","2021-07-22",94960,173,74384],["Rockdale","2021-07-23",94960,245,74629],["Rockdale","2021-07-24",94960,157,74786],["Rockdale","2021-07-25",94960,84,74870],["Rockdale","2021-07-26",94960,185,75055],["Rockdale","2021-07-27",94960,202,75257],["Rockdale","2021-07-28",94960,209,75466],["Rockdale","2021-07-29",94960,180,75646],["Rockdale","2021-07-30",94960,223,75869],["Rockdale","2021-07-31",94960,269,76138],["Rockdale","2021-08-01",94960,100,76238],["Rockdale","2021-08-02",94960,238,76476],["Rockdale","2021-08-03",94960,200,76676],["Rockdale","2021-08-04",94960,236,76912],["Rockdale","2021-08-05",94960,211,77123],["Rockdale","2021-08-06",94960,303,77426],["Rockdale","2021-08-07",94960,178,77604],["Rockdale","2021-08-08",94960,159,77763],["Rockdale","2021-08-09",94960,219,77982],["Rockdale","2021-08-10",94960,245,78227],["Rockdale","2021-08-11",94960,221,78448],["Rockdale","2021-08-12",94960,232,78680],["Rockdale","2021-08-13",94960,233,78913],["Rockdale","2021-08-14",94960,202,79115],["Rockdale","2021-08-15",94960,115,79230],["Rockdale","2021-08-16",94960,233,79463],["Rockdale","2021-08-17",94960,206,79669],["Rockdale","2021-08-18",94960,209,79878],["Rockdale","2021-08-19",94960,250,80128],["Rockdale","2021-08-20",94960,267,80395],["Rockdale","2021-08-21",94960,212,80607],["Rockdale","2021-08-22",94960,216,80823],["Rockdale","2021-08-23",94960,266,81089],["Rockdale","2021-08-24",94960,244,81333],["Rockdale","2021-08-25",94960,255,81588],["Rockdale","2021-08-26",94960,245,81833],["Rockdale","2021-08-27",94960,306,82139],["Rockdale","2021-08-28",94960,293,82432],["Rockdale","2021-08-29",94960,186,82618],["Rockdale","2021-08-30",94960,275,82893],["Rockdale","2021-08-31",94960,235,83128],["Rockdale","2021-09-01",94960,271,83399],["Rockdale","2021-09-02",94960,218,83617],["Rockdale","2021-09-03",94960,247,83864],["Rockdale","2021-09-04",94960,176,84040],["Rockdale","2021-09-05",94960,127,84167],["Rockdale","2021-09-06",94960,30,84197],["Rockdale","2021-09-07",94960,242,84439],["Rockdale","2021-09-08",94960,230,84669],["Rockdale","2021-09-09",94960,245,84914],["Rockdale","2021-09-10",94960,256,85170],["Rockdale","2021-09-11",94960,186,85356],["Rockdale","2021-09-12",94960,120,85476],["Rockdale","2021-09-13",94960,216,85692],["Rockdale","2021-09-14",94960,176,85868],["Rockdale","2021-09-15",94960,200,86068],["Rockdale","2021-09-16",94960,187,86255],["Rockdale","2021-09-17",94960,257,86512],["Rockdale","2021-09-18",94960,178,86690],["Rockdale","2021-09-19",94960,109,86799],["Rockdale","2021-09-20",94960,197,86996],["Rockdale","2021-09-21",94960,169,87165],["Rockdale","2021-09-22",94960,185,87350],["Rockdale","2021-09-23",94960,141,87491],["Rockdale","2021-09-24",94960,186,87677],["Rockdale","2021-09-25",94960,130,87807],["Rockdale","2021-09-26",94960,109,87916],["Rockdale","2021-09-27",94960,226,88142],["Rockdale","2021-09-28",94960,190,88332],["Rockdale","2021-09-29",94960,207,88539],["Rockdale","2021-09-30",94960,228,88767],["Rockdale","2021-10-01",94960,267,89034],["Rockdale","2021-10-02",94960,219,89253],["Rockdale","2021-10-03",94960,81,89334],["Rockdale","2021-10-04",94960,206,89540],["Rockdale","2021-10-05",94960,179,89719],["Rockdale","2021-10-06",94960,217,89936],["Rockdale","2021-10-07",94960,205,90141],["Rockdale","2021-10-08",94960,264,90405],["Rockdale","2021-10-09",94960,114,90519],["Rockdale","2021-10-10",94960,95,90614],["Rockdale","2021-10-11",94960,182,90796],["Rockdale","2021-10-12",94960,200,90996],["Rockdale","2021-10-13",94960,181,91177],["Rockdale","2021-10-14",94960,171,91348],["Rockdale","2021-10-15",94960,210,91558],["Rockdale","2021-10-16",94960,93,91651],["Rockdale","2021-10-17",94960,81,91732],["Rockdale","2021-10-18",94960,167,91899],["Rockdale","2021-10-19",94960,172,92071],["Rockdale","2021-10-20",94960,170,92241],["Rockdale","2021-10-21",94960,168,92409],["Rockdale","2021-10-22",94960,273,92682],["Rockdale","2021-10-23",94960,201,92883],["Rockdale","2021-10-24",94960,110,92993],["Rockdale","2021-10-25",94960,333,93326],["Rockdale","2021-10-26",94960,305,93631],["Rockdale","2021-10-27",94960,363,93994],["Rockdale","2021-10-28",94960,283,94277],["Rockdale","2021-10-29",94960,398,94675],["Rockdale","2021-10-30",94960,166,94841],["Rockdale","2021-10-31",94960,122,94963],["Rockdale","2021-11-01",94960,272,95235],["Rockdale","2021-11-02",94960,262,95497],["Rockdale","2021-11-03",94960,268,95765],["Rockdale","2021-11-04",94960,253,96018],["Rockdale","2021-11-05",94960,313,96331],["Rockdale","2021-11-06",94960,180,96511],["Rockdale","2021-11-07",94960,90,96601],["Rockdale","2021-11-08",94960,259,96860],["Rockdale","2021-11-09",94960,275,97135],["Rockdale","2021-11-10",94960,246,97381],["Rockdale","2021-11-11",94960,220,97601],["Rockdale","2021-11-12",94960,337,97938],["Rockdale","2021-11-13",94960,174,98112],["Rockdale","2021-11-14",94960,111,98223],["Rockdale","2021-11-15",94960,251,98474],["Rockdale","2021-11-16",94960,254,98728],["Rockdale","2021-11-17",94960,275,99003],["Rockdale","2021-11-18",94960,279,99282],["Rockdale","2021-11-19",94960,354,99636],["Rockdale","2021-11-20",94960,260,99896],["Rockdale","2021-11-21",94960,167,100063],["Rockdale","2021-11-22",94960,302,100365],["Rockdale","2021-11-23",94960,307,100672],["Rockdale","2021-11-24",94960,236,100908],["Rockdale","2021-11-26",94960,232,101140],["Rockdale","2021-11-27",94960,178,101318],["Rockdale","2021-11-28",94960,113,101431],["Rockdale","2021-11-29",94960,289,101720],["Rockdale","2021-11-30",94960,333,102053],["Rockdale","2021-12-01",94960,444,102497],["Rockdale","2021-12-02",94960,362,102859],["Rockdale","2021-12-03",94960,459,103318],["Rockdale","2021-12-04",94960,450,103768],["Rockdale","2021-12-05",94960,142,103910],["Rockdale","2021-12-06",94960,345,104255],["Rockdale","2021-12-07",94960,321,104576],["Rockdale","2021-12-08",94960,313,104889],["Rockdale","2021-12-09",94960,305,105194],["Rockdale","2021-12-10",94960,382,105576],["Rockdale","2021-12-11",94960,206,105782],["Rockdale","2021-12-12",94960,149,105931],["Rockdale","2021-12-13",94960,218,106149],["Rockdale","2021-12-14",94960,235,106384],["Rockdale","2021-12-15",94960,252,106636],["Rockdale","2021-12-16",94960,291,106927],["Rockdale","2021-12-17",94960,285,107212],["Rockdale","2021-12-18",94960,184,107396],["Rockdale","2021-12-19",94960,125,107521],["Rockdale","2021-12-20",94960,360,107881],["Rockdale","2021-12-21",94960,368,108249],["Rockdale","2021-12-22",94960,368,108617],["Rockdale","2021-12-23",94960,280,108897],["Rockdale","2021-12-24",94960,112,109009],["Rockdale","2021-12-25",94960,1,109010],["Rockdale","2021-12-26",94960,115,109125],["Rockdale","2021-12-27",94960,263,109388],["Rockdale","2021-12-28",94960,305,109693],["Rockdale","2021-12-29",94960,335,110028],["Rockdale","2021-12-30",94960,241,110269],["Rockdale","2021-12-31",94960,161,110430],["Rockdale","2022-01-01",94960,27,110457],["Rockdale","2022-01-02",94960,69,110526],["Rockdale","2022-01-03",94960,81,110607],["Schley","2020-12-17",5275,1,1],["Schley","2020-12-18",5275,1,2],["Schley","2020-12-21",5275,1,3],["Schley","2020-12-22",5275,2,5],["Schley","2020-12-23",5275,9,14],["Schley","2020-12-24",5275,1,15],["Schley","2020-12-26",5275,6,21],["Schley","2020-12-28",5275,8,29],["Schley","2020-12-29",5275,6,35],["Schley","2020-12-30",5275,5,40],["Schley","2020-12-31",5275,6,46],["Schley","2021-01-03",5275,7,53],["Schley","2021-01-04",5275,8,61],["Schley","2021-01-05",5275,6,67],["Schley","2021-01-06",5275,8,75],["Schley","2021-01-07",5275,8,83],["Schley","2021-01-09",5275,1,84],["Schley","2021-01-11",5275,11,95],["Schley","2021-01-12",5275,50,145],["Schley","2021-01-13",5275,34,179],["Schley","2021-01-14",5275,51,230],["Schley","2021-01-15",5275,112,342],["Schley","2021-01-16",5275,3,345],["Schley","2021-01-17",5275,4,349],["Schley","2021-01-18",5275,17,366],["Schley","2021-01-19",5275,11,377],["Schley","2021-01-20",5275,19,396],["Schley","2021-01-21",5275,45,441],["Schley","2021-01-22",5275,57,498],["Schley","2021-01-23",5275,1,499],["Schley","2021-01-24",5275,7,506],["Schley","2021-01-25",5275,16,522],["Schley","2021-01-26",5275,17,539],["Schley","2021-01-27",5275,8,547],["Schley","2021-01-28",5275,28,575],["Schley","2021-01-29",5275,10,585],["Schley","2021-02-01",5275,3,588],["Schley","2021-02-02",5275,12,600],["Schley","2021-02-03",5275,24,624],["Schley","2021-02-04",5275,24,648],["Schley","2021-02-05",5275,10,658],["Schley","2021-02-06",5275,6,664],["Schley","2021-02-07",5275,7,671],["Schley","2021-02-08",5275,12,683],["Schley","2021-02-09",5275,11,694],["Schley","2021-02-10",5275,18,712],["Schley","2021-02-11",5275,22,734],["Schley","2021-02-12",5275,169,903],["Schley","2021-02-15",5275,17,920],["Schley","2021-02-16",5275,13,933],["Schley","2021-02-17",5275,16,949],["Schley","2021-02-18",5275,13,962],["Schley","2021-02-19",5275,91,1053],["Schley","2021-02-20",5275,2,1055],["Schley","2021-02-22",5275,16,1071],["Schley","2021-02-23",5275,7,1078],["Schley","2021-02-24",5275,15,1093],["Schley","2021-02-25",5275,16,1109],["Schley","2021-02-26",5275,8,1117],["Schley","2021-02-27",5275,1,1118],["Schley","2021-03-01",5275,22,1140],["Schley","2021-03-02",5275,15,1155],["Schley","2021-03-03",5275,18,1173],["Schley","2021-03-04",5275,19,1192],["Schley","2021-03-05",5275,72,1264],["Schley","2021-03-06",5275,2,1266],["Schley","2021-03-08",5275,11,1277],["Schley","2021-03-09",5275,12,1289],["Schley","2021-03-10",5275,11,1300],["Schley","2021-03-11",5275,7,1307],["Schley","2021-03-12",5275,77,1384],["Schley","2021-03-13",5275,1,1385],["Schley","2021-03-14",5275,2,1387],["Schley","2021-03-15",5275,19,1406],["Schley","2021-03-16",5275,9,1415],["Schley","2021-03-17",5275,20,1435],["Schley","2021-03-18",5275,14,1449],["Schley","2021-03-19",5275,77,1526],["Schley","2021-03-21",5275,1,1527],["Schley","2021-03-22",5275,15,1542],["Schley","2021-03-23",5275,17,1559],["Schley","2021-03-24",5275,4,1563],["Schley","2021-03-25",5275,16,1579],["Schley","2021-03-26",5275,27,1606],["Schley","2021-03-27",5275,1,1607],["Schley","2021-03-28",5275,1,1608],["Schley","2021-03-29",5275,13,1621],["Schley","2021-03-30",5275,13,1634],["Schley","2021-03-31",5275,21,1655],["Schley","2021-04-01",5275,45,1700],["Schley","2021-04-02",5275,14,1714],["Schley","2021-04-03",5275,5,1719],["Schley","2021-04-05",5275,73,1792],["Schley","2021-04-06",5275,21,1813],["Schley","2021-04-07",5275,16,1829],["Schley","2021-04-08",5275,34,1863],["Schley","2021-04-09",5275,67,1930],["Schley","2021-04-10",5275,3,1933],["Schley","2021-04-11",5275,3,1936],["Schley","2021-04-12",5275,12,1948],["Schley","2021-04-13",5275,17,1965],["Schley","2021-04-14",5275,11,1976],["Schley","2021-04-15",5275,41,2017],["Schley","2021-04-16",5275,73,2090],["Schley","2021-04-17",5275,3,2093],["Schley","2021-04-18",5275,2,2095],["Schley","2021-04-19",5275,8,2103],["Schley","2021-04-20",5275,8,2111],["Schley","2021-04-21",5275,10,2121],["Schley","2021-04-22",5275,18,2139],["Schley","2021-04-23",5275,7,2146],["Schley","2021-04-24",5275,3,2149],["Schley","2021-04-25",5275,1,2150],["Schley","2021-04-26",5275,24,2174],["Schley","2021-04-27",5275,15,2189],["Schley","2021-04-28",5275,15,2204],["Schley","2021-04-29",5275,29,2233],["Schley","2021-04-30",5275,28,2261],["Schley","2021-05-01",5275,2,2263],["Schley","2021-05-02",5275,1,2264],["Schley","2021-05-03",5275,2,2266],["Schley","2021-05-04",5275,11,2277],["Schley","2021-05-05",5275,8,2285],["Schley","2021-05-06",5275,18,2303],["Schley","2021-05-07",5275,16,2319],["Schley","2021-05-08",5275,2,2321],["Schley","2021-05-09",5275,2,2323],["Schley","2021-05-10",5275,5,2328],["Schley","2021-05-11",5275,8,2336],["Schley","2021-05-12",5275,5,2341],["Schley","2021-05-13",5275,23,2364],["Schley","2021-05-14",5275,8,2372],["Schley","2021-05-15",5275,1,2373],["Schley","2021-05-17",5275,4,2377],["Schley","2021-05-18",5275,4,2381],["Schley","2021-05-19",5275,9,2390],["Schley","2021-05-20",5275,23,2413],["Schley","2021-05-21",5275,10,2423],["Schley","2021-05-22",5275,1,2424],["Schley","2021-05-23",5275,1,2425],["Schley","2021-05-24",5275,2,2427],["Schley","2021-05-25",5275,4,2431],["Schley","2021-05-26",5275,8,2439],["Schley","2021-05-27",5275,6,2445],["Schley","2021-05-28",5275,14,2459],["Schley","2021-05-29",5275,1,2460],["Schley","2021-06-01",5275,4,2464],["Schley","2021-06-02",5275,1,2465],["Schley","2021-06-03",5275,14,2479],["Schley","2021-06-04",5275,3,2482],["Schley","2021-06-05",5275,1,2483],["Schley","2021-06-07",5275,5,2488],["Schley","2021-06-08",5275,5,2493],["Schley","2021-06-09",5275,3,2496],["Schley","2021-06-10",5275,5,2501],["Schley","2021-06-11",5275,8,2509],["Schley","2021-06-12",5275,3,2512],["Schley","2021-06-14",5275,2,2514],["Schley","2021-06-15",5275,6,2520],["Schley","2021-06-16",5275,2,2522],["Schley","2021-06-17",5275,13,2535],["Schley","2021-06-18",5275,10,2545],["Schley","2021-06-20",5275,1,2546],["Schley","2021-06-21",5275,2,2548],["Schley","2021-06-22",5275,2,2550],["Schley","2021-06-23",5275,6,2556],["Schley","2021-06-24",5275,4,2560],["Schley","2021-06-25",5275,13,2573],["Schley","2021-06-26",5275,3,2576],["Schley","2021-06-28",5275,5,2581],["Schley","2021-06-29",5275,1,2582],["Schley","2021-06-30",5275,4,2586],["Schley","2021-07-01",5275,5,2591],["Schley","2021-07-02",5275,1,2592],["Schley","2021-07-03",5275,3,2595],["Schley","2021-07-05",5275,5,2600],["Schley","2021-07-06",5275,5,2605],["Schley","2021-07-07",5275,2,2607],["Schley","2021-07-08",5275,10,2617],["Schley","2021-07-09",5275,10,2627],["Schley","2021-07-10",5275,4,2631],["Schley","2021-07-12",5275,1,2632],["Schley","2021-07-13",5275,4,2636],["Schley","2021-07-15",5275,4,2640],["Schley","2021-07-16",5275,5,2645],["Schley","2021-07-17",5275,3,2648],["Schley","2021-07-19",5275,4,2652],["Schley","2021-07-21",5275,3,2655],["Schley","2021-07-22",5275,22,2677],["Schley","2021-07-23",5275,22,2699],["Schley","2021-07-24",5275,1,2700],["Schley","2021-07-26",5275,6,2706],["Schley","2021-07-27",5275,5,2711],["Schley","2021-07-28",5275,4,2715],["Schley","2021-07-29",5275,33,2748],["Schley","2021-07-30",5275,8,2756],["Schley","2021-07-31",5275,3,2759],["Schley","2021-08-01",5275,1,2760],["Schley","2021-08-02",5275,5,2765],["Schley","2021-08-03",5275,9,2774],["Schley","2021-08-04",5275,4,2778],["Schley","2021-08-05",5275,17,2795],["Schley","2021-08-06",5275,12,2807],["Schley","2021-08-07",5275,9,2816],["Schley","2021-08-08",5275,5,2821],["Schley","2021-08-09",5275,18,2839],["Schley","2021-08-10",5275,7,2846],["Schley","2021-08-11",5275,7,2853],["Schley","2021-08-12",5275,13,2866],["Schley","2021-08-13",5275,12,2878],["Schley","2021-08-14",5275,7,2885],["Schley","2021-08-15",5275,3,2888],["Schley","2021-08-16",5275,4,2892],["Schley","2021-08-17",5275,14,2906],["Schley","2021-08-18",5275,13,2919],["Schley","2021-08-19",5275,60,2979],["Schley","2021-08-20",5275,54,3033],["Schley","2021-08-21",5275,6,3039],["Schley","2021-08-22",5275,1,3040],["Schley","2021-08-23",5275,12,3052],["Schley","2021-08-24",5275,18,3070],["Schley","2021-08-25",5275,24,3094],["Schley","2021-08-26",5275,17,3111],["Schley","2021-08-27",5275,50,3161],["Schley","2021-08-28",5275,7,3168],["Schley","2021-08-29",5275,3,3171],["Schley","2021-08-30",5275,17,3188],["Schley","2021-08-31",5275,17,3205],["Schley","2021-09-01",5275,9,3214],["Schley","2021-09-02",5275,11,3225],["Schley","2021-09-03",5275,18,3243],["Schley","2021-09-04",5275,2,3245],["Schley","2021-09-05",5275,3,3248],["Schley","2021-09-06",5275,1,3249],["Schley","2021-09-07",5275,13,3262],["Schley","2021-09-08",5275,10,3272],["Schley","2021-09-09",5275,7,3279],["Schley","2021-09-10",5275,39,3318],["Schley","2021-09-11",5275,8,3326],["Schley","2021-09-12",5275,5,3331],["Schley","2021-09-13",5275,6,3337],["Schley","2021-09-14",5275,13,3350],["Schley","2021-09-15",5275,12,3362],["Schley","2021-09-16",5275,45,3407],["Schley","2021-09-17",5275,21,3428],["Schley","2021-09-18",5275,2,3430],["Schley","2021-09-19",5275,1,3431],["Schley","2021-09-20",5275,24,3455],["Schley","2021-09-21",5275,14,3469],["Schley","2021-09-22",5275,19,3488],["Schley","2021-09-23",5275,7,3495],["Schley","2021-09-24",5275,22,3517],["Schley","2021-09-25",5275,2,3519],["Schley","2021-09-26",5275,4,3523],["Schley","2021-09-27",5275,9,3532],["Schley","2021-09-28",5275,9,3541],["Schley","2021-09-29",5275,4,3545],["Schley","2021-09-30",5275,12,3557],["Schley","2021-10-01",5275,31,3588],["Schley","2021-10-02",5275,7,3595],["Schley","2021-10-03",5275,3,3598],["Schley","2021-10-04",5275,9,3607],["Schley","2021-10-05",5275,16,3623],["Schley","2021-10-06",5275,14,3637],["Schley","2021-10-07",5275,13,3650],["Schley","2021-10-08",5275,17,3667],["Schley","2021-10-09",5275,4,3671],["Schley","2021-10-11",5275,4,3675],["Schley","2021-10-12",5275,5,3680],["Schley","2021-10-13",5275,6,3686],["Schley","2021-10-14",5275,4,3690],["Schley","2021-10-15",5275,6,3696],["Schley","2021-10-16",5275,3,3699],["Schley","2021-10-17",5275,1,3700],["Schley","2021-10-18",5275,8,3708],["Schley","2021-10-19",5275,3,3711],["Schley","2021-10-20",5275,3,3714],["Schley","2021-10-21",5275,6,3720],["Schley","2021-10-22",5275,17,3737],["Schley","2021-10-24",5275,3,3740],["Schley","2021-10-25",5275,11,3751],["Schley","2021-10-26",5275,3,3754],["Schley","2021-10-27",5275,40,3794],["Schley","2021-10-28",5275,12,3806],["Schley","2021-10-29",5275,21,3827],["Schley","2021-10-30",5275,4,3831],["Schley","2021-10-31",5275,3,3834],["Schley","2021-11-01",5275,3,3837],["Schley","2021-11-02",5275,13,3850],["Schley","2021-11-03",5275,49,3899],["Schley","2021-11-04",5275,5,3904],["Schley","2021-11-05",5275,16,3920],["Schley","2021-11-06",5275,4,3924],["Schley","2021-11-07",5275,3,3927],["Schley","2021-11-08",5275,5,3932],["Schley","2021-11-09",5275,17,3949],["Schley","2021-11-10",5275,47,3996],["Schley","2021-11-11",5275,5,4001],["Schley","2021-11-12",5275,20,4021],["Schley","2021-11-13",5275,2,4023],["Schley","2021-11-14",5275,2,4025],["Schley","2021-11-15",5275,7,4032],["Schley","2021-11-16",5275,6,4038],["Schley","2021-11-17",5275,60,4098],["Schley","2021-11-18",5275,14,4112],["Schley","2021-11-19",5275,6,4118],["Schley","2021-11-20",5275,1,4119],["Schley","2021-11-21",5275,2,4121],["Schley","2021-11-22",5275,5,4126],["Schley","2021-11-23",5275,28,4154],["Schley","2021-11-24",5275,5,4159],["Schley","2021-11-26",5275,1,4160],["Schley","2021-11-27",5275,2,4162],["Schley","2021-11-29",5275,11,4173],["Schley","2021-11-30",5275,12,4185],["Schley","2021-12-01",5275,31,4216],["Schley","2021-12-02",5275,21,4237],["Schley","2021-12-03",5275,25,4262],["Schley","2021-12-04",5275,1,4263],["Schley","2021-12-05",5275,2,4265],["Schley","2021-12-06",5275,14,4279],["Schley","2021-12-07",5275,9,4288],["Schley","2021-12-08",5275,10,4298],["Schley","2021-12-09",5275,1,4299],["Schley","2021-12-10",5275,12,4311],["Schley","2021-12-11",5275,1,4312],["Schley","2021-12-12",5275,2,4314],["Schley","2021-12-13",5275,6,4320],["Schley","2021-12-14",5275,4,4324],["Schley","2021-12-15",5275,8,4332],["Schley","2021-12-16",5275,10,4342],["Schley","2021-12-17",5275,9,4351],["Schley","2021-12-18",5275,7,4358],["Schley","2021-12-19",5275,1,4359],["Schley","2021-12-20",5275,8,4367],["Schley","2021-12-21",5275,4,4371],["Schley","2021-12-22",5275,7,4378],["Schley","2021-12-27",5275,16,4394],["Schley","2021-12-28",5275,12,4406],["Schley","2021-12-29",5275,16,4422],["Schley","2021-12-30",5275,10,4432],["Schley","2021-12-31",5275,3,4435],["Schley","2022-01-02",5275,1,4436],["Schley","2022-01-03",5275,1,4437],["Screven","2020-12-18",13900,2,2],["Screven","2020-12-19",13900,1,3],["Screven","2020-12-20",13900,2,5],["Screven","2020-12-21",13900,5,10],["Screven","2020-12-22",13900,5,15],["Screven","2020-12-23",13900,10,25],["Screven","2020-12-24",13900,4,29],["Screven","2020-12-26",13900,1,30],["Screven","2020-12-27",13900,3,33],["Screven","2020-12-28",13900,19,52],["Screven","2020-12-29",13900,23,75],["Screven","2020-12-30",13900,10,85],["Screven","2020-12-31",13900,13,98],["Screven","2021-01-01",13900,2,100],["Screven","2021-01-04",13900,5,105],["Screven","2021-01-05",13900,17,122],["Screven","2021-01-06",13900,67,189],["Screven","2021-01-07",13900,21,210],["Screven","2021-01-08",13900,27,237],["Screven","2021-01-09",13900,3,240],["Screven","2021-01-10",13900,5,245],["Screven","2021-01-11",13900,27,272],["Screven","2021-01-12",13900,174,446],["Screven","2021-01-13",13900,39,485],["Screven","2021-01-14",13900,50,535],["Screven","2021-01-15",13900,32,567],["Screven","2021-01-16",13900,8,575],["Screven","2021-01-17",13900,2,577],["Screven","2021-01-18",13900,48,625],["Screven","2021-01-19",13900,101,726],["Screven","2021-01-20",13900,57,783],["Screven","2021-01-21",13900,92,875],["Screven","2021-01-22",13900,37,912],["Screven","2021-01-23",13900,8,920],["Screven","2021-01-24",13900,1,921],["Screven","2021-01-25",13900,55,976],["Screven","2021-01-26",13900,128,1104],["Screven","2021-01-27",13900,90,1194],["Screven","2021-01-28",13900,111,1305],["Screven","2021-01-29",13900,36,1341],["Screven","2021-01-30",13900,6,1347],["Screven","2021-01-31",13900,1,1348],["Screven","2021-02-01",13900,47,1395],["Screven","2021-02-02",13900,165,1560],["Screven","2021-02-03",13900,67,1627],["Screven","2021-02-04",13900,93,1720],["Screven","2021-02-05",13900,77,1797],["Screven","2021-02-06",13900,5,1802],["Screven","2021-02-07",13900,1,1803],["Screven","2021-02-08",13900,20,1823],["Screven","2021-02-09",13900,225,2048],["Screven","2021-02-10",13900,79,2127],["Screven","2021-02-11",13900,121,2248],["Screven","2021-02-12",13900,68,2316],["Screven","2021-02-13",13900,16,2332],["Screven","2021-02-14",13900,3,2335],["Screven","2021-02-15",13900,65,2400],["Screven","2021-02-16",13900,142,2542],["Screven","2021-02-17",13900,70,2612],["Screven","2021-02-18",13900,117,2729],["Screven","2021-02-19",13900,48,2777],["Screven","2021-02-20",13900,8,2785],["Screven","2021-02-21",13900,5,2790],["Screven","2021-02-22",13900,61,2851],["Screven","2021-02-23",13900,139,2990],["Screven","2021-02-24",13900,70,3060],["Screven","2021-02-25",13900,133,3193],["Screven","2021-02-26",13900,53,3246],["Screven","2021-02-27",13900,8,3254],["Screven","2021-02-28",13900,6,3260],["Screven","2021-03-01",13900,78,3338],["Screven","2021-03-02",13900,200,3538],["Screven","2021-03-03",13900,91,3629],["Screven","2021-03-04",13900,118,3747],["Screven","2021-03-05",13900,60,3807],["Screven","2021-03-06",13900,11,3818],["Screven","2021-03-07",13900,11,3829],["Screven","2021-03-08",13900,159,3988],["Screven","2021-03-09",13900,141,4129],["Screven","2021-03-10",13900,102,4231],["Screven","2021-03-11",13900,114,4345],["Screven","2021-03-12",13900,45,4390],["Screven","2021-03-13",13900,19,4409],["Screven","2021-03-14",13900,12,4421],["Screven","2021-03-15",13900,94,4515],["Screven","2021-03-16",13900,176,4691],["Screven","2021-03-17",13900,151,4842],["Screven","2021-03-18",13900,113,4955],["Screven","2021-03-19",13900,66,5021],["Screven","2021-03-20",13900,11,5032],["Screven","2021-03-21",13900,8,5040],["Screven","2021-03-22",13900,96,5136],["Screven","2021-03-23",13900,128,5264],["Screven","2021-03-24",13900,83,5347],["Screven","2021-03-25",13900,113,5460],["Screven","2021-03-26",13900,39,5499],["Screven","2021-03-27",13900,117,5616],["Screven","2021-03-28",13900,20,5636],["Screven","2021-03-29",13900,89,5725],["Screven","2021-03-30",13900,124,5849],["Screven","2021-03-31",13900,85,5934],["Screven","2021-04-01",13900,102,6036],["Screven","2021-04-02",13900,79,6115],["Screven","2021-04-03",13900,7,6122],["Screven","2021-04-04",13900,6,6128],["Screven","2021-04-05",13900,85,6213],["Screven","2021-04-06",13900,153,6366],["Screven","2021-04-07",13900,73,6439],["Screven","2021-04-08",13900,128,6567],["Screven","2021-04-09",13900,85,6652],["Screven","2021-04-10",13900,11,6663],["Screven","2021-04-11",13900,19,6682],["Screven","2021-04-12",13900,92,6774],["Screven","2021-04-13",13900,157,6931],["Screven","2021-04-14",13900,81,7012],["Screven","2021-04-15",13900,176,7188],["Screven","2021-04-16",13900,96,7284],["Screven","2021-04-17",13900,13,7297],["Screven","2021-04-18",13900,3,7300],["Screven","2021-04-19",13900,86,7386],["Screven","2021-04-20",13900,90,7476],["Screven","2021-04-21",13900,74,7550],["Screven","2021-04-22",13900,94,7644],["Screven","2021-04-23",13900,51,7695],["Screven","2021-04-24",13900,130,7825],["Screven","2021-04-25",13900,3,7828],["Screven","2021-04-26",13900,84,7912],["Screven","2021-04-27",13900,103,8015],["Screven","2021-04-28",13900,57,8072],["Screven","2021-04-29",13900,30,8102],["Screven","2021-04-30",13900,72,8174],["Screven","2021-05-01",13900,15,8189],["Screven","2021-05-02",13900,1,8190],["Screven","2021-05-03",13900,41,8231],["Screven","2021-05-04",13900,71,8302],["Screven","2021-05-05",13900,63,8365],["Screven","2021-05-06",13900,37,8402],["Screven","2021-05-07",13900,67,8469],["Screven","2021-05-08",13900,9,8478],["Screven","2021-05-09",13900,1,8479],["Screven","2021-05-10",13900,28,8507],["Screven","2021-05-11",13900,60,8567],["Screven","2021-05-12",13900,47,8614],["Screven","2021-05-13",13900,37,8651],["Screven","2021-05-14",13900,41,8692],["Screven","2021-05-15",13900,10,8702],["Screven","2021-05-16",13900,5,8707],["Screven","2021-05-17",13900,48,8755],["Screven","2021-05-18",13900,62,8817],["Screven","2021-05-19",13900,36,8853],["Screven","2021-05-20",13900,39,8892],["Screven","2021-05-21",13900,30,8922],["Screven","2021-05-22",13900,12,8934],["Screven","2021-05-23",13900,4,8938],["Screven","2021-05-24",13900,26,8964],["Screven","2021-05-25",13900,46,9010],["Screven","2021-05-26",13900,42,9052],["Screven","2021-05-27",13900,22,9074],["Screven","2021-05-28",13900,36,9110],["Screven","2021-05-29",13900,7,9117],["Screven","2021-05-30",13900,3,9120],["Screven","2021-05-31",13900,4,9124],["Screven","2021-06-01",13900,42,9166],["Screven","2021-06-02",13900,27,9193],["Screven","2021-06-03",13900,15,9208],["Screven","2021-06-04",13900,33,9241],["Screven","2021-06-05",13900,2,9243],["Screven","2021-06-06",13900,4,9247],["Screven","2021-06-07",13900,14,9261],["Screven","2021-06-08",13900,29,9290],["Screven","2021-06-09",13900,14,9304],["Screven","2021-06-10",13900,32,9336],["Screven","2021-06-11",13900,50,9386],["Screven","2021-06-12",13900,16,9402],["Screven","2021-06-13",13900,4,9406],["Screven","2021-06-14",13900,13,9419],["Screven","2021-06-15",13900,33,9452],["Screven","2021-06-16",13900,24,9476],["Screven","2021-06-17",13900,25,9501],["Screven","2021-06-18",13900,23,9524],["Screven","2021-06-19",13900,6,9530],["Screven","2021-06-20",13900,2,9532],["Screven","2021-06-21",13900,16,9548],["Screven","2021-06-22",13900,21,9569],["Screven","2021-06-23",13900,40,9609],["Screven","2021-06-24",13900,17,9626],["Screven","2021-06-25",13900,23,9649],["Screven","2021-06-26",13900,4,9653],["Screven","2021-06-28",13900,16,9669],["Screven","2021-06-29",13900,16,9685],["Screven","2021-06-30",13900,18,9703],["Screven","2021-07-01",13900,18,9721],["Screven","2021-07-02",13900,18,9739],["Screven","2021-07-03",13900,8,9747],["Screven","2021-07-05",13900,4,9751],["Screven","2021-07-06",13900,18,9769],["Screven","2021-07-07",13900,16,9785],["Screven","2021-07-08",13900,17,9802],["Screven","2021-07-09",13900,27,9829],["Screven","2021-07-10",13900,10,9839],["Screven","2021-07-11",13900,2,9841],["Screven","2021-07-12",13900,13,9854],["Screven","2021-07-13",13900,12,9866],["Screven","2021-07-14",13900,17,9883],["Screven","2021-07-15",13900,12,9895],["Screven","2021-07-16",13900,14,9909],["Screven","2021-07-17",13900,32,9941],["Screven","2021-07-18",13900,3,9944],["Screven","2021-07-19",13900,17,9961],["Screven","2021-07-20",13900,38,9999],["Screven","2021-07-21",13900,33,10032],["Screven","2021-07-22",13900,23,10055],["Screven","2021-07-23",13900,35,10090],["Screven","2021-07-24",13900,14,10104],["Screven","2021-07-25",13900,4,10108],["Screven","2021-07-26",13900,27,10135],["Screven","2021-07-27",13900,61,10196],["Screven","2021-07-28",13900,53,10249],["Screven","2021-07-29",13900,35,10284],["Screven","2021-07-30",13900,34,10318],["Screven","2021-07-31",13900,17,10335],["Screven","2021-08-01",13900,6,10341],["Screven","2021-08-02",13900,32,10373],["Screven","2021-08-03",13900,52,10425],["Screven","2021-08-04",13900,39,10464],["Screven","2021-08-05",13900,43,10507],["Screven","2021-08-06",13900,54,10561],["Screven","2021-08-07",13900,29,10590],["Screven","2021-08-08",13900,9,10599],["Screven","2021-08-09",13900,51,10650],["Screven","2021-08-10",13900,49,10699],["Screven","2021-08-11",13900,38,10737],["Screven","2021-08-12",13900,41,10778],["Screven","2021-08-13",13900,43,10821],["Screven","2021-08-14",13900,71,10892],["Screven","2021-08-15",13900,10,10902],["Screven","2021-08-16",13900,57,10959],["Screven","2021-08-17",13900,90,11049],["Screven","2021-08-18",13900,66,11115],["Screven","2021-08-19",13900,66,11181],["Screven","2021-08-20",13900,68,11249],["Screven","2021-08-21",13900,16,11265],["Screven","2021-08-22",13900,4,11269],["Screven","2021-08-23",13900,38,11307],["Screven","2021-08-24",13900,94,11401],["Screven","2021-08-25",13900,54,11455],["Screven","2021-08-26",13900,70,11525],["Screven","2021-08-27",13900,91,11616],["Screven","2021-08-28",13900,32,11648],["Screven","2021-08-29",13900,10,11658],["Screven","2021-08-30",13900,71,11729],["Screven","2021-08-31",13900,77,11806],["Screven","2021-09-01",13900,60,11866],["Screven","2021-09-02",13900,62,11928],["Screven","2021-09-03",13900,67,11995],["Screven","2021-09-04",13900,20,12015],["Screven","2021-09-05",13900,13,12028],["Screven","2021-09-06",13900,7,12035],["Screven","2021-09-07",13900,80,12115],["Screven","2021-09-08",13900,37,12152],["Screven","2021-09-09",13900,62,12214],["Screven","2021-09-10",13900,68,12282],["Screven","2021-09-11",13900,28,12310],["Screven","2021-09-12",13900,6,12316],["Screven","2021-09-13",13900,37,12353],["Screven","2021-09-14",13900,111,12464],["Screven","2021-09-15",13900,29,12493],["Screven","2021-09-16",13900,47,12540],["Screven","2021-09-17",13900,71,12611],["Screven","2021-09-18",13900,25,12636],["Screven","2021-09-19",13900,10,12646],["Screven","2021-09-20",13900,29,12675],["Screven","2021-09-21",13900,50,12725],["Screven","2021-09-22",13900,29,12754],["Screven","2021-09-23",13900,48,12802],["Screven","2021-09-24",13900,60,12862],["Screven","2021-09-25",13900,9,12871],["Screven","2021-09-26",13900,2,12873],["Screven","2021-09-27",13900,33,12906],["Screven","2021-09-28",13900,49,12955],["Screven","2021-09-29",13900,32,12987],["Screven","2021-09-30",13900,25,13012],["Screven","2021-10-01",13900,43,13055],["Screven","2021-10-02",13900,15,13070],["Screven","2021-10-03",13900,4,13074],["Screven","2021-10-04",13900,8,13082],["Screven","2021-10-05",13900,47,13129],["Screven","2021-10-06",13900,22,13151],["Screven","2021-10-07",13900,15,13166],["Screven","2021-10-08",13900,26,13192],["Screven","2021-10-09",13900,14,13206],["Screven","2021-10-10",13900,5,13211],["Screven","2021-10-11",13900,21,13232],["Screven","2021-10-12",13900,30,13262],["Screven","2021-10-13",13900,11,13273],["Screven","2021-10-14",13900,15,13288],["Screven","2021-10-15",13900,31,13319],["Screven","2021-10-16",13900,5,13324],["Screven","2021-10-17",13900,2,13326],["Screven","2021-10-18",13900,14,13340],["Screven","2021-10-19",13900,11,13351],["Screven","2021-10-20",13900,16,13367],["Screven","2021-10-21",13900,12,13379],["Screven","2021-10-22",13900,21,13400],["Screven","2021-10-23",13900,10,13410],["Screven","2021-10-24",13900,2,13412],["Screven","2021-10-25",13900,17,13429],["Screven","2021-10-26",13900,141,13570],["Screven","2021-10-27",13900,44,13614],["Screven","2021-10-28",13900,38,13652],["Screven","2021-10-29",13900,109,13761],["Screven","2021-10-30",13900,14,13775],["Screven","2021-10-31",13900,5,13780],["Screven","2021-11-01",13900,97,13877],["Screven","2021-11-02",13900,128,14005],["Screven","2021-11-03",13900,99,14104],["Screven","2021-11-04",13900,73,14177],["Screven","2021-11-05",13900,57,14234],["Screven","2021-11-06",13900,37,14271],["Screven","2021-11-07",13900,4,14275],["Screven","2021-11-08",13900,35,14310],["Screven","2021-11-09",13900,98,14408],["Screven","2021-11-10",13900,37,14445],["Screven","2021-11-11",13900,45,14490],["Screven","2021-11-12",13900,51,14541],["Screven","2021-11-13",13900,3,14544],["Screven","2021-11-14",13900,5,14549],["Screven","2021-11-15",13900,34,14583],["Screven","2021-11-16",13900,153,14736],["Screven","2021-11-17",13900,27,14763],["Screven","2021-11-18",13900,45,14808],["Screven","2021-11-19",13900,98,14906],["Screven","2021-11-20",13900,12,14918],["Screven","2021-11-21",13900,7,14925],["Screven","2021-11-22",13900,37,14962],["Screven","2021-11-23",13900,64,15026],["Screven","2021-11-24",13900,39,15065],["Screven","2021-11-26",13900,38,15103],["Screven","2021-11-27",13900,13,15116],["Screven","2021-11-28",13900,2,15118],["Screven","2021-11-29",13900,48,15166],["Screven","2021-11-30",13900,99,15265],["Screven","2021-12-01",13900,39,15304],["Screven","2021-12-02",13900,50,15354],["Screven","2021-12-03",13900,114,15468],["Screven","2021-12-04",13900,16,15484],["Screven","2021-12-05",13900,8,15492],["Screven","2021-12-06",13900,40,15532],["Screven","2021-12-07",13900,99,15631],["Screven","2021-12-08",13900,58,15689],["Screven","2021-12-09",13900,33,15722],["Screven","2021-12-10",13900,35,15757],["Screven","2021-12-11",13900,8,15765],["Screven","2021-12-12",13900,2,15767],["Screven","2021-12-13",13900,27,15794],["Screven","2021-12-14",13900,56,15850],["Screven","2021-12-15",13900,27,15877],["Screven","2021-12-16",13900,31,15908],["Screven","2021-12-17",13900,65,15973],["Screven","2021-12-18",13900,11,15984],["Screven","2021-12-19",13900,5,15989],["Screven","2021-12-20",13900,37,16026],["Screven","2021-12-21",13900,76,16102],["Screven","2021-12-22",13900,23,16125],["Screven","2021-12-23",13900,23,16148],["Screven","2021-12-24",13900,3,16151],["Screven","2021-12-26",13900,9,16160],["Screven","2021-12-27",13900,28,16188],["Screven","2021-12-28",13900,59,16247],["Screven","2021-12-29",13900,49,16296],["Screven","2021-12-30",13900,38,16334],["Screven","2021-12-31",13900,16,16350],["Screven","2022-01-02",13900,4,16354],["Screven","2022-01-03",13900,8,16362],["Seminole","2020-12-16",8140,1,1],["Seminole","2020-12-18",8140,1,2],["Seminole","2020-12-19",8140,1,3],["Seminole","2020-12-21",8140,1,4],["Seminole","2020-12-22",8140,19,23],["Seminole","2020-12-23",8140,9,32],["Seminole","2020-12-24",8140,1,33],["Seminole","2020-12-27",8140,2,35],["Seminole","2020-12-28",8140,14,49],["Seminole","2020-12-29",8140,28,77],["Seminole","2020-12-30",8140,21,98],["Seminole","2020-12-31",8140,4,102],["Seminole","2021-01-04",8140,14,116],["Seminole","2021-01-05",8140,18,134],["Seminole","2021-01-06",8140,56,190],["Seminole","2021-01-07",8140,47,237],["Seminole","2021-01-08",8140,12,249],["Seminole","2021-01-09",8140,1,250],["Seminole","2021-01-10",8140,1,251],["Seminole","2021-01-11",8140,68,319],["Seminole","2021-01-12",8140,53,372],["Seminole","2021-01-13",8140,49,421],["Seminole","2021-01-14",8140,65,486],["Seminole","2021-01-15",8140,53,539],["Seminole","2021-01-16",8140,2,541],["Seminole","2021-01-17",8140,2,543],["Seminole","2021-01-18",8140,46,589],["Seminole","2021-01-19",8140,71,660],["Seminole","2021-01-20",8140,53,713],["Seminole","2021-01-21",8140,53,766],["Seminole","2021-01-22",8140,47,813],["Seminole","2021-01-23",8140,1,814],["Seminole","2021-01-25",8140,51,865],["Seminole","2021-01-26",8140,51,916],["Seminole","2021-01-27",8140,108,1024],["Seminole","2021-01-28",8140,62,1086],["Seminole","2021-01-29",8140,47,1133],["Seminole","2021-01-30",8140,1,1134],["Seminole","2021-01-31",8140,1,1135],["Seminole","2021-02-01",8140,70,1205],["Seminole","2021-02-02",8140,66,1271],["Seminole","2021-02-03",8140,61,1332],["Seminole","2021-02-04",8140,54,1386],["Seminole","2021-02-05",8140,44,1430],["Seminole","2021-02-06",8140,3,1433],["Seminole","2021-02-07",8140,1,1434],["Seminole","2021-02-08",8140,73,1507],["Seminole","2021-02-09",8140,89,1596],["Seminole","2021-02-10",8140,70,1666],["Seminole","2021-02-11",8140,79,1745],["Seminole","2021-02-12",8140,58,1803],["Seminole","2021-02-15",8140,53,1856],["Seminole","2021-02-16",8140,89,1945],["Seminole","2021-02-17",8140,50,1995],["Seminole","2021-02-18",8140,62,2057],["Seminole","2021-02-19",8140,51,2108],["Seminole","2021-02-22",8140,52,2160],["Seminole","2021-02-23",8140,57,2217],["Seminole","2021-02-24",8140,48,2265],["Seminole","2021-02-25",8140,57,2322],["Seminole","2021-02-26",8140,48,2370],["Seminole","2021-02-27",8140,2,2372],["Seminole","2021-03-01",8140,67,2439],["Seminole","2021-03-02",8140,72,2511],["Seminole","2021-03-03",8140,62,2573],["Seminole","2021-03-04",8140,43,2616],["Seminole","2021-03-05",8140,33,2649],["Seminole","2021-03-07",8140,1,2650],["Seminole","2021-03-08",8140,46,2696],["Seminole","2021-03-09",8140,40,2736],["Seminole","2021-03-10",8140,87,2823],["Seminole","2021-03-11",8140,39,2862],["Seminole","2021-03-12",8140,52,2914],["Seminole","2021-03-14",8140,7,2921],["Seminole","2021-03-15",8140,76,2997],["Seminole","2021-03-16",8140,58,3055],["Seminole","2021-03-17",8140,56,3111],["Seminole","2021-03-18",8140,47,3158],["Seminole","2021-03-19",8140,16,3174],["Seminole","2021-03-20",8140,3,3177],["Seminole","2021-03-21",8140,5,3182],["Seminole","2021-03-22",8140,70,3252],["Seminole","2021-03-23",8140,24,3276],["Seminole","2021-03-24",8140,58,3334],["Seminole","2021-03-25",8140,66,3400],["Seminole","2021-03-26",8140,9,3409],["Seminole","2021-03-28",8140,8,3417],["Seminole","2021-03-29",8140,48,3465],["Seminole","2021-03-30",8140,32,3497],["Seminole","2021-03-31",8140,76,3573],["Seminole","2021-04-01",8140,40,3613],["Seminole","2021-04-02",8140,7,3620],["Seminole","2021-04-03",8140,3,3623],["Seminole","2021-04-04",8140,9,3632],["Seminole","2021-04-05",8140,40,3672],["Seminole","2021-04-06",8140,50,3722],["Seminole","2021-04-07",8140,65,3787],["Seminole","2021-04-08",8140,19,3806],["Seminole","2021-04-09",8140,13,3819],["Seminole","2021-04-10",8140,4,3823],["Seminole","2021-04-11",8140,12,3835],["Seminole","2021-04-12",8140,75,3910],["Seminole","2021-04-13",8140,48,3958],["Seminole","2021-04-14",8140,53,4011],["Seminole","2021-04-15",8140,47,4058],["Seminole","2021-04-16",8140,21,4079],["Seminole","2021-04-17",8140,2,4081],["Seminole","2021-04-18",8140,1,4082],["Seminole","2021-04-19",8140,68,4150],["Seminole","2021-04-20",8140,19,4169],["Seminole","2021-04-21",8140,53,4222],["Seminole","2021-04-22",8140,41,4263],["Seminole","2021-04-23",8140,17,4280],["Seminole","2021-04-24",8140,1,4281],["Seminole","2021-04-25",8140,1,4282],["Seminole","2021-04-26",8140,34,4316],["Seminole","2021-04-27",8140,27,4343],["Seminole","2021-04-28",8140,67,4410],["Seminole","2021-04-29",8140,16,4426],["Seminole","2021-04-30",8140,12,4438],["Seminole","2021-05-01",8140,9,4447],["Seminole","2021-05-02",8140,5,4452],["Seminole","2021-05-03",8140,34,4486],["Seminole","2021-05-04",8140,9,4495],["Seminole","2021-05-05",8140,33,4528],["Seminole","2021-05-06",8140,12,4540],["Seminole","2021-05-07",8140,15,4555],["Seminole","2021-05-08",8140,12,4567],["Seminole","2021-05-10",8140,35,4602],["Seminole","2021-05-11",8140,13,4615],["Seminole","2021-05-12",8140,27,4642],["Seminole","2021-05-13",8140,18,4660],["Seminole","2021-05-14",8140,9,4669],["Seminole","2021-05-15",8140,4,4673],["Seminole","2021-05-16",8140,1,4674],["Seminole","2021-05-17",8140,23,4697],["Seminole","2021-05-18",8140,24,4721],["Seminole","2021-05-19",8140,28,4749],["Seminole","2021-05-20",8140,19,4768],["Seminole","2021-05-21",8140,11,4779],["Seminole","2021-05-22",8140,7,4786],["Seminole","2021-05-23",8140,3,4789],["Seminole","2021-05-24",8140,21,4810],["Seminole","2021-05-25",8140,15,4825],["Seminole","2021-05-26",8140,30,4855],["Seminole","2021-05-27",8140,4,4859],["Seminole","2021-05-28",8140,10,4869],["Seminole","2021-05-29",8140,4,4873],["Seminole","2021-06-01",8140,19,4892],["Seminole","2021-06-02",8140,30,4922],["Seminole","2021-06-03",8140,10,4932],["Seminole","2021-06-04",8140,9,4941],["Seminole","2021-06-05",8140,6,4947],["Seminole","2021-06-06",8140,3,4950],["Seminole","2021-06-07",8140,22,4972],["Seminole","2021-06-08",8140,8,4980],["Seminole","2021-06-09",8140,9,4989],["Seminole","2021-06-10",8140,56,5045],["Seminole","2021-06-11",8140,10,5055],["Seminole","2021-06-12",8140,5,5060],["Seminole","2021-06-13",8140,2,5062],["Seminole","2021-06-14",8140,9,5071],["Seminole","2021-06-15",8140,8,5079],["Seminole","2021-06-16",8140,16,5095],["Seminole","2021-06-17",8140,13,5108],["Seminole","2021-06-18",8140,3,5111],["Seminole","2021-06-19",8140,2,5113],["Seminole","2021-06-21",8140,12,5125],["Seminole","2021-06-22",8140,12,5137],["Seminole","2021-06-23",8140,13,5150],["Seminole","2021-06-24",8140,3,5153],["Seminole","2021-06-25",8140,3,5156],["Seminole","2021-06-26",8140,5,5161],["Seminole","2021-06-27",8140,1,5162],["Seminole","2021-06-28",8140,8,5170],["Seminole","2021-06-29",8140,8,5178],["Seminole","2021-06-30",8140,15,5193],["Seminole","2021-07-01",8140,7,5200],["Seminole","2021-07-02",8140,5,5205],["Seminole","2021-07-03",8140,2,5207],["Seminole","2021-07-04",8140,1,5208],["Seminole","2021-07-05",8140,6,5214],["Seminole","2021-07-06",8140,5,5219],["Seminole","2021-07-07",8140,16,5235],["Seminole","2021-07-08",8140,8,5243],["Seminole","2021-07-09",8140,10,5253],["Seminole","2021-07-10",8140,4,5257],["Seminole","2021-07-11",8140,3,5260],["Seminole","2021-07-12",8140,7,5267],["Seminole","2021-07-13",8140,6,5273],["Seminole","2021-07-14",8140,15,5288],["Seminole","2021-07-15",8140,16,5304],["Seminole","2021-07-16",8140,6,5310],["Seminole","2021-07-17",8140,6,5316],["Seminole","2021-07-19",8140,33,5349],["Seminole","2021-07-20",8140,6,5355],["Seminole","2021-07-21",8140,27,5382],["Seminole","2021-07-22",8140,16,5398],["Seminole","2021-07-23",8140,19,5417],["Seminole","2021-07-24",8140,6,5423],["Seminole","2021-07-25",8140,5,5428],["Seminole","2021-07-26",8140,35,5463],["Seminole","2021-07-27",8140,16,5479],["Seminole","2021-07-28",8140,45,5524],["Seminole","2021-07-29",8140,23,5547],["Seminole","2021-07-30",8140,21,5568],["Seminole","2021-07-31",8140,11,5579],["Seminole","2021-08-01",8140,9,5588],["Seminole","2021-08-02",8140,48,5636],["Seminole","2021-08-03",8140,22,5658],["Seminole","2021-08-04",8140,53,5711],["Seminole","2021-08-05",8140,16,5727],["Seminole","2021-08-06",8140,23,5750],["Seminole","2021-08-07",8140,11,5761],["Seminole","2021-08-08",8140,6,5767],["Seminole","2021-08-09",8140,58,5825],["Seminole","2021-08-10",8140,21,5846],["Seminole","2021-08-11",8140,44,5890],["Seminole","2021-08-12",8140,30,5920],["Seminole","2021-08-13",8140,46,5966],["Seminole","2021-08-14",8140,12,5978],["Seminole","2021-08-15",8140,5,5983],["Seminole","2021-08-16",8140,48,6031],["Seminole","2021-08-17",8140,24,6055],["Seminole","2021-08-18",8140,67,6122],["Seminole","2021-08-19",8140,32,6154],["Seminole","2021-08-20",8140,27,6181],["Seminole","2021-08-21",8140,14,6195],["Seminole","2021-08-22",8140,14,6209],["Seminole","2021-08-23",8140,48,6257],["Seminole","2021-08-24",8140,43,6300],["Seminole","2021-08-25",8140,59,6359],["Seminole","2021-08-26",8140,46,6405],["Seminole","2021-08-27",8140,26,6431],["Seminole","2021-08-28",8140,13,6444],["Seminole","2021-08-29",8140,7,6451],["Seminole","2021-08-30",8140,73,6524],["Seminole","2021-08-31",8140,35,6559],["Seminole","2021-09-01",8140,65,6624],["Seminole","2021-09-02",8140,24,6648],["Seminole","2021-09-03",8140,25,6673],["Seminole","2021-09-04",8140,13,6686],["Seminole","2021-09-05",8140,7,6693],["Seminole","2021-09-06",8140,10,6703],["Seminole","2021-09-07",8140,35,6738],["Seminole","2021-09-08",8140,66,6804],["Seminole","2021-09-09",8140,32,6836],["Seminole","2021-09-10",8140,26,6862],["Seminole","2021-09-11",8140,10,6872],["Seminole","2021-09-12",8140,11,6883],["Seminole","2021-09-13",8140,44,6927],["Seminole","2021-09-14",8140,35,6962],["Seminole","2021-09-15",8140,43,7005],["Seminole","2021-09-16",8140,19,7024],["Seminole","2021-09-17",8140,15,7039],["Seminole","2021-09-18",8140,10,7049],["Seminole","2021-09-19",8140,6,7055],["Seminole","2021-09-20",8140,36,7091],["Seminole","2021-09-21",8140,18,7109],["Seminole","2021-09-22",8140,34,7143],["Seminole","2021-09-23",8140,16,7159],["Seminole","2021-09-24",8140,19,7178],["Seminole","2021-09-25",8140,5,7183],["Seminole","2021-09-26",8140,2,7185],["Seminole","2021-09-27",8140,31,7216],["Seminole","2021-09-28",8140,13,7229],["Seminole","2021-09-29",8140,30,7259],["Seminole","2021-09-30",8140,10,7269],["Seminole","2021-10-01",8140,13,7282],["Seminole","2021-10-02",8140,5,7287],["Seminole","2021-10-03",8140,4,7291],["Seminole","2021-10-04",8140,16,7307],["Seminole","2021-10-05",8140,29,7336],["Seminole","2021-10-06",8140,19,7355],["Seminole","2021-10-07",8140,15,7370],["Seminole","2021-10-08",8140,7,7377],["Seminole","2021-10-09",8140,2,7379],["Seminole","2021-10-10",8140,4,7383],["Seminole","2021-10-11",8140,6,7389],["Seminole","2021-10-12",8140,13,7402],["Seminole","2021-10-13",8140,10,7412],["Seminole","2021-10-14",8140,11,7423],["Seminole","2021-10-15",8140,9,7432],["Seminole","2021-10-16",8140,2,7434],["Seminole","2021-10-17",8140,2,7436],["Seminole","2021-10-18",8140,20,7456],["Seminole","2021-10-19",8140,7,7463],["Seminole","2021-10-20",8140,13,7476],["Seminole","2021-10-21",8140,6,7482],["Seminole","2021-10-22",8140,2,7484],["Seminole","2021-10-23",8140,5,7489],["Seminole","2021-10-24",8140,6,7495],["Seminole","2021-10-25",8140,25,7520],["Seminole","2021-10-26",8140,10,7530],["Seminole","2021-10-27",8140,42,7572],["Seminole","2021-10-28",8140,42,7614],["Seminole","2021-10-29",8140,7,7621],["Seminole","2021-10-30",8140,3,7624],["Seminole","2021-10-31",8140,2,7626],["Seminole","2021-11-01",8140,46,7672],["Seminole","2021-11-02",8140,29,7701],["Seminole","2021-11-03",8140,45,7746],["Seminole","2021-11-04",8140,17,7763],["Seminole","2021-11-05",8140,7,7770],["Seminole","2021-11-06",8140,7,7777],["Seminole","2021-11-07",8140,1,7778],["Seminole","2021-11-08",8140,57,7835],["Seminole","2021-11-09",8140,50,7885],["Seminole","2021-11-10",8140,48,7933],["Seminole","2021-11-11",8140,10,7943],["Seminole","2021-11-12",8140,10,7953],["Seminole","2021-11-13",8140,2,7955],["Seminole","2021-11-14",8140,3,7958],["Seminole","2021-11-15",8140,40,7998],["Seminole","2021-11-16",8140,50,8048],["Seminole","2021-11-17",8140,49,8097],["Seminole","2021-11-18",8140,15,8112],["Seminole","2021-11-19",8140,10,8122],["Seminole","2021-11-20",8140,6,8128],["Seminole","2021-11-21",8140,2,8130],["Seminole","2021-11-22",8140,47,8177],["Seminole","2021-11-23",8140,34,8211],["Seminole","2021-11-24",8140,4,8215],["Seminole","2021-11-26",8140,5,8220],["Seminole","2021-11-27",8140,4,8224],["Seminole","2021-11-28",8140,2,8226],["Seminole","2021-11-29",8140,45,8271],["Seminole","2021-11-30",8140,12,8283],["Seminole","2021-12-01",8140,71,8354],["Seminole","2021-12-02",8140,40,8394],["Seminole","2021-12-03",8140,15,8409],["Seminole","2021-12-04",8140,5,8414],["Seminole","2021-12-05",8140,1,8415],["Seminole","2021-12-06",8140,47,8462],["Seminole","2021-12-07",8140,7,8469],["Seminole","2021-12-08",8140,58,8527],["Seminole","2021-12-09",8140,9,8536],["Seminole","2021-12-10",8140,5,8541],["Seminole","2021-12-11",8140,7,8548],["Seminole","2021-12-12",8140,2,8550],["Seminole","2021-12-13",8140,30,8580],["Seminole","2021-12-14",8140,4,8584],["Seminole","2021-12-15",8140,29,8613],["Seminole","2021-12-16",8140,6,8619],["Seminole","2021-12-17",8140,10,8629],["Seminole","2021-12-18",8140,9,8638],["Seminole","2021-12-19",8140,1,8639],["Seminole","2021-12-20",8140,30,8669],["Seminole","2021-12-21",8140,20,8689],["Seminole","2021-12-22",8140,21,8710],["Seminole","2021-12-23",8140,6,8716],["Seminole","2021-12-24",8140,2,8718],["Seminole","2021-12-26",8140,1,8719],["Seminole","2021-12-27",8140,24,8743],["Seminole","2021-12-28",8140,34,8777],["Seminole","2021-12-29",8140,13,8790],["Seminole","2021-12-30",8140,14,8804],["Seminole","2021-12-31",8140,13,8817],["Seminole","2022-01-02",8140,5,8822],["Seminole","2022-01-03",8140,3,8825],["Spalding","2020-12-17",69110,1,1],["Spalding","2020-12-18",69110,8,9],["Spalding","2020-12-19",69110,64,73],["Spalding","2020-12-20",69110,4,77],["Spalding","2020-12-21",69110,24,101],["Spalding","2020-12-22",69110,29,130],["Spalding","2020-12-23",69110,61,191],["Spalding","2020-12-24",69110,4,195],["Spalding","2020-12-26",69110,1,196],["Spalding","2020-12-27",69110,5,201],["Spalding","2020-12-28",69110,58,259],["Spalding","2020-12-29",69110,79,338],["Spalding","2020-12-30",69110,55,393],["Spalding","2020-12-31",69110,47,440],["Spalding","2021-01-01",69110,47,487],["Spalding","2021-01-02",69110,1,488],["Spalding","2021-01-03",69110,51,539],["Spalding","2021-01-04",69110,47,586],["Spalding","2021-01-05",69110,39,625],["Spalding","2021-01-06",69110,40,665],["Spalding","2021-01-07",69110,59,724],["Spalding","2021-01-08",69110,52,776],["Spalding","2021-01-09",69110,138,914],["Spalding","2021-01-10",69110,68,982],["Spalding","2021-01-11",69110,84,1066],["Spalding","2021-01-12",69110,201,1267],["Spalding","2021-01-13",69110,152,1419],["Spalding","2021-01-14",69110,207,1626],["Spalding","2021-01-15",69110,669,2295],["Spalding","2021-01-16",69110,92,2387],["Spalding","2021-01-17",69110,68,2455],["Spalding","2021-01-18",69110,162,2617],["Spalding","2021-01-19",69110,179,2796],["Spalding","2021-01-20",69110,215,3011],["Spalding","2021-01-21",69110,272,3283],["Spalding","2021-01-22",69110,334,3617],["Spalding","2021-01-23",69110,53,3670],["Spalding","2021-01-24",69110,114,3784],["Spalding","2021-01-25",69110,163,3947],["Spalding","2021-01-26",69110,142,4089],["Spalding","2021-01-27",69110,270,4359],["Spalding","2021-01-28",69110,233,4592],["Spalding","2021-01-29",69110,188,4780],["Spalding","2021-01-30",69110,41,4821],["Spalding","2021-01-31",69110,21,4842],["Spalding","2021-02-01",69110,252,5094],["Spalding","2021-02-02",69110,167,5261],["Spalding","2021-02-03",69110,162,5423],["Spalding","2021-02-04",69110,238,5661],["Spalding","2021-02-05",69110,707,6368],["Spalding","2021-02-06",69110,42,6410],["Spalding","2021-02-07",69110,29,6439],["Spalding","2021-02-08",69110,54,6493],["Spalding","2021-02-09",69110,267,6760],["Spalding","2021-02-10",69110,268,7028],["Spalding","2021-02-11",69110,306,7334],["Spalding","2021-02-12",69110,519,7853],["Spalding","2021-02-13",69110,86,7939],["Spalding","2021-02-14",69110,59,7998],["Spalding","2021-02-15",69110,229,8227],["Spalding","2021-02-16",69110,271,8498],["Spalding","2021-02-17",69110,342,8840],["Spalding","2021-02-18",69110,261,9101],["Spalding","2021-02-19",69110,433,9534],["Spalding","2021-02-20",69110,70,9604],["Spalding","2021-02-21",69110,55,9659],["Spalding","2021-02-22",69110,93,9752],["Spalding","2021-02-23",69110,284,10036],["Spalding","2021-02-24",69110,293,10329],["Spalding","2021-02-25",69110,339,10668],["Spalding","2021-02-26",69110,453,11121],["Spalding","2021-02-27",69110,70,11191],["Spalding","2021-02-28",69110,47,11238],["Spalding","2021-03-01",69110,215,11453],["Spalding","2021-03-02",69110,340,11793],["Spalding","2021-03-03",69110,303,12096],["Spalding","2021-03-04",69110,347,12443],["Spalding","2021-03-05",69110,532,12975],["Spalding","2021-03-06",69110,59,13034],["Spalding","2021-03-07",69110,50,13084],["Spalding","2021-03-08",69110,162,13246],["Spalding","2021-03-09",69110,320,13566],["Spalding","2021-03-10",69110,355,13921],["Spalding","2021-03-11",69110,414,14335],["Spalding","2021-03-12",69110,805,15140],["Spalding","2021-03-13",69110,79,15219],["Spalding","2021-03-14",69110,50,15269],["Spalding","2021-03-15",69110,237,15506],["Spalding","2021-03-16",69110,417,15923],["Spalding","2021-03-17",69110,381,16304],["Spalding","2021-03-18",69110,394,16698],["Spalding","2021-03-19",69110,732,17430],["Spalding","2021-03-20",69110,102,17532],["Spalding","2021-03-21",69110,84,17616],["Spalding","2021-03-22",69110,166,17782],["Spalding","2021-03-23",69110,355,18137],["Spalding","2021-03-24",69110,362,18499],["Spalding","2021-03-25",69110,639,19138],["Spalding","2021-03-26",69110,573,19711],["Spalding","2021-03-27",69110,102,19813],["Spalding","2021-03-28",69110,115,19928],["Spalding","2021-03-29",69110,263,20191],["Spalding","2021-03-30",69110,492,20683],["Spalding","2021-03-31",69110,392,21075],["Spalding","2021-04-01",69110,680,21755],["Spalding","2021-04-02",69110,339,22094],["Spalding","2021-04-03",69110,125,22219],["Spalding","2021-04-04",69110,127,22346],["Spalding","2021-04-05",69110,270,22616],["Spalding","2021-04-06",69110,675,23291],["Spalding","2021-04-07",69110,538,23829],["Spalding","2021-04-08",69110,579,24408],["Spalding","2021-04-09",69110,880,25288],["Spalding","2021-04-10",69110,170,25458],["Spalding","2021-04-11",69110,138,25596],["Spalding","2021-04-12",69110,334,25930],["Spalding","2021-04-13",69110,429,26359],["Spalding","2021-04-14",69110,366,26725],["Spalding","2021-04-15",69110,645,27370],["Spalding","2021-04-16",69110,498,27868],["Spalding","2021-04-17",69110,89,27957],["Spalding","2021-04-18",69110,110,28067],["Spalding","2021-04-19",69110,246,28313],["Spalding","2021-04-20",69110,345,28658],["Spalding","2021-04-21",69110,362,29020],["Spalding","2021-04-22",69110,393,29413],["Spalding","2021-04-23",69110,549,29962],["Spalding","2021-04-24",69110,124,30086],["Spalding","2021-04-25",69110,68,30154],["Spalding","2021-04-26",69110,231,30385],["Spalding","2021-04-27",69110,448,30833],["Spalding","2021-04-28",69110,336,31169],["Spalding","2021-04-29",69110,392,31561],["Spalding","2021-04-30",69110,614,32175],["Spalding","2021-05-01",69110,182,32357],["Spalding","2021-05-02",69110,74,32431],["Spalding","2021-05-03",69110,217,32648],["Spalding","2021-05-04",69110,367,33015],["Spalding","2021-05-05",69110,281,33296],["Spalding","2021-05-06",69110,323,33619],["Spalding","2021-05-07",69110,416,34035],["Spalding","2021-05-08",69110,127,34162],["Spalding","2021-05-09",69110,54,34216],["Spalding","2021-05-10",69110,99,34315],["Spalding","2021-05-11",69110,236,34551],["Spalding","2021-05-12",69110,212,34763],["Spalding","2021-05-13",69110,251,35014],["Spalding","2021-05-14",69110,445,35459],["Spalding","2021-05-15",69110,150,35609],["Spalding","2021-05-16",69110,89,35698],["Spalding","2021-05-17",69110,136,35834],["Spalding","2021-05-18",69110,275,36109],["Spalding","2021-05-19",69110,208,36317],["Spalding","2021-05-20",69110,239,36556],["Spalding","2021-05-21",69110,304,36860],["Spalding","2021-05-22",69110,122,36982],["Spalding","2021-05-23",69110,63,37045],["Spalding","2021-05-24",69110,109,37154],["Spalding","2021-05-25",69110,160,37314],["Spalding","2021-05-26",69110,148,37462],["Spalding","2021-05-27",69110,160,37622],["Spalding","2021-05-28",69110,125,37747],["Spalding","2021-05-29",69110,83,37830],["Spalding","2021-05-30",69110,34,37864],["Spalding","2021-05-31",69110,32,37896],["Spalding","2021-06-01",69110,192,38088],["Spalding","2021-06-02",69110,108,38196],["Spalding","2021-06-03",69110,165,38361],["Spalding","2021-06-04",69110,185,38546],["Spalding","2021-06-05",69110,106,38652],["Spalding","2021-06-06",69110,59,38711],["Spalding","2021-06-07",69110,105,38816],["Spalding","2021-06-08",69110,112,38928],["Spalding","2021-06-09",69110,117,39045],["Spalding","2021-06-10",69110,173,39218],["Spalding","2021-06-11",69110,146,39364],["Spalding","2021-06-12",69110,109,39473],["Spalding","2021-06-13",69110,38,39511],["Spalding","2021-06-14",69110,108,39619],["Spalding","2021-06-15",69110,133,39752],["Spalding","2021-06-16",69110,85,39837],["Spalding","2021-06-17",69110,99,39936],["Spalding","2021-06-18",69110,125,40061],["Spalding","2021-06-19",69110,67,40128],["Spalding","2021-06-20",69110,31,40159],["Spalding","2021-06-21",69110,56,40215],["Spalding","2021-06-22",69110,105,40320],["Spalding","2021-06-23",69110,71,40391],["Spalding","2021-06-24",69110,84,40475],["Spalding","2021-06-25",69110,100,40575],["Spalding","2021-06-26",69110,67,40642],["Spalding","2021-06-27",69110,34,40676],["Spalding","2021-06-28",69110,64,40740],["Spalding","2021-06-29",69110,102,40842],["Spalding","2021-06-30",69110,66,40908],["Spalding","2021-07-01",69110,96,41004],["Spalding","2021-07-02",69110,74,41078],["Spalding","2021-07-03",69110,64,41142],["Spalding","2021-07-04",69110,2,41144],["Spalding","2021-07-05",69110,62,41206],["Spalding","2021-07-06",69110,56,41262],["Spalding","2021-07-07",69110,66,41328],["Spalding","2021-07-08",69110,68,41396],["Spalding","2021-07-09",69110,78,41474],["Spalding","2021-07-10",69110,45,41519],["Spalding","2021-07-11",69110,26,41545],["Spalding","2021-07-12",69110,61,41606],["Spalding","2021-07-13",69110,77,41683],["Spalding","2021-07-14",69110,80,41763],["Spalding","2021-07-15",69110,88,41851],["Spalding","2021-07-16",69110,75,41926],["Spalding","2021-07-17",69110,53,41979],["Spalding","2021-07-18",69110,35,42014],["Spalding","2021-07-19",69110,83,42097],["Spalding","2021-07-20",69110,81,42178],["Spalding","2021-07-21",69110,94,42272],["Spalding","2021-07-22",69110,115,42387],["Spalding","2021-07-23",69110,146,42533],["Spalding","2021-07-24",69110,89,42622],["Spalding","2021-07-25",69110,42,42664],["Spalding","2021-07-26",69110,113,42777],["Spalding","2021-07-27",69110,134,42911],["Spalding","2021-07-28",69110,102,43013],["Spalding","2021-07-29",69110,145,43158],["Spalding","2021-07-30",69110,159,43317],["Spalding","2021-07-31",69110,79,43396],["Spalding","2021-08-01",69110,94,43490],["Spalding","2021-08-02",69110,122,43612],["Spalding","2021-08-03",69110,139,43751],["Spalding","2021-08-04",69110,147,43898],["Spalding","2021-08-05",69110,123,44021],["Spalding","2021-08-06",69110,152,44173],["Spalding","2021-08-07",69110,116,44289],["Spalding","2021-08-08",69110,76,44365],["Spalding","2021-08-09",69110,193,44558],["Spalding","2021-08-10",69110,195,44753],["Spalding","2021-08-11",69110,165,44918],["Spalding","2021-08-12",69110,169,45087],["Spalding","2021-08-13",69110,225,45312],["Spalding","2021-08-14",69110,127,45439],["Spalding","2021-08-15",69110,67,45506],["Spalding","2021-08-16",69110,144,45650],["Spalding","2021-08-17",69110,191,45841],["Spalding","2021-08-18",69110,150,45991],["Spalding","2021-08-19",69110,193,46184],["Spalding","2021-08-20",69110,200,46384],["Spalding","2021-08-21",69110,113,46497],["Spalding","2021-08-22",69110,86,46583],["Spalding","2021-08-23",69110,180,46763],["Spalding","2021-08-24",69110,163,46926],["Spalding","2021-08-25",69110,225,47151],["Spalding","2021-08-26",69110,182,47333],["Spalding","2021-08-27",69110,228,47561],["Spalding","2021-08-28",69110,129,47690],["Spalding","2021-08-29",69110,97,47787],["Spalding","2021-08-30",69110,206,47993],["Spalding","2021-08-31",69110,228,48221],["Spalding","2021-09-01",69110,185,48406],["Spalding","2021-09-02",69110,194,48600],["Spalding","2021-09-03",69110,241,48841],["Spalding","2021-09-04",69110,124,48965],["Spalding","2021-09-05",69110,96,49061],["Spalding","2021-09-06",69110,35,49096],["Spalding","2021-09-07",69110,188,49284],["Spalding","2021-09-08",69110,188,49472],["Spalding","2021-09-09",69110,194,49666],["Spalding","2021-09-10",69110,279,49945],["Spalding","2021-09-11",69110,120,50065],["Spalding","2021-09-12",69110,84,50149],["Spalding","2021-09-13",69110,178,50327],["Spalding","2021-09-14",69110,166,50493],["Spalding","2021-09-15",69110,159,50652],["Spalding","2021-09-16",69110,185,50837],["Spalding","2021-09-17",69110,173,51010],["Spalding","2021-09-18",69110,92,51102],["Spalding","2021-09-19",69110,53,51155],["Spalding","2021-09-20",69110,118,51273],["Spalding","2021-09-21",69110,145,51418],["Spalding","2021-09-22",69110,129,51547],["Spalding","2021-09-23",69110,201,51748],["Spalding","2021-09-24",69110,205,51953],["Spalding","2021-09-25",69110,126,52079],["Spalding","2021-09-26",69110,76,52155],["Spalding","2021-09-27",69110,213,52368],["Spalding","2021-09-28",69110,227,52595],["Spalding","2021-09-29",69110,237,52832],["Spalding","2021-09-30",69110,214,53046],["Spalding","2021-10-01",69110,258,53304],["Spalding","2021-10-02",69110,111,53415],["Spalding","2021-10-03",69110,65,53480],["Spalding","2021-10-04",69110,179,53659],["Spalding","2021-10-05",69110,162,53821],["Spalding","2021-10-06",69110,144,53965],["Spalding","2021-10-07",69110,169,54134],["Spalding","2021-10-08",69110,186,54320],["Spalding","2021-10-09",69110,79,54399],["Spalding","2021-10-10",69110,49,54448],["Spalding","2021-10-11",69110,130,54578],["Spalding","2021-10-12",69110,145,54723],["Spalding","2021-10-13",69110,129,54852],["Spalding","2021-10-14",69110,174,55026],["Spalding","2021-10-15",69110,177,55203],["Spalding","2021-10-16",69110,63,55266],["Spalding","2021-10-17",69110,37,55303],["Spalding","2021-10-18",69110,93,55396],["Spalding","2021-10-19",69110,129,55525],["Spalding","2021-10-20",69110,106,55631],["Spalding","2021-10-21",69110,179,55810],["Spalding","2021-10-22",69110,212,56022],["Spalding","2021-10-23",69110,105,56127],["Spalding","2021-10-24",69110,64,56191],["Spalding","2021-10-25",69110,166,56357],["Spalding","2021-10-26",69110,191,56548],["Spalding","2021-10-27",69110,178,56726],["Spalding","2021-10-28",69110,314,57040],["Spalding","2021-10-29",69110,201,57241],["Spalding","2021-10-30",69110,84,57325],["Spalding","2021-10-31",69110,50,57375],["Spalding","2021-11-01",69110,146,57521],["Spalding","2021-11-02",69110,163,57684],["Spalding","2021-11-03",69110,171,57855],["Spalding","2021-11-04",69110,176,58031],["Spalding","2021-11-05",69110,193,58224],["Spalding","2021-11-06",69110,58,58282],["Spalding","2021-11-07",69110,47,58329],["Spalding","2021-11-08",69110,100,58429],["Spalding","2021-11-09",69110,130,58559],["Spalding","2021-11-10",69110,140,58699],["Spalding","2021-11-11",69110,211,58910],["Spalding","2021-11-12",69110,202,59112],["Spalding","2021-11-13",69110,68,59180],["Spalding","2021-11-14",69110,54,59234],["Spalding","2021-11-15",69110,105,59339],["Spalding","2021-11-16",69110,143,59482],["Spalding","2021-11-17",69110,184,59666],["Spalding","2021-11-18",69110,174,59840],["Spalding","2021-11-19",69110,185,60025],["Spalding","2021-11-20",69110,81,60106],["Spalding","2021-11-21",69110,56,60162],["Spalding","2021-11-22",69110,151,60313],["Spalding","2021-11-23",69110,158,60471],["Spalding","2021-11-24",69110,96,60567],["Spalding","2021-11-25",69110,1,60568],["Spalding","2021-11-26",69110,97,60665],["Spalding","2021-11-27",69110,66,60731],["Spalding","2021-11-28",69110,51,60782],["Spalding","2021-11-29",69110,168,60950],["Spalding","2021-11-30",69110,232,61182],["Spalding","2021-12-01",69110,226,61408],["Spalding","2021-12-02",69110,211,61619],["Spalding","2021-12-03",69110,273,61892],["Spalding","2021-12-04",69110,129,62021],["Spalding","2021-12-05",69110,63,62084],["Spalding","2021-12-06",69110,144,62228],["Spalding","2021-12-07",69110,180,62408],["Spalding","2021-12-08",69110,166,62574],["Spalding","2021-12-09",69110,194,62768],["Spalding","2021-12-10",69110,183,62951],["Spalding","2021-12-11",69110,80,63031],["Spalding","2021-12-12",69110,54,63085],["Spalding","2021-12-13",69110,129,63214],["Spalding","2021-12-14",69110,168,63382],["Spalding","2021-12-15",69110,114,63496],["Spalding","2021-12-16",69110,176,63672],["Spalding","2021-12-17",69110,157,63829],["Spalding","2021-12-18",69110,92,63921],["Spalding","2021-12-19",69110,59,63980],["Spalding","2021-12-20",69110,161,64141],["Spalding","2021-12-21",69110,189,64330],["Spalding","2021-12-22",69110,186,64516],["Spalding","2021-12-23",69110,117,64633],["Spalding","2021-12-24",69110,32,64665],["Spalding","2021-12-25",69110,1,64666],["Spalding","2021-12-26",69110,60,64726],["Spalding","2021-12-27",69110,155,64881],["Spalding","2021-12-28",69110,172,65053],["Spalding","2021-12-29",69110,131,65184],["Spalding","2021-12-30",69110,121,65305],["Spalding","2021-12-31",69110,96,65401],["Spalding","2022-01-01",69110,7,65408],["Spalding","2022-01-02",69110,50,65458],["Spalding","2022-01-03",69110,27,65485],["Stephens","2020-12-18",26328,7,7],["Stephens","2020-12-19",26328,1,8],["Stephens","2020-12-20",26328,4,12],["Stephens","2020-12-21",26328,10,22],["Stephens","2020-12-22",26328,19,41],["Stephens","2020-12-23",26328,31,72],["Stephens","2020-12-24",26328,6,78],["Stephens","2020-12-26",26328,3,81],["Stephens","2020-12-27",26328,2,83],["Stephens","2020-12-28",26328,38,121],["Stephens","2020-12-29",26328,53,174],["Stephens","2020-12-30",26328,75,249],["Stephens","2020-12-31",26328,4,253],["Stephens","2021-01-01",26328,9,262],["Stephens","2021-01-02",26328,4,266],["Stephens","2021-01-03",26328,7,273],["Stephens","2021-01-04",26328,50,323],["Stephens","2021-01-05",26328,74,397],["Stephens","2021-01-06",26328,84,481],["Stephens","2021-01-07",26328,108,589],["Stephens","2021-01-08",26328,60,649],["Stephens","2021-01-09",26328,5,654],["Stephens","2021-01-10",26328,96,750],["Stephens","2021-01-11",26328,119,869],["Stephens","2021-01-12",26328,132,1001],["Stephens","2021-01-13",26328,599,1600],["Stephens","2021-01-14",26328,191,1791],["Stephens","2021-01-15",26328,104,1895],["Stephens","2021-01-16",26328,19,1914],["Stephens","2021-01-17",26328,6,1920],["Stephens","2021-01-18",26328,174,2094],["Stephens","2021-01-19",26328,193,2287],["Stephens","2021-01-20",26328,274,2561],["Stephens","2021-01-21",26328,166,2727],["Stephens","2021-01-22",26328,96,2823],["Stephens","2021-01-23",26328,10,2833],["Stephens","2021-01-24",26328,16,2849],["Stephens","2021-01-25",26328,145,2994],["Stephens","2021-01-26",26328,151,3145],["Stephens","2021-01-27",26328,145,3290],["Stephens","2021-01-28",26328,150,3440],["Stephens","2021-01-29",26328,83,3523],["Stephens","2021-01-30",26328,13,3536],["Stephens","2021-01-31",26328,116,3652],["Stephens","2021-02-01",26328,147,3799],["Stephens","2021-02-02",26328,163,3962],["Stephens","2021-02-03",26328,582,4544],["Stephens","2021-02-04",26328,150,4694],["Stephens","2021-02-05",26328,99,4793],["Stephens","2021-02-06",26328,11,4804],["Stephens","2021-02-08",26328,160,4964],["Stephens","2021-02-09",26328,161,5125],["Stephens","2021-02-10",26328,166,5291],["Stephens","2021-02-11",26328,183,5474],["Stephens","2021-02-12",26328,132,5606],["Stephens","2021-02-13",26328,19,5625],["Stephens","2021-02-14",26328,12,5637],["Stephens","2021-02-15",26328,160,5797],["Stephens","2021-02-16",26328,192,5989],["Stephens","2021-02-17",26328,242,6231],["Stephens","2021-02-18",26328,161,6392],["Stephens","2021-02-19",26328,99,6491],["Stephens","2021-02-20",26328,7,6498],["Stephens","2021-02-21",26328,10,6508],["Stephens","2021-02-22",26328,158,6666],["Stephens","2021-02-23",26328,188,6854],["Stephens","2021-02-24",26328,144,6998],["Stephens","2021-02-25",26328,175,7173],["Stephens","2021-02-26",26328,85,7258],["Stephens","2021-02-27",26328,14,7272],["Stephens","2021-02-28",26328,21,7293],["Stephens","2021-03-01",26328,108,7401],["Stephens","2021-03-02",26328,154,7555],["Stephens","2021-03-03",26328,139,7694],["Stephens","2021-03-04",26328,107,7801],["Stephens","2021-03-05",26328,101,7902],["Stephens","2021-03-06",26328,16,7918],["Stephens","2021-03-07",26328,13,7931],["Stephens","2021-03-08",26328,117,8048],["Stephens","2021-03-09",26328,133,8181],["Stephens","2021-03-10",26328,134,8315],["Stephens","2021-03-11",26328,100,8415],["Stephens","2021-03-12",26328,199,8614],["Stephens","2021-03-13",26328,118,8732],["Stephens","2021-03-14",26328,12,8744],["Stephens","2021-03-15",26328,143,8887],["Stephens","2021-03-16",26328,190,9077],["Stephens","2021-03-17",26328,175,9252],["Stephens","2021-03-18",26328,122,9374],["Stephens","2021-03-19",26328,111,9485],["Stephens","2021-03-20",26328,25,9510],["Stephens","2021-03-21",26328,18,9528],["Stephens","2021-03-22",26328,156,9684],["Stephens","2021-03-23",26328,129,9813],["Stephens","2021-03-24",26328,130,9943],["Stephens","2021-03-25",26328,114,10057],["Stephens","2021-03-26",26328,119,10176],["Stephens","2021-03-27",26328,24,10200],["Stephens","2021-03-28",26328,47,10247],["Stephens","2021-03-29",26328,135,10382],["Stephens","2021-03-30",26328,149,10531],["Stephens","2021-03-31",26328,137,10668],["Stephens","2021-04-01",26328,175,10843],["Stephens","2021-04-02",26328,181,11024],["Stephens","2021-04-03",26328,178,11202],["Stephens","2021-04-04",26328,32,11234],["Stephens","2021-04-05",26328,131,11365],["Stephens","2021-04-06",26328,163,11528],["Stephens","2021-04-07",26328,145,11673],["Stephens","2021-04-08",26328,113,11786],["Stephens","2021-04-09",26328,120,11906],["Stephens","2021-04-10",26328,25,11931],["Stephens","2021-04-11",26328,17,11948],["Stephens","2021-04-12",26328,220,12168],["Stephens","2021-04-13",26328,158,12326],["Stephens","2021-04-14",26328,204,12530],["Stephens","2021-04-15",26328,170,12700],["Stephens","2021-04-16",26328,130,12830],["Stephens","2021-04-17",26328,38,12868],["Stephens","2021-04-18",26328,14,12882],["Stephens","2021-04-19",26328,110,12992],["Stephens","2021-04-20",26328,125,13117],["Stephens","2021-04-21",26328,129,13246],["Stephens","2021-04-22",26328,136,13382],["Stephens","2021-04-23",26328,122,13504],["Stephens","2021-04-24",26328,27,13531],["Stephens","2021-04-25",26328,26,13557],["Stephens","2021-04-26",26328,92,13649],["Stephens","2021-04-27",26328,122,13771],["Stephens","2021-04-28",26328,97,13868],["Stephens","2021-04-29",26328,114,13982],["Stephens","2021-04-30",26328,116,14098],["Stephens","2021-05-01",26328,47,14145],["Stephens","2021-05-02",26328,26,14171],["Stephens","2021-05-03",26328,45,14216],["Stephens","2021-05-04",26328,85,14301],["Stephens","2021-05-05",26328,56,14357],["Stephens","2021-05-06",26328,77,14434],["Stephens","2021-05-07",26328,102,14536],["Stephens","2021-05-08",26328,46,14582],["Stephens","2021-05-09",26328,8,14590],["Stephens","2021-05-10",26328,26,14616],["Stephens","2021-05-11",26328,65,14681],["Stephens","2021-05-12",26328,51,14732],["Stephens","2021-05-13",26328,70,14802],["Stephens","2021-05-14",26328,71,14873],["Stephens","2021-05-15",26328,25,14898],["Stephens","2021-05-16",26328,14,14912],["Stephens","2021-05-17",26328,47,14959],["Stephens","2021-05-18",26328,73,15032],["Stephens","2021-05-19",26328,53,15085],["Stephens","2021-05-20",26328,72,15157],["Stephens","2021-05-21",26328,60,15217],["Stephens","2021-05-22",26328,25,15242],["Stephens","2021-05-23",26328,21,15263],["Stephens","2021-05-24",26328,32,15295],["Stephens","2021-05-25",26328,61,15356],["Stephens","2021-05-26",26328,31,15387],["Stephens","2021-05-27",26328,42,15429],["Stephens","2021-05-28",26328,67,15496],["Stephens","2021-05-29",26328,30,15526],["Stephens","2021-05-30",26328,5,15531],["Stephens","2021-05-31",26328,4,15535],["Stephens","2021-06-01",26328,61,15596],["Stephens","2021-06-02",26328,26,15622],["Stephens","2021-06-03",26328,41,15663],["Stephens","2021-06-04",26328,48,15711],["Stephens","2021-06-05",26328,22,15733],["Stephens","2021-06-06",26328,15,15748],["Stephens","2021-06-07",26328,28,15776],["Stephens","2021-06-08",26328,34,15810],["Stephens","2021-06-09",26328,35,15845],["Stephens","2021-06-10",26328,48,15893],["Stephens","2021-06-11",26328,36,15929],["Stephens","2021-06-12",26328,33,15962],["Stephens","2021-06-13",26328,13,15975],["Stephens","2021-06-14",26328,30,16005],["Stephens","2021-06-15",26328,34,16039],["Stephens","2021-06-16",26328,27,16066],["Stephens","2021-06-17",26328,32,16098],["Stephens","2021-06-18",26328,47,16145],["Stephens","2021-06-19",26328,21,16166],["Stephens","2021-06-20",26328,6,16172],["Stephens","2021-06-21",26328,18,16190],["Stephens","2021-06-22",26328,39,16229],["Stephens","2021-06-23",26328,22,16251],["Stephens","2021-06-24",26328,34,16285],["Stephens","2021-06-25",26328,39,16324],["Stephens","2021-06-26",26328,15,16339],["Stephens","2021-06-27",26328,11,16350],["Stephens","2021-06-28",26328,18,16368],["Stephens","2021-06-29",26328,21,16389],["Stephens","2021-06-30",26328,39,16428],["Stephens","2021-07-01",26328,25,16453],["Stephens","2021-07-02",26328,21,16474],["Stephens","2021-07-03",26328,20,16494],["Stephens","2021-07-04",26328,3,16497],["Stephens","2021-07-05",26328,13,16510],["Stephens","2021-07-06",26328,13,16523],["Stephens","2021-07-07",26328,19,16542],["Stephens","2021-07-08",26328,41,16583],["Stephens","2021-07-09",26328,16,16599],["Stephens","2021-07-10",26328,16,16615],["Stephens","2021-07-11",26328,13,16628],["Stephens","2021-07-12",26328,21,16649],["Stephens","2021-07-13",26328,32,16681],["Stephens","2021-07-14",26328,28,16709],["Stephens","2021-07-15",26328,23,16732],["Stephens","2021-07-16",26328,32,16764],["Stephens","2021-07-17",26328,11,16775],["Stephens","2021-07-18",26328,8,16783],["Stephens","2021-07-19",26328,20,16803],["Stephens","2021-07-20",26328,20,16823],["Stephens","2021-07-21",26328,47,16870],["Stephens","2021-07-22",26328,40,16910],["Stephens","2021-07-23",26328,36,16946],["Stephens","2021-07-24",26328,31,16977],["Stephens","2021-07-25",26328,9,16986],["Stephens","2021-07-26",26328,27,17013],["Stephens","2021-07-27",26328,32,17045],["Stephens","2021-07-28",26328,64,17109],["Stephens","2021-07-29",26328,55,17164],["Stephens","2021-07-30",26328,50,17214],["Stephens","2021-07-31",26328,40,17254],["Stephens","2021-08-01",26328,10,17264],["Stephens","2021-08-02",26328,55,17319],["Stephens","2021-08-03",26328,48,17367],["Stephens","2021-08-04",26328,69,17436],["Stephens","2021-08-05",26328,55,17491],["Stephens","2021-08-06",26328,56,17547],["Stephens","2021-08-07",26328,37,17584],["Stephens","2021-08-08",26328,25,17609],["Stephens","2021-08-09",26328,53,17662],["Stephens","2021-08-10",26328,50,17712],["Stephens","2021-08-11",26328,85,17797],["Stephens","2021-08-12",26328,94,17891],["Stephens","2021-08-13",26328,85,17976],["Stephens","2021-08-14",26328,38,18014],["Stephens","2021-08-15",26328,29,18043],["Stephens","2021-08-16",26328,49,18092],["Stephens","2021-08-17",26328,52,18144],["Stephens","2021-08-18",26328,80,18224],["Stephens","2021-08-19",26328,70,18294],["Stephens","2021-08-20",26328,86,18380],["Stephens","2021-08-21",26328,39,18419],["Stephens","2021-08-22",26328,30,18449],["Stephens","2021-08-23",26328,88,18537],["Stephens","2021-08-24",26328,93,18630],["Stephens","2021-08-25",26328,83,18713],["Stephens","2021-08-26",26328,120,18833],["Stephens","2021-08-27",26328,101,18934],["Stephens","2021-08-28",26328,42,18976],["Stephens","2021-08-29",26328,29,19005],["Stephens","2021-08-30",26328,95,19100],["Stephens","2021-08-31",26328,83,19183],["Stephens","2021-09-01",26328,94,19277],["Stephens","2021-09-02",26328,71,19348],["Stephens","2021-09-03",26328,107,19455],["Stephens","2021-09-04",26328,44,19499],["Stephens","2021-09-05",26328,25,19524],["Stephens","2021-09-06",26328,12,19536],["Stephens","2021-09-07",26328,72,19608],["Stephens","2021-09-08",26328,89,19697],["Stephens","2021-09-09",26328,85,19782],["Stephens","2021-09-10",26328,103,19885],["Stephens","2021-09-11",26328,37,19922],["Stephens","2021-09-12",26328,29,19951],["Stephens","2021-09-13",26328,64,20015],["Stephens","2021-09-14",26328,60,20075],["Stephens","2021-09-15",26328,62,20137],["Stephens","2021-09-16",26328,72,20209],["Stephens","2021-09-17",26328,107,20316],["Stephens","2021-09-18",26328,27,20343],["Stephens","2021-09-19",26328,24,20367],["Stephens","2021-09-20",26328,48,20415],["Stephens","2021-09-21",26328,67,20482],["Stephens","2021-09-22",26328,79,20561],["Stephens","2021-09-23",26328,65,20626],["Stephens","2021-09-24",26328,75,20701],["Stephens","2021-09-25",26328,29,20730],["Stephens","2021-09-26",26328,26,20756],["Stephens","2021-09-27",26328,79,20835],["Stephens","2021-09-28",26328,85,20920],["Stephens","2021-09-29",26328,84,21004],["Stephens","2021-09-30",26328,78,21082],["Stephens","2021-10-01",26328,71,21153],["Stephens","2021-10-02",26328,19,21172],["Stephens","2021-10-03",26328,23,21195],["Stephens","2021-10-04",26328,73,21268],["Stephens","2021-10-05",26328,71,21339],["Stephens","2021-10-06",26328,67,21406],["Stephens","2021-10-07",26328,43,21449],["Stephens","2021-10-08",26328,50,21499],["Stephens","2021-10-09",26328,15,21514],["Stephens","2021-10-10",26328,15,21529],["Stephens","2021-10-11",26328,38,21567],["Stephens","2021-10-12",26328,39,21606],["Stephens","2021-10-13",26328,42,21648],["Stephens","2021-10-14",26328,50,21698],["Stephens","2021-10-15",26328,63,21761],["Stephens","2021-10-16",26328,15,21776],["Stephens","2021-10-17",26328,6,21782],["Stephens","2021-10-18",26328,37,21819],["Stephens","2021-10-19",26328,31,21850],["Stephens","2021-10-20",26328,37,21887],["Stephens","2021-10-21",26328,33,21920],["Stephens","2021-10-22",26328,42,21962],["Stephens","2021-10-23",26328,34,21996],["Stephens","2021-10-24",26328,8,22004],["Stephens","2021-10-25",26328,72,22076],["Stephens","2021-10-26",26328,136,22212],["Stephens","2021-10-27",26328,100,22312],["Stephens","2021-10-28",26328,114,22426],["Stephens","2021-10-29",26328,64,22490],["Stephens","2021-10-30",26328,24,22514],["Stephens","2021-10-31",26328,11,22525],["Stephens","2021-11-01",26328,86,22611],["Stephens","2021-11-02",26328,75,22686],["Stephens","2021-11-03",26328,74,22760],["Stephens","2021-11-04",26328,126,22886],["Stephens","2021-11-05",26328,82,22968],["Stephens","2021-11-06",26328,24,22992],["Stephens","2021-11-07",26328,15,23007],["Stephens","2021-11-08",26328,80,23087],["Stephens","2021-11-09",26328,83,23170],["Stephens","2021-11-10",26328,82,23252],["Stephens","2021-11-11",26328,76,23328],["Stephens","2021-11-12",26328,61,23389],["Stephens","2021-11-13",26328,35,23424],["Stephens","2021-11-14",26328,10,23434],["Stephens","2021-11-15",26328,76,23510],["Stephens","2021-11-16",26328,74,23584],["Stephens","2021-11-17",26328,66,23650],["Stephens","2021-11-18",26328,70,23720],["Stephens","2021-11-19",26328,58,23778],["Stephens","2021-11-20",26328,33,23811],["Stephens","2021-11-21",26328,14,23825],["Stephens","2021-11-22",26328,92,23917],["Stephens","2021-11-23",26328,70,23987],["Stephens","2021-11-24",26328,84,24071],["Stephens","2021-11-25",26328,1,24072],["Stephens","2021-11-26",26328,34,24106],["Stephens","2021-11-27",26328,16,24122],["Stephens","2021-11-28",26328,11,24133],["Stephens","2021-11-29",26328,77,24210],["Stephens","2021-11-30",26328,90,24300],["Stephens","2021-12-01",26328,97,24397],["Stephens","2021-12-02",26328,109,24506],["Stephens","2021-12-03",26328,76,24582],["Stephens","2021-12-04",26328,32,24614],["Stephens","2021-12-05",26328,10,24624],["Stephens","2021-12-06",26328,81,24705],["Stephens","2021-12-07",26328,64,24769],["Stephens","2021-12-08",26328,84,24853],["Stephens","2021-12-09",26328,90,24943],["Stephens","2021-12-10",26328,71,25014],["Stephens","2021-12-11",26328,29,25043],["Stephens","2021-12-12",26328,11,25054],["Stephens","2021-12-13",26328,69,25123],["Stephens","2021-12-14",26328,77,25200],["Stephens","2021-12-15",26328,67,25267],["Stephens","2021-12-16",26328,75,25342],["Stephens","2021-12-17",26328,56,25398],["Stephens","2021-12-18",26328,27,25425],["Stephens","2021-12-19",26328,17,25442],["Stephens","2021-12-20",26328,70,25512],["Stephens","2021-12-21",26328,98,25610],["Stephens","2021-12-22",26328,56,25666],["Stephens","2021-12-23",26328,52,25718],["Stephens","2021-12-24",26328,13,25731],["Stephens","2021-12-26",26328,15,25746],["Stephens","2021-12-27",26328,66,25812],["Stephens","2021-12-28",26328,77,25889],["Stephens","2021-12-29",26328,73,25962],["Stephens","2021-12-30",26328,54,26016],["Stephens","2021-12-31",26328,34,26050],["Stephens","2022-01-01",26328,4,26054],["Stephens","2022-01-02",26328,10,26064],["Stephens","2022-01-03",26328,16,26080],["Stewart","2020-12-18",6129,1,1],["Stewart","2020-12-21",6129,1,2],["Stewart","2020-12-22",6129,2,4],["Stewart","2020-12-23",6129,2,6],["Stewart","2020-12-27",6129,1,7],["Stewart","2020-12-28",6129,2,9],["Stewart","2020-12-29",6129,3,12],["Stewart","2020-12-30",6129,1,13],["Stewart","2020-12-31",6129,2,15],["Stewart","2021-01-04",6129,5,20],["Stewart","2021-01-05",6129,10,30],["Stewart","2021-01-06",6129,44,74],["Stewart","2021-01-07",6129,4,78],["Stewart","2021-01-08",6129,1,79],["Stewart","2021-01-11",6129,71,150],["Stewart","2021-01-12",6129,5,155],["Stewart","2021-01-13",6129,3,158],["Stewart","2021-01-14",6129,50,208],["Stewart","2021-01-15",6129,103,311],["Stewart","2021-01-16",6129,1,312],["Stewart","2021-01-17",6129,1,313],["Stewart","2021-01-18",6129,8,321],["Stewart","2021-01-19",6129,5,326],["Stewart","2021-01-20",6129,3,329],["Stewart","2021-01-21",6129,20,349],["Stewart","2021-01-22",6129,47,396],["Stewart","2021-01-25",6129,8,404],["Stewart","2021-01-26",6129,16,420],["Stewart","2021-01-27",6129,72,492],["Stewart","2021-01-28",6129,31,523],["Stewart","2021-01-29",6129,71,594],["Stewart","2021-02-01",6129,7,601],["Stewart","2021-02-02",6129,10,611],["Stewart","2021-02-03",6129,13,624],["Stewart","2021-02-04",6129,18,642],["Stewart","2021-02-05",6129,51,693],["Stewart","2021-02-06",6129,3,696],["Stewart","2021-02-07",6129,1,697],["Stewart","2021-02-08",6129,74,771],["Stewart","2021-02-09",6129,10,781],["Stewart","2021-02-10",6129,2,783],["Stewart","2021-02-11",6129,106,889],["Stewart","2021-02-12",6129,12,901],["Stewart","2021-02-13",6129,1,902],["Stewart","2021-02-15",6129,102,1004],["Stewart","2021-02-16",6129,8,1012],["Stewart","2021-02-17",6129,4,1016],["Stewart","2021-02-18",6129,16,1032],["Stewart","2021-02-19",6129,69,1101],["Stewart","2021-02-21",6129,1,1102],["Stewart","2021-02-22",6129,8,1110],["Stewart","2021-02-23",6129,20,1130],["Stewart","2021-02-24",6129,22,1152],["Stewart","2021-02-25",6129,61,1213],["Stewart","2021-02-26",6129,68,1281],["Stewart","2021-02-27",6129,1,1282],["Stewart","2021-03-01",6129,8,1290],["Stewart","2021-03-02",6129,9,1299],["Stewart","2021-03-03",6129,17,1316],["Stewart","2021-03-04",6129,6,1322],["Stewart","2021-03-05",6129,62,1384],["Stewart","2021-03-06",6129,1,1385],["Stewart","2021-03-08",6129,46,1431],["Stewart","2021-03-09",6129,40,1471],["Stewart","2021-03-10",6129,6,1477],["Stewart","2021-03-11",6129,64,1541],["Stewart","2021-03-12",6129,25,1566],["Stewart","2021-03-13",6129,5,1571],["Stewart","2021-03-14",6129,1,1572],["Stewart","2021-03-15",6129,57,1629],["Stewart","2021-03-16",6129,28,1657],["Stewart","2021-03-17",6129,46,1703],["Stewart","2021-03-18",6129,15,1718],["Stewart","2021-03-19",6129,50,1768],["Stewart","2021-03-20",6129,5,1773],["Stewart","2021-03-21",6129,2,1775],["Stewart","2021-03-22",6129,25,1800],["Stewart","2021-03-23",6129,22,1822],["Stewart","2021-03-24",6129,12,1834],["Stewart","2021-03-25",6129,69,1903],["Stewart","2021-03-26",6129,69,1972],["Stewart","2021-03-27",6129,2,1974],["Stewart","2021-03-28",6129,1,1975],["Stewart","2021-03-29",6129,19,1994],["Stewart","2021-03-30",6129,21,2015],["Stewart","2021-03-31",6129,22,2037],["Stewart","2021-04-01",6129,13,2050],["Stewart","2021-04-02",6129,19,2069],["Stewart","2021-04-03",6129,7,2076],["Stewart","2021-04-04",6129,1,2077],["Stewart","2021-04-05",6129,16,2093],["Stewart","2021-04-06",6129,59,2152],["Stewart","2021-04-07",6129,13,2165],["Stewart","2021-04-08",6129,37,2202],["Stewart","2021-04-09",6129,28,2230],["Stewart","2021-04-10",6129,7,2237],["Stewart","2021-04-12",6129,20,2257],["Stewart","2021-04-13",6129,80,2337],["Stewart","2021-04-14",6129,57,2394],["Stewart","2021-04-15",6129,23,2417],["Stewart","2021-04-16",6129,58,2475],["Stewart","2021-04-17",6129,8,2483],["Stewart","2021-04-18",6129,2,2485],["Stewart","2021-04-19",6129,30,2515],["Stewart","2021-04-20",6129,14,2529],["Stewart","2021-04-21",6129,31,2560],["Stewart","2021-04-22",6129,24,2584],["Stewart","2021-04-23",6129,76,2660],["Stewart","2021-04-24",6129,14,2674],["Stewart","2021-04-25",6129,3,2677],["Stewart","2021-04-26",6129,25,2702],["Stewart","2021-04-27",6129,22,2724],["Stewart","2021-04-28",6129,25,2749],["Stewart","2021-04-29",6129,19,2768],["Stewart","2021-04-30",6129,20,2788],["Stewart","2021-05-01",6129,8,2796],["Stewart","2021-05-02",6129,1,2797],["Stewart","2021-05-03",6129,7,2804],["Stewart","2021-05-04",6129,10,2814],["Stewart","2021-05-05",6129,13,2827],["Stewart","2021-05-06",6129,32,2859],["Stewart","2021-05-07",6129,22,2881],["Stewart","2021-05-08",6129,6,2887],["Stewart","2021-05-10",6129,17,2904],["Stewart","2021-05-11",6129,17,2921],["Stewart","2021-05-12",6129,16,2937],["Stewart","2021-05-13",6129,77,3014],["Stewart","2021-05-14",6129,21,3035],["Stewart","2021-05-15",6129,3,3038],["Stewart","2021-05-16",6129,3,3041],["Stewart","2021-05-17",6129,20,3061],["Stewart","2021-05-18",6129,9,3070],["Stewart","2021-05-19",6129,16,3086],["Stewart","2021-05-20",6129,17,3103],["Stewart","2021-05-21",6129,13,3116],["Stewart","2021-05-22",6129,3,3119],["Stewart","2021-05-23",6129,2,3121],["Stewart","2021-05-24",6129,13,3134],["Stewart","2021-05-25",6129,19,3153],["Stewart","2021-05-26",6129,3,3156],["Stewart","2021-05-27",6129,20,3176],["Stewart","2021-05-28",6129,15,3191],["Stewart","2021-05-29",6129,4,3195],["Stewart","2021-05-30",6129,2,3197],["Stewart","2021-06-01",6129,5,3202],["Stewart","2021-06-02",6129,3,3205],["Stewart","2021-06-03",6129,9,3214],["Stewart","2021-06-04",6129,9,3223],["Stewart","2021-06-05",6129,1,3224],["Stewart","2021-06-06",6129,1,3225],["Stewart","2021-06-07",6129,8,3233],["Stewart","2021-06-08",6129,21,3254],["Stewart","2021-06-09",6129,14,3268],["Stewart","2021-06-10",6129,23,3291],["Stewart","2021-06-11",6129,15,3306],["Stewart","2021-06-12",6129,2,3308],["Stewart","2021-06-13",6129,1,3309],["Stewart","2021-06-14",6129,6,3315],["Stewart","2021-06-15",6129,5,3320],["Stewart","2021-06-16",6129,2,3322],["Stewart","2021-06-17",6129,9,3331],["Stewart","2021-06-18",6129,2,3333],["Stewart","2021-06-19",6129,1,3334],["Stewart","2021-06-20",6129,2,3336],["Stewart","2021-06-21",6129,16,3352],["Stewart","2021-06-22",6129,3,3355],["Stewart","2021-06-23",6129,1,3356],["Stewart","2021-06-24",6129,3,3359],["Stewart","2021-06-25",6129,3,3362],["Stewart","2021-06-26",6129,2,3364],["Stewart","2021-06-28",6129,11,3375],["Stewart","2021-06-29",6129,8,3383],["Stewart","2021-06-30",6129,4,3387],["Stewart","2021-07-01",6129,3,3390],["Stewart","2021-07-02",6129,2,3392],["Stewart","2021-07-06",6129,3,3395],["Stewart","2021-07-07",6129,7,3402],["Stewart","2021-07-08",6129,11,3413],["Stewart","2021-07-09",6129,8,3421],["Stewart","2021-07-10",6129,3,3424],["Stewart","2021-07-11",6129,1,3425],["Stewart","2021-07-12",6129,27,3452],["Stewart","2021-07-13",6129,2,3454],["Stewart","2021-07-14",6129,6,3460],["Stewart","2021-07-15",6129,2,3462],["Stewart","2021-07-16",6129,5,3467],["Stewart","2021-07-17",6129,1,3468],["Stewart","2021-07-18",6129,1,3469],["Stewart","2021-07-19",6129,3,3472],["Stewart","2021-07-20",6129,7,3479],["Stewart","2021-07-21",6129,12,3491],["Stewart","2021-07-22",6129,8,3499],["Stewart","2021-07-23",6129,12,3511],["Stewart","2021-07-24",6129,7,3518],["Stewart","2021-07-26",6129,2,3520],["Stewart","2021-07-27",6129,15,3535],["Stewart","2021-07-28",6129,9,3544],["Stewart","2021-07-29",6129,10,3554],["Stewart","2021-07-30",6129,7,3561],["Stewart","2021-07-31",6129,5,3566],["Stewart","2021-08-01",6129,2,3568],["Stewart","2021-08-02",6129,2,3570],["Stewart","2021-08-03",6129,5,3575],["Stewart","2021-08-04",6129,25,3600],["Stewart","2021-08-05",6129,10,3610],["Stewart","2021-08-06",6129,10,3620],["Stewart","2021-08-07",6129,2,3622],["Stewart","2021-08-08",6129,1,3623],["Stewart","2021-08-09",6129,9,3632],["Stewart","2021-08-10",6129,12,3644],["Stewart","2021-08-11",6129,33,3677],["Stewart","2021-08-12",6129,9,3686],["Stewart","2021-08-13",6129,25,3711],["Stewart","2021-08-14",6129,6,3717],["Stewart","2021-08-15",6129,2,3719],["Stewart","2021-08-16",6129,4,3723],["Stewart","2021-08-17",6129,11,3734],["Stewart","2021-08-18",6129,18,3752],["Stewart","2021-08-19",6129,7,3759],["Stewart","2021-08-20",6129,12,3771],["Stewart","2021-08-21",6129,4,3775],["Stewart","2021-08-22",6129,4,3779],["Stewart","2021-08-23",6129,5,3784],["Stewart","2021-08-24",6129,14,3798],["Stewart","2021-08-25",6129,24,3822],["Stewart","2021-08-26",6129,25,3847],["Stewart","2021-08-27",6129,7,3854],["Stewart","2021-08-28",6129,4,3858],["Stewart","2021-08-29",6129,1,3859],["Stewart","2021-08-30",6129,7,3866],["Stewart","2021-08-31",6129,20,3886],["Stewart","2021-09-01",6129,16,3902],["Stewart","2021-09-02",6129,13,3915],["Stewart","2021-09-03",6129,9,3924],["Stewart","2021-09-04",6129,2,3926],["Stewart","2021-09-05",6129,3,3929],["Stewart","2021-09-07",6129,15,3944],["Stewart","2021-09-08",6129,23,3967],["Stewart","2021-09-09",6129,11,3978],["Stewart","2021-09-10",6129,16,3994],["Stewart","2021-09-11",6129,2,3996],["Stewart","2021-09-12",6129,5,4001],["Stewart","2021-09-13",6129,7,4008],["Stewart","2021-09-14",6129,15,4023],["Stewart","2021-09-15",6129,20,4043],["Stewart","2021-09-16",6129,9,4052],["Stewart","2021-09-17",6129,12,4064],["Stewart","2021-09-18",6129,4,4068],["Stewart","2021-09-19",6129,1,4069],["Stewart","2021-09-20",6129,7,4076],["Stewart","2021-09-21",6129,8,4084],["Stewart","2021-09-22",6129,20,4104],["Stewart","2021-09-23",6129,11,4115],["Stewart","2021-09-24",6129,10,4125],["Stewart","2021-09-25",6129,4,4129],["Stewart","2021-09-26",6129,1,4130],["Stewart","2021-09-27",6129,9,4139],["Stewart","2021-09-28",6129,6,4145],["Stewart","2021-09-29",6129,14,4159],["Stewart","2021-09-30",6129,8,4167],["Stewart","2021-10-01",6129,6,4173],["Stewart","2021-10-02",6129,1,4174],["Stewart","2021-10-04",6129,8,4182],["Stewart","2021-10-05",6129,9,4191],["Stewart","2021-10-06",6129,19,4210],["Stewart","2021-10-07",6129,7,4217],["Stewart","2021-10-08",6129,3,4220],["Stewart","2021-10-11",6129,3,4223],["Stewart","2021-10-12",6129,8,4231],["Stewart","2021-10-13",6129,9,4240],["Stewart","2021-10-14",6129,10,4250],["Stewart","2021-10-15",6129,8,4258],["Stewart","2021-10-16",6129,2,4260],["Stewart","2021-10-18",6129,4,4264],["Stewart","2021-10-19",6129,6,4270],["Stewart","2021-10-20",6129,8,4278],["Stewart","2021-10-21",6129,2,4280],["Stewart","2021-10-22",6129,5,4285],["Stewart","2021-10-23",6129,5,4290],["Stewart","2021-10-24",6129,1,4291],["Stewart","2021-10-25",6129,12,4303],["Stewart","2021-10-26",6129,14,4317],["Stewart","2021-10-27",6129,50,4367],["Stewart","2021-10-28",6129,13,4380],["Stewart","2021-10-29",6129,17,4397],["Stewart","2021-10-30",6129,11,4408],["Stewart","2021-10-31",6129,2,4410],["Stewart","2021-11-01",6129,36,4446],["Stewart","2021-11-02",6129,7,4453],["Stewart","2021-11-03",6129,43,4496],["Stewart","2021-11-04",6129,35,4531],["Stewart","2021-11-05",6129,10,4541],["Stewart","2021-11-07",6129,1,4542],["Stewart","2021-11-08",6129,8,4550],["Stewart","2021-11-09",6129,13,4563],["Stewart","2021-11-10",6129,22,4585],["Stewart","2021-11-11",6129,11,4596],["Stewart","2021-11-12",6129,13,4609],["Stewart","2021-11-13",6129,1,4610],["Stewart","2021-11-14",6129,1,4611],["Stewart","2021-11-15",6129,17,4628],["Stewart","2021-11-16",6129,10,4638],["Stewart","2021-11-17",6129,61,4699],["Stewart","2021-11-18",6129,10,4709],["Stewart","2021-11-19",6129,21,4730],["Stewart","2021-11-20",6129,1,4731],["Stewart","2021-11-21",6129,4,4735],["Stewart","2021-11-22",6129,23,4758],["Stewart","2021-11-23",6129,10,4768],["Stewart","2021-11-24",6129,9,4777],["Stewart","2021-11-25",6129,1,4778],["Stewart","2021-11-26",6129,3,4781],["Stewart","2021-11-28",6129,3,4784],["Stewart","2021-11-29",6129,13,4797],["Stewart","2021-11-30",6129,17,4814],["Stewart","2021-12-01",6129,32,4846],["Stewart","2021-12-02",6129,32,4878],["Stewart","2021-12-03",6129,17,4895],["Stewart","2021-12-04",6129,4,4899],["Stewart","2021-12-05",6129,1,4900],["Stewart","2021-12-06",6129,21,4921],["Stewart","2021-12-07",6129,17,4938],["Stewart","2021-12-08",6129,33,4971],["Stewart","2021-12-09",6129,16,4987],["Stewart","2021-12-10",6129,11,4998],["Stewart","2021-12-11",6129,4,5002],["Stewart","2021-12-13",6129,7,5009],["Stewart","2021-12-14",6129,11,5020],["Stewart","2021-12-15",6129,26,5046],["Stewart","2021-12-16",6129,20,5066],["Stewart","2021-12-17",6129,13,5079],["Stewart","2021-12-18",6129,4,5083],["Stewart","2021-12-19",6129,2,5085],["Stewart","2021-12-20",6129,12,5097],["Stewart","2021-12-21",6129,9,5106],["Stewart","2021-12-22",6129,26,5132],["Stewart","2021-12-23",6129,18,5150],["Stewart","2021-12-26",6129,2,5152],["Stewart","2021-12-27",6129,24,5176],["Stewart","2021-12-28",6129,13,5189],["Stewart","2021-12-29",6129,19,5208],["Stewart","2021-12-30",6129,4,5212],["Stewart","2021-12-31",6129,3,5215],["Stewart","2022-01-02",6129,1,5216],["Stewart","2022-01-03",6129,17,5233],["Sumter","2020-12-17",29399,3,3],["Sumter","2020-12-18",29399,13,16],["Sumter","2020-12-19",29399,4,20],["Sumter","2020-12-20",29399,2,22],["Sumter","2020-12-21",29399,11,33],["Sumter","2020-12-22",29399,30,63],["Sumter","2020-12-23",29399,105,168],["Sumter","2020-12-24",29399,36,204],["Sumter","2020-12-26",29399,36,240],["Sumter","2020-12-27",29399,2,242],["Sumter","2020-12-28",29399,64,306],["Sumter","2020-12-29",29399,55,361],["Sumter","2020-12-30",29399,37,398],["Sumter","2020-12-31",29399,43,441],["Sumter","2021-01-01",29399,8,449],["Sumter","2021-01-02",29399,1,450],["Sumter","2021-01-03",29399,21,471],["Sumter","2021-01-04",29399,33,504],["Sumter","2021-01-05",29399,33,537],["Sumter","2021-01-06",29399,30,567],["Sumter","2021-01-07",29399,26,593],["Sumter","2021-01-08",29399,19,612],["Sumter","2021-01-09",29399,2,614],["Sumter","2021-01-10",29399,11,625],["Sumter","2021-01-11",29399,109,734],["Sumter","2021-01-12",29399,328,1062],["Sumter","2021-01-13",29399,223,1285],["Sumter","2021-01-14",29399,401,1686],["Sumter","2021-01-15",29399,269,1955],["Sumter","2021-01-16",29399,66,2021],["Sumter","2021-01-17",29399,102,2123],["Sumter","2021-01-18",29399,223,2346],["Sumter","2021-01-19",29399,264,2610],["Sumter","2021-01-20",29399,217,2827],["Sumter","2021-01-21",29399,222,3049],["Sumter","2021-01-22",29399,246,3295],["Sumter","2021-01-23",29399,13,3308],["Sumter","2021-01-24",29399,23,3331],["Sumter","2021-01-25",29399,171,3502],["Sumter","2021-01-26",29399,210,3712],["Sumter","2021-01-27",29399,189,3901],["Sumter","2021-01-28",29399,241,4142],["Sumter","2021-01-29",29399,142,4284],["Sumter","2021-01-30",29399,6,4290],["Sumter","2021-01-31",29399,12,4302],["Sumter","2021-02-01",29399,34,4336],["Sumter","2021-02-02",29399,223,4559],["Sumter","2021-02-03",29399,219,4778],["Sumter","2021-02-04",29399,285,5063],["Sumter","2021-02-05",29399,149,5212],["Sumter","2021-02-06",29399,43,5255],["Sumter","2021-02-07",29399,113,5368],["Sumter","2021-02-08",29399,192,5560],["Sumter","2021-02-09",29399,300,5860],["Sumter","2021-02-10",29399,159,6019],["Sumter","2021-02-11",29399,387,6406],["Sumter","2021-02-12",29399,117,6523],["Sumter","2021-02-13",29399,22,6545],["Sumter","2021-02-14",29399,10,6555],["Sumter","2021-02-15",29399,211,6766],["Sumter","2021-02-16",29399,296,7062],["Sumter","2021-02-17",29399,207,7269],["Sumter","2021-02-18",29399,256,7525],["Sumter","2021-02-19",29399,134,7659],["Sumter","2021-02-20",29399,7,7666],["Sumter","2021-02-21",29399,3,7669],["Sumter","2021-02-22",29399,271,7940],["Sumter","2021-02-23",29399,194,8134],["Sumter","2021-02-24",29399,190,8324],["Sumter","2021-02-25",29399,364,8688],["Sumter","2021-02-26",29399,85,8773],["Sumter","2021-02-27",29399,6,8779],["Sumter","2021-02-28",29399,3,8782],["Sumter","2021-03-01",29399,282,9064],["Sumter","2021-03-02",29399,233,9297],["Sumter","2021-03-03",29399,259,9556],["Sumter","2021-03-04",29399,294,9850],["Sumter","2021-03-05",29399,91,9941],["Sumter","2021-03-06",29399,8,9949],["Sumter","2021-03-07",29399,10,9959],["Sumter","2021-03-08",29399,222,10181],["Sumter","2021-03-09",29399,261,10442],["Sumter","2021-03-10",29399,162,10604],["Sumter","2021-03-11",29399,208,10812],["Sumter","2021-03-12",29399,205,11017],["Sumter","2021-03-13",29399,15,11032],["Sumter","2021-03-14",29399,18,11050],["Sumter","2021-03-15",29399,271,11321],["Sumter","2021-03-16",29399,250,11571],["Sumter","2021-03-17",29399,208,11779],["Sumter","2021-03-18",29399,151,11930],["Sumter","2021-03-19",29399,253,12183],["Sumter","2021-03-20",29399,25,12208],["Sumter","2021-03-21",29399,17,12225],["Sumter","2021-03-22",29399,165,12390],["Sumter","2021-03-23",29399,264,12654],["Sumter","2021-03-24",29399,86,12740],["Sumter","2021-03-25",29399,392,13132],["Sumter","2021-03-26",29399,192,13324],["Sumter","2021-03-27",29399,35,13359],["Sumter","2021-03-28",29399,14,13373],["Sumter","2021-03-29",29399,241,13614],["Sumter","2021-03-30",29399,291,13905],["Sumter","2021-03-31",29399,112,14017],["Sumter","2021-04-01",29399,314,14331],["Sumter","2021-04-02",29399,165,14496],["Sumter","2021-04-03",29399,23,14519],["Sumter","2021-04-04",29399,11,14530],["Sumter","2021-04-05",29399,272,14802],["Sumter","2021-04-06",29399,349,15151],["Sumter","2021-04-07",29399,89,15240],["Sumter","2021-04-08",29399,369,15609],["Sumter","2021-04-09",29399,189,15798],["Sumter","2021-04-10",29399,40,15838],["Sumter","2021-04-11",29399,26,15864],["Sumter","2021-04-12",29399,138,16002],["Sumter","2021-04-13",29399,298,16300],["Sumter","2021-04-14",29399,91,16391],["Sumter","2021-04-15",29399,368,16759],["Sumter","2021-04-16",29399,194,16953],["Sumter","2021-04-17",29399,25,16978],["Sumter","2021-04-18",29399,14,16992],["Sumter","2021-04-19",29399,128,17120],["Sumter","2021-04-20",29399,267,17387],["Sumter","2021-04-21",29399,97,17484],["Sumter","2021-04-22",29399,463,17947],["Sumter","2021-04-23",29399,103,18050],["Sumter","2021-04-24",29399,14,18064],["Sumter","2021-04-25",29399,7,18071],["Sumter","2021-04-26",29399,95,18166],["Sumter","2021-04-27",29399,238,18404],["Sumter","2021-04-28",29399,88,18492],["Sumter","2021-04-29",29399,248,18740],["Sumter","2021-04-30",29399,165,18905],["Sumter","2021-05-01",29399,32,18937],["Sumter","2021-05-02",29399,12,18949],["Sumter","2021-05-03",29399,76,19025],["Sumter","2021-05-04",29399,139,19164],["Sumter","2021-05-05",29399,73,19237],["Sumter","2021-05-06",29399,204,19441],["Sumter","2021-05-07",29399,106,19547],["Sumter","2021-05-08",29399,28,19575],["Sumter","2021-05-09",29399,3,19578],["Sumter","2021-05-10",29399,67,19645],["Sumter","2021-05-11",29399,99,19744],["Sumter","2021-05-12",29399,62,19806],["Sumter","2021-05-13",29399,183,19989],["Sumter","2021-05-14",29399,142,20131],["Sumter","2021-05-15",29399,30,20161],["Sumter","2021-05-16",29399,11,20172],["Sumter","2021-05-17",29399,62,20234],["Sumter","2021-05-18",29399,104,20338],["Sumter","2021-05-19",29399,106,20444],["Sumter","2021-05-20",29399,241,20685],["Sumter","2021-05-21",29399,152,20837],["Sumter","2021-05-22",29399,15,20852],["Sumter","2021-05-23",29399,5,20857],["Sumter","2021-05-24",29399,77,20934],["Sumter","2021-05-25",29399,81,21015],["Sumter","2021-05-26",29399,66,21081],["Sumter","2021-05-27",29399,55,21136],["Sumter","2021-05-28",29399,109,21245],["Sumter","2021-05-29",29399,26,21271],["Sumter","2021-05-30",29399,7,21278],["Sumter","2021-05-31",29399,5,21283],["Sumter","2021-06-01",29399,71,21354],["Sumter","2021-06-02",29399,58,21412],["Sumter","2021-06-03",29399,96,21508],["Sumter","2021-06-04",29399,95,21603],["Sumter","2021-06-05",29399,24,21627],["Sumter","2021-06-06",29399,7,21634],["Sumter","2021-06-07",29399,77,21711],["Sumter","2021-06-08",29399,97,21808],["Sumter","2021-06-09",29399,71,21879],["Sumter","2021-06-10",29399,85,21964],["Sumter","2021-06-11",29399,83,22047],["Sumter","2021-06-12",29399,24,22071],["Sumter","2021-06-13",29399,2,22073],["Sumter","2021-06-14",29399,70,22143],["Sumter","2021-06-15",29399,59,22202],["Sumter","2021-06-16",29399,82,22284],["Sumter","2021-06-17",29399,60,22344],["Sumter","2021-06-18",29399,141,22485],["Sumter","2021-06-19",29399,20,22505],["Sumter","2021-06-20",29399,10,22515],["Sumter","2021-06-21",29399,40,22555],["Sumter","2021-06-22",29399,47,22602],["Sumter","2021-06-23",29399,47,22649],["Sumter","2021-06-24",29399,57,22706],["Sumter","2021-06-25",29399,74,22780],["Sumter","2021-06-26",29399,19,22799],["Sumter","2021-06-27",29399,5,22804],["Sumter","2021-06-28",29399,36,22840],["Sumter","2021-06-29",29399,49,22889],["Sumter","2021-06-30",29399,66,22955],["Sumter","2021-07-01",29399,50,23005],["Sumter","2021-07-02",29399,53,23058],["Sumter","2021-07-03",29399,9,23067],["Sumter","2021-07-04",29399,1,23068],["Sumter","2021-07-05",29399,15,23083],["Sumter","2021-07-06",29399,62,23145],["Sumter","2021-07-07",29399,39,23184],["Sumter","2021-07-08",29399,51,23235],["Sumter","2021-07-09",29399,72,23307],["Sumter","2021-07-10",29399,17,23324],["Sumter","2021-07-11",29399,2,23326],["Sumter","2021-07-12",29399,39,23365],["Sumter","2021-07-13",29399,41,23406],["Sumter","2021-07-14",29399,28,23434],["Sumter","2021-07-15",29399,44,23478],["Sumter","2021-07-16",29399,72,23550],["Sumter","2021-07-17",29399,20,23570],["Sumter","2021-07-18",29399,8,23578],["Sumter","2021-07-19",29399,39,23617],["Sumter","2021-07-20",29399,50,23667],["Sumter","2021-07-21",29399,43,23710],["Sumter","2021-07-22",29399,67,23777],["Sumter","2021-07-23",29399,88,23865],["Sumter","2021-07-24",29399,47,23912],["Sumter","2021-07-25",29399,13,23925],["Sumter","2021-07-26",29399,54,23979],["Sumter","2021-07-27",29399,56,24035],["Sumter","2021-07-28",29399,88,24123],["Sumter","2021-07-29",29399,85,24208],["Sumter","2021-07-30",29399,124,24332],["Sumter","2021-07-31",29399,43,24375],["Sumter","2021-08-01",29399,18,24393],["Sumter","2021-08-02",29399,78,24471],["Sumter","2021-08-03",29399,64,24535],["Sumter","2021-08-04",29399,83,24618],["Sumter","2021-08-05",29399,92,24710],["Sumter","2021-08-06",29399,102,24812],["Sumter","2021-08-07",29399,35,24847],["Sumter","2021-08-08",29399,25,24872],["Sumter","2021-08-09",29399,73,24945],["Sumter","2021-08-10",29399,90,25035],["Sumter","2021-08-11",29399,92,25127],["Sumter","2021-08-12",29399,107,25234],["Sumter","2021-08-13",29399,148,25382],["Sumter","2021-08-14",29399,103,25485],["Sumter","2021-08-15",29399,25,25510],["Sumter","2021-08-16",29399,91,25601],["Sumter","2021-08-17",29399,135,25736],["Sumter","2021-08-18",29399,113,25849],["Sumter","2021-08-19",29399,104,25953],["Sumter","2021-08-20",29399,152,26105],["Sumter","2021-08-21",29399,42,26147],["Sumter","2021-08-22",29399,24,26171],["Sumter","2021-08-23",29399,91,26262],["Sumter","2021-08-24",29399,133,26395],["Sumter","2021-08-25",29399,109,26504],["Sumter","2021-08-26",29399,126,26630],["Sumter","2021-08-27",29399,152,26782],["Sumter","2021-08-28",29399,53,26835],["Sumter","2021-08-29",29399,38,26873],["Sumter","2021-08-30",29399,87,26960],["Sumter","2021-08-31",29399,111,27071],["Sumter","2021-09-01",29399,81,27152],["Sumter","2021-09-02",29399,112,27264],["Sumter","2021-09-03",29399,183,27447],["Sumter","2021-09-04",29399,44,27491],["Sumter","2021-09-05",29399,21,27512],["Sumter","2021-09-06",29399,12,27524],["Sumter","2021-09-07",29399,129,27653],["Sumter","2021-09-08",29399,99,27752],["Sumter","2021-09-09",29399,106,27858],["Sumter","2021-09-10",29399,181,28039],["Sumter","2021-09-11",29399,66,28105],["Sumter","2021-09-12",29399,39,28144],["Sumter","2021-09-13",29399,71,28215],["Sumter","2021-09-14",29399,123,28338],["Sumter","2021-09-15",29399,93,28431],["Sumter","2021-09-16",29399,89,28520],["Sumter","2021-09-17",29399,150,28670],["Sumter","2021-09-18",29399,39,28709],["Sumter","2021-09-19",29399,26,28735],["Sumter","2021-09-20",29399,78,28813],["Sumter","2021-09-21",29399,79,28892],["Sumter","2021-09-22",29399,77,28969],["Sumter","2021-09-23",29399,77,29046],["Sumter","2021-09-24",29399,138,29184],["Sumter","2021-09-25",29399,33,29217],["Sumter","2021-09-26",29399,12,29229],["Sumter","2021-09-27",29399,52,29281],["Sumter","2021-09-28",29399,86,29367],["Sumter","2021-09-29",29399,98,29465],["Sumter","2021-09-30",29399,121,29586],["Sumter","2021-10-01",29399,124,29710],["Sumter","2021-10-02",29399,21,29731],["Sumter","2021-10-03",29399,23,29754],["Sumter","2021-10-04",29399,56,29810],["Sumter","2021-10-05",29399,178,29988],["Sumter","2021-10-06",29399,116,30104],["Sumter","2021-10-07",29399,112,30216],["Sumter","2021-10-08",29399,79,30295],["Sumter","2021-10-09",29399,50,30345],["Sumter","2021-10-10",29399,23,30368],["Sumter","2021-10-11",29399,67,30435],["Sumter","2021-10-12",29399,112,30547],["Sumter","2021-10-13",29399,82,30629],["Sumter","2021-10-14",29399,83,30712],["Sumter","2021-10-15",29399,131,30843],["Sumter","2021-10-16",29399,26,30869],["Sumter","2021-10-17",29399,8,30877],["Sumter","2021-10-18",29399,49,30926],["Sumter","2021-10-19",29399,62,30988],["Sumter","2021-10-20",29399,59,31047],["Sumter","2021-10-21",29399,55,31102],["Sumter","2021-10-22",29399,115,31217],["Sumter","2021-10-23",29399,19,31236],["Sumter","2021-10-24",29399,16,31252],["Sumter","2021-10-25",29399,113,31365],["Sumter","2021-10-26",29399,144,31509],["Sumter","2021-10-27",29399,97,31606],["Sumter","2021-10-28",29399,189,31795],["Sumter","2021-10-29",29399,130,31925],["Sumter","2021-10-30",29399,20,31945],["Sumter","2021-10-31",29399,15,31960],["Sumter","2021-11-01",29399,119,32079],["Sumter","2021-11-02",29399,219,32298],["Sumter","2021-11-03",29399,183,32481],["Sumter","2021-11-04",29399,214,32695],["Sumter","2021-11-05",29399,151,32846],["Sumter","2021-11-06",29399,28,32874],["Sumter","2021-11-07",29399,25,32899],["Sumter","2021-11-08",29399,76,32975],["Sumter","2021-11-09",29399,136,33111],["Sumter","2021-11-10",29399,76,33187],["Sumter","2021-11-11",29399,89,33276],["Sumter","2021-11-12",29399,160,33436],["Sumter","2021-11-13",29399,13,33449],["Sumter","2021-11-14",29399,11,33460],["Sumter","2021-11-15",29399,85,33545],["Sumter","2021-11-16",29399,105,33650],["Sumter","2021-11-17",29399,105,33755],["Sumter","2021-11-18",29399,135,33890],["Sumter","2021-11-19",29399,122,34012],["Sumter","2021-11-20",29399,34,34046],["Sumter","2021-11-21",29399,12,34058],["Sumter","2021-11-22",29399,82,34140],["Sumter","2021-11-23",29399,109,34249],["Sumter","2021-11-24",29399,47,34296],["Sumter","2021-11-26",29399,49,34345],["Sumter","2021-11-27",29399,13,34358],["Sumter","2021-11-28",29399,14,34372],["Sumter","2021-11-29",29399,98,34470],["Sumter","2021-11-30",29399,152,34622],["Sumter","2021-12-01",29399,103,34725],["Sumter","2021-12-02",29399,130,34855],["Sumter","2021-12-03",29399,159,35014],["Sumter","2021-12-04",29399,27,35041],["Sumter","2021-12-05",29399,21,35062],["Sumter","2021-12-06",29399,110,35172],["Sumter","2021-12-07",29399,98,35270],["Sumter","2021-12-08",29399,82,35352],["Sumter","2021-12-09",29399,124,35476],["Sumter","2021-12-10",29399,178,35654],["Sumter","2021-12-11",29399,34,35688],["Sumter","2021-12-12",29399,8,35696],["Sumter","2021-12-13",29399,79,35775],["Sumter","2021-12-14",29399,77,35852],["Sumter","2021-12-15",29399,67,35919],["Sumter","2021-12-16",29399,98,36017],["Sumter","2021-12-17",29399,129,36146],["Sumter","2021-12-18",29399,28,36174],["Sumter","2021-12-19",29399,11,36185],["Sumter","2021-12-20",29399,80,36265],["Sumter","2021-12-21",29399,88,36353],["Sumter","2021-12-22",29399,91,36444],["Sumter","2021-12-23",29399,65,36509],["Sumter","2021-12-24",29399,16,36525],["Sumter","2021-12-26",29399,20,36545],["Sumter","2021-12-27",29399,89,36634],["Sumter","2021-12-28",29399,123,36757],["Sumter","2021-12-29",29399,119,36876],["Sumter","2021-12-30",29399,112,36988],["Sumter","2021-12-31",29399,43,37031],["Sumter","2022-01-01",29399,5,37036],["Sumter","2022-01-02",29399,13,37049],["Sumter","2022-01-03",29399,61,37110],["Talbot","2020-12-20",6158,1,1],["Talbot","2020-12-21",6158,2,3],["Talbot","2020-12-22",6158,5,8],["Talbot","2020-12-23",6158,4,12],["Talbot","2020-12-27",6158,1,13],["Talbot","2020-12-29",6158,23,36],["Talbot","2020-12-30",6158,9,45],["Talbot","2020-12-31",6158,6,51],["Talbot","2021-01-03",6158,1,52],["Talbot","2021-01-04",6158,8,60],["Talbot","2021-01-05",6158,7,67],["Talbot","2021-01-06",6158,6,73],["Talbot","2021-01-07",6158,23,96],["Talbot","2021-01-08",6158,17,113],["Talbot","2021-01-09",6158,2,115],["Talbot","2021-01-10",6158,2,117],["Talbot","2021-01-11",6158,28,145],["Talbot","2021-01-12",6158,15,160],["Talbot","2021-01-13",6158,51,211],["Talbot","2021-01-14",6158,36,247],["Talbot","2021-01-15",6158,49,296],["Talbot","2021-01-16",6158,6,302],["Talbot","2021-01-17",6158,2,304],["Talbot","2021-01-18",6158,13,317],["Talbot","2021-01-19",6158,48,365],["Talbot","2021-01-20",6158,38,403],["Talbot","2021-01-21",6158,15,418],["Talbot","2021-01-22",6158,11,429],["Talbot","2021-01-24",6158,4,433],["Talbot","2021-01-25",6158,16,449],["Talbot","2021-01-26",6158,14,463],["Talbot","2021-01-27",6158,20,483],["Talbot","2021-01-28",6158,14,497],["Talbot","2021-01-29",6158,106,603],["Talbot","2021-01-30",6158,1,604],["Talbot","2021-02-01",6158,7,611],["Talbot","2021-02-02",6158,69,680],["Talbot","2021-02-03",6158,39,719],["Talbot","2021-02-04",6158,48,767],["Talbot","2021-02-05",6158,30,797],["Talbot","2021-02-06",6158,2,799],["Talbot","2021-02-07",6158,1,800],["Talbot","2021-02-08",6158,32,832],["Talbot","2021-02-09",6158,72,904],["Talbot","2021-02-10",6158,75,979],["Talbot","2021-02-11",6158,52,1031],["Talbot","2021-02-12",6158,8,1039],["Talbot","2021-02-13",6158,4,1043],["Talbot","2021-02-14",6158,1,1044],["Talbot","2021-02-15",6158,59,1103],["Talbot","2021-02-16",6158,50,1153],["Talbot","2021-02-17",6158,25,1178],["Talbot","2021-02-18",6158,30,1208],["Talbot","2021-02-19",6158,85,1293],["Talbot","2021-02-20",6158,5,1298],["Talbot","2021-02-22",6158,36,1334],["Talbot","2021-02-23",6158,10,1344],["Talbot","2021-02-24",6158,16,1360],["Talbot","2021-02-25",6158,40,1400],["Talbot","2021-02-26",6158,102,1502],["Talbot","2021-02-27",6158,3,1505],["Talbot","2021-03-01",6158,11,1516],["Talbot","2021-03-02",6158,56,1572],["Talbot","2021-03-03",6158,64,1636],["Talbot","2021-03-04",6158,76,1712],["Talbot","2021-03-05",6158,31,1743],["Talbot","2021-03-06",6158,6,1749],["Talbot","2021-03-07",6158,1,1750],["Talbot","2021-03-08",6158,20,1770],["Talbot","2021-03-09",6158,18,1788],["Talbot","2021-03-10",6158,48,1836],["Talbot","2021-03-11",6158,89,1925],["Talbot","2021-03-12",6158,44,1969],["Talbot","2021-03-13",6158,6,1975],["Talbot","2021-03-15",6158,17,1992],["Talbot","2021-03-16",6158,16,2008],["Talbot","2021-03-17",6158,62,2070],["Talbot","2021-03-18",6158,78,2148],["Talbot","2021-03-19",6158,71,2219],["Talbot","2021-03-20",6158,9,2228],["Talbot","2021-03-21",6158,3,2231],["Talbot","2021-03-22",6158,15,2246],["Talbot","2021-03-23",6158,18,2264],["Talbot","2021-03-24",6158,42,2306],["Talbot","2021-03-25",6158,83,2389],["Talbot","2021-03-26",6158,81,2470],["Talbot","2021-03-27",6158,12,2482],["Talbot","2021-03-28",6158,2,2484],["Talbot","2021-03-29",6158,34,2518],["Talbot","2021-03-30",6158,29,2547],["Talbot","2021-03-31",6158,63,2610],["Talbot","2021-04-01",6158,92,2702],["Talbot","2021-04-02",6158,24,2726],["Talbot","2021-04-03",6158,12,2738],["Talbot","2021-04-04",6158,6,2744],["Talbot","2021-04-05",6158,38,2782],["Talbot","2021-04-06",6158,20,2802],["Talbot","2021-04-07",6158,83,2885],["Talbot","2021-04-08",6158,85,2970],["Talbot","2021-04-09",6158,66,3036],["Talbot","2021-04-10",6158,15,3051],["Talbot","2021-04-11",6158,3,3054],["Talbot","2021-04-12",6158,40,3094],["Talbot","2021-04-13",6158,31,3125],["Talbot","2021-04-14",6158,53,3178],["Talbot","2021-04-15",6158,101,3279],["Talbot","2021-04-16",6158,67,3346],["Talbot","2021-04-17",6158,2,3348],["Talbot","2021-04-18",6158,2,3350],["Talbot","2021-04-19",6158,26,3376],["Talbot","2021-04-20",6158,19,3395],["Talbot","2021-04-21",6158,34,3429],["Talbot","2021-04-22",6158,87,3516],["Talbot","2021-04-23",6158,75,3591],["Talbot","2021-04-24",6158,6,3597],["Talbot","2021-04-25",6158,6,3603],["Talbot","2021-04-26",6158,44,3647],["Talbot","2021-04-27",6158,23,3670],["Talbot","2021-04-28",6158,24,3694],["Talbot","2021-04-29",6158,74,3768],["Talbot","2021-04-30",6158,26,3794],["Talbot","2021-05-01",6158,15,3809],["Talbot","2021-05-02",6158,4,3813],["Talbot","2021-05-03",6158,13,3826],["Talbot","2021-05-04",6158,21,3847],["Talbot","2021-05-05",6158,63,3910],["Talbot","2021-05-06",6158,38,3948],["Talbot","2021-05-07",6158,26,3974],["Talbot","2021-05-08",6158,9,3983],["Talbot","2021-05-09",6158,4,3987],["Talbot","2021-05-10",6158,30,4017],["Talbot","2021-05-11",6158,18,4035],["Talbot","2021-05-12",6158,47,4082],["Talbot","2021-05-13",6158,13,4095],["Talbot","2021-05-14",6158,22,4117],["Talbot","2021-05-15",6158,12,4129],["Talbot","2021-05-16",6158,7,4136],["Talbot","2021-05-17",6158,36,4172],["Talbot","2021-05-18",6158,13,4185],["Talbot","2021-05-19",6158,33,4218],["Talbot","2021-05-20",6158,32,4250],["Talbot","2021-05-21",6158,30,4280],["Talbot","2021-05-22",6158,9,4289],["Talbot","2021-05-23",6158,6,4295],["Talbot","2021-05-24",6158,16,4311],["Talbot","2021-05-25",6158,7,4318],["Talbot","2021-05-26",6158,24,4342],["Talbot","2021-05-27",6158,16,4358],["Talbot","2021-05-28",6158,10,4368],["Talbot","2021-05-29",6158,6,4374],["Talbot","2021-05-30",6158,2,4376],["Talbot","2021-05-31",6158,4,4380],["Talbot","2021-06-01",6158,9,4389],["Talbot","2021-06-02",6158,4,4393],["Talbot","2021-06-03",6158,18,4411],["Talbot","2021-06-04",6158,9,4420],["Talbot","2021-06-05",6158,11,4431],["Talbot","2021-06-06",6158,11,4442],["Talbot","2021-06-07",6158,19,4461],["Talbot","2021-06-08",6158,14,4475],["Talbot","2021-06-09",6158,17,4492],["Talbot","2021-06-10",6158,20,4512],["Talbot","2021-06-11",6158,19,4531],["Talbot","2021-06-12",6158,8,4539],["Talbot","2021-06-13",6158,5,4544],["Talbot","2021-06-14",6158,13,4557],["Talbot","2021-06-15",6158,7,4564],["Talbot","2021-06-16",6158,21,4585],["Talbot","2021-06-17",6158,14,4599],["Talbot","2021-06-18",6158,14,4613],["Talbot","2021-06-19",6158,6,4619],["Talbot","2021-06-20",6158,3,4622],["Talbot","2021-06-21",6158,7,4629],["Talbot","2021-06-22",6158,12,4641],["Talbot","2021-06-23",6158,8,4649],["Talbot","2021-06-24",6158,11,4660],["Talbot","2021-06-25",6158,9,4669],["Talbot","2021-06-26",6158,4,4673],["Talbot","2021-06-27",6158,6,4679],["Talbot","2021-06-28",6158,11,4690],["Talbot","2021-06-29",6158,5,4695],["Talbot","2021-06-30",6158,6,4701],["Talbot","2021-07-01",6158,11,4712],["Talbot","2021-07-02",6158,8,4720],["Talbot","2021-07-03",6158,6,4726],["Talbot","2021-07-04",6158,3,4729],["Talbot","2021-07-05",6158,8,4737],["Talbot","2021-07-06",6158,10,4747],["Talbot","2021-07-07",6158,4,4751],["Talbot","2021-07-08",6158,19,4770],["Talbot","2021-07-09",6158,11,4781],["Talbot","2021-07-10",6158,8,4789],["Talbot","2021-07-11",6158,4,4793],["Talbot","2021-07-12",6158,11,4804],["Talbot","2021-07-13",6158,12,4816],["Talbot","2021-07-14",6158,6,4822],["Talbot","2021-07-15",6158,13,4835],["Talbot","2021-07-16",6158,8,4843],["Talbot","2021-07-17",6158,6,4849],["Talbot","2021-07-18",6158,5,4854],["Talbot","2021-07-19",6158,12,4866],["Talbot","2021-07-20",6158,10,4876],["Talbot","2021-07-21",6158,9,4885],["Talbot","2021-07-22",6158,10,4895],["Talbot","2021-07-23",6158,8,4903],["Talbot","2021-07-24",6158,8,4911],["Talbot","2021-07-25",6158,5,4916],["Talbot","2021-07-26",6158,14,4930],["Talbot","2021-07-27",6158,11,4941],["Talbot","2021-07-28",6158,11,4952],["Talbot","2021-07-29",6158,12,4964],["Talbot","2021-07-30",6158,13,4977],["Talbot","2021-07-31",6158,8,4985],["Talbot","2021-08-01",6158,5,4990],["Talbot","2021-08-02",6158,9,4999],["Talbot","2021-08-03",6158,18,5017],["Talbot","2021-08-04",6158,12,5029],["Talbot","2021-08-05",6158,14,5043],["Talbot","2021-08-06",6158,10,5053],["Talbot","2021-08-07",6158,7,5060],["Talbot","2021-08-08",6158,10,5070],["Talbot","2021-08-09",6158,27,5097],["Talbot","2021-08-10",6158,22,5119],["Talbot","2021-08-11",6158,20,5139],["Talbot","2021-08-12",6158,16,5155],["Talbot","2021-08-13",6158,24,5179],["Talbot","2021-08-14",6158,10,5189],["Talbot","2021-08-15",6158,7,5196],["Talbot","2021-08-16",6158,10,5206],["Talbot","2021-08-17",6158,22,5228],["Talbot","2021-08-18",6158,19,5247],["Talbot","2021-08-19",6158,13,5260],["Talbot","2021-08-20",6158,21,5281],["Talbot","2021-08-21",6158,16,5297],["Talbot","2021-08-22",6158,12,5309],["Talbot","2021-08-23",6158,13,5322],["Talbot","2021-08-24",6158,14,5336],["Talbot","2021-08-25",6158,20,5356],["Talbot","2021-08-26",6158,20,5376],["Talbot","2021-08-27",6158,20,5396],["Talbot","2021-08-28",6158,14,5410],["Talbot","2021-08-29",6158,6,5416],["Talbot","2021-08-30",6158,27,5443],["Talbot","2021-08-31",6158,14,5457],["Talbot","2021-09-01",6158,16,5473],["Talbot","2021-09-02",6158,15,5488],["Talbot","2021-09-03",6158,14,5502],["Talbot","2021-09-04",6158,15,5517],["Talbot","2021-09-05",6158,10,5527],["Talbot","2021-09-06",6158,4,5531],["Talbot","2021-09-07",6158,26,5557],["Talbot","2021-09-08",6158,22,5579],["Talbot","2021-09-09",6158,11,5590],["Talbot","2021-09-10",6158,16,5606],["Talbot","2021-09-11",6158,11,5617],["Talbot","2021-09-12",6158,13,5630],["Talbot","2021-09-13",6158,11,5641],["Talbot","2021-09-14",6158,21,5662],["Talbot","2021-09-15",6158,14,5676],["Talbot","2021-09-16",6158,14,5690],["Talbot","2021-09-17",6158,25,5715],["Talbot","2021-09-18",6158,8,5723],["Talbot","2021-09-19",6158,4,5727],["Talbot","2021-09-20",6158,14,5741],["Talbot","2021-09-21",6158,6,5747],["Talbot","2021-09-22",6158,17,5764],["Talbot","2021-09-23",6158,11,5775],["Talbot","2021-09-24",6158,15,5790],["Talbot","2021-09-25",6158,10,5800],["Talbot","2021-09-26",6158,3,5803],["Talbot","2021-09-27",6158,19,5822],["Talbot","2021-09-28",6158,18,5840],["Talbot","2021-09-29",6158,18,5858],["Talbot","2021-09-30",6158,9,5867],["Talbot","2021-10-01",6158,14,5881],["Talbot","2021-10-02",6158,8,5889],["Talbot","2021-10-03",6158,6,5895],["Talbot","2021-10-04",6158,5,5900],["Talbot","2021-10-05",6158,15,5915],["Talbot","2021-10-06",6158,12,5927],["Talbot","2021-10-07",6158,12,5939],["Talbot","2021-10-08",6158,14,5953],["Talbot","2021-10-09",6158,4,5957],["Talbot","2021-10-10",6158,4,5961],["Talbot","2021-10-11",6158,7,5968],["Talbot","2021-10-12",6158,17,5985],["Talbot","2021-10-13",6158,8,5993],["Talbot","2021-10-14",6158,13,6006],["Talbot","2021-10-15",6158,14,6020],["Talbot","2021-10-16",6158,8,6028],["Talbot","2021-10-17",6158,2,6030],["Talbot","2021-10-18",6158,14,6044],["Talbot","2021-10-19",6158,6,6050],["Talbot","2021-10-20",6158,18,6068],["Talbot","2021-10-21",6158,5,6073],["Talbot","2021-10-22",6158,13,6086],["Talbot","2021-10-23",6158,12,6098],["Talbot","2021-10-24",6158,8,6106],["Talbot","2021-10-25",6158,9,6115],["Talbot","2021-10-26",6158,20,6135],["Talbot","2021-10-27",6158,36,6171],["Talbot","2021-10-28",6158,44,6215],["Talbot","2021-10-29",6158,19,6234],["Talbot","2021-10-30",6158,8,6242],["Talbot","2021-10-31",6158,2,6244],["Talbot","2021-11-01",6158,37,6281],["Talbot","2021-11-02",6158,19,6300],["Talbot","2021-11-03",6158,29,6329],["Talbot","2021-11-04",6158,40,6369],["Talbot","2021-11-05",6158,40,6409],["Talbot","2021-11-06",6158,9,6418],["Talbot","2021-11-07",6158,4,6422],["Talbot","2021-11-08",6158,23,6445],["Talbot","2021-11-09",6158,19,6464],["Talbot","2021-11-10",6158,26,6490],["Talbot","2021-11-11",6158,10,6500],["Talbot","2021-11-12",6158,41,6541],["Talbot","2021-11-13",6158,13,6554],["Talbot","2021-11-14",6158,1,6555],["Talbot","2021-11-15",6158,28,6583],["Talbot","2021-11-16",6158,14,6597],["Talbot","2021-11-17",6158,32,6629],["Talbot","2021-11-18",6158,28,6657],["Talbot","2021-11-19",6158,29,6686],["Talbot","2021-11-20",6158,10,6696],["Talbot","2021-11-21",6158,4,6700],["Talbot","2021-11-22",6158,69,6769],["Talbot","2021-11-23",6158,16,6785],["Talbot","2021-11-24",6158,9,6794],["Talbot","2021-11-26",6158,8,6802],["Talbot","2021-11-27",6158,7,6809],["Talbot","2021-11-28",6158,5,6814],["Talbot","2021-11-29",6158,10,6824],["Talbot","2021-11-30",6158,9,6833],["Talbot","2021-12-01",6158,45,6878],["Talbot","2021-12-02",6158,23,6901],["Talbot","2021-12-03",6158,22,6923],["Talbot","2021-12-04",6158,11,6934],["Talbot","2021-12-05",6158,6,6940],["Talbot","2021-12-06",6158,54,6994],["Talbot","2021-12-07",6158,18,7012],["Talbot","2021-12-08",6158,26,7038],["Talbot","2021-12-09",6158,25,7063],["Talbot","2021-12-10",6158,16,7079],["Talbot","2021-12-11",6158,4,7083],["Talbot","2021-12-12",6158,3,7086],["Talbot","2021-12-13",6158,12,7098],["Talbot","2021-12-14",6158,8,7106],["Talbot","2021-12-15",6158,25,7131],["Talbot","2021-12-16",6158,13,7144],["Talbot","2021-12-17",6158,18,7162],["Talbot","2021-12-18",6158,8,7170],["Talbot","2021-12-19",6158,5,7175],["Talbot","2021-12-20",6158,31,7206],["Talbot","2021-12-21",6158,12,7218],["Talbot","2021-12-22",6158,21,7239],["Talbot","2021-12-23",6158,10,7249],["Talbot","2021-12-24",6158,2,7251],["Talbot","2021-12-27",6158,16,7267],["Talbot","2021-12-28",6158,15,7282],["Talbot","2021-12-29",6158,35,7317],["Talbot","2021-12-30",6158,16,7333],["Talbot","2021-12-31",6158,15,7348],["Talbot","2022-01-01",6158,1,7349],["Talbot","2022-01-02",6158,8,7357],["Talbot","2022-01-03",6158,8,7365],["Taliaferro","2020-12-18",1632,1,1],["Taliaferro","2020-12-22",1632,2,3],["Taliaferro","2020-12-23",1632,1,4],["Taliaferro","2020-12-28",1632,1,5],["Taliaferro","2020-12-29",1632,1,6],["Taliaferro","2021-01-02",1632,1,7],["Taliaferro","2021-01-03",1632,1,8],["Taliaferro","2021-01-04",1632,1,9],["Taliaferro","2021-01-06",1632,4,13],["Taliaferro","2021-01-07",1632,1,14],["Taliaferro","2021-01-08",1632,1,15],["Taliaferro","2021-01-09",1632,1,16],["Taliaferro","2021-01-10",1632,1,17],["Taliaferro","2021-01-11",1632,1,18],["Taliaferro","2021-01-12",1632,1,19],["Taliaferro","2021-01-14",1632,3,22],["Taliaferro","2021-01-15",1632,3,25],["Taliaferro","2021-01-16",1632,1,26],["Taliaferro","2021-01-17",1632,1,27],["Taliaferro","2021-01-19",1632,7,34],["Taliaferro","2021-01-20",1632,6,40],["Taliaferro","2021-01-21",1632,7,47],["Taliaferro","2021-01-22",1632,1,48],["Taliaferro","2021-01-23",1632,1,49],["Taliaferro","2021-01-25",1632,5,54],["Taliaferro","2021-01-26",1632,44,98],["Taliaferro","2021-01-27",1632,2,100],["Taliaferro","2021-01-28",1632,57,157],["Taliaferro","2021-01-30",1632,1,158],["Taliaferro","2021-01-31",1632,2,160],["Taliaferro","2021-02-01",1632,4,164],["Taliaferro","2021-02-03",1632,3,167],["Taliaferro","2021-02-04",1632,4,171],["Taliaferro","2021-02-05",1632,1,172],["Taliaferro","2021-02-06",1632,1,173],["Taliaferro","2021-02-07",1632,1,174],["Taliaferro","2021-02-09",1632,4,178],["Taliaferro","2021-02-10",1632,4,182],["Taliaferro","2021-02-11",1632,40,222],["Taliaferro","2021-02-12",1632,2,224],["Taliaferro","2021-02-13",1632,1,225],["Taliaferro","2021-02-14",1632,1,226],["Taliaferro","2021-02-15",1632,1,227],["Taliaferro","2021-02-16",1632,20,247],["Taliaferro","2021-02-17",1632,3,250],["Taliaferro","2021-02-18",1632,9,259],["Taliaferro","2021-02-19",1632,2,261],["Taliaferro","2021-02-20",1632,1,262],["Taliaferro","2021-02-22",1632,3,265],["Taliaferro","2021-02-23",1632,45,310],["Taliaferro","2021-02-25",1632,58,368],["Taliaferro","2021-02-26",1632,4,372],["Taliaferro","2021-02-27",1632,3,375],["Taliaferro","2021-03-01",1632,4,379],["Taliaferro","2021-03-02",1632,5,384],["Taliaferro","2021-03-03",1632,2,386],["Taliaferro","2021-03-04",1632,8,394],["Taliaferro","2021-03-05",1632,1,395],["Taliaferro","2021-03-06",1632,1,396],["Taliaferro","2021-03-07",1632,1,397],["Taliaferro","2021-03-09",1632,9,406],["Taliaferro","2021-03-10",1632,3,409],["Taliaferro","2021-03-11",1632,54,463],["Taliaferro","2021-03-12",1632,6,469],["Taliaferro","2021-03-13",1632,2,471],["Taliaferro","2021-03-15",1632,8,479],["Taliaferro","2021-03-16",1632,27,506],["Taliaferro","2021-03-17",1632,5,511],["Taliaferro","2021-03-18",1632,10,521],["Taliaferro","2021-03-19",1632,2,523],["Taliaferro","2021-03-20",1632,2,525],["Taliaferro","2021-03-21",1632,1,526],["Taliaferro","2021-03-22",1632,2,528],["Taliaferro","2021-03-23",1632,35,563],["Taliaferro","2021-03-24",1632,1,564],["Taliaferro","2021-03-25",1632,22,586],["Taliaferro","2021-03-26",1632,11,597],["Taliaferro","2021-03-27",1632,2,599],["Taliaferro","2021-03-29",1632,5,604],["Taliaferro","2021-03-30",1632,7,611],["Taliaferro","2021-03-31",1632,11,622],["Taliaferro","2021-04-01",1632,11,633],["Taliaferro","2021-04-02",1632,13,646],["Taliaferro","2021-04-03",1632,1,647],["Taliaferro","2021-04-04",1632,1,648],["Taliaferro","2021-04-05",1632,7,655],["Taliaferro","2021-04-06",1632,16,671],["Taliaferro","2021-04-07",1632,2,673],["Taliaferro","2021-04-08",1632,14,687],["Taliaferro","2021-04-09",1632,7,694],["Taliaferro","2021-04-10",1632,3,697],["Taliaferro","2021-04-11",1632,5,702],["Taliaferro","2021-04-12",1632,10,712],["Taliaferro","2021-04-13",1632,7,719],["Taliaferro","2021-04-14",1632,11,730],["Taliaferro","2021-04-15",1632,8,738],["Taliaferro","2021-04-16",1632,5,743],["Taliaferro","2021-04-18",1632,1,744],["Taliaferro","2021-04-19",1632,5,749],["Taliaferro","2021-04-20",1632,59,808],["Taliaferro","2021-04-21",1632,4,812],["Taliaferro","2021-04-22",1632,18,830],["Taliaferro","2021-04-23",1632,5,835],["Taliaferro","2021-04-24",1632,2,837],["Taliaferro","2021-04-26",1632,5,842],["Taliaferro","2021-04-27",1632,4,846],["Taliaferro","2021-04-28",1632,3,849],["Taliaferro","2021-04-29",1632,7,856],["Taliaferro","2021-04-30",1632,6,862],["Taliaferro","2021-05-03",1632,5,867],["Taliaferro","2021-05-04",1632,16,883],["Taliaferro","2021-05-05",1632,6,889],["Taliaferro","2021-05-06",1632,10,899],["Taliaferro","2021-05-07",1632,3,902],["Taliaferro","2021-05-09",1632,2,904],["Taliaferro","2021-05-10",1632,4,908],["Taliaferro","2021-05-11",1632,4,912],["Taliaferro","2021-05-12",1632,4,916],["Taliaferro","2021-05-13",1632,1,917],["Taliaferro","2021-05-14",1632,9,926],["Taliaferro","2021-05-16",1632,1,927],["Taliaferro","2021-05-17",1632,6,933],["Taliaferro","2021-05-18",1632,29,962],["Taliaferro","2021-05-19",1632,1,963],["Taliaferro","2021-05-20",1632,12,975],["Taliaferro","2021-05-21",1632,3,978],["Taliaferro","2021-05-22",1632,2,980],["Taliaferro","2021-05-23",1632,1,981],["Taliaferro","2021-05-24",1632,2,983],["Taliaferro","2021-05-25",1632,1,984],["Taliaferro","2021-05-26",1632,1,985],["Taliaferro","2021-05-27",1632,1,986],["Taliaferro","2021-05-28",1632,2,988],["Taliaferro","2021-05-29",1632,2,990],["Taliaferro","2021-05-30",1632,1,991],["Taliaferro","2021-05-31",1632,1,992],["Taliaferro","2021-06-01",1632,3,995],["Taliaferro","2021-06-02",1632,5,1000],["Taliaferro","2021-06-03",1632,4,1004],["Taliaferro","2021-06-04",1632,3,1007],["Taliaferro","2021-06-05",1632,2,1009],["Taliaferro","2021-06-06",1632,1,1010],["Taliaferro","2021-06-07",1632,2,1012],["Taliaferro","2021-06-08",1632,1,1013],["Taliaferro","2021-06-09",1632,1,1014],["Taliaferro","2021-06-10",1632,4,1018],["Taliaferro","2021-06-12",1632,3,1021],["Taliaferro","2021-06-14",1632,3,1024],["Taliaferro","2021-06-15",1632,18,1042],["Taliaferro","2021-06-16",1632,3,1045],["Taliaferro","2021-06-17",1632,3,1048],["Taliaferro","2021-06-18",1632,4,1052],["Taliaferro","2021-06-19",1632,7,1059],["Taliaferro","2021-06-20",1632,1,1060],["Taliaferro","2021-06-21",1632,3,1063],["Taliaferro","2021-06-22",1632,3,1066],["Taliaferro","2021-06-23",1632,5,1071],["Taliaferro","2021-06-24",1632,3,1074],["Taliaferro","2021-06-25",1632,2,1076],["Taliaferro","2021-06-28",1632,1,1077],["Taliaferro","2021-06-29",1632,2,1079],["Taliaferro","2021-06-30",1632,1,1080],["Taliaferro","2021-07-01",1632,6,1086],["Taliaferro","2021-07-02",1632,2,1088],["Taliaferro","2021-07-03",1632,1,1089],["Taliaferro","2021-07-05",1632,1,1090],["Taliaferro","2021-07-06",1632,1,1091],["Taliaferro","2021-07-07",1632,1,1092],["Taliaferro","2021-07-08",1632,1,1093],["Taliaferro","2021-07-09",1632,1,1094],["Taliaferro","2021-07-10",1632,4,1098],["Taliaferro","2021-07-11",1632,3,1101],["Taliaferro","2021-07-12",1632,2,1103],["Taliaferro","2021-07-13",1632,2,1105],["Taliaferro","2021-07-14",1632,3,1108],["Taliaferro","2021-07-15",1632,2,1110],["Taliaferro","2021-07-16",1632,3,1113],["Taliaferro","2021-07-19",1632,2,1115],["Taliaferro","2021-07-20",1632,8,1123],["Taliaferro","2021-07-21",1632,4,1127],["Taliaferro","2021-07-22",1632,5,1132],["Taliaferro","2021-07-23",1632,2,1134],["Taliaferro","2021-07-24",1632,3,1137],["Taliaferro","2021-07-26",1632,2,1139],["Taliaferro","2021-07-27",1632,1,1140],["Taliaferro","2021-07-28",1632,3,1143],["Taliaferro","2021-07-29",1632,9,1152],["Taliaferro","2021-07-30",1632,5,1157],["Taliaferro","2021-07-31",1632,4,1161],["Taliaferro","2021-08-01",1632,5,1166],["Taliaferro","2021-08-02",1632,4,1170],["Taliaferro","2021-08-03",1632,3,1173],["Taliaferro","2021-08-04",1632,5,1178],["Taliaferro","2021-08-05",1632,12,1190],["Taliaferro","2021-08-06",1632,5,1195],["Taliaferro","2021-08-07",1632,2,1197],["Taliaferro","2021-08-09",1632,5,1202],["Taliaferro","2021-08-10",1632,4,1206],["Taliaferro","2021-08-11",1632,4,1210],["Taliaferro","2021-08-12",1632,3,1213],["Taliaferro","2021-08-13",1632,4,1217],["Taliaferro","2021-08-14",1632,4,1221],["Taliaferro","2021-08-16",1632,5,1226],["Taliaferro","2021-08-18",1632,9,1235],["Taliaferro","2021-08-19",1632,8,1243],["Taliaferro","2021-08-20",1632,7,1250],["Taliaferro","2021-08-21",1632,4,1254],["Taliaferro","2021-08-22",1632,1,1255],["Taliaferro","2021-08-23",1632,2,1257],["Taliaferro","2021-08-24",1632,4,1261],["Taliaferro","2021-08-25",1632,6,1267],["Taliaferro","2021-08-26",1632,13,1280],["Taliaferro","2021-08-27",1632,5,1285],["Taliaferro","2021-08-28",1632,2,1287],["Taliaferro","2021-08-30",1632,10,1297],["Taliaferro","2021-08-31",1632,7,1304],["Taliaferro","2021-09-01",1632,7,1311],["Taliaferro","2021-09-02",1632,7,1318],["Taliaferro","2021-09-03",1632,2,1320],["Taliaferro","2021-09-04",1632,2,1322],["Taliaferro","2021-09-05",1632,1,1323],["Taliaferro","2021-09-06",1632,2,1325],["Taliaferro","2021-09-07",1632,4,1329],["Taliaferro","2021-09-08",1632,7,1336],["Taliaferro","2021-09-09",1632,12,1348],["Taliaferro","2021-09-10",1632,2,1350],["Taliaferro","2021-09-11",1632,2,1352],["Taliaferro","2021-09-12",1632,2,1354],["Taliaferro","2021-09-13",1632,4,1358],["Taliaferro","2021-09-15",1632,2,1360],["Taliaferro","2021-09-16",1632,9,1369],["Taliaferro","2021-09-17",1632,4,1373],["Taliaferro","2021-09-20",1632,5,1378],["Taliaferro","2021-09-21",1632,3,1381],["Taliaferro","2021-09-22",1632,3,1384],["Taliaferro","2021-09-23",1632,12,1396],["Taliaferro","2021-09-24",1632,1,1397],["Taliaferro","2021-09-27",1632,2,1399],["Taliaferro","2021-09-28",1632,5,1404],["Taliaferro","2021-09-29",1632,1,1405],["Taliaferro","2021-09-30",1632,8,1413],["Taliaferro","2021-10-01",1632,3,1416],["Taliaferro","2021-10-02",1632,2,1418],["Taliaferro","2021-10-03",1632,1,1419],["Taliaferro","2021-10-06",1632,2,1421],["Taliaferro","2021-10-07",1632,2,1423],["Taliaferro","2021-10-08",1632,3,1426],["Taliaferro","2021-10-09",1632,1,1427],["Taliaferro","2021-10-11",1632,1,1428],["Taliaferro","2021-10-12",1632,1,1429],["Taliaferro","2021-10-13",1632,3,1432],["Taliaferro","2021-10-14",1632,11,1443],["Taliaferro","2021-10-16",1632,1,1444],["Taliaferro","2021-10-18",1632,1,1445],["Taliaferro","2021-10-19",1632,1,1446],["Taliaferro","2021-10-20",1632,5,1451],["Taliaferro","2021-10-21",1632,2,1453],["Taliaferro","2021-10-22",1632,4,1457],["Taliaferro","2021-10-25",1632,7,1464],["Taliaferro","2021-10-26",1632,7,1471],["Taliaferro","2021-10-27",1632,8,1479],["Taliaferro","2021-10-28",1632,35,1514],["Taliaferro","2021-10-29",1632,4,1518],["Taliaferro","2021-10-31",1632,2,1520],["Taliaferro","2021-11-01",1632,2,1522],["Taliaferro","2021-11-02",1632,7,1529],["Taliaferro","2021-11-03",1632,4,1533],["Taliaferro","2021-11-04",1632,20,1553],["Taliaferro","2021-11-05",1632,6,1559],["Taliaferro","2021-11-07",1632,1,1560],["Taliaferro","2021-11-08",1632,3,1563],["Taliaferro","2021-11-09",1632,7,1570],["Taliaferro","2021-11-10",1632,28,1598],["Taliaferro","2021-11-11",1632,1,1599],["Taliaferro","2021-11-12",1632,3,1602],["Taliaferro","2021-11-14",1632,1,1603],["Taliaferro","2021-11-15",1632,5,1608],["Taliaferro","2021-11-16",1632,4,1612],["Taliaferro","2021-11-17",1632,1,1613],["Taliaferro","2021-11-18",1632,25,1638],["Taliaferro","2021-11-19",1632,4,1642],["Taliaferro","2021-11-20",1632,3,1645],["Taliaferro","2021-11-22",1632,5,1650],["Taliaferro","2021-11-23",1632,24,1674],["Taliaferro","2021-11-24",1632,5,1679],["Taliaferro","2021-11-26",1632,1,1680],["Taliaferro","2021-11-28",1632,1,1681],["Taliaferro","2021-11-29",1632,4,1685],["Taliaferro","2021-11-30",1632,2,1687],["Taliaferro","2021-12-01",1632,6,1693],["Taliaferro","2021-12-02",1632,35,1728],["Taliaferro","2021-12-03",1632,5,1733],["Taliaferro","2021-12-04",1632,2,1735],["Taliaferro","2021-12-07",1632,3,1738],["Taliaferro","2021-12-08",1632,19,1757],["Taliaferro","2021-12-09",1632,5,1762],["Taliaferro","2021-12-10",1632,2,1764],["Taliaferro","2021-12-11",1632,1,1765],["Taliaferro","2021-12-13",1632,1,1766],["Taliaferro","2021-12-14",1632,3,1769],["Taliaferro","2021-12-15",1632,2,1771],["Taliaferro","2021-12-16",1632,14,1785],["Taliaferro","2021-12-17",1632,2,1787],["Taliaferro","2021-12-18",1632,3,1790],["Taliaferro","2021-12-20",1632,7,1797],["Taliaferro","2021-12-21",1632,12,1809],["Taliaferro","2021-12-22",1632,4,1813],["Taliaferro","2021-12-23",1632,1,1814],["Taliaferro","2021-12-24",1632,1,1815],["Taliaferro","2021-12-26",1632,1,1816],["Taliaferro","2021-12-27",1632,1,1817],["Taliaferro","2021-12-28",1632,4,1821],["Taliaferro","2021-12-29",1632,6,1827],["Taliaferro","2021-12-30",1632,1,1828],["Taliaferro","2021-12-31",1632,3,1831],["Taliaferro","2022-01-02",1632,2,1833],["Tattnall","2020-12-16",25411,4,4],["Tattnall","2020-12-18",25411,1,5],["Tattnall","2020-12-19",25411,1,6],["Tattnall","2020-12-20",25411,1,7],["Tattnall","2020-12-21",25411,2,9],["Tattnall","2020-12-22",25411,4,13],["Tattnall","2020-12-23",25411,5,18],["Tattnall","2020-12-24",25411,1,19],["Tattnall","2020-12-26",25411,1,20],["Tattnall","2020-12-27",25411,2,22],["Tattnall","2020-12-28",25411,14,36],["Tattnall","2020-12-29",25411,21,57],["Tattnall","2020-12-30",25411,34,91],["Tattnall","2020-12-31",25411,6,97],["Tattnall","2021-01-01",25411,11,108],["Tattnall","2021-01-02",25411,36,144],["Tattnall","2021-01-03",25411,3,147],["Tattnall","2021-01-04",25411,25,172],["Tattnall","2021-01-05",25411,7,179],["Tattnall","2021-01-06",25411,18,197],["Tattnall","2021-01-07",25411,40,237],["Tattnall","2021-01-08",25411,23,260],["Tattnall","2021-01-09",25411,1,261],["Tattnall","2021-01-10",25411,1,262],["Tattnall","2021-01-11",25411,68,330],["Tattnall","2021-01-12",25411,93,423],["Tattnall","2021-01-13",25411,85,508],["Tattnall","2021-01-14",25411,107,615],["Tattnall","2021-01-15",25411,111,726],["Tattnall","2021-01-16",25411,48,774],["Tattnall","2021-01-17",25411,67,841],["Tattnall","2021-01-18",25411,110,951],["Tattnall","2021-01-19",25411,61,1012],["Tattnall","2021-01-20",25411,109,1121],["Tattnall","2021-01-21",25411,132,1253],["Tattnall","2021-01-22",25411,116,1369],["Tattnall","2021-01-23",25411,49,1418],["Tattnall","2021-01-24",25411,4,1422],["Tattnall","2021-01-25",25411,24,1446],["Tattnall","2021-01-26",25411,47,1493],["Tattnall","2021-01-27",25411,70,1563],["Tattnall","2021-01-28",25411,113,1676],["Tattnall","2021-01-29",25411,60,1736],["Tattnall","2021-01-30",25411,3,1739],["Tattnall","2021-01-31",25411,2,1741],["Tattnall","2021-02-01",25411,33,1774],["Tattnall","2021-02-02",25411,109,1883],["Tattnall","2021-02-03",25411,61,1944],["Tattnall","2021-02-04",25411,77,2021],["Tattnall","2021-02-05",25411,85,2106],["Tattnall","2021-02-06",25411,7,2113],["Tattnall","2021-02-08",25411,69,2182],["Tattnall","2021-02-09",25411,100,2282],["Tattnall","2021-02-10",25411,173,2455],["Tattnall","2021-02-11",25411,201,2656],["Tattnall","2021-02-12",25411,130,2786],["Tattnall","2021-02-13",25411,147,2933],["Tattnall","2021-02-14",25411,4,2937],["Tattnall","2021-02-15",25411,82,3019],["Tattnall","2021-02-16",25411,99,3118],["Tattnall","2021-02-17",25411,229,3347],["Tattnall","2021-02-18",25411,205,3552],["Tattnall","2021-02-19",25411,112,3664],["Tattnall","2021-02-20",25411,68,3732],["Tattnall","2021-02-21",25411,9,3741],["Tattnall","2021-02-22",25411,40,3781],["Tattnall","2021-02-23",25411,79,3860],["Tattnall","2021-02-24",25411,119,3979],["Tattnall","2021-02-25",25411,158,4137],["Tattnall","2021-02-26",25411,60,4197],["Tattnall","2021-02-27",25411,13,4210],["Tattnall","2021-02-28",25411,8,4218],["Tattnall","2021-03-01",25411,57,4275],["Tattnall","2021-03-02",25411,85,4360],["Tattnall","2021-03-03",25411,69,4429],["Tattnall","2021-03-04",25411,98,4527],["Tattnall","2021-03-05",25411,81,4608],["Tattnall","2021-03-06",25411,3,4611],["Tattnall","2021-03-07",25411,11,4622],["Tattnall","2021-03-08",25411,68,4690],["Tattnall","2021-03-09",25411,103,4793],["Tattnall","2021-03-10",25411,102,4895],["Tattnall","2021-03-11",25411,138,5033],["Tattnall","2021-03-12",25411,117,5150],["Tattnall","2021-03-13",25411,27,5177],["Tattnall","2021-03-14",25411,16,5193],["Tattnall","2021-03-15",25411,90,5283],["Tattnall","2021-03-16",25411,89,5372],["Tattnall","2021-03-17",25411,177,5549],["Tattnall","2021-03-18",25411,93,5642],["Tattnall","2021-03-19",25411,85,5727],["Tattnall","2021-03-20",25411,129,5856],["Tattnall","2021-03-21",25411,18,5874],["Tattnall","2021-03-22",25411,60,5934],["Tattnall","2021-03-23",25411,116,6050],["Tattnall","2021-03-24",25411,156,6206],["Tattnall","2021-03-25",25411,148,6354],["Tattnall","2021-03-26",25411,112,6466],["Tattnall","2021-03-27",25411,10,6476],["Tattnall","2021-03-28",25411,28,6504],["Tattnall","2021-03-29",25411,103,6607],["Tattnall","2021-03-30",25411,131,6738],["Tattnall","2021-03-31",25411,157,6895],["Tattnall","2021-04-01",25411,147,7042],["Tattnall","2021-04-02",25411,245,7287],["Tattnall","2021-04-03",25411,13,7300],["Tattnall","2021-04-04",25411,17,7317],["Tattnall","2021-04-05",25411,85,7402],["Tattnall","2021-04-06",25411,119,7521],["Tattnall","2021-04-07",25411,102,7623],["Tattnall","2021-04-08",25411,308,7931],["Tattnall","2021-04-09",25411,54,7985],["Tattnall","2021-04-10",25411,98,8083],["Tattnall","2021-04-11",25411,10,8093],["Tattnall","2021-04-12",25411,92,8185],["Tattnall","2021-04-13",25411,82,8267],["Tattnall","2021-04-14",25411,122,8389],["Tattnall","2021-04-15",25411,98,8487],["Tattnall","2021-04-16",25411,95,8582],["Tattnall","2021-04-17",25411,12,8594],["Tattnall","2021-04-18",25411,5,8599],["Tattnall","2021-04-19",25411,21,8620],["Tattnall","2021-04-20",25411,71,8691],["Tattnall","2021-04-21",25411,146,8837],["Tattnall","2021-04-22",25411,137,8974],["Tattnall","2021-04-23",25411,61,9035],["Tattnall","2021-04-24",25411,81,9116],["Tattnall","2021-04-25",25411,6,9122],["Tattnall","2021-04-26",25411,75,9197],["Tattnall","2021-04-27",25411,134,9331],["Tattnall","2021-04-28",25411,110,9441],["Tattnall","2021-04-29",25411,184,9625],["Tattnall","2021-04-30",25411,73,9698],["Tattnall","2021-05-01",25411,34,9732],["Tattnall","2021-05-02",25411,4,9736],["Tattnall","2021-05-03",25411,41,9777],["Tattnall","2021-05-04",25411,57,9834],["Tattnall","2021-05-05",25411,78,9912],["Tattnall","2021-05-06",25411,98,10010],["Tattnall","2021-05-07",25411,74,10084],["Tattnall","2021-05-08",25411,25,10109],["Tattnall","2021-05-09",25411,1,10110],["Tattnall","2021-05-10",25411,33,10143],["Tattnall","2021-05-11",25411,50,10193],["Tattnall","2021-05-12",25411,49,10242],["Tattnall","2021-05-13",25411,39,10281],["Tattnall","2021-05-14",25411,64,10345],["Tattnall","2021-05-15",25411,33,10378],["Tattnall","2021-05-16",25411,6,10384],["Tattnall","2021-05-17",25411,26,10410],["Tattnall","2021-05-18",25411,77,10487],["Tattnall","2021-05-19",25411,89,10576],["Tattnall","2021-05-20",25411,103,10679],["Tattnall","2021-05-21",25411,50,10729],["Tattnall","2021-05-22",25411,32,10761],["Tattnall","2021-05-23",25411,5,10766],["Tattnall","2021-05-24",25411,22,10788],["Tattnall","2021-05-25",25411,72,10860],["Tattnall","2021-05-26",25411,66,10926],["Tattnall","2021-05-27",25411,45,10971],["Tattnall","2021-05-28",25411,19,10990],["Tattnall","2021-05-29",25411,7,10997],["Tattnall","2021-05-30",25411,4,11001],["Tattnall","2021-05-31",25411,4,11005],["Tattnall","2021-06-01",25411,54,11059],["Tattnall","2021-06-02",25411,34,11093],["Tattnall","2021-06-03",25411,55,11148],["Tattnall","2021-06-04",25411,22,11170],["Tattnall","2021-06-05",25411,23,11193],["Tattnall","2021-06-06",25411,8,11201],["Tattnall","2021-06-07",25411,18,11219],["Tattnall","2021-06-08",25411,30,11249],["Tattnall","2021-06-09",25411,29,11278],["Tattnall","2021-06-10",25411,38,11316],["Tattnall","2021-06-11",25411,19,11335],["Tattnall","2021-06-12",25411,44,11379],["Tattnall","2021-06-13",25411,9,11388],["Tattnall","2021-06-14",25411,24,11412],["Tattnall","2021-06-15",25411,58,11470],["Tattnall","2021-06-16",25411,48,11518],["Tattnall","2021-06-17",25411,37,11555],["Tattnall","2021-06-18",25411,27,11582],["Tattnall","2021-06-19",25411,10,11592],["Tattnall","2021-06-20",25411,3,11595],["Tattnall","2021-06-21",25411,13,11608],["Tattnall","2021-06-22",25411,21,11629],["Tattnall","2021-06-23",25411,38,11667],["Tattnall","2021-06-24",25411,14,11681],["Tattnall","2021-06-25",25411,23,11704],["Tattnall","2021-06-26",25411,11,11715],["Tattnall","2021-06-27",25411,11,11726],["Tattnall","2021-06-28",25411,16,11742],["Tattnall","2021-06-29",25411,23,11765],["Tattnall","2021-06-30",25411,25,11790],["Tattnall","2021-07-01",25411,32,11822],["Tattnall","2021-07-02",25411,13,11835],["Tattnall","2021-07-03",25411,12,11847],["Tattnall","2021-07-04",25411,1,11848],["Tattnall","2021-07-05",25411,13,11861],["Tattnall","2021-07-06",25411,26,11887],["Tattnall","2021-07-07",25411,13,11900],["Tattnall","2021-07-08",25411,21,11921],["Tattnall","2021-07-09",25411,17,11938],["Tattnall","2021-07-10",25411,6,11944],["Tattnall","2021-07-11",25411,6,11950],["Tattnall","2021-07-12",25411,13,11963],["Tattnall","2021-07-13",25411,22,11985],["Tattnall","2021-07-14",25411,49,12034],["Tattnall","2021-07-15",25411,18,12052],["Tattnall","2021-07-16",25411,28,12080],["Tattnall","2021-07-17",25411,9,12089],["Tattnall","2021-07-18",25411,6,12095],["Tattnall","2021-07-19",25411,17,12112],["Tattnall","2021-07-20",25411,33,12145],["Tattnall","2021-07-21",25411,43,12188],["Tattnall","2021-07-22",25411,56,12244],["Tattnall","2021-07-23",25411,43,12287],["Tattnall","2021-07-24",25411,44,12331],["Tattnall","2021-07-25",25411,12,12343],["Tattnall","2021-07-26",25411,38,12381],["Tattnall","2021-07-27",25411,43,12424],["Tattnall","2021-07-28",25411,65,12489],["Tattnall","2021-07-29",25411,82,12571],["Tattnall","2021-07-30",25411,43,12614],["Tattnall","2021-07-31",25411,37,12651],["Tattnall","2021-08-01",25411,12,12663],["Tattnall","2021-08-02",25411,33,12696],["Tattnall","2021-08-03",25411,48,12744],["Tattnall","2021-08-04",25411,83,12827],["Tattnall","2021-08-05",25411,60,12887],["Tattnall","2021-08-06",25411,59,12946],["Tattnall","2021-08-07",25411,39,12985],["Tattnall","2021-08-08",25411,15,13000],["Tattnall","2021-08-09",25411,59,13059],["Tattnall","2021-08-10",25411,60,13119],["Tattnall","2021-08-11",25411,65,13184],["Tattnall","2021-08-12",25411,53,13237],["Tattnall","2021-08-13",25411,81,13318],["Tattnall","2021-08-14",25411,46,13364],["Tattnall","2021-08-15",25411,12,13376],["Tattnall","2021-08-16",25411,63,13439],["Tattnall","2021-08-17",25411,64,13503],["Tattnall","2021-08-18",25411,89,13592],["Tattnall","2021-08-19",25411,81,13673],["Tattnall","2021-08-20",25411,92,13765],["Tattnall","2021-08-21",25411,39,13804],["Tattnall","2021-08-22",25411,21,13825],["Tattnall","2021-08-23",25411,47,13872],["Tattnall","2021-08-24",25411,64,13936],["Tattnall","2021-08-25",25411,76,14012],["Tattnall","2021-08-26",25411,56,14068],["Tattnall","2021-08-27",25411,94,14162],["Tattnall","2021-08-28",25411,59,14221],["Tattnall","2021-08-29",25411,26,14247],["Tattnall","2021-08-30",25411,59,14306],["Tattnall","2021-08-31",25411,59,14365],["Tattnall","2021-09-01",25411,87,14452],["Tattnall","2021-09-02",25411,71,14523],["Tattnall","2021-09-03",25411,74,14597],["Tattnall","2021-09-04",25411,32,14629],["Tattnall","2021-09-05",25411,21,14650],["Tattnall","2021-09-06",25411,8,14658],["Tattnall","2021-09-07",25411,76,14734],["Tattnall","2021-09-08",25411,69,14803],["Tattnall","2021-09-09",25411,70,14873],["Tattnall","2021-09-10",25411,119,14992],["Tattnall","2021-09-11",25411,38,15030],["Tattnall","2021-09-12",25411,18,15048],["Tattnall","2021-09-13",25411,59,15107],["Tattnall","2021-09-14",25411,69,15176],["Tattnall","2021-09-15",25411,63,15239],["Tattnall","2021-09-16",25411,44,15283],["Tattnall","2021-09-17",25411,87,15370],["Tattnall","2021-09-18",25411,22,15392],["Tattnall","2021-09-19",25411,9,15401],["Tattnall","2021-09-20",25411,33,15434],["Tattnall","2021-09-21",25411,30,15464],["Tattnall","2021-09-22",25411,74,15538],["Tattnall","2021-09-23",25411,29,15567],["Tattnall","2021-09-24",25411,64,15631],["Tattnall","2021-09-25",25411,21,15652],["Tattnall","2021-09-26",25411,9,15661],["Tattnall","2021-09-27",25411,19,15680],["Tattnall","2021-09-28",25411,36,15716],["Tattnall","2021-09-29",25411,39,15755],["Tattnall","2021-09-30",25411,44,15799],["Tattnall","2021-10-01",25411,65,15864],["Tattnall","2021-10-02",25411,15,15879],["Tattnall","2021-10-03",25411,1,15880],["Tattnall","2021-10-04",25411,24,15904],["Tattnall","2021-10-05",25411,27,15931],["Tattnall","2021-10-06",25411,30,15961],["Tattnall","2021-10-07",25411,33,15994],["Tattnall","2021-10-08",25411,41,16035],["Tattnall","2021-10-09",25411,8,16043],["Tattnall","2021-10-10",25411,6,16049],["Tattnall","2021-10-11",25411,13,16062],["Tattnall","2021-10-12",25411,27,16089],["Tattnall","2021-10-13",25411,34,16123],["Tattnall","2021-10-14",25411,47,16170],["Tattnall","2021-10-15",25411,32,16202],["Tattnall","2021-10-16",25411,10,16212],["Tattnall","2021-10-17",25411,3,16215],["Tattnall","2021-10-18",25411,12,16227],["Tattnall","2021-10-19",25411,28,16255],["Tattnall","2021-10-20",25411,25,16280],["Tattnall","2021-10-21",25411,32,16312],["Tattnall","2021-10-22",25411,34,16346],["Tattnall","2021-10-23",25411,16,16362],["Tattnall","2021-10-24",25411,4,16366],["Tattnall","2021-10-25",25411,45,16411],["Tattnall","2021-10-26",25411,89,16500],["Tattnall","2021-10-27",25411,52,16552],["Tattnall","2021-10-28",25411,85,16637],["Tattnall","2021-10-29",25411,112,16749],["Tattnall","2021-10-30",25411,8,16757],["Tattnall","2021-10-31",25411,7,16764],["Tattnall","2021-11-01",25411,43,16807],["Tattnall","2021-11-02",25411,65,16872],["Tattnall","2021-11-03",25411,144,17016],["Tattnall","2021-11-04",25411,67,17083],["Tattnall","2021-11-05",25411,54,17137],["Tattnall","2021-11-06",25411,14,17151],["Tattnall","2021-11-07",25411,7,17158],["Tattnall","2021-11-08",25411,34,17192],["Tattnall","2021-11-09",25411,77,17269],["Tattnall","2021-11-10",25411,44,17313],["Tattnall","2021-11-11",25411,145,17458],["Tattnall","2021-11-12",25411,92,17550],["Tattnall","2021-11-13",25411,14,17564],["Tattnall","2021-11-14",25411,3,17567],["Tattnall","2021-11-15",25411,28,17595],["Tattnall","2021-11-16",25411,55,17650],["Tattnall","2021-11-17",25411,86,17736],["Tattnall","2021-11-18",25411,92,17828],["Tattnall","2021-11-19",25411,74,17902],["Tattnall","2021-11-20",25411,13,17915],["Tattnall","2021-11-21",25411,13,17928],["Tattnall","2021-11-22",25411,50,17978],["Tattnall","2021-11-23",25411,47,18025],["Tattnall","2021-11-24",25411,25,18050],["Tattnall","2021-11-26",25411,19,18069],["Tattnall","2021-11-27",25411,10,18079],["Tattnall","2021-11-28",25411,3,18082],["Tattnall","2021-11-29",25411,55,18137],["Tattnall","2021-11-30",25411,78,18215],["Tattnall","2021-12-01",25411,125,18340],["Tattnall","2021-12-02",25411,78,18418],["Tattnall","2021-12-03",25411,78,18496],["Tattnall","2021-12-04",25411,52,18548],["Tattnall","2021-12-05",25411,8,18556],["Tattnall","2021-12-06",25411,43,18599],["Tattnall","2021-12-07",25411,71,18670],["Tattnall","2021-12-08",25411,89,18759],["Tattnall","2021-12-09",25411,61,18820],["Tattnall","2021-12-10",25411,82,18902],["Tattnall","2021-12-11",25411,14,18916],["Tattnall","2021-12-12",25411,12,18928],["Tattnall","2021-12-13",25411,40,18968],["Tattnall","2021-12-14",25411,49,19017],["Tattnall","2021-12-15",25411,64,19081],["Tattnall","2021-12-16",25411,25,19106],["Tattnall","2021-12-17",25411,47,19153],["Tattnall","2021-12-18",25411,16,19169],["Tattnall","2021-12-19",25411,16,19185],["Tattnall","2021-12-20",25411,38,19223],["Tattnall","2021-12-21",25411,37,19260],["Tattnall","2021-12-22",25411,30,19290],["Tattnall","2021-12-23",25411,13,19303],["Tattnall","2021-12-24",25411,9,19312],["Tattnall","2021-12-26",25411,2,19314],["Tattnall","2021-12-27",25411,41,19355],["Tattnall","2021-12-28",25411,61,19416],["Tattnall","2021-12-29",25411,98,19514],["Tattnall","2021-12-30",25411,38,19552],["Tattnall","2021-12-31",25411,35,19587],["Tattnall","2022-01-01",25411,2,19589],["Tattnall","2022-01-02",25411,11,19600],["Tattnall","2022-01-03",25411,10,19610],["Taylor","2020-12-21",7958,1,1],["Taylor","2020-12-22",7958,4,5],["Taylor","2020-12-23",7958,8,13],["Taylor","2020-12-24",7958,3,16],["Taylor","2020-12-26",7958,1,17],["Taylor","2020-12-28",7958,5,22],["Taylor","2020-12-29",7958,10,32],["Taylor","2020-12-30",7958,1,33],["Taylor","2020-12-31",7958,6,39],["Taylor","2021-01-01",7958,1,40],["Taylor","2021-01-02",7958,1,41],["Taylor","2021-01-03",7958,45,86],["Taylor","2021-01-04",7958,7,93],["Taylor","2021-01-05",7958,27,120],["Taylor","2021-01-06",7958,12,132],["Taylor","2021-01-07",7958,29,161],["Taylor","2021-01-08",7958,5,166],["Taylor","2021-01-09",7958,1,167],["Taylor","2021-01-11",7958,52,219],["Taylor","2021-01-12",7958,60,279],["Taylor","2021-01-13",7958,35,314],["Taylor","2021-01-14",7958,78,392],["Taylor","2021-01-15",7958,28,420],["Taylor","2021-01-16",7958,3,423],["Taylor","2021-01-17",7958,3,426],["Taylor","2021-01-18",7958,135,561],["Taylor","2021-01-19",7958,46,607],["Taylor","2021-01-20",7958,91,698],["Taylor","2021-01-21",7958,28,726],["Taylor","2021-01-22",7958,32,758],["Taylor","2021-01-23",7958,1,759],["Taylor","2021-01-24",7958,56,815],["Taylor","2021-01-25",7958,14,829],["Taylor","2021-01-26",7958,33,862],["Taylor","2021-01-27",7958,30,892],["Taylor","2021-01-28",7958,8,900],["Taylor","2021-01-29",7958,20,920],["Taylor","2021-01-31",7958,2,922],["Taylor","2021-02-01",7958,14,936],["Taylor","2021-02-02",7958,46,982],["Taylor","2021-02-03",7958,42,1024],["Taylor","2021-02-04",7958,52,1076],["Taylor","2021-02-05",7958,25,1101],["Taylor","2021-02-06",7958,1,1102],["Taylor","2021-02-07",7958,1,1103],["Taylor","2021-02-08",7958,54,1157],["Taylor","2021-02-09",7958,80,1237],["Taylor","2021-02-10",7958,18,1255],["Taylor","2021-02-11",7958,104,1359],["Taylor","2021-02-12",7958,35,1394],["Taylor","2021-02-13",7958,4,1398],["Taylor","2021-02-14",7958,1,1399],["Taylor","2021-02-15",7958,101,1500],["Taylor","2021-02-16",7958,82,1582],["Taylor","2021-02-17",7958,56,1638],["Taylor","2021-02-18",7958,115,1753],["Taylor","2021-02-19",7958,36,1789],["Taylor","2021-02-20",7958,1,1790],["Taylor","2021-02-21",7958,1,1791],["Taylor","2021-02-22",7958,9,1800],["Taylor","2021-02-23",7958,9,1809],["Taylor","2021-02-24",7958,26,1835],["Taylor","2021-02-25",7958,111,1946],["Taylor","2021-02-26",7958,29,1975],["Taylor","2021-03-01",7958,15,1990],["Taylor","2021-03-02",7958,49,2039],["Taylor","2021-03-03",7958,49,2088],["Taylor","2021-03-04",7958,58,2146],["Taylor","2021-03-05",7958,27,2173],["Taylor","2021-03-07",7958,1,2174],["Taylor","2021-03-08",7958,20,2194],["Taylor","2021-03-09",7958,53,2247],["Taylor","2021-03-10",7958,35,2282],["Taylor","2021-03-11",7958,71,2353],["Taylor","2021-03-12",7958,28,2381],["Taylor","2021-03-13",7958,4,2385],["Taylor","2021-03-14",7958,2,2387],["Taylor","2021-03-15",7958,31,2418],["Taylor","2021-03-16",7958,34,2452],["Taylor","2021-03-17",7958,58,2510],["Taylor","2021-03-18",7958,39,2549],["Taylor","2021-03-19",7958,77,2626],["Taylor","2021-03-22",7958,49,2675],["Taylor","2021-03-23",7958,134,2809],["Taylor","2021-03-24",7958,73,2882],["Taylor","2021-03-25",7958,147,3029],["Taylor","2021-03-26",7958,57,3086],["Taylor","2021-03-27",7958,2,3088],["Taylor","2021-03-28",7958,3,3091],["Taylor","2021-03-29",7958,54,3145],["Taylor","2021-03-30",7958,65,3210],["Taylor","2021-03-31",7958,50,3260],["Taylor","2021-04-01",7958,99,3359],["Taylor","2021-04-02",7958,37,3396],["Taylor","2021-04-03",7958,5,3401],["Taylor","2021-04-04",7958,3,3404],["Taylor","2021-04-05",7958,18,3422],["Taylor","2021-04-06",7958,73,3495],["Taylor","2021-04-07",7958,56,3551],["Taylor","2021-04-08",7958,63,3614],["Taylor","2021-04-09",7958,57,3671],["Taylor","2021-04-10",7958,9,3680],["Taylor","2021-04-11",7958,2,3682],["Taylor","2021-04-12",7958,32,3714],["Taylor","2021-04-13",7958,45,3759],["Taylor","2021-04-14",7958,42,3801],["Taylor","2021-04-15",7958,49,3850],["Taylor","2021-04-16",7958,102,3952],["Taylor","2021-04-17",7958,14,3966],["Taylor","2021-04-18",7958,1,3967],["Taylor","2021-04-19",7958,33,4000],["Taylor","2021-04-20",7958,126,4126],["Taylor","2021-04-21",7958,74,4200],["Taylor","2021-04-22",7958,46,4246],["Taylor","2021-04-23",7958,54,4300],["Taylor","2021-04-24",7958,2,4302],["Taylor","2021-04-25",7958,1,4303],["Taylor","2021-04-26",7958,26,4329],["Taylor","2021-04-27",7958,71,4400],["Taylor","2021-04-28",7958,42,4442],["Taylor","2021-04-29",7958,58,4500],["Taylor","2021-04-30",7958,45,4545],["Taylor","2021-05-01",7958,8,4553],["Taylor","2021-05-02",7958,3,4556],["Taylor","2021-05-03",7958,16,4572],["Taylor","2021-05-04",7958,38,4610],["Taylor","2021-05-05",7958,53,4663],["Taylor","2021-05-06",7958,57,4720],["Taylor","2021-05-07",7958,49,4769],["Taylor","2021-05-08",7958,4,4773],["Taylor","2021-05-09",7958,1,4774],["Taylor","2021-05-10",7958,11,4785],["Taylor","2021-05-11",7958,16,4801],["Taylor","2021-05-12",7958,19,4820],["Taylor","2021-05-13",7958,72,4892],["Taylor","2021-05-14",7958,33,4925],["Taylor","2021-05-15",7958,13,4938],["Taylor","2021-05-16",7958,3,4941],["Taylor","2021-05-17",7958,23,4964],["Taylor","2021-05-18",7958,35,4999],["Taylor","2021-05-19",7958,14,5013],["Taylor","2021-05-20",7958,20,5033],["Taylor","2021-05-21",7958,32,5065],["Taylor","2021-05-22",7958,2,5067],["Taylor","2021-05-23",7958,2,5069],["Taylor","2021-05-24",7958,14,5083],["Taylor","2021-05-25",7958,42,5125],["Taylor","2021-05-26",7958,22,5147],["Taylor","2021-05-27",7958,14,5161],["Taylor","2021-05-28",7958,19,5180],["Taylor","2021-05-29",7958,4,5184],["Taylor","2021-05-30",7958,2,5186],["Taylor","2021-06-01",7958,22,5208],["Taylor","2021-06-02",7958,18,5226],["Taylor","2021-06-03",7958,13,5239],["Taylor","2021-06-04",7958,23,5262],["Taylor","2021-06-05",7958,4,5266],["Taylor","2021-06-06",7958,4,5270],["Taylor","2021-06-07",7958,11,5281],["Taylor","2021-06-08",7958,8,5289],["Taylor","2021-06-09",7958,15,5304],["Taylor","2021-06-10",7958,20,5324],["Taylor","2021-06-11",7958,23,5347],["Taylor","2021-06-12",7958,6,5353],["Taylor","2021-06-14",7958,9,5362],["Taylor","2021-06-15",7958,3,5365],["Taylor","2021-06-16",7958,13,5378],["Taylor","2021-06-17",7958,13,5391],["Taylor","2021-06-18",7958,9,5400],["Taylor","2021-06-19",7958,3,5403],["Taylor","2021-06-20",7958,1,5404],["Taylor","2021-06-21",7958,8,5412],["Taylor","2021-06-22",7958,14,5426],["Taylor","2021-06-23",7958,4,5430],["Taylor","2021-06-24",7958,7,5437],["Taylor","2021-06-25",7958,13,5450],["Taylor","2021-06-26",7958,7,5457],["Taylor","2021-06-27",7958,1,5458],["Taylor","2021-06-28",7958,5,5463],["Taylor","2021-06-29",7958,18,5481],["Taylor","2021-06-30",7958,9,5490],["Taylor","2021-07-01",7958,4,5494],["Taylor","2021-07-02",7958,10,5504],["Taylor","2021-07-03",7958,1,5505],["Taylor","2021-07-05",7958,3,5508],["Taylor","2021-07-06",7958,6,5514],["Taylor","2021-07-07",7958,11,5525],["Taylor","2021-07-08",7958,11,5536],["Taylor","2021-07-09",7958,12,5548],["Taylor","2021-07-10",7958,2,5550],["Taylor","2021-07-11",7958,1,5551],["Taylor","2021-07-12",7958,3,5554],["Taylor","2021-07-13",7958,10,5564],["Taylor","2021-07-14",7958,12,5576],["Taylor","2021-07-15",7958,5,5581],["Taylor","2021-07-16",7958,7,5588],["Taylor","2021-07-17",7958,9,5597],["Taylor","2021-07-19",7958,10,5607],["Taylor","2021-07-20",7958,15,5622],["Taylor","2021-07-21",7958,8,5630],["Taylor","2021-07-22",7958,7,5637],["Taylor","2021-07-23",7958,12,5649],["Taylor","2021-07-24",7958,7,5656],["Taylor","2021-07-25",7958,5,5661],["Taylor","2021-07-26",7958,20,5681],["Taylor","2021-07-27",7958,16,5697],["Taylor","2021-07-28",7958,11,5708],["Taylor","2021-07-29",7958,39,5747],["Taylor","2021-07-30",7958,36,5783],["Taylor","2021-07-31",7958,13,5796],["Taylor","2021-08-01",7958,4,5800],["Taylor","2021-08-02",7958,6,5806],["Taylor","2021-08-03",7958,12,5818],["Taylor","2021-08-04",7958,8,5826],["Taylor","2021-08-05",7958,23,5849],["Taylor","2021-08-06",7958,44,5893],["Taylor","2021-08-07",7958,8,5901],["Taylor","2021-08-08",7958,6,5907],["Taylor","2021-08-09",7958,11,5918],["Taylor","2021-08-10",7958,17,5935],["Taylor","2021-08-11",7958,19,5954],["Taylor","2021-08-12",7958,29,5983],["Taylor","2021-08-13",7958,41,6024],["Taylor","2021-08-14",7958,41,6065],["Taylor","2021-08-15",7958,12,6077],["Taylor","2021-08-16",7958,11,6088],["Taylor","2021-08-17",7958,33,6121],["Taylor","2021-08-18",7958,19,6140],["Taylor","2021-08-19",7958,35,6175],["Taylor","2021-08-20",7958,33,6208],["Taylor","2021-08-21",7958,15,6223],["Taylor","2021-08-22",7958,6,6229],["Taylor","2021-08-23",7958,25,6254],["Taylor","2021-08-24",7958,44,6298],["Taylor","2021-08-25",7958,20,6318],["Taylor","2021-08-26",7958,49,6367],["Taylor","2021-08-27",7958,52,6419],["Taylor","2021-08-28",7958,11,6430],["Taylor","2021-08-29",7958,9,6439],["Taylor","2021-08-30",7958,19,6458],["Taylor","2021-08-31",7958,36,6494],["Taylor","2021-09-01",7958,19,6513],["Taylor","2021-09-02",7958,42,6555],["Taylor","2021-09-03",7958,52,6607],["Taylor","2021-09-04",7958,39,6646],["Taylor","2021-09-05",7958,2,6648],["Taylor","2021-09-07",7958,19,6667],["Taylor","2021-09-08",7958,18,6685],["Taylor","2021-09-09",7958,34,6719],["Taylor","2021-09-10",7958,50,6769],["Taylor","2021-09-11",7958,12,6781],["Taylor","2021-09-12",7958,10,6791],["Taylor","2021-09-13",7958,12,6803],["Taylor","2021-09-14",7958,31,6834],["Taylor","2021-09-15",7958,15,6849],["Taylor","2021-09-16",7958,25,6874],["Taylor","2021-09-17",7958,17,6891],["Taylor","2021-09-18",7958,10,6901],["Taylor","2021-09-19",7958,7,6908],["Taylor","2021-09-20",7958,15,6923],["Taylor","2021-09-21",7958,42,6965],["Taylor","2021-09-22",7958,17,6982],["Taylor","2021-09-23",7958,37,7019],["Taylor","2021-09-24",7958,47,7066],["Taylor","2021-09-25",7958,10,7076],["Taylor","2021-09-26",7958,5,7081],["Taylor","2021-09-27",7958,17,7098],["Taylor","2021-09-28",7958,26,7124],["Taylor","2021-09-29",7958,8,7132],["Taylor","2021-09-30",7958,37,7169],["Taylor","2021-10-01",7958,30,7199],["Taylor","2021-10-02",7958,22,7221],["Taylor","2021-10-03",7958,1,7222],["Taylor","2021-10-04",7958,7,7229],["Taylor","2021-10-05",7958,33,7262],["Taylor","2021-10-06",7958,9,7271],["Taylor","2021-10-07",7958,19,7290],["Taylor","2021-10-08",7958,13,7303],["Taylor","2021-10-09",7958,5,7308],["Taylor","2021-10-10",7958,2,7310],["Taylor","2021-10-11",7958,12,7322],["Taylor","2021-10-12",7958,18,7340],["Taylor","2021-10-13",7958,8,7348],["Taylor","2021-10-14",7958,6,7354],["Taylor","2021-10-15",7958,19,7373],["Taylor","2021-10-16",7958,3,7376],["Taylor","2021-10-17",7958,3,7379],["Taylor","2021-10-18",7958,10,7389],["Taylor","2021-10-19",7958,10,7399],["Taylor","2021-10-20",7958,12,7411],["Taylor","2021-10-21",7958,9,7420],["Taylor","2021-10-22",7958,16,7436],["Taylor","2021-10-23",7958,2,7438],["Taylor","2021-10-24",7958,1,7439],["Taylor","2021-10-25",7958,23,7462],["Taylor","2021-10-26",7958,50,7512],["Taylor","2021-10-27",7958,28,7540],["Taylor","2021-10-28",7958,30,7570],["Taylor","2021-10-29",7958,106,7676],["Taylor","2021-10-30",7958,1,7677],["Taylor","2021-10-31",7958,3,7680],["Taylor","2021-11-01",7958,34,7714],["Taylor","2021-11-02",7958,33,7747],["Taylor","2021-11-03",7958,51,7798],["Taylor","2021-11-04",7958,46,7844],["Taylor","2021-11-05",7958,36,7880],["Taylor","2021-11-06",7958,28,7908],["Taylor","2021-11-07",7958,1,7909],["Taylor","2021-11-08",7958,30,7939],["Taylor","2021-11-09",7958,36,7975],["Taylor","2021-11-10",7958,22,7997],["Taylor","2021-11-11",7958,19,8016],["Taylor","2021-11-12",7958,22,8038],["Taylor","2021-11-13",7958,2,8040],["Taylor","2021-11-14",7958,3,8043],["Taylor","2021-11-15",7958,22,8065],["Taylor","2021-11-16",7958,39,8104],["Taylor","2021-11-17",7958,38,8142],["Taylor","2021-11-18",7958,18,8160],["Taylor","2021-11-19",7958,33,8193],["Taylor","2021-11-20",7958,9,8202],["Taylor","2021-11-21",7958,6,8208],["Taylor","2021-11-22",7958,33,8241],["Taylor","2021-11-23",7958,23,8264],["Taylor","2021-11-24",7958,12,8276],["Taylor","2021-11-26",7958,9,8285],["Taylor","2021-11-27",7958,4,8289],["Taylor","2021-11-28",7958,3,8292],["Taylor","2021-11-29",7958,27,8319],["Taylor","2021-11-30",7958,34,8353],["Taylor","2021-12-01",7958,51,8404],["Taylor","2021-12-02",7958,39,8443],["Taylor","2021-12-03",7958,57,8500],["Taylor","2021-12-04",7958,3,8503],["Taylor","2021-12-05",7958,3,8506],["Taylor","2021-12-06",7958,27,8533],["Taylor","2021-12-07",7958,18,8551],["Taylor","2021-12-08",7958,33,8584],["Taylor","2021-12-09",7958,18,8602],["Taylor","2021-12-10",7958,52,8654],["Taylor","2021-12-11",7958,2,8656],["Taylor","2021-12-12",7958,2,8658],["Taylor","2021-12-13",7958,18,8676],["Taylor","2021-12-14",7958,29,8705],["Taylor","2021-12-15",7958,7,8712],["Taylor","2021-12-16",7958,17,8729],["Taylor","2021-12-17",7958,29,8758],["Taylor","2021-12-18",7958,4,8762],["Taylor","2021-12-19",7958,1,8763],["Taylor","2021-12-20",7958,22,8785],["Taylor","2021-12-21",7958,14,8799],["Taylor","2021-12-22",7958,21,8820],["Taylor","2021-12-23",7958,15,8835],["Taylor","2021-12-27",7958,19,8854],["Taylor","2021-12-28",7958,23,8877],["Taylor","2021-12-29",7958,40,8917],["Taylor","2021-12-30",7958,15,8932],["Taylor","2021-12-31",7958,13,8945],["Taylor","2022-01-02",7958,2,8947],["Taylor","2022-01-03",7958,15,8962],["Telfair","2020-12-17",15644,1,1],["Telfair","2020-12-18",15644,4,5],["Telfair","2020-12-20",15644,1,6],["Telfair","2020-12-21",15644,2,8],["Telfair","2020-12-22",15644,2,10],["Telfair","2020-12-23",15644,3,13],["Telfair","2020-12-24",15644,1,14],["Telfair","2020-12-28",15644,29,43],["Telfair","2020-12-29",15644,30,73],["Telfair","2020-12-30",15644,34,107],["Telfair","2020-12-31",15644,36,143],["Telfair","2021-01-01",15644,2,145],["Telfair","2021-01-02",15644,1,146],["Telfair","2021-01-03",15644,7,153],["Telfair","2021-01-04",15644,40,193],["Telfair","2021-01-05",15644,19,212],["Telfair","2021-01-06",15644,16,228],["Telfair","2021-01-07",15644,40,268],["Telfair","2021-01-08",15644,10,278],["Telfair","2021-01-09",15644,10,288],["Telfair","2021-01-10",15644,2,290],["Telfair","2021-01-11",15644,121,411],["Telfair","2021-01-12",15644,169,580],["Telfair","2021-01-13",15644,28,608],["Telfair","2021-01-14",15644,16,624],["Telfair","2021-01-15",15644,29,653],["Telfair","2021-01-16",15644,3,656],["Telfair","2021-01-17",15644,1,657],["Telfair","2021-01-18",15644,45,702],["Telfair","2021-01-19",15644,195,897],["Telfair","2021-01-20",15644,58,955],["Telfair","2021-01-21",15644,49,1004],["Telfair","2021-01-22",15644,7,1011],["Telfair","2021-01-23",15644,4,1015],["Telfair","2021-01-24",15644,6,1021],["Telfair","2021-01-25",15644,37,1058],["Telfair","2021-01-26",15644,175,1233],["Telfair","2021-01-27",15644,30,1263],["Telfair","2021-01-28",15644,27,1290],["Telfair","2021-01-29",15644,11,1301],["Telfair","2021-01-30",15644,3,1304],["Telfair","2021-01-31",15644,3,1307],["Telfair","2021-02-01",15644,42,1349],["Telfair","2021-02-02",15644,133,1482],["Telfair","2021-02-03",15644,38,1520],["Telfair","2021-02-04",15644,46,1566],["Telfair","2021-02-05",15644,14,1580],["Telfair","2021-02-06",15644,50,1630],["Telfair","2021-02-08",15644,159,1789],["Telfair","2021-02-09",15644,199,1988],["Telfair","2021-02-10",15644,52,2040],["Telfair","2021-02-11",15644,28,2068],["Telfair","2021-02-12",15644,36,2104],["Telfair","2021-02-13",15644,1,2105],["Telfair","2021-02-14",15644,2,2107],["Telfair","2021-02-15",15644,28,2135],["Telfair","2021-02-16",15644,230,2365],["Telfair","2021-02-17",15644,17,2382],["Telfair","2021-02-18",15644,14,2396],["Telfair","2021-02-19",15644,6,2402],["Telfair","2021-02-20",15644,3,2405],["Telfair","2021-02-22",15644,27,2432],["Telfair","2021-02-23",15644,206,2638],["Telfair","2021-02-24",15644,17,2655],["Telfair","2021-02-25",15644,34,2689],["Telfair","2021-02-26",15644,9,2698],["Telfair","2021-02-27",15644,1,2699],["Telfair","2021-02-28",15644,1,2700],["Telfair","2021-03-01",15644,27,2727],["Telfair","2021-03-02",15644,175,2902],["Telfair","2021-03-03",15644,34,2936],["Telfair","2021-03-04",15644,10,2946],["Telfair","2021-03-05",15644,2,2948],["Telfair","2021-03-06",15644,2,2950],["Telfair","2021-03-07",15644,1,2951],["Telfair","2021-03-08",15644,13,2964],["Telfair","2021-03-09",15644,184,3148],["Telfair","2021-03-10",15644,19,3167],["Telfair","2021-03-11",15644,20,3187],["Telfair","2021-03-12",15644,27,3214],["Telfair","2021-03-13",15644,3,3217],["Telfair","2021-03-14",15644,2,3219],["Telfair","2021-03-15",15644,80,3299],["Telfair","2021-03-16",15644,175,3474],["Telfair","2021-03-17",15644,32,3506],["Telfair","2021-03-18",15644,20,3526],["Telfair","2021-03-19",15644,12,3538],["Telfair","2021-03-20",15644,4,3542],["Telfair","2021-03-21",15644,1,3543],["Telfair","2021-03-22",15644,25,3568],["Telfair","2021-03-23",15644,135,3703],["Telfair","2021-03-24",15644,19,3722],["Telfair","2021-03-25",15644,24,3746],["Telfair","2021-03-26",15644,14,3760],["Telfair","2021-03-27",15644,3,3763],["Telfair","2021-03-28",15644,4,3767],["Telfair","2021-03-29",15644,40,3807],["Telfair","2021-03-30",15644,143,3950],["Telfair","2021-03-31",15644,32,3982],["Telfair","2021-04-01",15644,37,4019],["Telfair","2021-04-02",15644,37,4056],["Telfair","2021-04-03",15644,23,4079],["Telfair","2021-04-04",15644,2,4081],["Telfair","2021-04-05",15644,25,4106],["Telfair","2021-04-06",15644,142,4248],["Telfair","2021-04-07",15644,29,4277],["Telfair","2021-04-08",15644,27,4304],["Telfair","2021-04-09",15644,42,4346],["Telfair","2021-04-10",15644,22,4368],["Telfair","2021-04-11",15644,2,4370],["Telfair","2021-04-12",15644,74,4444],["Telfair","2021-04-13",15644,190,4634],["Telfair","2021-04-14",15644,118,4752],["Telfair","2021-04-15",15644,25,4777],["Telfair","2021-04-16",15644,18,4795],["Telfair","2021-04-17",15644,6,4801],["Telfair","2021-04-18",15644,2,4803],["Telfair","2021-04-19",15644,23,4826],["Telfair","2021-04-20",15644,119,4945],["Telfair","2021-04-21",15644,41,4986],["Telfair","2021-04-22",15644,39,5025],["Telfair","2021-04-23",15644,47,5072],["Telfair","2021-04-24",15644,19,5091],["Telfair","2021-04-25",15644,4,5095],["Telfair","2021-04-26",15644,25,5120],["Telfair","2021-04-27",15644,101,5221],["Telfair","2021-04-28",15644,26,5247],["Telfair","2021-04-29",15644,29,5276],["Telfair","2021-04-30",15644,23,5299],["Telfair","2021-05-01",15644,15,5314],["Telfair","2021-05-02",15644,3,5317],["Telfair","2021-05-03",15644,25,5342],["Telfair","2021-05-04",15644,17,5359],["Telfair","2021-05-05",15644,84,5443],["Telfair","2021-05-06",15644,14,5457],["Telfair","2021-05-07",15644,18,5475],["Telfair","2021-05-08",15644,11,5486],["Telfair","2021-05-09",15644,2,5488],["Telfair","2021-05-10",15644,10,5498],["Telfair","2021-05-11",15644,41,5539],["Telfair","2021-05-12",15644,61,5600],["Telfair","2021-05-13",15644,27,5627],["Telfair","2021-05-14",15644,16,5643],["Telfair","2021-05-15",15644,9,5652],["Telfair","2021-05-16",15644,3,5655],["Telfair","2021-05-17",15644,18,5673],["Telfair","2021-05-18",15644,125,5798],["Telfair","2021-05-19",15644,65,5863],["Telfair","2021-05-20",15644,39,5902],["Telfair","2021-05-21",15644,11,5913],["Telfair","2021-05-22",15644,8,5921],["Telfair","2021-05-23",15644,2,5923],["Telfair","2021-05-24",15644,15,5938],["Telfair","2021-05-25",15644,22,5960],["Telfair","2021-05-26",15644,48,6008],["Telfair","2021-05-27",15644,15,6023],["Telfair","2021-05-28",15644,15,6038],["Telfair","2021-05-29",15644,10,6048],["Telfair","2021-05-30",15644,1,6049],["Telfair","2021-05-31",15644,4,6053],["Telfair","2021-06-01",15644,25,6078],["Telfair","2021-06-02",15644,34,6112],["Telfair","2021-06-03",15644,20,6132],["Telfair","2021-06-04",15644,13,6145],["Telfair","2021-06-05",15644,4,6149],["Telfair","2021-06-06",15644,5,6154],["Telfair","2021-06-07",15644,18,6172],["Telfair","2021-06-08",15644,16,6188],["Telfair","2021-06-09",15644,21,6209],["Telfair","2021-06-10",15644,15,6224],["Telfair","2021-06-11",15644,16,6240],["Telfair","2021-06-12",15644,18,6258],["Telfair","2021-06-13",15644,2,6260],["Telfair","2021-06-14",15644,16,6276],["Telfair","2021-06-15",15644,8,6284],["Telfair","2021-06-16",15644,28,6312],["Telfair","2021-06-17",15644,9,6321],["Telfair","2021-06-18",15644,11,6332],["Telfair","2021-06-19",15644,3,6335],["Telfair","2021-06-21",15644,8,6343],["Telfair","2021-06-22",15644,11,6354],["Telfair","2021-06-23",15644,19,6373],["Telfair","2021-06-24",15644,9,6382],["Telfair","2021-06-25",15644,13,6395],["Telfair","2021-06-26",15644,3,6398],["Telfair","2021-06-27",15644,4,6402],["Telfair","2021-06-28",15644,6,6408],["Telfair","2021-06-29",15644,15,6423],["Telfair","2021-06-30",15644,13,6436],["Telfair","2021-07-01",15644,22,6458],["Telfair","2021-07-02",15644,3,6461],["Telfair","2021-07-03",15644,4,6465],["Telfair","2021-07-04",15644,1,6466],["Telfair","2021-07-05",15644,8,6474],["Telfair","2021-07-06",15644,15,6489],["Telfair","2021-07-07",15644,11,6500],["Telfair","2021-07-08",15644,6,6506],["Telfair","2021-07-09",15644,16,6522],["Telfair","2021-07-10",15644,2,6524],["Telfair","2021-07-11",15644,3,6527],["Telfair","2021-07-12",15644,16,6543],["Telfair","2021-07-13",15644,13,6556],["Telfair","2021-07-14",15644,14,6570],["Telfair","2021-07-15",15644,7,6577],["Telfair","2021-07-16",15644,13,6590],["Telfair","2021-07-17",15644,2,6592],["Telfair","2021-07-18",15644,3,6595],["Telfair","2021-07-19",15644,12,6607],["Telfair","2021-07-20",15644,18,6625],["Telfair","2021-07-21",15644,25,6650],["Telfair","2021-07-22",15644,14,6664],["Telfair","2021-07-23",15644,12,6676],["Telfair","2021-07-24",15644,16,6692],["Telfair","2021-07-25",15644,2,6694],["Telfair","2021-07-26",15644,16,6710],["Telfair","2021-07-27",15644,32,6742],["Telfair","2021-07-28",15644,29,6771],["Telfair","2021-07-29",15644,26,6797],["Telfair","2021-07-30",15644,26,6823],["Telfair","2021-07-31",15644,5,6828],["Telfair","2021-08-01",15644,3,6831],["Telfair","2021-08-02",15644,39,6870],["Telfair","2021-08-03",15644,33,6903],["Telfair","2021-08-04",15644,19,6922],["Telfair","2021-08-05",15644,58,6980],["Telfair","2021-08-06",15644,29,7009],["Telfair","2021-08-07",15644,11,7020],["Telfair","2021-08-08",15644,15,7035],["Telfair","2021-08-09",15644,33,7068],["Telfair","2021-08-10",15644,48,7116],["Telfair","2021-08-11",15644,30,7146],["Telfair","2021-08-12",15644,42,7188],["Telfair","2021-08-13",15644,41,7229],["Telfair","2021-08-14",15644,15,7244],["Telfair","2021-08-15",15644,5,7249],["Telfair","2021-08-16",15644,32,7281],["Telfair","2021-08-17",15644,46,7327],["Telfair","2021-08-18",15644,39,7366],["Telfair","2021-08-19",15644,45,7411],["Telfair","2021-08-20",15644,64,7475],["Telfair","2021-08-21",15644,14,7489],["Telfair","2021-08-22",15644,9,7498],["Telfair","2021-08-23",15644,34,7532],["Telfair","2021-08-24",15644,38,7570],["Telfair","2021-08-25",15644,20,7590],["Telfair","2021-08-26",15644,30,7620],["Telfair","2021-08-27",15644,49,7669],["Telfair","2021-08-28",15644,16,7685],["Telfair","2021-08-29",15644,10,7695],["Telfair","2021-08-30",15644,45,7740],["Telfair","2021-08-31",15644,72,7812],["Telfair","2021-09-01",15644,47,7859],["Telfair","2021-09-02",15644,55,7914],["Telfair","2021-09-03",15644,32,7946],["Telfair","2021-09-04",15644,22,7968],["Telfair","2021-09-05",15644,7,7975],["Telfair","2021-09-06",15644,7,7982],["Telfair","2021-09-07",15644,46,8028],["Telfair","2021-09-08",15644,37,8065],["Telfair","2021-09-09",15644,53,8118],["Telfair","2021-09-10",15644,46,8164],["Telfair","2021-09-11",15644,9,8173],["Telfair","2021-09-12",15644,7,8180],["Telfair","2021-09-13",15644,24,8204],["Telfair","2021-09-14",15644,37,8241],["Telfair","2021-09-15",15644,43,8284],["Telfair","2021-09-16",15644,30,8314],["Telfair","2021-09-17",15644,42,8356],["Telfair","2021-09-18",15644,15,8371],["Telfair","2021-09-19",15644,2,8373],["Telfair","2021-09-20",15644,16,8389],["Telfair","2021-09-21",15644,40,8429],["Telfair","2021-09-22",15644,28,8457],["Telfair","2021-09-23",15644,27,8484],["Telfair","2021-09-24",15644,41,8525],["Telfair","2021-09-25",15644,11,8536],["Telfair","2021-09-26",15644,8,8544],["Telfair","2021-09-27",15644,10,8554],["Telfair","2021-09-28",15644,31,8585],["Telfair","2021-09-29",15644,15,8600],["Telfair","2021-09-30",15644,28,8628],["Telfair","2021-10-01",15644,17,8645],["Telfair","2021-10-02",15644,9,8654],["Telfair","2021-10-03",15644,2,8656],["Telfair","2021-10-04",15644,15,8671],["Telfair","2021-10-05",15644,28,8699],["Telfair","2021-10-06",15644,21,8720],["Telfair","2021-10-07",15644,13,8733],["Telfair","2021-10-08",15644,20,8753],["Telfair","2021-10-09",15644,6,8759],["Telfair","2021-10-10",15644,1,8760],["Telfair","2021-10-11",15644,6,8766],["Telfair","2021-10-12",15644,25,8791],["Telfair","2021-10-13",15644,11,8802],["Telfair","2021-10-14",15644,14,8816],["Telfair","2021-10-15",15644,14,8830],["Telfair","2021-10-16",15644,4,8834],["Telfair","2021-10-17",15644,4,8838],["Telfair","2021-10-18",15644,16,8854],["Telfair","2021-10-19",15644,13,8867],["Telfair","2021-10-20",15644,10,8877],["Telfair","2021-10-21",15644,9,8886],["Telfair","2021-10-22",15644,21,8907],["Telfair","2021-10-23",15644,12,8919],["Telfair","2021-10-24",15644,2,8921],["Telfair","2021-10-25",15644,27,8948],["Telfair","2021-10-26",15644,29,8977],["Telfair","2021-10-27",15644,38,9015],["Telfair","2021-10-28",15644,59,9074],["Telfair","2021-10-29",15644,44,9118],["Telfair","2021-10-30",15644,3,9121],["Telfair","2021-10-31",15644,6,9127],["Telfair","2021-11-01",15644,54,9181],["Telfair","2021-11-02",15644,89,9270],["Telfair","2021-11-03",15644,48,9318],["Telfair","2021-11-04",15644,60,9378],["Telfair","2021-11-05",15644,18,9396],["Telfair","2021-11-06",15644,17,9413],["Telfair","2021-11-07",15644,6,9419],["Telfair","2021-11-08",15644,21,9440],["Telfair","2021-11-09",15644,59,9499],["Telfair","2021-11-10",15644,48,9547],["Telfair","2021-11-11",15644,20,9567],["Telfair","2021-11-12",15644,30,9597],["Telfair","2021-11-13",15644,6,9603],["Telfair","2021-11-14",15644,4,9607],["Telfair","2021-11-15",15644,24,9631],["Telfair","2021-11-16",15644,63,9694],["Telfair","2021-11-17",15644,55,9749],["Telfair","2021-11-18",15644,74,9823],["Telfair","2021-11-19",15644,27,9850],["Telfair","2021-11-20",15644,9,9859],["Telfair","2021-11-21",15644,2,9861],["Telfair","2021-11-22",15644,20,9881],["Telfair","2021-11-23",15644,47,9928],["Telfair","2021-11-24",15644,18,9946],["Telfair","2021-11-26",15644,6,9952],["Telfair","2021-11-27",15644,7,9959],["Telfair","2021-11-28",15644,3,9962],["Telfair","2021-11-29",15644,22,9984],["Telfair","2021-11-30",15644,123,10107],["Telfair","2021-12-01",15644,30,10137],["Telfair","2021-12-02",15644,43,10180],["Telfair","2021-12-03",15644,21,10201],["Telfair","2021-12-04",15644,13,10214],["Telfair","2021-12-05",15644,2,10216],["Telfair","2021-12-06",15644,11,10227],["Telfair","2021-12-07",15644,42,10269],["Telfair","2021-12-08",15644,26,10295],["Telfair","2021-12-09",15644,28,10323],["Telfair","2021-12-10",15644,16,10339],["Telfair","2021-12-11",15644,3,10342],["Telfair","2021-12-12",15644,2,10344],["Telfair","2021-12-13",15644,11,10355],["Telfair","2021-12-14",15644,29,10384],["Telfair","2021-12-15",15644,22,10406],["Telfair","2021-12-16",15644,25,10431],["Telfair","2021-12-17",15644,9,10440],["Telfair","2021-12-18",15644,11,10451],["Telfair","2021-12-19",15644,1,10452],["Telfair","2021-12-20",15644,28,10480],["Telfair","2021-12-21",15644,40,10520],["Telfair","2021-12-22",15644,26,10546],["Telfair","2021-12-23",15644,9,10555],["Telfair","2021-12-24",15644,2,10557],["Telfair","2021-12-26",15644,7,10564],["Telfair","2021-12-27",15644,14,10578],["Telfair","2021-12-28",15644,50,10628],["Telfair","2021-12-29",15644,20,10648],["Telfair","2021-12-30",15644,38,10686],["Telfair","2021-12-31",15644,12,10698],["Telfair","2022-01-01",15644,1,10699],["Telfair","2022-01-02",15644,3,10702],["Telfair","2022-01-03",15644,11,10713],["Terrell","2020-12-17",8467,2,2],["Terrell","2020-12-18",8467,4,6],["Terrell","2020-12-19",8467,1,7],["Terrell","2020-12-20",8467,1,8],["Terrell","2020-12-21",8467,6,14],["Terrell","2020-12-22",8467,7,21],["Terrell","2020-12-23",8467,17,38],["Terrell","2020-12-24",8467,1,39],["Terrell","2020-12-26",8467,4,43],["Terrell","2020-12-28",8467,7,50],["Terrell","2020-12-29",8467,8,58],["Terrell","2020-12-30",8467,7,65],["Terrell","2020-12-31",8467,2,67],["Terrell","2021-01-01",8467,5,72],["Terrell","2021-01-04",8467,17,89],["Terrell","2021-01-05",8467,2,91],["Terrell","2021-01-06",8467,36,127],["Terrell","2021-01-07",8467,20,147],["Terrell","2021-01-08",8467,15,162],["Terrell","2021-01-09",8467,1,163],["Terrell","2021-01-10",8467,6,169],["Terrell","2021-01-11",8467,31,200],["Terrell","2021-01-12",8467,45,245],["Terrell","2021-01-13",8467,73,318],["Terrell","2021-01-14",8467,65,383],["Terrell","2021-01-15",8467,71,454],["Terrell","2021-01-16",8467,29,483],["Terrell","2021-01-17",8467,8,491],["Terrell","2021-01-18",8467,108,599],["Terrell","2021-01-19",8467,75,674],["Terrell","2021-01-20",8467,65,739],["Terrell","2021-01-21",8467,63,802],["Terrell","2021-01-22",8467,71,873],["Terrell","2021-01-23",8467,4,877],["Terrell","2021-01-25",8467,67,944],["Terrell","2021-01-26",8467,92,1036],["Terrell","2021-01-27",8467,92,1128],["Terrell","2021-01-28",8467,70,1198],["Terrell","2021-01-29",8467,55,1253],["Terrell","2021-01-31",8467,6,1259],["Terrell","2021-02-01",8467,50,1309],["Terrell","2021-02-02",8467,51,1360],["Terrell","2021-02-03",8467,55,1415],["Terrell","2021-02-04",8467,72,1487],["Terrell","2021-02-05",8467,62,1549],["Terrell","2021-02-06",8467,26,1575],["Terrell","2021-02-07",8467,7,1582],["Terrell","2021-02-08",8467,78,1660],["Terrell","2021-02-09",8467,79,1739],["Terrell","2021-02-10",8467,81,1820],["Terrell","2021-02-11",8467,65,1885],["Terrell","2021-02-12",8467,77,1962],["Terrell","2021-02-13",8467,9,1971],["Terrell","2021-02-14",8467,2,1973],["Terrell","2021-02-15",8467,66,2039],["Terrell","2021-02-16",8467,67,2106],["Terrell","2021-02-17",8467,55,2161],["Terrell","2021-02-18",8467,117,2278],["Terrell","2021-02-19",8467,86,2364],["Terrell","2021-02-20",8467,6,2370],["Terrell","2021-02-22",8467,63,2433],["Terrell","2021-02-23",8467,100,2533],["Terrell","2021-02-24",8467,46,2579],["Terrell","2021-02-25",8467,75,2654],["Terrell","2021-02-26",8467,82,2736],["Terrell","2021-02-27",8467,5,2741],["Terrell","2021-02-28",8467,1,2742],["Terrell","2021-03-01",8467,61,2803],["Terrell","2021-03-02",8467,92,2895],["Terrell","2021-03-03",8467,69,2964],["Terrell","2021-03-04",8467,67,3031],["Terrell","2021-03-05",8467,52,3083],["Terrell","2021-03-06",8467,1,3084],["Terrell","2021-03-07",8467,2,3086],["Terrell","2021-03-08",8467,56,3142],["Terrell","2021-03-09",8467,71,3213],["Terrell","2021-03-10",8467,53,3266],["Terrell","2021-03-11",8467,53,3319],["Terrell","2021-03-12",8467,87,3406],["Terrell","2021-03-13",8467,14,3420],["Terrell","2021-03-14",8467,1,3421],["Terrell","2021-03-15",8467,59,3480],["Terrell","2021-03-16",8467,104,3584],["Terrell","2021-03-17",8467,68,3652],["Terrell","2021-03-18",8467,39,3691],["Terrell","2021-03-19",8467,68,3759],["Terrell","2021-03-20",8467,16,3775],["Terrell","2021-03-21",8467,1,3776],["Terrell","2021-03-22",8467,54,3830],["Terrell","2021-03-23",8467,51,3881],["Terrell","2021-03-24",8467,72,3953],["Terrell","2021-03-25",8467,54,4007],["Terrell","2021-03-26",8467,80,4087],["Terrell","2021-03-27",8467,6,4093],["Terrell","2021-03-28",8467,5,4098],["Terrell","2021-03-29",8467,50,4148],["Terrell","2021-03-30",8467,78,4226],["Terrell","2021-03-31",8467,107,4333],["Terrell","2021-04-01",8467,53,4386],["Terrell","2021-04-02",8467,30,4416],["Terrell","2021-04-03",8467,7,4423],["Terrell","2021-04-04",8467,2,4425],["Terrell","2021-04-05",8467,52,4477],["Terrell","2021-04-06",8467,67,4544],["Terrell","2021-04-07",8467,72,4616],["Terrell","2021-04-08",8467,57,4673],["Terrell","2021-04-09",8467,97,4770],["Terrell","2021-04-10",8467,8,4778],["Terrell","2021-04-11",8467,3,4781],["Terrell","2021-04-12",8467,66,4847],["Terrell","2021-04-13",8467,85,4932],["Terrell","2021-04-14",8467,88,5020],["Terrell","2021-04-15",8467,42,5062],["Terrell","2021-04-16",8467,89,5151],["Terrell","2021-04-17",8467,2,5153],["Terrell","2021-04-18",8467,6,5159],["Terrell","2021-04-19",8467,60,5219],["Terrell","2021-04-20",8467,66,5285],["Terrell","2021-04-21",8467,50,5335],["Terrell","2021-04-22",8467,57,5392],["Terrell","2021-04-23",8467,78,5470],["Terrell","2021-04-24",8467,7,5477],["Terrell","2021-04-25",8467,3,5480],["Terrell","2021-04-26",8467,48,5528],["Terrell","2021-04-27",8467,66,5594],["Terrell","2021-04-28",8467,74,5668],["Terrell","2021-04-29",8467,35,5703],["Terrell","2021-04-30",8467,46,5749],["Terrell","2021-05-01",8467,8,5757],["Terrell","2021-05-02",8467,4,5761],["Terrell","2021-05-03",8467,44,5805],["Terrell","2021-05-04",8467,44,5849],["Terrell","2021-05-05",8467,36,5885],["Terrell","2021-05-06",8467,26,5911],["Terrell","2021-05-07",8467,36,5947],["Terrell","2021-05-08",8467,8,5955],["Terrell","2021-05-10",8467,23,5978],["Terrell","2021-05-11",8467,45,6023],["Terrell","2021-05-12",8467,42,6065],["Terrell","2021-05-13",8467,28,6093],["Terrell","2021-05-14",8467,40,6133],["Terrell","2021-05-15",8467,1,6134],["Terrell","2021-05-16",8467,8,6142],["Terrell","2021-05-17",8467,35,6177],["Terrell","2021-05-18",8467,40,6217],["Terrell","2021-05-19",8467,51,6268],["Terrell","2021-05-20",8467,36,6304],["Terrell","2021-05-21",8467,49,6353],["Terrell","2021-05-22",8467,9,6362],["Terrell","2021-05-23",8467,3,6365],["Terrell","2021-05-24",8467,19,6384],["Terrell","2021-05-25",8467,19,6403],["Terrell","2021-05-26",8467,39,6442],["Terrell","2021-05-27",8467,20,6462],["Terrell","2021-05-28",8467,43,6505],["Terrell","2021-05-29",8467,31,6536],["Terrell","2021-05-31",8467,2,6538],["Terrell","2021-06-01",8467,19,6557],["Terrell","2021-06-02",8467,34,6591],["Terrell","2021-06-03",8467,13,6604],["Terrell","2021-06-04",8467,33,6637],["Terrell","2021-06-05",8467,4,6641],["Terrell","2021-06-06",8467,6,6647],["Terrell","2021-06-07",8467,26,6673],["Terrell","2021-06-08",8467,19,6692],["Terrell","2021-06-09",8467,26,6718],["Terrell","2021-06-10",8467,17,6735],["Terrell","2021-06-11",8467,41,6776],["Terrell","2021-06-12",8467,8,6784],["Terrell","2021-06-13",8467,1,6785],["Terrell","2021-06-14",8467,24,6809],["Terrell","2021-06-15",8467,26,6835],["Terrell","2021-06-16",8467,30,6865],["Terrell","2021-06-17",8467,11,6876],["Terrell","2021-06-18",8467,35,6911],["Terrell","2021-06-19",8467,3,6914],["Terrell","2021-06-20",8467,1,6915],["Terrell","2021-06-21",8467,7,6922],["Terrell","2021-06-22",8467,11,6933],["Terrell","2021-06-23",8467,30,6963],["Terrell","2021-06-24",8467,14,6977],["Terrell","2021-06-25",8467,29,7006],["Terrell","2021-06-26",8467,39,7045],["Terrell","2021-06-27",8467,2,7047],["Terrell","2021-06-28",8467,24,7071],["Terrell","2021-06-29",8467,6,7077],["Terrell","2021-06-30",8467,16,7093],["Terrell","2021-07-01",8467,6,7099],["Terrell","2021-07-02",8467,16,7115],["Terrell","2021-07-03",8467,6,7121],["Terrell","2021-07-05",8467,11,7132],["Terrell","2021-07-06",8467,18,7150],["Terrell","2021-07-07",8467,34,7184],["Terrell","2021-07-08",8467,13,7197],["Terrell","2021-07-09",8467,17,7214],["Terrell","2021-07-10",8467,1,7215],["Terrell","2021-07-11",8467,4,7219],["Terrell","2021-07-12",8467,13,7232],["Terrell","2021-07-13",8467,12,7244],["Terrell","2021-07-14",8467,22,7266],["Terrell","2021-07-15",8467,17,7283],["Terrell","2021-07-16",8467,31,7314],["Terrell","2021-07-17",8467,9,7323],["Terrell","2021-07-18",8467,4,7327],["Terrell","2021-07-19",8467,13,7340],["Terrell","2021-07-20",8467,7,7347],["Terrell","2021-07-21",8467,33,7380],["Terrell","2021-07-22",8467,11,7391],["Terrell","2021-07-23",8467,23,7414],["Terrell","2021-07-24",8467,11,7425],["Terrell","2021-07-25",8467,8,7433],["Terrell","2021-07-26",8467,13,7446],["Terrell","2021-07-27",8467,25,7471],["Terrell","2021-07-28",8467,25,7496],["Terrell","2021-07-29",8467,23,7519],["Terrell","2021-07-30",8467,37,7556],["Terrell","2021-07-31",8467,17,7573],["Terrell","2021-08-01",8467,3,7576],["Terrell","2021-08-02",8467,17,7593],["Terrell","2021-08-03",8467,30,7623],["Terrell","2021-08-04",8467,44,7667],["Terrell","2021-08-05",8467,30,7697],["Terrell","2021-08-06",8467,48,7745],["Terrell","2021-08-07",8467,16,7761],["Terrell","2021-08-08",8467,13,7774],["Terrell","2021-08-09",8467,27,7801],["Terrell","2021-08-10",8467,23,7824],["Terrell","2021-08-11",8467,54,7878],["Terrell","2021-08-12",8467,75,7953],["Terrell","2021-08-13",8467,46,7999],["Terrell","2021-08-14",8467,36,8035],["Terrell","2021-08-15",8467,8,8043],["Terrell","2021-08-16",8467,43,8086],["Terrell","2021-08-17",8467,31,8117],["Terrell","2021-08-18",8467,60,8177],["Terrell","2021-08-19",8467,27,8204],["Terrell","2021-08-20",8467,42,8246],["Terrell","2021-08-21",8467,19,8265],["Terrell","2021-08-22",8467,9,8274],["Terrell","2021-08-23",8467,45,8319],["Terrell","2021-08-24",8467,28,8347],["Terrell","2021-08-25",8467,56,8403],["Terrell","2021-08-26",8467,39,8442],["Terrell","2021-08-27",8467,66,8508],["Terrell","2021-08-28",8467,10,8518],["Terrell","2021-08-29",8467,11,8529],["Terrell","2021-08-30",8467,48,8577],["Terrell","2021-08-31",8467,39,8616],["Terrell","2021-09-01",8467,47,8663],["Terrell","2021-09-02",8467,55,8718],["Terrell","2021-09-03",8467,47,8765],["Terrell","2021-09-04",8467,15,8780],["Terrell","2021-09-05",8467,11,8791],["Terrell","2021-09-06",8467,2,8793],["Terrell","2021-09-07",8467,29,8822],["Terrell","2021-09-08",8467,69,8891],["Terrell","2021-09-09",8467,35,8926],["Terrell","2021-09-10",8467,69,8995],["Terrell","2021-09-11",8467,32,9027],["Terrell","2021-09-12",8467,8,9035],["Terrell","2021-09-13",8467,37,9072],["Terrell","2021-09-14",8467,51,9123],["Terrell","2021-09-15",8467,54,9177],["Terrell","2021-09-16",8467,28,9205],["Terrell","2021-09-17",8467,53,9258],["Terrell","2021-09-18",8467,11,9269],["Terrell","2021-09-19",8467,8,9277],["Terrell","2021-09-20",8467,47,9324],["Terrell","2021-09-21",8467,32,9356],["Terrell","2021-09-22",8467,47,9403],["Terrell","2021-09-23",8467,21,9424],["Terrell","2021-09-24",8467,39,9463],["Terrell","2021-09-25",8467,4,9467],["Terrell","2021-09-26",8467,7,9474],["Terrell","2021-09-27",8467,31,9505],["Terrell","2021-09-28",8467,24,9529],["Terrell","2021-09-29",8467,45,9574],["Terrell","2021-09-30",8467,25,9599],["Terrell","2021-10-01",8467,60,9659],["Terrell","2021-10-02",8467,11,9670],["Terrell","2021-10-03",8467,7,9677],["Terrell","2021-10-04",8467,17,9694],["Terrell","2021-10-05",8467,36,9730],["Terrell","2021-10-06",8467,34,9764],["Terrell","2021-10-07",8467,16,9780],["Terrell","2021-10-08",8467,43,9823],["Terrell","2021-10-09",8467,10,9833],["Terrell","2021-10-10",8467,7,9840],["Terrell","2021-10-11",8467,11,9851],["Terrell","2021-10-12",8467,37,9888],["Terrell","2021-10-13",8467,31,9919],["Terrell","2021-10-14",8467,24,9943],["Terrell","2021-10-15",8467,29,9972],["Terrell","2021-10-16",8467,22,9994],["Terrell","2021-10-17",8467,4,9998],["Terrell","2021-10-18",8467,15,10013],["Terrell","2021-10-19",8467,15,10028],["Terrell","2021-10-20",8467,21,10049],["Terrell","2021-10-21",8467,12,10061],["Terrell","2021-10-22",8467,19,10080],["Terrell","2021-10-23",8467,4,10084],["Terrell","2021-10-24",8467,6,10090],["Terrell","2021-10-25",8467,29,10119],["Terrell","2021-10-26",8467,29,10148],["Terrell","2021-10-27",8467,54,10202],["Terrell","2021-10-28",8467,36,10238],["Terrell","2021-10-29",8467,46,10284],["Terrell","2021-10-30",8467,13,10297],["Terrell","2021-10-31",8467,2,10299],["Terrell","2021-11-01",8467,39,10338],["Terrell","2021-11-02",8467,38,10376],["Terrell","2021-11-03",8467,74,10450],["Terrell","2021-11-04",8467,34,10484],["Terrell","2021-11-05",8467,55,10539],["Terrell","2021-11-06",8467,17,10556],["Terrell","2021-11-07",8467,5,10561],["Terrell","2021-11-08",8467,64,10625],["Terrell","2021-11-09",8467,20,10645],["Terrell","2021-11-10",8467,63,10708],["Terrell","2021-11-11",8467,22,10730],["Terrell","2021-11-12",8467,57,10787],["Terrell","2021-11-13",8467,6,10793],["Terrell","2021-11-14",8467,1,10794],["Terrell","2021-11-15",8467,87,10881],["Terrell","2021-11-16",8467,24,10905],["Terrell","2021-11-17",8467,66,10971],["Terrell","2021-11-18",8467,14,10985],["Terrell","2021-11-19",8467,58,11043],["Terrell","2021-11-20",8467,19,11062],["Terrell","2021-11-21",8467,3,11065],["Terrell","2021-11-22",8467,46,11111],["Terrell","2021-11-23",8467,34,11145],["Terrell","2021-11-24",8467,33,11178],["Terrell","2021-11-26",8467,1,11179],["Terrell","2021-11-27",8467,2,11181],["Terrell","2021-11-28",8467,4,11185],["Terrell","2021-11-29",8467,40,11225],["Terrell","2021-11-30",8467,32,11257],["Terrell","2021-12-01",8467,57,11314],["Terrell","2021-12-02",8467,22,11336],["Terrell","2021-12-03",8467,65,11401],["Terrell","2021-12-04",8467,9,11410],["Terrell","2021-12-05",8467,1,11411],["Terrell","2021-12-06",8467,47,11458],["Terrell","2021-12-07",8467,26,11484],["Terrell","2021-12-08",8467,81,11565],["Terrell","2021-12-09",8467,24,11589],["Terrell","2021-12-10",8467,45,11634],["Terrell","2021-12-11",8467,18,11652],["Terrell","2021-12-12",8467,3,11655],["Terrell","2021-12-13",8467,37,11692],["Terrell","2021-12-14",8467,18,11710],["Terrell","2021-12-15",8467,43,11753],["Terrell","2021-12-16",8467,14,11767],["Terrell","2021-12-17",8467,39,11806],["Terrell","2021-12-18",8467,3,11809],["Terrell","2021-12-19",8467,4,11813],["Terrell","2021-12-20",8467,41,11854],["Terrell","2021-12-21",8467,29,11883],["Terrell","2021-12-22",8467,38,11921],["Terrell","2021-12-23",8467,12,11933],["Terrell","2021-12-24",8467,1,11934],["Terrell","2021-12-26",8467,3,11937],["Terrell","2021-12-27",8467,28,11965],["Terrell","2021-12-28",8467,15,11980],["Terrell","2021-12-29",8467,40,12020],["Terrell","2021-12-30",8467,28,12048],["Terrell","2021-12-31",8467,27,12075],["Terrell","2022-01-01",8467,4,12079],["Terrell","2022-01-02",8467,4,12083],["Terrell","2022-01-03",8467,14,12097],["Thomas","2020-12-12",44431,1,1],["Thomas","2020-12-17",44431,9,10],["Thomas","2020-12-18",44431,29,39],["Thomas","2020-12-19",44431,80,119],["Thomas","2020-12-20",44431,1,120],["Thomas","2020-12-21",44431,106,226],["Thomas","2020-12-22",44431,35,261],["Thomas","2020-12-23",44431,188,449],["Thomas","2020-12-24",44431,8,457],["Thomas","2020-12-26",44431,2,459],["Thomas","2020-12-27",44431,3,462],["Thomas","2020-12-28",44431,131,593],["Thomas","2020-12-29",44431,58,651],["Thomas","2020-12-30",44431,181,832],["Thomas","2020-12-31",44431,31,863],["Thomas","2021-01-01",44431,5,868],["Thomas","2021-01-03",44431,3,871],["Thomas","2021-01-04",44431,210,1081],["Thomas","2021-01-05",44431,58,1139],["Thomas","2021-01-06",44431,166,1305],["Thomas","2021-01-07",44431,62,1367],["Thomas","2021-01-08",44431,158,1525],["Thomas","2021-01-09",44431,2,1527],["Thomas","2021-01-10",44431,3,1530],["Thomas","2021-01-11",44431,362,1892],["Thomas","2021-01-12",44431,387,2279],["Thomas","2021-01-13",44431,431,2710],["Thomas","2021-01-14",44431,656,3366],["Thomas","2021-01-15",44431,221,3587],["Thomas","2021-01-16",44431,49,3636],["Thomas","2021-01-17",44431,3,3639],["Thomas","2021-01-18",44431,296,3935],["Thomas","2021-01-19",44431,532,4467],["Thomas","2021-01-20",44431,432,4899],["Thomas","2021-01-21",44431,454,5353],["Thomas","2021-01-22",44431,289,5642],["Thomas","2021-01-23",44431,61,5703],["Thomas","2021-01-24",44431,3,5706],["Thomas","2021-01-25",44431,358,6064],["Thomas","2021-01-26",44431,493,6557],["Thomas","2021-01-27",44431,376,6933],["Thomas","2021-01-28",44431,401,7334],["Thomas","2021-01-29",44431,353,7687],["Thomas","2021-01-30",44431,3,7690],["Thomas","2021-01-31",44431,2,7692],["Thomas","2021-02-01",44431,275,7967],["Thomas","2021-02-02",44431,380,8347],["Thomas","2021-02-03",44431,377,8724],["Thomas","2021-02-04",44431,605,9329],["Thomas","2021-02-05",44431,313,9642],["Thomas","2021-02-06",44431,46,9688],["Thomas","2021-02-07",44431,3,9691],["Thomas","2021-02-08",44431,387,10078],["Thomas","2021-02-09",44431,616,10694],["Thomas","2021-02-10",44431,364,11058],["Thomas","2021-02-11",44431,162,11220],["Thomas","2021-02-12",44431,174,11394],["Thomas","2021-02-13",44431,99,11493],["Thomas","2021-02-14",44431,2,11495],["Thomas","2021-02-15",44431,205,11700],["Thomas","2021-02-16",44431,189,11889],["Thomas","2021-02-17",44431,337,12226],["Thomas","2021-02-18",44431,474,12700],["Thomas","2021-02-19",44431,187,12887],["Thomas","2021-02-20",44431,58,12945],["Thomas","2021-02-21",44431,2,12947],["Thomas","2021-02-22",44431,204,13151],["Thomas","2021-02-23",44431,516,13667],["Thomas","2021-02-24",44431,288,13955],["Thomas","2021-02-25",44431,356,14311],["Thomas","2021-02-26",44431,287,14598],["Thomas","2021-02-27",44431,6,14604],["Thomas","2021-02-28",44431,7,14611],["Thomas","2021-03-01",44431,258,14869],["Thomas","2021-03-02",44431,151,15020],["Thomas","2021-03-03",44431,317,15337],["Thomas","2021-03-04",44431,109,15446],["Thomas","2021-03-05",44431,199,15645],["Thomas","2021-03-06",44431,14,15659],["Thomas","2021-03-07",44431,22,15681],["Thomas","2021-03-08",44431,449,16130],["Thomas","2021-03-09",44431,204,16334],["Thomas","2021-03-10",44431,265,16599],["Thomas","2021-03-11",44431,194,16793],["Thomas","2021-03-12",44431,207,17000],["Thomas","2021-03-13",44431,106,17106],["Thomas","2021-03-14",44431,25,17131],["Thomas","2021-03-15",44431,312,17443],["Thomas","2021-03-16",44431,254,17697],["Thomas","2021-03-17",44431,381,18078],["Thomas","2021-03-18",44431,120,18198],["Thomas","2021-03-19",44431,186,18384],["Thomas","2021-03-20",44431,26,18410],["Thomas","2021-03-21",44431,22,18432],["Thomas","2021-03-22",44431,309,18741],["Thomas","2021-03-23",44431,175,18916],["Thomas","2021-03-24",44431,339,19255],["Thomas","2021-03-25",44431,342,19597],["Thomas","2021-03-26",44431,304,19901],["Thomas","2021-03-27",44431,17,19918],["Thomas","2021-03-28",44431,23,19941],["Thomas","2021-03-29",44431,503,20444],["Thomas","2021-03-30",44431,342,20786],["Thomas","2021-03-31",44431,401,21187],["Thomas","2021-04-01",44431,325,21512],["Thomas","2021-04-02",44431,403,21915],["Thomas","2021-04-03",44431,33,21948],["Thomas","2021-04-04",44431,48,21996],["Thomas","2021-04-05",44431,428,22424],["Thomas","2021-04-06",44431,206,22630],["Thomas","2021-04-07",44431,399,23029],["Thomas","2021-04-08",44431,230,23259],["Thomas","2021-04-09",44431,270,23529],["Thomas","2021-04-10",44431,44,23573],["Thomas","2021-04-11",44431,39,23612],["Thomas","2021-04-12",44431,270,23882],["Thomas","2021-04-13",44431,206,24088],["Thomas","2021-04-14",44431,373,24461],["Thomas","2021-04-15",44431,196,24657],["Thomas","2021-04-16",44431,249,24906],["Thomas","2021-04-17",44431,23,24929],["Thomas","2021-04-18",44431,16,24945],["Thomas","2021-04-19",44431,288,25233],["Thomas","2021-04-20",44431,219,25452],["Thomas","2021-04-21",44431,245,25697],["Thomas","2021-04-22",44431,305,26002],["Thomas","2021-04-23",44431,336,26338],["Thomas","2021-04-24",44431,26,26364],["Thomas","2021-04-25",44431,15,26379],["Thomas","2021-04-26",44431,231,26610],["Thomas","2021-04-27",44431,153,26763],["Thomas","2021-04-28",44431,305,27068],["Thomas","2021-04-29",44431,179,27247],["Thomas","2021-04-30",44431,204,27451],["Thomas","2021-05-01",44431,38,27489],["Thomas","2021-05-02",44431,15,27504],["Thomas","2021-05-03",44431,124,27628],["Thomas","2021-05-04",44431,155,27783],["Thomas","2021-05-05",44431,189,27972],["Thomas","2021-05-06",44431,133,28105],["Thomas","2021-05-07",44431,109,28214],["Thomas","2021-05-08",44431,26,28240],["Thomas","2021-05-09",44431,7,28247],["Thomas","2021-05-10",44431,82,28329],["Thomas","2021-05-11",44431,182,28511],["Thomas","2021-05-12",44431,124,28635],["Thomas","2021-05-13",44431,149,28784],["Thomas","2021-05-14",44431,108,28892],["Thomas","2021-05-15",44431,38,28930],["Thomas","2021-05-16",44431,25,28955],["Thomas","2021-05-17",44431,114,29069],["Thomas","2021-05-18",44431,172,29241],["Thomas","2021-05-19",44431,260,29501],["Thomas","2021-05-20",44431,171,29672],["Thomas","2021-05-21",44431,184,29856],["Thomas","2021-05-22",44431,26,29882],["Thomas","2021-05-23",44431,21,29903],["Thomas","2021-05-24",44431,52,29955],["Thomas","2021-05-25",44431,133,30088],["Thomas","2021-05-26",44431,86,30174],["Thomas","2021-05-27",44431,107,30281],["Thomas","2021-05-28",44431,24,30305],["Thomas","2021-05-29",44431,24,30329],["Thomas","2021-05-30",44431,9,30338],["Thomas","2021-05-31",44431,13,30351],["Thomas","2021-06-01",44431,115,30466],["Thomas","2021-06-02",44431,76,30542],["Thomas","2021-06-03",44431,115,30657],["Thomas","2021-06-04",44431,76,30733],["Thomas","2021-06-05",44431,23,30756],["Thomas","2021-06-06",44431,30,30786],["Thomas","2021-06-07",44431,58,30844],["Thomas","2021-06-08",44431,91,30935],["Thomas","2021-06-09",44431,74,31009],["Thomas","2021-06-10",44431,231,31240],["Thomas","2021-06-11",44431,71,31311],["Thomas","2021-06-12",44431,30,31341],["Thomas","2021-06-13",44431,19,31360],["Thomas","2021-06-14",44431,57,31417],["Thomas","2021-06-15",44431,90,31507],["Thomas","2021-06-16",44431,54,31561],["Thomas","2021-06-17",44431,94,31655],["Thomas","2021-06-18",44431,57,31712],["Thomas","2021-06-19",44431,34,31746],["Thomas","2021-06-20",44431,7,31753],["Thomas","2021-06-21",44431,43,31796],["Thomas","2021-06-22",44431,92,31888],["Thomas","2021-06-23",44431,53,31941],["Thomas","2021-06-24",44431,91,32032],["Thomas","2021-06-25",44431,52,32084],["Thomas","2021-06-26",44431,19,32103],["Thomas","2021-06-27",44431,13,32116],["Thomas","2021-06-28",44431,30,32146],["Thomas","2021-06-29",44431,66,32212],["Thomas","2021-06-30",44431,37,32249],["Thomas","2021-07-01",44431,94,32343],["Thomas","2021-07-02",44431,44,32387],["Thomas","2021-07-03",44431,11,32398],["Thomas","2021-07-04",44431,4,32402],["Thomas","2021-07-05",44431,34,32436],["Thomas","2021-07-06",44431,49,32485],["Thomas","2021-07-07",44431,32,32517],["Thomas","2021-07-08",44431,77,32594],["Thomas","2021-07-09",44431,61,32655],["Thomas","2021-07-10",44431,32,32687],["Thomas","2021-07-11",44431,14,32701],["Thomas","2021-07-12",44431,33,32734],["Thomas","2021-07-13",44431,99,32833],["Thomas","2021-07-14",44431,50,32883],["Thomas","2021-07-15",44431,87,32970],["Thomas","2021-07-16",44431,59,33029],["Thomas","2021-07-17",44431,38,33067],["Thomas","2021-07-18",44431,13,33080],["Thomas","2021-07-19",44431,40,33120],["Thomas","2021-07-20",44431,97,33217],["Thomas","2021-07-21",44431,63,33280],["Thomas","2021-07-22",44431,120,33400],["Thomas","2021-07-23",44431,116,33516],["Thomas","2021-07-24",44431,52,33568],["Thomas","2021-07-25",44431,25,33593],["Thomas","2021-07-26",44431,92,33685],["Thomas","2021-07-27",44431,150,33835],["Thomas","2021-07-28",44431,148,33983],["Thomas","2021-07-29",44431,176,34159],["Thomas","2021-07-30",44431,151,34310],["Thomas","2021-07-31",44431,70,34380],["Thomas","2021-08-01",44431,44,34424],["Thomas","2021-08-02",44431,113,34537],["Thomas","2021-08-03",44431,151,34688],["Thomas","2021-08-04",44431,369,35057],["Thomas","2021-08-05",44431,185,35242],["Thomas","2021-08-06",44431,155,35397],["Thomas","2021-08-07",44431,75,35472],["Thomas","2021-08-08",44431,70,35542],["Thomas","2021-08-09",44431,115,35657],["Thomas","2021-08-10",44431,158,35815],["Thomas","2021-08-11",44431,238,36053],["Thomas","2021-08-12",44431,176,36229],["Thomas","2021-08-13",44431,157,36386],["Thomas","2021-08-14",44431,88,36474],["Thomas","2021-08-15",44431,56,36530],["Thomas","2021-08-16",44431,129,36659],["Thomas","2021-08-17",44431,194,36853],["Thomas","2021-08-18",44431,344,37197],["Thomas","2021-08-19",44431,199,37396],["Thomas","2021-08-20",44431,290,37686],["Thomas","2021-08-21",44431,113,37799],["Thomas","2021-08-22",44431,65,37864],["Thomas","2021-08-23",44431,134,37998],["Thomas","2021-08-24",44431,180,38178],["Thomas","2021-08-25",44431,481,38659],["Thomas","2021-08-26",44431,226,38885],["Thomas","2021-08-27",44431,213,39098],["Thomas","2021-08-28",44431,110,39208],["Thomas","2021-08-29",44431,64,39272],["Thomas","2021-08-30",44431,136,39408],["Thomas","2021-08-31",44431,129,39537],["Thomas","2021-09-01",44431,321,39858],["Thomas","2021-09-02",44431,203,40061],["Thomas","2021-09-03",44431,161,40222],["Thomas","2021-09-04",44431,73,40295],["Thomas","2021-09-05",44431,34,40329],["Thomas","2021-09-06",44431,7,40336],["Thomas","2021-09-07",44431,149,40485],["Thomas","2021-09-08",44431,257,40742],["Thomas","2021-09-09",44431,149,40891],["Thomas","2021-09-10",44431,216,41107],["Thomas","2021-09-11",44431,65,41172],["Thomas","2021-09-12",44431,41,41213],["Thomas","2021-09-13",44431,105,41318],["Thomas","2021-09-14",44431,108,41426],["Thomas","2021-09-15",44431,188,41614],["Thomas","2021-09-16",44431,141,41755],["Thomas","2021-09-17",44431,111,41866],["Thomas","2021-09-18",44431,52,41918],["Thomas","2021-09-19",44431,27,41945],["Thomas","2021-09-20",44431,70,42015],["Thomas","2021-09-21",44431,95,42110],["Thomas","2021-09-22",44431,153,42263],["Thomas","2021-09-23",44431,105,42368],["Thomas","2021-09-24",44431,105,42473],["Thomas","2021-09-25",44431,46,42519],["Thomas","2021-09-26",44431,29,42548],["Thomas","2021-09-27",44431,280,42828],["Thomas","2021-09-28",44431,303,43131],["Thomas","2021-09-29",44431,307,43438],["Thomas","2021-09-30",44431,245,43683],["Thomas","2021-10-01",44431,304,43987],["Thomas","2021-10-02",44431,36,44023],["Thomas","2021-10-03",44431,19,44042],["Thomas","2021-10-04",44431,50,44092],["Thomas","2021-10-05",44431,82,44174],["Thomas","2021-10-06",44431,264,44438],["Thomas","2021-10-07",44431,69,44507],["Thomas","2021-10-08",44431,73,44580],["Thomas","2021-10-09",44431,18,44598],["Thomas","2021-10-10",44431,5,44603],["Thomas","2021-10-11",44431,36,44639],["Thomas","2021-10-12",44431,44,44683],["Thomas","2021-10-13",44431,216,44899],["Thomas","2021-10-14",44431,52,44951],["Thomas","2021-10-15",44431,32,44983],["Thomas","2021-10-16",44431,35,45018],["Thomas","2021-10-17",44431,20,45038],["Thomas","2021-10-18",44431,38,45076],["Thomas","2021-10-19",44431,58,45134],["Thomas","2021-10-20",44431,177,45311],["Thomas","2021-10-21",44431,51,45362],["Thomas","2021-10-22",44431,54,45416],["Thomas","2021-10-23",44431,25,45441],["Thomas","2021-10-24",44431,15,45456],["Thomas","2021-10-25",44431,67,45523],["Thomas","2021-10-26",44431,94,45617],["Thomas","2021-10-27",44431,201,45818],["Thomas","2021-10-28",44431,167,45985],["Thomas","2021-10-29",44431,74,46059],["Thomas","2021-10-30",44431,23,46082],["Thomas","2021-10-31",44431,20,46102],["Thomas","2021-11-01",44431,54,46156],["Thomas","2021-11-02",44431,133,46289],["Thomas","2021-11-03",44431,197,46486],["Thomas","2021-11-04",44431,161,46647],["Thomas","2021-11-05",44431,90,46737],["Thomas","2021-11-06",44431,83,46820],["Thomas","2021-11-07",44431,22,46842],["Thomas","2021-11-08",44431,66,46908],["Thomas","2021-11-09",44431,173,47081],["Thomas","2021-11-10",44431,228,47309],["Thomas","2021-11-11",44431,126,47435],["Thomas","2021-11-12",44431,113,47548],["Thomas","2021-11-13",44431,25,47573],["Thomas","2021-11-14",44431,13,47586],["Thomas","2021-11-15",44431,67,47653],["Thomas","2021-11-16",44431,197,47850],["Thomas","2021-11-17",44431,280,48130],["Thomas","2021-11-18",44431,167,48297],["Thomas","2021-11-19",44431,88,48385],["Thomas","2021-11-20",44431,129,48514],["Thomas","2021-11-21",44431,27,48541],["Thomas","2021-11-22",44431,75,48616],["Thomas","2021-11-23",44431,112,48728],["Thomas","2021-11-24",44431,58,48786],["Thomas","2021-11-26",44431,47,48833],["Thomas","2021-11-27",44431,43,48876],["Thomas","2021-11-28",44431,37,48913],["Thomas","2021-11-29",44431,87,49000],["Thomas","2021-11-30",44431,170,49170],["Thomas","2021-12-01",44431,431,49601],["Thomas","2021-12-02",44431,145,49746],["Thomas","2021-12-03",44431,128,49874],["Thomas","2021-12-04",44431,58,49932],["Thomas","2021-12-05",44431,32,49964],["Thomas","2021-12-06",44431,67,50031],["Thomas","2021-12-07",44431,153,50184],["Thomas","2021-12-08",44431,197,50381],["Thomas","2021-12-09",44431,148,50529],["Thomas","2021-12-10",44431,76,50605],["Thomas","2021-12-11",44431,148,50753],["Thomas","2021-12-12",44431,17,50770],["Thomas","2021-12-13",44431,59,50829],["Thomas","2021-12-14",44431,156,50985],["Thomas","2021-12-15",44431,207,51192],["Thomas","2021-12-16",44431,114,51306],["Thomas","2021-12-17",44431,94,51400],["Thomas","2021-12-18",44431,43,51443],["Thomas","2021-12-19",44431,23,51466],["Thomas","2021-12-20",44431,81,51547],["Thomas","2021-12-21",44431,141,51688],["Thomas","2021-12-22",44431,136,51824],["Thomas","2021-12-23",44431,77,51901],["Thomas","2021-12-24",44431,19,51920],["Thomas","2021-12-26",44431,22,51942],["Thomas","2021-12-27",44431,89,52031],["Thomas","2021-12-28",44431,134,52165],["Thomas","2021-12-29",44431,99,52264],["Thomas","2021-12-30",44431,142,52406],["Thomas","2021-12-31",44431,57,52463],["Thomas","2022-01-01",44431,3,52466],["Thomas","2022-01-02",44431,25,52491],["Thomas","2022-01-03",44431,32,52523],["Tift","2020-12-14",40830,2,2],["Tift","2020-12-15",40830,1,3],["Tift","2020-12-16",40830,2,5],["Tift","2020-12-17",40830,14,19],["Tift","2020-12-18",40830,8,27],["Tift","2020-12-19",40830,1,28],["Tift","2020-12-20",40830,1,29],["Tift","2020-12-21",40830,9,38],["Tift","2020-12-22",40830,43,81],["Tift","2020-12-23",40830,113,194],["Tift","2020-12-24",40830,19,213],["Tift","2020-12-26",40830,4,217],["Tift","2020-12-28",40830,108,325],["Tift","2020-12-29",40830,107,432],["Tift","2020-12-30",40830,104,536],["Tift","2020-12-31",40830,65,601],["Tift","2021-01-01",40830,2,603],["Tift","2021-01-02",40830,2,605],["Tift","2021-01-03",40830,1,606],["Tift","2021-01-04",40830,121,727],["Tift","2021-01-05",40830,128,855],["Tift","2021-01-06",40830,86,941],["Tift","2021-01-07",40830,141,1082],["Tift","2021-01-08",40830,125,1207],["Tift","2021-01-09",40830,4,1211],["Tift","2021-01-10",40830,3,1214],["Tift","2021-01-11",40830,203,1417],["Tift","2021-01-12",40830,204,1621],["Tift","2021-01-13",40830,258,1879],["Tift","2021-01-14",40830,309,2188],["Tift","2021-01-15",40830,484,2672],["Tift","2021-01-16",40830,18,2690],["Tift","2021-01-17",40830,3,2693],["Tift","2021-01-18",40830,278,2971],["Tift","2021-01-19",40830,236,3207],["Tift","2021-01-20",40830,359,3566],["Tift","2021-01-21",40830,310,3876],["Tift","2021-01-22",40830,254,4130],["Tift","2021-01-23",40830,8,4138],["Tift","2021-01-24",40830,8,4146],["Tift","2021-01-25",40830,249,4395],["Tift","2021-01-26",40830,281,4676],["Tift","2021-01-27",40830,291,4967],["Tift","2021-01-28",40830,382,5349],["Tift","2021-01-29",40830,232,5581],["Tift","2021-01-30",40830,6,5587],["Tift","2021-01-31",40830,4,5591],["Tift","2021-02-01",40830,307,5898],["Tift","2021-02-02",40830,234,6132],["Tift","2021-02-03",40830,271,6403],["Tift","2021-02-04",40830,335,6738],["Tift","2021-02-05",40830,418,7156],["Tift","2021-02-06",40830,6,7162],["Tift","2021-02-07",40830,1,7163],["Tift","2021-02-08",40830,318,7481],["Tift","2021-02-09",40830,265,7746],["Tift","2021-02-10",40830,324,8070],["Tift","2021-02-11",40830,336,8406],["Tift","2021-02-12",40830,386,8792],["Tift","2021-02-13",40830,17,8809],["Tift","2021-02-14",40830,5,8814],["Tift","2021-02-15",40830,295,9109],["Tift","2021-02-16",40830,289,9398],["Tift","2021-02-17",40830,424,9822],["Tift","2021-02-18",40830,282,10104],["Tift","2021-02-19",40830,248,10352],["Tift","2021-02-20",40830,7,10359],["Tift","2021-02-21",40830,13,10372],["Tift","2021-02-22",40830,254,10626],["Tift","2021-02-23",40830,228,10854],["Tift","2021-02-24",40830,203,11057],["Tift","2021-02-25",40830,213,11270],["Tift","2021-02-26",40830,249,11519],["Tift","2021-02-27",40830,27,11546],["Tift","2021-02-28",40830,11,11557],["Tift","2021-03-01",40830,179,11736],["Tift","2021-03-02",40830,189,11925],["Tift","2021-03-03",40830,243,12168],["Tift","2021-03-04",40830,144,12312],["Tift","2021-03-05",40830,187,12499],["Tift","2021-03-06",40830,8,12507],["Tift","2021-03-07",40830,14,12521],["Tift","2021-03-08",40830,194,12715],["Tift","2021-03-09",40830,167,12882],["Tift","2021-03-10",40830,288,13170],["Tift","2021-03-11",40830,242,13412],["Tift","2021-03-12",40830,245,13657],["Tift","2021-03-13",40830,31,13688],["Tift","2021-03-14",40830,28,13716],["Tift","2021-03-15",40830,217,13933],["Tift","2021-03-16",40830,211,14144],["Tift","2021-03-17",40830,203,14347],["Tift","2021-03-18",40830,121,14468],["Tift","2021-03-19",40830,162,14630],["Tift","2021-03-20",40830,18,14648],["Tift","2021-03-21",40830,19,14667],["Tift","2021-03-22",40830,205,14872],["Tift","2021-03-23",40830,145,15017],["Tift","2021-03-24",40830,178,15195],["Tift","2021-03-25",40830,163,15358],["Tift","2021-03-26",40830,180,15538],["Tift","2021-03-27",40830,39,15577],["Tift","2021-03-28",40830,25,15602],["Tift","2021-03-29",40830,178,15780],["Tift","2021-03-30",40830,153,15933],["Tift","2021-03-31",40830,341,16274],["Tift","2021-04-01",40830,243,16517],["Tift","2021-04-02",40830,229,16746],["Tift","2021-04-03",40830,25,16771],["Tift","2021-04-04",40830,21,16792],["Tift","2021-04-05",40830,229,17021],["Tift","2021-04-06",40830,225,17246],["Tift","2021-04-07",40830,268,17514],["Tift","2021-04-08",40830,231,17745],["Tift","2021-04-09",40830,201,17946],["Tift","2021-04-10",40830,44,17990],["Tift","2021-04-11",40830,28,18018],["Tift","2021-04-12",40830,204,18222],["Tift","2021-04-13",40830,136,18358],["Tift","2021-04-14",40830,253,18611],["Tift","2021-04-15",40830,207,18818],["Tift","2021-04-16",40830,219,19037],["Tift","2021-04-17",40830,25,19062],["Tift","2021-04-18",40830,11,19073],["Tift","2021-04-19",40830,110,19183],["Tift","2021-04-20",40830,92,19275],["Tift","2021-04-21",40830,272,19547],["Tift","2021-04-22",40830,207,19754],["Tift","2021-04-23",40830,194,19948],["Tift","2021-04-24",40830,22,19970],["Tift","2021-04-25",40830,23,19993],["Tift","2021-04-26",40830,106,20099],["Tift","2021-04-27",40830,103,20202],["Tift","2021-04-28",40830,189,20391],["Tift","2021-04-29",40830,153,20544],["Tift","2021-04-30",40830,242,20786],["Tift","2021-05-01",40830,22,20808],["Tift","2021-05-02",40830,6,20814],["Tift","2021-05-03",40830,146,20960],["Tift","2021-05-04",40830,78,21038],["Tift","2021-05-05",40830,187,21225],["Tift","2021-05-06",40830,127,21352],["Tift","2021-05-07",40830,111,21463],["Tift","2021-05-08",40830,25,21488],["Tift","2021-05-09",40830,16,21504],["Tift","2021-05-10",40830,62,21566],["Tift","2021-05-11",40830,72,21638],["Tift","2021-05-12",40830,128,21766],["Tift","2021-05-13",40830,83,21849],["Tift","2021-05-14",40830,134,21983],["Tift","2021-05-15",40830,40,22023],["Tift","2021-05-16",40830,11,22034],["Tift","2021-05-17",40830,93,22127],["Tift","2021-05-18",40830,145,22272],["Tift","2021-05-19",40830,171,22443],["Tift","2021-05-20",40830,79,22522],["Tift","2021-05-21",40830,93,22615],["Tift","2021-05-22",40830,74,22689],["Tift","2021-05-23",40830,13,22702],["Tift","2021-05-24",40830,75,22777],["Tift","2021-05-25",40830,79,22856],["Tift","2021-05-26",40830,148,23004],["Tift","2021-05-27",40830,42,23046],["Tift","2021-05-28",40830,95,23141],["Tift","2021-05-29",40830,14,23155],["Tift","2021-05-30",40830,9,23164],["Tift","2021-05-31",40830,7,23171],["Tift","2021-06-01",40830,94,23265],["Tift","2021-06-02",40830,57,23322],["Tift","2021-06-03",40830,88,23410],["Tift","2021-06-04",40830,95,23505],["Tift","2021-06-05",40830,28,23533],["Tift","2021-06-06",40830,22,23555],["Tift","2021-06-07",40830,39,23594],["Tift","2021-06-08",40830,52,23646],["Tift","2021-06-09",40830,63,23709],["Tift","2021-06-10",40830,75,23784],["Tift","2021-06-11",40830,71,23855],["Tift","2021-06-12",40830,41,23896],["Tift","2021-06-13",40830,29,23925],["Tift","2021-06-14",40830,47,23972],["Tift","2021-06-15",40830,69,24041],["Tift","2021-06-16",40830,56,24097],["Tift","2021-06-17",40830,69,24166],["Tift","2021-06-18",40830,73,24239],["Tift","2021-06-19",40830,23,24262],["Tift","2021-06-20",40830,13,24275],["Tift","2021-06-21",40830,50,24325],["Tift","2021-06-22",40830,51,24376],["Tift","2021-06-23",40830,37,24413],["Tift","2021-06-24",40830,85,24498],["Tift","2021-06-25",40830,62,24560],["Tift","2021-06-26",40830,23,24583],["Tift","2021-06-27",40830,12,24595],["Tift","2021-06-28",40830,37,24632],["Tift","2021-06-29",40830,55,24687],["Tift","2021-06-30",40830,53,24740],["Tift","2021-07-01",40830,59,24799],["Tift","2021-07-02",40830,43,24842],["Tift","2021-07-03",40830,24,24866],["Tift","2021-07-04",40830,2,24868],["Tift","2021-07-05",40830,12,24880],["Tift","2021-07-06",40830,36,24916],["Tift","2021-07-07",40830,58,24974],["Tift","2021-07-08",40830,49,25023],["Tift","2021-07-09",40830,66,25089],["Tift","2021-07-10",40830,14,25103],["Tift","2021-07-11",40830,14,25117],["Tift","2021-07-12",40830,48,25165],["Tift","2021-07-13",40830,51,25216],["Tift","2021-07-14",40830,41,25257],["Tift","2021-07-15",40830,57,25314],["Tift","2021-07-16",40830,85,25399],["Tift","2021-07-17",40830,19,25418],["Tift","2021-07-18",40830,18,25436],["Tift","2021-07-19",40830,58,25494],["Tift","2021-07-20",40830,66,25560],["Tift","2021-07-21",40830,71,25631],["Tift","2021-07-22",40830,82,25713],["Tift","2021-07-23",40830,84,25797],["Tift","2021-07-24",40830,52,25849],["Tift","2021-07-25",40830,21,25870],["Tift","2021-07-26",40830,90,25960],["Tift","2021-07-27",40830,98,26058],["Tift","2021-07-28",40830,143,26201],["Tift","2021-07-29",40830,113,26314],["Tift","2021-07-30",40830,116,26430],["Tift","2021-07-31",40830,60,26490],["Tift","2021-08-01",40830,34,26524],["Tift","2021-08-02",40830,77,26601],["Tift","2021-08-03",40830,89,26690],["Tift","2021-08-04",40830,150,26840],["Tift","2021-08-05",40830,135,26975],["Tift","2021-08-06",40830,182,27157],["Tift","2021-08-07",40830,77,27234],["Tift","2021-08-08",40830,50,27284],["Tift","2021-08-09",40830,144,27428],["Tift","2021-08-10",40830,111,27539],["Tift","2021-08-11",40830,139,27678],["Tift","2021-08-12",40830,167,27845],["Tift","2021-08-13",40830,181,28026],["Tift","2021-08-14",40830,91,28117],["Tift","2021-08-15",40830,38,28155],["Tift","2021-08-16",40830,167,28322],["Tift","2021-08-17",40830,139,28461],["Tift","2021-08-18",40830,150,28611],["Tift","2021-08-19",40830,151,28762],["Tift","2021-08-20",40830,141,28903],["Tift","2021-08-21",40830,72,28975],["Tift","2021-08-22",40830,35,29010],["Tift","2021-08-23",40830,118,29128],["Tift","2021-08-24",40830,106,29234],["Tift","2021-08-25",40830,172,29406],["Tift","2021-08-26",40830,122,29528],["Tift","2021-08-27",40830,174,29702],["Tift","2021-08-28",40830,76,29778],["Tift","2021-08-29",40830,35,29813],["Tift","2021-08-30",40830,135,29948],["Tift","2021-08-31",40830,133,30081],["Tift","2021-09-01",40830,157,30238],["Tift","2021-09-02",40830,166,30404],["Tift","2021-09-03",40830,185,30589],["Tift","2021-09-04",40830,65,30654],["Tift","2021-09-05",40830,65,30719],["Tift","2021-09-06",40830,16,30735],["Tift","2021-09-07",40830,162,30897],["Tift","2021-09-08",40830,117,31014],["Tift","2021-09-09",40830,191,31205],["Tift","2021-09-10",40830,166,31371],["Tift","2021-09-11",40830,61,31432],["Tift","2021-09-12",40830,34,31466],["Tift","2021-09-13",40830,112,31578],["Tift","2021-09-14",40830,101,31679],["Tift","2021-09-15",40830,111,31790],["Tift","2021-09-16",40830,88,31878],["Tift","2021-09-17",40830,95,31973],["Tift","2021-09-18",40830,43,32016],["Tift","2021-09-19",40830,19,32035],["Tift","2021-09-20",40830,88,32123],["Tift","2021-09-21",40830,85,32208],["Tift","2021-09-22",40830,89,32297],["Tift","2021-09-23",40830,71,32368],["Tift","2021-09-24",40830,88,32456],["Tift","2021-09-25",40830,24,32480],["Tift","2021-09-26",40830,29,32509],["Tift","2021-09-27",40830,65,32574],["Tift","2021-09-28",40830,74,32648],["Tift","2021-09-29",40830,101,32749],["Tift","2021-09-30",40830,75,32824],["Tift","2021-10-01",40830,104,32928],["Tift","2021-10-02",40830,30,32958],["Tift","2021-10-03",40830,15,32973],["Tift","2021-10-04",40830,59,33032],["Tift","2021-10-05",40830,111,33143],["Tift","2021-10-06",40830,92,33235],["Tift","2021-10-07",40830,99,33334],["Tift","2021-10-08",40830,109,33443],["Tift","2021-10-09",40830,24,33467],["Tift","2021-10-10",40830,13,33480],["Tift","2021-10-11",40830,82,33562],["Tift","2021-10-12",40830,76,33638],["Tift","2021-10-13",40830,82,33720],["Tift","2021-10-14",40830,75,33795],["Tift","2021-10-15",40830,109,33904],["Tift","2021-10-16",40830,20,33924],["Tift","2021-10-17",40830,6,33930],["Tift","2021-10-18",40830,82,34012],["Tift","2021-10-19",40830,76,34088],["Tift","2021-10-20",40830,90,34178],["Tift","2021-10-21",40830,83,34261],["Tift","2021-10-22",40830,99,34360],["Tift","2021-10-23",40830,30,34390],["Tift","2021-10-24",40830,21,34411],["Tift","2021-10-25",40830,80,34491],["Tift","2021-10-26",40830,92,34583],["Tift","2021-10-27",40830,94,34677],["Tift","2021-10-28",40830,101,34778],["Tift","2021-10-29",40830,93,34871],["Tift","2021-10-30",40830,19,34890],["Tift","2021-10-31",40830,13,34903],["Tift","2021-11-01",40830,74,34977],["Tift","2021-11-02",40830,76,35053],["Tift","2021-11-03",40830,148,35201],["Tift","2021-11-04",40830,90,35291],["Tift","2021-11-05",40830,82,35373],["Tift","2021-11-06",40830,34,35407],["Tift","2021-11-07",40830,20,35427],["Tift","2021-11-08",40830,100,35527],["Tift","2021-11-09",40830,87,35614],["Tift","2021-11-10",40830,111,35725],["Tift","2021-11-11",40830,98,35823],["Tift","2021-11-12",40830,74,35897],["Tift","2021-11-13",40830,27,35924],["Tift","2021-11-14",40830,24,35948],["Tift","2021-11-15",40830,82,36030],["Tift","2021-11-16",40830,148,36178],["Tift","2021-11-17",40830,148,36326],["Tift","2021-11-18",40830,100,36426],["Tift","2021-11-19",40830,85,36511],["Tift","2021-11-20",40830,39,36550],["Tift","2021-11-21",40830,21,36571],["Tift","2021-11-22",40830,85,36656],["Tift","2021-11-23",40830,116,36772],["Tift","2021-11-24",40830,78,36850],["Tift","2021-11-26",40830,28,36878],["Tift","2021-11-27",40830,31,36909],["Tift","2021-11-28",40830,23,36932],["Tift","2021-11-29",40830,98,37030],["Tift","2021-11-30",40830,110,37140],["Tift","2021-12-01",40830,179,37319],["Tift","2021-12-02",40830,114,37433],["Tift","2021-12-03",40830,117,37550],["Tift","2021-12-04",40830,42,37592],["Tift","2021-12-05",40830,36,37628],["Tift","2021-12-06",40830,82,37710],["Tift","2021-12-07",40830,119,37829],["Tift","2021-12-08",40830,152,37981],["Tift","2021-12-09",40830,80,38061],["Tift","2021-12-10",40830,114,38175],["Tift","2021-12-11",40830,21,38196],["Tift","2021-12-12",40830,15,38211],["Tift","2021-12-13",40830,84,38295],["Tift","2021-12-14",40830,91,38386],["Tift","2021-12-15",40830,129,38515],["Tift","2021-12-16",40830,80,38595],["Tift","2021-12-17",40830,124,38719],["Tift","2021-12-18",40830,30,38749],["Tift","2021-12-19",40830,47,38796],["Tift","2021-12-20",40830,94,38890],["Tift","2021-12-21",40830,119,39009],["Tift","2021-12-22",40830,119,39128],["Tift","2021-12-23",40830,66,39194],["Tift","2021-12-24",40830,12,39206],["Tift","2021-12-26",40830,15,39221],["Tift","2021-12-27",40830,78,39299],["Tift","2021-12-28",40830,92,39391],["Tift","2021-12-29",40830,144,39535],["Tift","2021-12-30",40830,98,39633],["Tift","2021-12-31",40830,46,39679],["Tift","2022-01-01",40830,6,39685],["Tift","2022-01-02",40830,28,39713],["Tift","2022-01-03",40830,39,39752],["Toombs","2020-12-15",26983,1,1],["Toombs","2020-12-16",26983,1,2],["Toombs","2020-12-18",26983,3,5],["Toombs","2020-12-19",26983,1,6],["Toombs","2020-12-21",26983,2,8],["Toombs","2020-12-22",26983,4,12],["Toombs","2020-12-23",26983,25,37],["Toombs","2020-12-24",26983,11,48],["Toombs","2020-12-27",26983,3,51],["Toombs","2020-12-28",26983,39,90],["Toombs","2020-12-29",26983,26,116],["Toombs","2020-12-30",26983,28,144],["Toombs","2020-12-31",26983,6,150],["Toombs","2021-01-01",26983,32,182],["Toombs","2021-01-02",26983,1,183],["Toombs","2021-01-03",26983,2,185],["Toombs","2021-01-04",26983,30,215],["Toombs","2021-01-05",26983,16,231],["Toombs","2021-01-06",26983,30,261],["Toombs","2021-01-07",26983,29,290],["Toombs","2021-01-08",26983,17,307],["Toombs","2021-01-09",26983,2,309],["Toombs","2021-01-10",26983,3,312],["Toombs","2021-01-11",26983,58,370],["Toombs","2021-01-12",26983,48,418],["Toombs","2021-01-13",26983,62,480],["Toombs","2021-01-14",26983,51,531],["Toombs","2021-01-15",26983,50,581],["Toombs","2021-01-16",26983,45,626],["Toombs","2021-01-17",26983,13,639],["Toombs","2021-01-18",26983,93,732],["Toombs","2021-01-19",26983,94,826],["Toombs","2021-01-20",26983,94,920],["Toombs","2021-01-21",26983,86,1006],["Toombs","2021-01-22",26983,105,1111],["Toombs","2021-01-23",26983,6,1117],["Toombs","2021-01-24",26983,2,1119],["Toombs","2021-01-25",26983,66,1185],["Toombs","2021-01-26",26983,69,1254],["Toombs","2021-01-27",26983,77,1331],["Toombs","2021-01-28",26983,83,1414],["Toombs","2021-01-29",26983,48,1462],["Toombs","2021-01-30",26983,4,1466],["Toombs","2021-01-31",26983,3,1469],["Toombs","2021-02-01",26983,128,1597],["Toombs","2021-02-02",26983,92,1689],["Toombs","2021-02-03",26983,90,1779],["Toombs","2021-02-04",26983,53,1832],["Toombs","2021-02-05",26983,51,1883],["Toombs","2021-02-06",26983,64,1947],["Toombs","2021-02-07",26983,14,1961],["Toombs","2021-02-08",26983,134,2095],["Toombs","2021-02-09",26983,117,2212],["Toombs","2021-02-10",26983,136,2348],["Toombs","2021-02-11",26983,193,2541],["Toombs","2021-02-12",26983,56,2597],["Toombs","2021-02-13",26983,25,2622],["Toombs","2021-02-14",26983,2,2624],["Toombs","2021-02-15",26983,146,2770],["Toombs","2021-02-16",26983,121,2891],["Toombs","2021-02-17",26983,139,3030],["Toombs","2021-02-18",26983,107,3137],["Toombs","2021-02-19",26983,77,3214],["Toombs","2021-02-20",26983,24,3238],["Toombs","2021-02-21",26983,4,3242],["Toombs","2021-02-22",26983,128,3370],["Toombs","2021-02-23",26983,98,3468],["Toombs","2021-02-24",26983,105,3573],["Toombs","2021-02-25",26983,118,3691],["Toombs","2021-02-26",26983,54,3745],["Toombs","2021-02-27",26983,3,3748],["Toombs","2021-02-28",26983,21,3769],["Toombs","2021-03-01",26983,175,3944],["Toombs","2021-03-02",26983,221,4165],["Toombs","2021-03-03",26983,157,4322],["Toombs","2021-03-04",26983,101,4423],["Toombs","2021-03-05",26983,66,4489],["Toombs","2021-03-06",26983,5,4494],["Toombs","2021-03-07",26983,2,4496],["Toombs","2021-03-08",26983,145,4641],["Toombs","2021-03-09",26983,185,4826],["Toombs","2021-03-10",26983,180,5006],["Toombs","2021-03-11",26983,254,5260],["Toombs","2021-03-12",26983,237,5497],["Toombs","2021-03-13",26983,17,5514],["Toombs","2021-03-14",26983,4,5518],["Toombs","2021-03-15",26983,123,5641],["Toombs","2021-03-16",26983,235,5876],["Toombs","2021-03-17",26983,162,6038],["Toombs","2021-03-18",26983,147,6185],["Toombs","2021-03-19",26983,92,6277],["Toombs","2021-03-20",26983,19,6296],["Toombs","2021-03-21",26983,26,6322],["Toombs","2021-03-22",26983,174,6496],["Toombs","2021-03-23",26983,179,6675],["Toombs","2021-03-24",26983,112,6787],["Toombs","2021-03-25",26983,131,6918],["Toombs","2021-03-26",26983,123,7041],["Toombs","2021-03-27",26983,36,7077],["Toombs","2021-03-28",26983,4,7081],["Toombs","2021-03-29",26983,113,7194],["Toombs","2021-03-30",26983,368,7562],["Toombs","2021-03-31",26983,297,7859],["Toombs","2021-04-01",26983,134,7993],["Toombs","2021-04-02",26983,96,8089],["Toombs","2021-04-03",26983,16,8105],["Toombs","2021-04-04",26983,7,8112],["Toombs","2021-04-05",26983,140,8252],["Toombs","2021-04-06",26983,286,8538],["Toombs","2021-04-07",26983,305,8843],["Toombs","2021-04-08",26983,217,9060],["Toombs","2021-04-09",26983,70,9130],["Toombs","2021-04-10",26983,29,9159],["Toombs","2021-04-11",26983,11,9170],["Toombs","2021-04-12",26983,100,9270],["Toombs","2021-04-13",26983,224,9494],["Toombs","2021-04-14",26983,114,9608],["Toombs","2021-04-15",26983,137,9745],["Toombs","2021-04-16",26983,105,9850],["Toombs","2021-04-17",26983,29,9879],["Toombs","2021-04-18",26983,25,9904],["Toombs","2021-04-19",26983,108,10012],["Toombs","2021-04-20",26983,171,10183],["Toombs","2021-04-21",26983,118,10301],["Toombs","2021-04-22",26983,113,10414],["Toombs","2021-04-23",26983,90,10504],["Toombs","2021-04-24",26983,53,10557],["Toombs","2021-04-25",26983,4,10561],["Toombs","2021-04-26",26983,93,10654],["Toombs","2021-04-27",26983,178,10832],["Toombs","2021-04-28",26983,119,10951],["Toombs","2021-04-29",26983,92,11043],["Toombs","2021-04-30",26983,96,11139],["Toombs","2021-05-01",26983,39,11178],["Toombs","2021-05-02",26983,9,11187],["Toombs","2021-05-03",26983,40,11227],["Toombs","2021-05-04",26983,109,11336],["Toombs","2021-05-05",26983,145,11481],["Toombs","2021-05-06",26983,122,11603],["Toombs","2021-05-07",26983,73,11676],["Toombs","2021-05-08",26983,23,11699],["Toombs","2021-05-09",26983,1,11700],["Toombs","2021-05-10",26983,21,11721],["Toombs","2021-05-11",26983,136,11857],["Toombs","2021-05-12",26983,52,11909],["Toombs","2021-05-13",26983,83,11992],["Toombs","2021-05-14",26983,42,12034],["Toombs","2021-05-15",26983,31,12065],["Toombs","2021-05-16",26983,13,12078],["Toombs","2021-05-17",26983,45,12123],["Toombs","2021-05-18",26983,95,12218],["Toombs","2021-05-19",26983,58,12276],["Toombs","2021-05-20",26983,54,12330],["Toombs","2021-05-21",26983,37,12367],["Toombs","2021-05-22",26983,30,12397],["Toombs","2021-05-23",26983,12,12409],["Toombs","2021-05-24",26983,26,12435],["Toombs","2021-05-25",26983,80,12515],["Toombs","2021-05-26",26983,67,12582],["Toombs","2021-05-27",26983,122,12704],["Toombs","2021-05-28",26983,33,12737],["Toombs","2021-05-29",26983,33,12770],["Toombs","2021-05-30",26983,9,12779],["Toombs","2021-05-31",26983,8,12787],["Toombs","2021-06-01",26983,57,12844],["Toombs","2021-06-02",26983,56,12900],["Toombs","2021-06-03",26983,39,12939],["Toombs","2021-06-04",26983,42,12981],["Toombs","2021-06-05",26983,30,13011],["Toombs","2021-06-06",26983,5,13016],["Toombs","2021-06-07",26983,29,13045],["Toombs","2021-06-08",26983,84,13129],["Toombs","2021-06-09",26983,108,13237],["Toombs","2021-06-10",26983,107,13344],["Toombs","2021-06-11",26983,37,13381],["Toombs","2021-06-12",26983,20,13401],["Toombs","2021-06-13",26983,3,13404],["Toombs","2021-06-14",26983,27,13431],["Toombs","2021-06-15",26983,56,13487],["Toombs","2021-06-16",26983,27,13514],["Toombs","2021-06-17",26983,31,13545],["Toombs","2021-06-18",26983,39,13584],["Toombs","2021-06-19",26983,13,13597],["Toombs","2021-06-20",26983,5,13602],["Toombs","2021-06-21",26983,17,13619],["Toombs","2021-06-22",26983,93,13712],["Toombs","2021-06-23",26983,59,13771],["Toombs","2021-06-24",26983,19,13790],["Toombs","2021-06-25",26983,35,13825],["Toombs","2021-06-26",26983,17,13842],["Toombs","2021-06-27",26983,5,13847],["Toombs","2021-06-28",26983,20,13867],["Toombs","2021-06-29",26983,69,13936],["Toombs","2021-06-30",26983,27,13963],["Toombs","2021-07-01",26983,14,13977],["Toombs","2021-07-02",26983,14,13991],["Toombs","2021-07-03",26983,8,13999],["Toombs","2021-07-04",26983,3,14002],["Toombs","2021-07-05",26983,16,14018],["Toombs","2021-07-06",26983,40,14058],["Toombs","2021-07-07",26983,42,14100],["Toombs","2021-07-08",26983,12,14112],["Toombs","2021-07-09",26983,27,14139],["Toombs","2021-07-10",26983,6,14145],["Toombs","2021-07-11",26983,6,14151],["Toombs","2021-07-12",26983,21,14172],["Toombs","2021-07-13",26983,53,14225],["Toombs","2021-07-14",26983,21,14246],["Toombs","2021-07-15",26983,24,14270],["Toombs","2021-07-16",26983,20,14290],["Toombs","2021-07-17",26983,13,14303],["Toombs","2021-07-18",26983,2,14305],["Toombs","2021-07-19",26983,43,14348],["Toombs","2021-07-20",26983,57,14405],["Toombs","2021-07-21",26983,91,14496],["Toombs","2021-07-22",26983,57,14553],["Toombs","2021-07-23",26983,60,14613],["Toombs","2021-07-24",26983,38,14651],["Toombs","2021-07-25",26983,18,14669],["Toombs","2021-07-26",26983,56,14725],["Toombs","2021-07-27",26983,106,14831],["Toombs","2021-07-28",26983,79,14910],["Toombs","2021-07-29",26983,75,14985],["Toombs","2021-07-30",26983,86,15071],["Toombs","2021-07-31",26983,17,15088],["Toombs","2021-08-01",26983,13,15101],["Toombs","2021-08-02",26983,49,15150],["Toombs","2021-08-03",26983,98,15248],["Toombs","2021-08-04",26983,77,15325],["Toombs","2021-08-05",26983,89,15414],["Toombs","2021-08-06",26983,85,15499],["Toombs","2021-08-07",26983,43,15542],["Toombs","2021-08-08",26983,13,15555],["Toombs","2021-08-09",26983,77,15632],["Toombs","2021-08-10",26983,128,15760],["Toombs","2021-08-11",26983,103,15863],["Toombs","2021-08-12",26983,86,15949],["Toombs","2021-08-13",26983,114,16063],["Toombs","2021-08-14",26983,60,16123],["Toombs","2021-08-15",26983,40,16163],["Toombs","2021-08-16",26983,110,16273],["Toombs","2021-08-17",26983,114,16387],["Toombs","2021-08-18",26983,106,16493],["Toombs","2021-08-19",26983,124,16617],["Toombs","2021-08-20",26983,136,16753],["Toombs","2021-08-21",26983,79,16832],["Toombs","2021-08-22",26983,18,16850],["Toombs","2021-08-23",26983,83,16933],["Toombs","2021-08-24",26983,140,17073],["Toombs","2021-08-25",26983,112,17185],["Toombs","2021-08-26",26983,151,17336],["Toombs","2021-08-27",26983,138,17474],["Toombs","2021-08-28",26983,50,17524],["Toombs","2021-08-29",26983,20,17544],["Toombs","2021-08-30",26983,147,17691],["Toombs","2021-08-31",26983,130,17821],["Toombs","2021-09-01",26983,131,17952],["Toombs","2021-09-02",26983,126,18078],["Toombs","2021-09-03",26983,142,18220],["Toombs","2021-09-04",26983,40,18260],["Toombs","2021-09-05",26983,34,18294],["Toombs","2021-09-06",26983,53,18347],["Toombs","2021-09-07",26983,139,18486],["Toombs","2021-09-08",26983,114,18600],["Toombs","2021-09-09",26983,112,18712],["Toombs","2021-09-10",26983,136,18848],["Toombs","2021-09-11",26983,41,18889],["Toombs","2021-09-12",26983,24,18913],["Toombs","2021-09-13",26983,61,18974],["Toombs","2021-09-14",26983,138,19112],["Toombs","2021-09-15",26983,105,19217],["Toombs","2021-09-16",26983,67,19284],["Toombs","2021-09-17",26983,113,19397],["Toombs","2021-09-18",26983,46,19443],["Toombs","2021-09-19",26983,16,19459],["Toombs","2021-09-20",26983,80,19539],["Toombs","2021-09-21",26983,144,19683],["Toombs","2021-09-22",26983,66,19749],["Toombs","2021-09-23",26983,85,19834],["Toombs","2021-09-24",26983,70,19904],["Toombs","2021-09-25",26983,32,19936],["Toombs","2021-09-26",26983,17,19953],["Toombs","2021-09-27",26983,78,20031],["Toombs","2021-09-28",26983,44,20075],["Toombs","2021-09-29",26983,70,20145],["Toombs","2021-09-30",26983,71,20216],["Toombs","2021-10-01",26983,82,20298],["Toombs","2021-10-02",26983,27,20325],["Toombs","2021-10-03",26983,8,20333],["Toombs","2021-10-04",26983,38,20371],["Toombs","2021-10-05",26983,39,20410],["Toombs","2021-10-06",26983,59,20469],["Toombs","2021-10-07",26983,40,20509],["Toombs","2021-10-08",26983,46,20555],["Toombs","2021-10-09",26983,20,20575],["Toombs","2021-10-10",26983,15,20590],["Toombs","2021-10-11",26983,24,20614],["Toombs","2021-10-12",26983,48,20662],["Toombs","2021-10-13",26983,24,20686],["Toombs","2021-10-14",26983,23,20709],["Toombs","2021-10-15",26983,42,20751],["Toombs","2021-10-16",26983,13,20764],["Toombs","2021-10-17",26983,6,20770],["Toombs","2021-10-18",26983,24,20794],["Toombs","2021-10-19",26983,44,20838],["Toombs","2021-10-20",26983,22,20860],["Toombs","2021-10-21",26983,21,20881],["Toombs","2021-10-22",26983,48,20929],["Toombs","2021-10-23",26983,12,20941],["Toombs","2021-10-24",26983,7,20948],["Toombs","2021-10-25",26983,88,21036],["Toombs","2021-10-26",26983,101,21137],["Toombs","2021-10-27",26983,164,21301],["Toombs","2021-10-28",26983,79,21380],["Toombs","2021-10-29",26983,74,21454],["Toombs","2021-10-30",26983,11,21465],["Toombs","2021-10-31",26983,4,21469],["Toombs","2021-11-01",26983,101,21570],["Toombs","2021-11-02",26983,103,21673],["Toombs","2021-11-03",26983,94,21767],["Toombs","2021-11-04",26983,78,21845],["Toombs","2021-11-05",26983,75,21920],["Toombs","2021-11-06",26983,17,21937],["Toombs","2021-11-07",26983,11,21948],["Toombs","2021-11-08",26983,86,22034],["Toombs","2021-11-09",26983,82,22116],["Toombs","2021-11-10",26983,108,22224],["Toombs","2021-11-11",26983,46,22270],["Toombs","2021-11-12",26983,78,22348],["Toombs","2021-11-13",26983,7,22355],["Toombs","2021-11-14",26983,5,22360],["Toombs","2021-11-15",26983,76,22436],["Toombs","2021-11-16",26983,91,22527],["Toombs","2021-11-17",26983,109,22636],["Toombs","2021-11-18",26983,114,22750],["Toombs","2021-11-19",26983,87,22837],["Toombs","2021-11-20",26983,17,22854],["Toombs","2021-11-21",26983,12,22866],["Toombs","2021-11-22",26983,99,22965],["Toombs","2021-11-23",26983,75,23040],["Toombs","2021-11-24",26983,45,23085],["Toombs","2021-11-26",26983,17,23102],["Toombs","2021-11-27",26983,13,23115],["Toombs","2021-11-28",26983,15,23130],["Toombs","2021-11-29",26983,103,23233],["Toombs","2021-11-30",26983,92,23325],["Toombs","2021-12-01",26983,127,23452],["Toombs","2021-12-02",26983,94,23546],["Toombs","2021-12-03",26983,83,23629],["Toombs","2021-12-04",26983,21,23650],["Toombs","2021-12-05",26983,10,23660],["Toombs","2021-12-06",26983,77,23737],["Toombs","2021-12-07",26983,68,23805],["Toombs","2021-12-08",26983,69,23874],["Toombs","2021-12-09",26983,63,23937],["Toombs","2021-12-10",26983,98,24035],["Toombs","2021-12-11",26983,19,24054],["Toombs","2021-12-12",26983,6,24060],["Toombs","2021-12-13",26983,75,24135],["Toombs","2021-12-14",26983,46,24181],["Toombs","2021-12-15",26983,69,24250],["Toombs","2021-12-16",26983,61,24311],["Toombs","2021-12-17",26983,64,24375],["Toombs","2021-12-18",26983,23,24398],["Toombs","2021-12-19",26983,6,24404],["Toombs","2021-12-20",26983,82,24486],["Toombs","2021-12-21",26983,71,24557],["Toombs","2021-12-22",26983,56,24613],["Toombs","2021-12-23",26983,10,24623],["Toombs","2021-12-24",26983,9,24632],["Toombs","2021-12-26",26983,4,24636],["Toombs","2021-12-27",26983,45,24681],["Toombs","2021-12-28",26983,64,24745],["Toombs","2021-12-29",26983,85,24830],["Toombs","2021-12-30",26983,71,24901],["Toombs","2021-12-31",26983,33,24934],["Toombs","2022-01-01",26983,10,24944],["Toombs","2022-01-02",26983,11,24955],["Toombs","2022-01-03",26983,14,24969],["Towns","2020-12-15",12034,1,1],["Towns","2020-12-18",12034,1,2],["Towns","2020-12-22",12034,4,6],["Towns","2020-12-23",12034,54,60],["Towns","2020-12-24",12034,9,69],["Towns","2020-12-28",12034,15,84],["Towns","2020-12-29",12034,60,144],["Towns","2020-12-30",12034,46,190],["Towns","2020-12-31",12034,4,194],["Towns","2021-01-01",12034,3,197],["Towns","2021-01-02",12034,1,198],["Towns","2021-01-03",12034,2,200],["Towns","2021-01-04",12034,96,296],["Towns","2021-01-05",12034,39,335],["Towns","2021-01-06",12034,25,360],["Towns","2021-01-07",12034,24,384],["Towns","2021-01-08",12034,8,392],["Towns","2021-01-09",12034,2,394],["Towns","2021-01-10",12034,5,399],["Towns","2021-01-11",12034,72,471],["Towns","2021-01-12",12034,67,538],["Towns","2021-01-13",12034,96,634],["Towns","2021-01-14",12034,127,761],["Towns","2021-01-15",12034,45,806],["Towns","2021-01-16",12034,26,832],["Towns","2021-01-17",12034,21,853],["Towns","2021-01-18",12034,101,954],["Towns","2021-01-19",12034,95,1049],["Towns","2021-01-20",12034,92,1141],["Towns","2021-01-21",12034,55,1196],["Towns","2021-01-22",12034,230,1426],["Towns","2021-01-23",12034,19,1445],["Towns","2021-01-24",12034,14,1459],["Towns","2021-01-25",12034,106,1565],["Towns","2021-01-26",12034,65,1630],["Towns","2021-01-27",12034,148,1778],["Towns","2021-01-28",12034,66,1844],["Towns","2021-01-29",12034,78,1922],["Towns","2021-01-30",12034,1,1923],["Towns","2021-01-31",12034,4,1927],["Towns","2021-02-01",12034,113,2040],["Towns","2021-02-02",12034,66,2106],["Towns","2021-02-03",12034,118,2224],["Towns","2021-02-04",12034,140,2364],["Towns","2021-02-05",12034,383,2747],["Towns","2021-02-06",12034,12,2759],["Towns","2021-02-07",12034,2,2761],["Towns","2021-02-08",12034,105,2866],["Towns","2021-02-09",12034,80,2946],["Towns","2021-02-10",12034,226,3172],["Towns","2021-02-11",12034,109,3281],["Towns","2021-02-12",12034,66,3347],["Towns","2021-02-13",12034,34,3381],["Towns","2021-02-14",12034,25,3406],["Towns","2021-02-15",12034,91,3497],["Towns","2021-02-16",12034,105,3602],["Towns","2021-02-17",12034,90,3692],["Towns","2021-02-18",12034,75,3767],["Towns","2021-02-19",12034,70,3837],["Towns","2021-02-20",12034,24,3861],["Towns","2021-02-21",12034,10,3871],["Towns","2021-02-22",12034,56,3927],["Towns","2021-02-23",12034,111,4038],["Towns","2021-02-24",12034,91,4129],["Towns","2021-02-25",12034,80,4209],["Towns","2021-02-26",12034,506,4715],["Towns","2021-02-27",12034,37,4752],["Towns","2021-02-28",12034,41,4793],["Towns","2021-03-01",12034,124,4917],["Towns","2021-03-02",12034,100,5017],["Towns","2021-03-03",12034,140,5157],["Towns","2021-03-04",12034,140,5297],["Towns","2021-03-05",12034,418,5715],["Towns","2021-03-06",12034,22,5737],["Towns","2021-03-07",12034,28,5765],["Towns","2021-03-08",12034,86,5851],["Towns","2021-03-09",12034,70,5921],["Towns","2021-03-10",12034,75,5996],["Towns","2021-03-11",12034,85,6081],["Towns","2021-03-12",12034,183,6264],["Towns","2021-03-13",12034,17,6281],["Towns","2021-03-14",12034,19,6300],["Towns","2021-03-15",12034,101,6401],["Towns","2021-03-16",12034,75,6476],["Towns","2021-03-17",12034,109,6585],["Towns","2021-03-18",12034,88,6673],["Towns","2021-03-19",12034,187,6860],["Towns","2021-03-20",12034,28,6888],["Towns","2021-03-21",12034,21,6909],["Towns","2021-03-22",12034,64,6973],["Towns","2021-03-23",12034,65,7038],["Towns","2021-03-24",12034,58,7096],["Towns","2021-03-25",12034,111,7207],["Towns","2021-03-26",12034,207,7414],["Towns","2021-03-27",12034,37,7451],["Towns","2021-03-28",12034,41,7492],["Towns","2021-03-29",12034,89,7581],["Towns","2021-03-30",12034,76,7657],["Towns","2021-03-31",12034,76,7733],["Towns","2021-04-01",12034,129,7862],["Towns","2021-04-02",12034,46,7908],["Towns","2021-04-03",12034,20,7928],["Towns","2021-04-04",12034,41,7969],["Towns","2021-04-05",12034,78,8047],["Towns","2021-04-06",12034,66,8113],["Towns","2021-04-07",12034,89,8202],["Towns","2021-04-08",12034,71,8273],["Towns","2021-04-09",12034,188,8461],["Towns","2021-04-10",12034,21,8482],["Towns","2021-04-11",12034,26,8508],["Towns","2021-04-12",12034,74,8582],["Towns","2021-04-13",12034,71,8653],["Towns","2021-04-14",12034,54,8707],["Towns","2021-04-15",12034,46,8753],["Towns","2021-04-16",12034,200,8953],["Towns","2021-04-17",12034,25,8978],["Towns","2021-04-18",12034,10,8988],["Towns","2021-04-19",12034,54,9042],["Towns","2021-04-20",12034,44,9086],["Towns","2021-04-21",12034,128,9214],["Towns","2021-04-22",12034,24,9238],["Towns","2021-04-23",12034,91,9329],["Towns","2021-04-24",12034,21,9350],["Towns","2021-04-25",12034,9,9359],["Towns","2021-04-26",12034,30,9389],["Towns","2021-04-27",12034,40,9429],["Towns","2021-04-28",12034,80,9509],["Towns","2021-04-29",12034,30,9539],["Towns","2021-04-30",12034,59,9598],["Towns","2021-05-01",12034,14,9612],["Towns","2021-05-02",12034,6,9618],["Towns","2021-05-03",12034,23,9641],["Towns","2021-05-04",12034,59,9700],["Towns","2021-05-05",12034,38,9738],["Towns","2021-05-06",12034,20,9758],["Towns","2021-05-07",12034,49,9807],["Towns","2021-05-08",12034,19,9826],["Towns","2021-05-09",12034,9,9835],["Towns","2021-05-10",12034,24,9859],["Towns","2021-05-11",12034,25,9884],["Towns","2021-05-12",12034,11,9895],["Towns","2021-05-13",12034,17,9912],["Towns","2021-05-14",12034,34,9946],["Towns","2021-05-15",12034,15,9961],["Towns","2021-05-16",12034,6,9967],["Towns","2021-05-17",12034,18,9985],["Towns","2021-05-18",12034,36,10021],["Towns","2021-05-19",12034,25,10046],["Towns","2021-05-20",12034,17,10063],["Towns","2021-05-21",12034,33,10096],["Towns","2021-05-22",12034,6,10102],["Towns","2021-05-23",12034,8,10110],["Towns","2021-05-24",12034,15,10125],["Towns","2021-05-25",12034,24,10149],["Towns","2021-05-26",12034,13,10162],["Towns","2021-05-27",12034,12,10174],["Towns","2021-05-28",12034,11,10185],["Towns","2021-05-29",12034,9,10194],["Towns","2021-05-30",12034,1,10195],["Towns","2021-05-31",12034,2,10197],["Towns","2021-06-01",12034,28,10225],["Towns","2021-06-02",12034,23,10248],["Towns","2021-06-03",12034,14,10262],["Towns","2021-06-04",12034,24,10286],["Towns","2021-06-05",12034,7,10293],["Towns","2021-06-06",12034,3,10296],["Towns","2021-06-07",12034,5,10301],["Towns","2021-06-08",12034,10,10311],["Towns","2021-06-09",12034,11,10322],["Towns","2021-06-10",12034,6,10328],["Towns","2021-06-11",12034,14,10342],["Towns","2021-06-12",12034,6,10348],["Towns","2021-06-13",12034,4,10352],["Towns","2021-06-14",12034,9,10361],["Towns","2021-06-15",12034,10,10371],["Towns","2021-06-16",12034,13,10384],["Towns","2021-06-17",12034,14,10398],["Towns","2021-06-18",12034,16,10414],["Towns","2021-06-19",12034,5,10419],["Towns","2021-06-20",12034,1,10420],["Towns","2021-06-21",12034,8,10428],["Towns","2021-06-22",12034,16,10444],["Towns","2021-06-23",12034,14,10458],["Towns","2021-06-24",12034,6,10464],["Towns","2021-06-25",12034,10,10474],["Towns","2021-06-26",12034,4,10478],["Towns","2021-06-27",12034,2,10480],["Towns","2021-06-28",12034,8,10488],["Towns","2021-06-29",12034,9,10497],["Towns","2021-06-30",12034,9,10506],["Towns","2021-07-01",12034,10,10516],["Towns","2021-07-02",12034,14,10530],["Towns","2021-07-03",12034,4,10534],["Towns","2021-07-05",12034,4,10538],["Towns","2021-07-06",12034,4,10542],["Towns","2021-07-07",12034,7,10549],["Towns","2021-07-08",12034,5,10554],["Towns","2021-07-09",12034,2,10556],["Towns","2021-07-10",12034,6,10562],["Towns","2021-07-11",12034,7,10569],["Towns","2021-07-12",12034,5,10574],["Towns","2021-07-13",12034,9,10583],["Towns","2021-07-14",12034,9,10592],["Towns","2021-07-15",12034,9,10601],["Towns","2021-07-16",12034,15,10616],["Towns","2021-07-17",12034,4,10620],["Towns","2021-07-18",12034,3,10623],["Towns","2021-07-19",12034,11,10634],["Towns","2021-07-20",12034,17,10651],["Towns","2021-07-21",12034,18,10669],["Towns","2021-07-22",12034,6,10675],["Towns","2021-07-23",12034,12,10687],["Towns","2021-07-24",12034,5,10692],["Towns","2021-07-25",12034,8,10700],["Towns","2021-07-26",12034,12,10712],["Towns","2021-07-27",12034,15,10727],["Towns","2021-07-28",12034,8,10735],["Towns","2021-07-29",12034,10,10745],["Towns","2021-07-30",12034,13,10758],["Towns","2021-07-31",12034,4,10762],["Towns","2021-08-01",12034,11,10773],["Towns","2021-08-02",12034,21,10794],["Towns","2021-08-03",12034,12,10806],["Towns","2021-08-04",12034,14,10820],["Towns","2021-08-05",12034,16,10836],["Towns","2021-08-06",12034,12,10848],["Towns","2021-08-07",12034,6,10854],["Towns","2021-08-08",12034,7,10861],["Towns","2021-08-09",12034,21,10882],["Towns","2021-08-10",12034,26,10908],["Towns","2021-08-11",12034,27,10935],["Towns","2021-08-12",12034,29,10964],["Towns","2021-08-13",12034,27,10991],["Towns","2021-08-14",12034,16,11007],["Towns","2021-08-15",12034,17,11024],["Towns","2021-08-16",12034,35,11059],["Towns","2021-08-17",12034,30,11089],["Towns","2021-08-18",12034,33,11122],["Towns","2021-08-19",12034,15,11137],["Towns","2021-08-20",12034,28,11165],["Towns","2021-08-21",12034,5,11170],["Towns","2021-08-22",12034,8,11178],["Towns","2021-08-23",12034,29,11207],["Towns","2021-08-24",12034,18,11225],["Towns","2021-08-25",12034,37,11262],["Towns","2021-08-26",12034,22,11284],["Towns","2021-08-27",12034,36,11320],["Towns","2021-08-28",12034,12,11332],["Towns","2021-08-29",12034,28,11360],["Towns","2021-08-30",12034,41,11401],["Towns","2021-08-31",12034,27,11428],["Towns","2021-09-01",12034,44,11472],["Towns","2021-09-02",12034,36,11508],["Towns","2021-09-03",12034,34,11542],["Towns","2021-09-04",12034,18,11560],["Towns","2021-09-05",12034,6,11566],["Towns","2021-09-06",12034,5,11571],["Towns","2021-09-07",12034,32,11603],["Towns","2021-09-08",12034,32,11635],["Towns","2021-09-09",12034,30,11665],["Towns","2021-09-10",12034,43,11708],["Towns","2021-09-11",12034,22,11730],["Towns","2021-09-12",12034,7,11737],["Towns","2021-09-13",12034,30,11767],["Towns","2021-09-14",12034,23,11790],["Towns","2021-09-15",12034,28,11818],["Towns","2021-09-16",12034,11,11829],["Towns","2021-09-17",12034,25,11854],["Towns","2021-09-18",12034,6,11860],["Towns","2021-09-19",12034,14,11874],["Towns","2021-09-20",12034,23,11897],["Towns","2021-09-21",12034,19,11916],["Towns","2021-09-22",12034,37,11953],["Towns","2021-09-23",12034,15,11968],["Towns","2021-09-24",12034,22,11990],["Towns","2021-09-25",12034,12,12002],["Towns","2021-09-26",12034,6,12008],["Towns","2021-09-27",12034,26,12034],["Towns","2021-09-28",12034,33,12067],["Towns","2021-09-29",12034,19,12086],["Towns","2021-09-30",12034,14,12100],["Towns","2021-10-01",12034,34,12134],["Towns","2021-10-02",12034,11,12145],["Towns","2021-10-03",12034,8,12153],["Towns","2021-10-04",12034,17,12170],["Towns","2021-10-05",12034,16,12186],["Towns","2021-10-06",12034,27,12213],["Towns","2021-10-07",12034,18,12231],["Towns","2021-10-08",12034,18,12249],["Towns","2021-10-09",12034,10,12259],["Towns","2021-10-10",12034,5,12264],["Towns","2021-10-11",12034,9,12273],["Towns","2021-10-12",12034,21,12294],["Towns","2021-10-13",12034,14,12308],["Towns","2021-10-14",12034,15,12323],["Towns","2021-10-15",12034,18,12341],["Towns","2021-10-16",12034,4,12345],["Towns","2021-10-17",12034,2,12347],["Towns","2021-10-18",12034,19,12366],["Towns","2021-10-19",12034,11,12377],["Towns","2021-10-20",12034,18,12395],["Towns","2021-10-21",12034,14,12409],["Towns","2021-10-22",12034,122,12531],["Towns","2021-10-23",12034,34,12565],["Towns","2021-10-24",12034,24,12589],["Towns","2021-10-25",12034,88,12677],["Towns","2021-10-26",12034,145,12822],["Towns","2021-10-27",12034,184,13006],["Towns","2021-10-28",12034,84,13090],["Towns","2021-10-29",12034,70,13160],["Towns","2021-10-30",12034,21,13181],["Towns","2021-10-31",12034,20,13201],["Towns","2021-11-01",12034,92,13293],["Towns","2021-11-02",12034,79,13372],["Towns","2021-11-03",12034,109,13481],["Towns","2021-11-04",12034,108,13589],["Towns","2021-11-05",12034,56,13645],["Towns","2021-11-06",12034,20,13665],["Towns","2021-11-07",12034,16,13681],["Towns","2021-11-08",12034,54,13735],["Towns","2021-11-09",12034,57,13792],["Towns","2021-11-10",12034,41,13833],["Towns","2021-11-11",12034,30,13863],["Towns","2021-11-12",12034,43,13906],["Towns","2021-11-13",12034,16,13922],["Towns","2021-11-14",12034,13,13935],["Towns","2021-11-15",12034,71,14006],["Towns","2021-11-16",12034,55,14061],["Towns","2021-11-17",12034,60,14121],["Towns","2021-11-18",12034,45,14166],["Towns","2021-11-19",12034,40,14206],["Towns","2021-11-20",12034,20,14226],["Towns","2021-11-21",12034,16,14242],["Towns","2021-11-22",12034,51,14293],["Towns","2021-11-23",12034,37,14330],["Towns","2021-11-24",12034,22,14352],["Towns","2021-11-26",12034,22,14374],["Towns","2021-11-27",12034,14,14388],["Towns","2021-11-28",12034,18,14406],["Towns","2021-11-29",12034,57,14463],["Towns","2021-11-30",12034,69,14532],["Towns","2021-12-01",12034,51,14583],["Towns","2021-12-02",12034,41,14624],["Towns","2021-12-03",12034,49,14673],["Towns","2021-12-04",12034,8,14681],["Towns","2021-12-05",12034,16,14697],["Towns","2021-12-06",12034,48,14745],["Towns","2021-12-07",12034,36,14781],["Towns","2021-12-08",12034,30,14811],["Towns","2021-12-09",12034,35,14846],["Towns","2021-12-10",12034,24,14870],["Towns","2021-12-11",12034,12,14882],["Towns","2021-12-12",12034,5,14887],["Towns","2021-12-13",12034,21,14908],["Towns","2021-12-14",12034,24,14932],["Towns","2021-12-15",12034,34,14966],["Towns","2021-12-16",12034,21,14987],["Towns","2021-12-17",12034,26,15013],["Towns","2021-12-18",12034,15,15028],["Towns","2021-12-19",12034,7,15035],["Towns","2021-12-20",12034,38,15073],["Towns","2021-12-21",12034,45,15118],["Towns","2021-12-22",12034,37,15155],["Towns","2021-12-23",12034,23,15178],["Towns","2021-12-24",12034,4,15182],["Towns","2021-12-26",12034,8,15190],["Towns","2021-12-27",12034,33,15223],["Towns","2021-12-28",12034,23,15246],["Towns","2021-12-29",12034,47,15293],["Towns","2021-12-30",12034,25,15318],["Towns","2021-12-31",12034,7,15325],["Towns","2022-01-01",12034,11,15336],["Towns","2022-01-02",12034,10,15346],["Towns","2022-01-03",12034,1,15347],["Treutlen","2020-12-18",6829,3,3],["Treutlen","2020-12-21",6829,1,4],["Treutlen","2020-12-22",6829,1,5],["Treutlen","2020-12-23",6829,3,8],["Treutlen","2020-12-27",6829,2,10],["Treutlen","2020-12-28",6829,10,20],["Treutlen","2020-12-29",6829,3,23],["Treutlen","2020-12-30",6829,9,32],["Treutlen","2020-12-31",6829,4,36],["Treutlen","2021-01-01",6829,1,37],["Treutlen","2021-01-02",6829,1,38],["Treutlen","2021-01-04",6829,6,44],["Treutlen","2021-01-05",6829,17,61],["Treutlen","2021-01-06",6829,2,63],["Treutlen","2021-01-07",6829,16,79],["Treutlen","2021-01-08",6829,15,94],["Treutlen","2021-01-09",6829,1,95],["Treutlen","2021-01-10",6829,1,96],["Treutlen","2021-01-11",6829,6,102],["Treutlen","2021-01-12",6829,3,105],["Treutlen","2021-01-13",6829,165,270],["Treutlen","2021-01-14",6829,15,285],["Treutlen","2021-01-15",6829,32,317],["Treutlen","2021-01-16",6829,5,322],["Treutlen","2021-01-17",6829,36,358],["Treutlen","2021-01-18",6829,9,367],["Treutlen","2021-01-19",6829,6,373],["Treutlen","2021-01-20",6829,114,487],["Treutlen","2021-01-21",6829,9,496],["Treutlen","2021-01-22",6829,5,501],["Treutlen","2021-01-23",6829,2,503],["Treutlen","2021-01-25",6829,10,513],["Treutlen","2021-01-26",6829,6,519],["Treutlen","2021-01-27",6829,19,538],["Treutlen","2021-01-28",6829,136,674],["Treutlen","2021-01-29",6829,8,682],["Treutlen","2021-01-30",6829,2,684],["Treutlen","2021-01-31",6829,1,685],["Treutlen","2021-02-01",6829,10,695],["Treutlen","2021-02-02",6829,13,708],["Treutlen","2021-02-03",6829,81,789],["Treutlen","2021-02-04",6829,11,800],["Treutlen","2021-02-05",6829,14,814],["Treutlen","2021-02-06",6829,4,818],["Treutlen","2021-02-07",6829,60,878],["Treutlen","2021-02-08",6829,14,892],["Treutlen","2021-02-09",6829,15,907],["Treutlen","2021-02-10",6829,177,1084],["Treutlen","2021-02-11",6829,10,1094],["Treutlen","2021-02-12",6829,2,1096],["Treutlen","2021-02-15",6829,10,1106],["Treutlen","2021-02-16",6829,7,1113],["Treutlen","2021-02-17",6829,129,1242],["Treutlen","2021-02-18",6829,11,1253],["Treutlen","2021-02-19",6829,2,1255],["Treutlen","2021-02-20",6829,1,1256],["Treutlen","2021-02-22",6829,9,1265],["Treutlen","2021-02-23",6829,8,1273],["Treutlen","2021-02-24",6829,13,1286],["Treutlen","2021-02-25",6829,141,1427],["Treutlen","2021-02-26",6829,4,1431],["Treutlen","2021-02-27",6829,1,1432],["Treutlen","2021-02-28",6829,2,1434],["Treutlen","2021-03-01",6829,14,1448],["Treutlen","2021-03-02",6829,10,1458],["Treutlen","2021-03-03",6829,108,1566],["Treutlen","2021-03-04",6829,5,1571],["Treutlen","2021-03-05",6829,8,1579],["Treutlen","2021-03-08",6829,4,1583],["Treutlen","2021-03-09",6829,16,1599],["Treutlen","2021-03-10",6829,64,1663],["Treutlen","2021-03-11",6829,9,1672],["Treutlen","2021-03-12",6829,15,1687],["Treutlen","2021-03-13",6829,1,1688],["Treutlen","2021-03-15",6829,8,1696],["Treutlen","2021-03-16",6829,31,1727],["Treutlen","2021-03-17",6829,87,1814],["Treutlen","2021-03-18",6829,11,1825],["Treutlen","2021-03-19",6829,5,1830],["Treutlen","2021-03-20",6829,1,1831],["Treutlen","2021-03-21",6829,3,1834],["Treutlen","2021-03-22",6829,3,1837],["Treutlen","2021-03-23",6829,11,1848],["Treutlen","2021-03-24",6829,51,1899],["Treutlen","2021-03-25",6829,13,1912],["Treutlen","2021-03-26",6829,7,1919],["Treutlen","2021-03-27",6829,4,1923],["Treutlen","2021-03-29",6829,18,1941],["Treutlen","2021-03-30",6829,13,1954],["Treutlen","2021-03-31",6829,67,2021],["Treutlen","2021-04-01",6829,9,2030],["Treutlen","2021-04-02",6829,12,2042],["Treutlen","2021-04-03",6829,4,2046],["Treutlen","2021-04-05",6829,8,2054],["Treutlen","2021-04-06",6829,18,2072],["Treutlen","2021-04-07",6829,63,2135],["Treutlen","2021-04-08",6829,23,2158],["Treutlen","2021-04-09",6829,10,2168],["Treutlen","2021-04-10",6829,12,2180],["Treutlen","2021-04-11",6829,5,2185],["Treutlen","2021-04-12",6829,15,2200],["Treutlen","2021-04-13",6829,25,2225],["Treutlen","2021-04-14",6829,85,2310],["Treutlen","2021-04-15",6829,13,2323],["Treutlen","2021-04-16",6829,18,2341],["Treutlen","2021-04-17",6829,3,2344],["Treutlen","2021-04-19",6829,12,2356],["Treutlen","2021-04-20",6829,16,2372],["Treutlen","2021-04-21",6829,73,2445],["Treutlen","2021-04-22",6829,8,2453],["Treutlen","2021-04-23",6829,14,2467],["Treutlen","2021-04-24",6829,4,2471],["Treutlen","2021-04-26",6829,12,2483],["Treutlen","2021-04-27",6829,7,2490],["Treutlen","2021-04-28",6829,50,2540],["Treutlen","2021-04-29",6829,13,2553],["Treutlen","2021-04-30",6829,11,2564],["Treutlen","2021-05-01",6829,11,2575],["Treutlen","2021-05-03",6829,4,2579],["Treutlen","2021-05-04",6829,16,2595],["Treutlen","2021-05-05",6829,45,2640],["Treutlen","2021-05-06",6829,10,2650],["Treutlen","2021-05-07",6829,13,2663],["Treutlen","2021-05-08",6829,6,2669],["Treutlen","2021-05-10",6829,4,2673],["Treutlen","2021-05-11",6829,12,2685],["Treutlen","2021-05-12",6829,24,2709],["Treutlen","2021-05-13",6829,4,2713],["Treutlen","2021-05-14",6829,9,2722],["Treutlen","2021-05-15",6829,3,2725],["Treutlen","2021-05-17",6829,7,2732],["Treutlen","2021-05-18",6829,8,2740],["Treutlen","2021-05-19",6829,43,2783],["Treutlen","2021-05-20",6829,6,2789],["Treutlen","2021-05-21",6829,8,2797],["Treutlen","2021-05-22",6829,3,2800],["Treutlen","2021-05-23",6829,1,2801],["Treutlen","2021-05-24",6829,7,2808],["Treutlen","2021-05-25",6829,6,2814],["Treutlen","2021-05-26",6829,25,2839],["Treutlen","2021-05-27",6829,7,2846],["Treutlen","2021-05-28",6829,6,2852],["Treutlen","2021-05-29",6829,1,2853],["Treutlen","2021-06-01",6829,12,2865],["Treutlen","2021-06-02",6829,7,2872],["Treutlen","2021-06-03",6829,6,2878],["Treutlen","2021-06-04",6829,6,2884],["Treutlen","2021-06-05",6829,2,2886],["Treutlen","2021-06-07",6829,8,2894],["Treutlen","2021-06-08",6829,15,2909],["Treutlen","2021-06-09",6829,8,2917],["Treutlen","2021-06-10",6829,6,2923],["Treutlen","2021-06-11",6829,10,2933],["Treutlen","2021-06-12",6829,4,2937],["Treutlen","2021-06-14",6829,8,2945],["Treutlen","2021-06-15",6829,13,2958],["Treutlen","2021-06-16",6829,10,2968],["Treutlen","2021-06-17",6829,5,2973],["Treutlen","2021-06-18",6829,5,2978],["Treutlen","2021-06-19",6829,2,2980],["Treutlen","2021-06-21",6829,3,2983],["Treutlen","2021-06-22",6829,4,2987],["Treutlen","2021-06-23",6829,10,2997],["Treutlen","2021-06-24",6829,7,3004],["Treutlen","2021-06-25",6829,9,3013],["Treutlen","2021-06-26",6829,1,3014],["Treutlen","2021-06-28",6829,3,3017],["Treutlen","2021-06-29",6829,9,3026],["Treutlen","2021-06-30",6829,7,3033],["Treutlen","2021-07-01",6829,4,3037],["Treutlen","2021-07-02",6829,3,3040],["Treutlen","2021-07-03",6829,2,3042],["Treutlen","2021-07-05",6829,5,3047],["Treutlen","2021-07-06",6829,5,3052],["Treutlen","2021-07-07",6829,7,3059],["Treutlen","2021-07-08",6829,5,3064],["Treutlen","2021-07-09",6829,4,3068],["Treutlen","2021-07-10",6829,1,3069],["Treutlen","2021-07-12",6829,6,3075],["Treutlen","2021-07-13",6829,12,3087],["Treutlen","2021-07-14",6829,2,3089],["Treutlen","2021-07-15",6829,17,3106],["Treutlen","2021-07-16",6829,10,3116],["Treutlen","2021-07-17",6829,3,3119],["Treutlen","2021-07-18",6829,1,3120],["Treutlen","2021-07-19",6829,12,3132],["Treutlen","2021-07-20",6829,12,3144],["Treutlen","2021-07-21",6829,10,3154],["Treutlen","2021-07-22",6829,11,3165],["Treutlen","2021-07-23",6829,13,3178],["Treutlen","2021-07-24",6829,4,3182],["Treutlen","2021-07-25",6829,1,3183],["Treutlen","2021-07-26",6829,13,3196],["Treutlen","2021-07-27",6829,17,3213],["Treutlen","2021-07-28",6829,33,3246],["Treutlen","2021-07-29",6829,22,3268],["Treutlen","2021-07-30",6829,15,3283],["Treutlen","2021-07-31",6829,3,3286],["Treutlen","2021-08-01",6829,2,3288],["Treutlen","2021-08-02",6829,34,3322],["Treutlen","2021-08-03",6829,34,3356],["Treutlen","2021-08-04",6829,20,3376],["Treutlen","2021-08-05",6829,16,3392],["Treutlen","2021-08-06",6829,23,3415],["Treutlen","2021-08-07",6829,6,3421],["Treutlen","2021-08-08",6829,4,3425],["Treutlen","2021-08-09",6829,28,3453],["Treutlen","2021-08-10",6829,25,3478],["Treutlen","2021-08-11",6829,34,3512],["Treutlen","2021-08-12",6829,24,3536],["Treutlen","2021-08-13",6829,25,3561],["Treutlen","2021-08-14",6829,15,3576],["Treutlen","2021-08-15",6829,1,3577],["Treutlen","2021-08-16",6829,31,3608],["Treutlen","2021-08-17",6829,26,3634],["Treutlen","2021-08-18",6829,25,3659],["Treutlen","2021-08-19",6829,26,3685],["Treutlen","2021-08-20",6829,31,3716],["Treutlen","2021-08-21",6829,3,3719],["Treutlen","2021-08-22",6829,1,3720],["Treutlen","2021-08-23",6829,21,3741],["Treutlen","2021-08-24",6829,28,3769],["Treutlen","2021-08-25",6829,57,3826],["Treutlen","2021-08-26",6829,35,3861],["Treutlen","2021-08-27",6829,37,3898],["Treutlen","2021-08-28",6829,5,3903],["Treutlen","2021-08-29",6829,1,3904],["Treutlen","2021-08-30",6829,33,3937],["Treutlen","2021-08-31",6829,41,3978],["Treutlen","2021-09-01",6829,35,4013],["Treutlen","2021-09-02",6829,27,4040],["Treutlen","2021-09-03",6829,14,4054],["Treutlen","2021-09-04",6829,9,4063],["Treutlen","2021-09-05",6829,11,4074],["Treutlen","2021-09-06",6829,9,4083],["Treutlen","2021-09-07",6829,55,4138],["Treutlen","2021-09-08",6829,19,4157],["Treutlen","2021-09-09",6829,63,4220],["Treutlen","2021-09-10",6829,21,4241],["Treutlen","2021-09-11",6829,5,4246],["Treutlen","2021-09-12",6829,3,4249],["Treutlen","2021-09-13",6829,30,4279],["Treutlen","2021-09-14",6829,12,4291],["Treutlen","2021-09-15",6829,20,4311],["Treutlen","2021-09-16",6829,33,4344],["Treutlen","2021-09-17",6829,13,4357],["Treutlen","2021-09-18",6829,5,4362],["Treutlen","2021-09-19",6829,1,4363],["Treutlen","2021-09-20",6829,35,4398],["Treutlen","2021-09-21",6829,12,4410],["Treutlen","2021-09-22",6829,19,4429],["Treutlen","2021-09-23",6829,41,4470],["Treutlen","2021-09-24",6829,12,4482],["Treutlen","2021-09-25",6829,7,4489],["Treutlen","2021-09-26",6829,4,4493],["Treutlen","2021-09-27",6829,26,4519],["Treutlen","2021-09-28",6829,14,4533],["Treutlen","2021-09-29",6829,9,4542],["Treutlen","2021-09-30",6829,28,4570],["Treutlen","2021-10-01",6829,7,4577],["Treutlen","2021-10-02",6829,2,4579],["Treutlen","2021-10-03",6829,1,4580],["Treutlen","2021-10-04",6829,23,4603],["Treutlen","2021-10-05",6829,9,4612],["Treutlen","2021-10-06",6829,13,4625],["Treutlen","2021-10-07",6829,23,4648],["Treutlen","2021-10-08",6829,6,4654],["Treutlen","2021-10-09",6829,3,4657],["Treutlen","2021-10-10",6829,2,4659],["Treutlen","2021-10-11",6829,5,4664],["Treutlen","2021-10-12",6829,3,4667],["Treutlen","2021-10-13",6829,6,4673],["Treutlen","2021-10-14",6829,24,4697],["Treutlen","2021-10-15",6829,5,4702],["Treutlen","2021-10-16",6829,6,4708],["Treutlen","2021-10-18",6829,14,4722],["Treutlen","2021-10-19",6829,6,4728],["Treutlen","2021-10-20",6829,7,4735],["Treutlen","2021-10-21",6829,8,4743],["Treutlen","2021-10-22",6829,6,4749],["Treutlen","2021-10-23",6829,1,4750],["Treutlen","2021-10-24",6829,2,4752],["Treutlen","2021-10-25",6829,13,4765],["Treutlen","2021-10-26",6829,7,4772],["Treutlen","2021-10-27",6829,10,4782],["Treutlen","2021-10-28",6829,33,4815],["Treutlen","2021-10-29",6829,4,4819],["Treutlen","2021-10-30",6829,3,4822],["Treutlen","2021-11-01",6829,56,4878],["Treutlen","2021-11-02",6829,14,4892],["Treutlen","2021-11-03",6829,9,4901],["Treutlen","2021-11-04",6829,45,4946],["Treutlen","2021-11-05",6829,7,4953],["Treutlen","2021-11-06",6829,2,4955],["Treutlen","2021-11-08",6829,52,5007],["Treutlen","2021-11-09",6829,14,5021],["Treutlen","2021-11-10",6829,7,5028],["Treutlen","2021-11-11",6829,5,5033],["Treutlen","2021-11-12",6829,8,5041],["Treutlen","2021-11-13",6829,1,5042],["Treutlen","2021-11-14",6829,1,5043],["Treutlen","2021-11-15",6829,65,5108],["Treutlen","2021-11-16",6829,6,5114],["Treutlen","2021-11-17",6829,6,5120],["Treutlen","2021-11-18",6829,50,5170],["Treutlen","2021-11-19",6829,7,5177],["Treutlen","2021-11-22",6829,31,5208],["Treutlen","2021-11-23",6829,10,5218],["Treutlen","2021-11-24",6829,3,5221],["Treutlen","2021-11-26",6829,2,5223],["Treutlen","2021-11-27",6829,3,5226],["Treutlen","2021-11-28",6829,2,5228],["Treutlen","2021-11-29",6829,31,5259],["Treutlen","2021-11-30",6829,8,5267],["Treutlen","2021-12-01",6829,10,5277],["Treutlen","2021-12-02",6829,35,5312],["Treutlen","2021-12-03",6829,7,5319],["Treutlen","2021-12-04",6829,9,5328],["Treutlen","2021-12-05",6829,2,5330],["Treutlen","2021-12-06",6829,26,5356],["Treutlen","2021-12-07",6829,7,5363],["Treutlen","2021-12-08",6829,9,5372],["Treutlen","2021-12-09",6829,27,5399],["Treutlen","2021-12-10",6829,11,5410],["Treutlen","2021-12-11",6829,1,5411],["Treutlen","2021-12-12",6829,7,5418],["Treutlen","2021-12-13",6829,16,5434],["Treutlen","2021-12-14",6829,14,5448],["Treutlen","2021-12-15",6829,6,5454],["Treutlen","2021-12-16",6829,25,5479],["Treutlen","2021-12-17",6829,10,5489],["Treutlen","2021-12-18",6829,3,5492],["Treutlen","2021-12-19",6829,3,5495],["Treutlen","2021-12-20",6829,15,5510],["Treutlen","2021-12-21",6829,14,5524],["Treutlen","2021-12-22",6829,10,5534],["Treutlen","2021-12-23",6829,4,5538],["Treutlen","2021-12-24",6829,3,5541],["Treutlen","2021-12-26",6829,3,5544],["Treutlen","2021-12-27",6829,7,5551],["Treutlen","2021-12-28",6829,13,5564],["Treutlen","2021-12-29",6829,7,5571],["Treutlen","2021-12-30",6829,51,5622],["Treutlen","2021-12-31",6829,2,5624],["Treutlen","2022-01-01",6829,1,5625],["Treutlen","2022-01-02",6829,4,5629],["Treutlen","2022-01-03",6829,6,5635],["Troup","2020-12-17",70414,2,2],["Troup","2020-12-18",70414,3,5],["Troup","2020-12-19",70414,6,11],["Troup","2020-12-20",70414,3,14],["Troup","2020-12-21",70414,46,60],["Troup","2020-12-22",70414,55,115],["Troup","2020-12-23",70414,89,204],["Troup","2020-12-24",70414,6,210],["Troup","2020-12-26",70414,45,255],["Troup","2020-12-27",70414,1,256],["Troup","2020-12-28",70414,146,402],["Troup","2020-12-29",70414,165,567],["Troup","2020-12-30",70414,56,623],["Troup","2020-12-31",70414,78,701],["Troup","2021-01-01",70414,17,718],["Troup","2021-01-02",70414,3,721],["Troup","2021-01-03",70414,4,725],["Troup","2021-01-04",70414,78,803],["Troup","2021-01-05",70414,22,825],["Troup","2021-01-06",70414,85,910],["Troup","2021-01-07",70414,92,1002],["Troup","2021-01-08",70414,131,1133],["Troup","2021-01-09",70414,16,1149],["Troup","2021-01-10",70414,15,1164],["Troup","2021-01-11",70414,90,1254],["Troup","2021-01-12",70414,100,1354],["Troup","2021-01-13",70414,175,1529],["Troup","2021-01-14",70414,174,1703],["Troup","2021-01-15",70414,410,2113],["Troup","2021-01-16",70414,72,2185],["Troup","2021-01-17",70414,21,2206],["Troup","2021-01-18",70414,68,2274],["Troup","2021-01-19",70414,204,2478],["Troup","2021-01-20",70414,183,2661],["Troup","2021-01-21",70414,147,2808],["Troup","2021-01-22",70414,372,3180],["Troup","2021-01-23",70414,88,3268],["Troup","2021-01-24",70414,6,3274],["Troup","2021-01-25",70414,315,3589],["Troup","2021-01-26",70414,242,3831],["Troup","2021-01-27",70414,301,4132],["Troup","2021-01-28",70414,262,4394],["Troup","2021-01-29",70414,273,4667],["Troup","2021-01-30",70414,46,4713],["Troup","2021-01-31",70414,16,4729],["Troup","2021-02-01",70414,145,4874],["Troup","2021-02-02",70414,141,5015],["Troup","2021-02-03",70414,107,5122],["Troup","2021-02-04",70414,162,5284],["Troup","2021-02-05",70414,148,5432],["Troup","2021-02-06",70414,12,5444],["Troup","2021-02-07",70414,14,5458],["Troup","2021-02-08",70414,57,5515],["Troup","2021-02-09",70414,215,5730],["Troup","2021-02-10",70414,142,5872],["Troup","2021-02-11",70414,148,6020],["Troup","2021-02-12",70414,598,6618],["Troup","2021-02-13",70414,61,6679],["Troup","2021-02-14",70414,8,6687],["Troup","2021-02-15",70414,552,7239],["Troup","2021-02-16",70414,277,7516],["Troup","2021-02-17",70414,319,7835],["Troup","2021-02-18",70414,269,8104],["Troup","2021-02-19",70414,208,8312],["Troup","2021-02-20",70414,82,8394],["Troup","2021-02-21",70414,9,8403],["Troup","2021-02-22",70414,247,8650],["Troup","2021-02-23",70414,199,8849],["Troup","2021-02-24",70414,193,9042],["Troup","2021-02-25",70414,234,9276],["Troup","2021-02-26",70414,302,9578],["Troup","2021-02-27",70414,56,9634],["Troup","2021-02-28",70414,19,9653],["Troup","2021-03-01",70414,87,9740],["Troup","2021-03-02",70414,202,9942],["Troup","2021-03-03",70414,204,10146],["Troup","2021-03-04",70414,172,10318],["Troup","2021-03-05",70414,458,10776],["Troup","2021-03-06",70414,37,10813],["Troup","2021-03-07",70414,20,10833],["Troup","2021-03-08",70414,115,10948],["Troup","2021-03-09",70414,215,11163],["Troup","2021-03-10",70414,260,11423],["Troup","2021-03-11",70414,195,11618],["Troup","2021-03-12",70414,463,12081],["Troup","2021-03-13",70414,35,12116],["Troup","2021-03-14",70414,27,12143],["Troup","2021-03-15",70414,760,12903],["Troup","2021-03-16",70414,202,13105],["Troup","2021-03-17",70414,335,13440],["Troup","2021-03-18",70414,264,13704],["Troup","2021-03-19",70414,656,14360],["Troup","2021-03-20",70414,85,14445],["Troup","2021-03-21",70414,54,14499],["Troup","2021-03-22",70414,190,14689],["Troup","2021-03-23",70414,272,14961],["Troup","2021-03-24",70414,420,15381],["Troup","2021-03-25",70414,330,15711],["Troup","2021-03-26",70414,631,16342],["Troup","2021-03-27",70414,859,17201],["Troup","2021-03-28",70414,54,17255],["Troup","2021-03-29",70414,191,17446],["Troup","2021-03-30",70414,438,17884],["Troup","2021-03-31",70414,333,18217],["Troup","2021-04-01",70414,354,18571],["Troup","2021-04-02",70414,360,18931],["Troup","2021-04-03",70414,96,19027],["Troup","2021-04-04",70414,78,19105],["Troup","2021-04-05",70414,376,19481],["Troup","2021-04-06",70414,328,19809],["Troup","2021-04-07",70414,398,20207],["Troup","2021-04-08",70414,386,20593],["Troup","2021-04-09",70414,698,21291],["Troup","2021-04-10",70414,205,21496],["Troup","2021-04-11",70414,55,21551],["Troup","2021-04-12",70414,380,21931],["Troup","2021-04-13",70414,305,22236],["Troup","2021-04-14",70414,400,22636],["Troup","2021-04-15",70414,290,22926],["Troup","2021-04-16",70414,693,23619],["Troup","2021-04-17",70414,807,24426],["Troup","2021-04-18",70414,78,24504],["Troup","2021-04-19",70414,280,24784],["Troup","2021-04-20",70414,443,25227],["Troup","2021-04-21",70414,347,25574],["Troup","2021-04-22",70414,459,26033],["Troup","2021-04-23",70414,748,26781],["Troup","2021-04-24",70414,107,26888],["Troup","2021-04-25",70414,76,26964],["Troup","2021-04-26",70414,290,27254],["Troup","2021-04-27",70414,285,27539],["Troup","2021-04-28",70414,354,27893],["Troup","2021-04-29",70414,263,28156],["Troup","2021-04-30",70414,280,28436],["Troup","2021-05-01",70414,142,28578],["Troup","2021-05-02",70414,86,28664],["Troup","2021-05-03",70414,200,28864],["Troup","2021-05-04",70414,211,29075],["Troup","2021-05-05",70414,247,29322],["Troup","2021-05-06",70414,163,29485],["Troup","2021-05-07",70414,278,29763],["Troup","2021-05-08",70414,125,29888],["Troup","2021-05-09",70414,50,29938],["Troup","2021-05-10",70414,231,30169],["Troup","2021-05-11",70414,201,30370],["Troup","2021-05-12",70414,162,30532],["Troup","2021-05-13",70414,214,30746],["Troup","2021-05-14",70414,159,30905],["Troup","2021-05-15",70414,101,31006],["Troup","2021-05-16",70414,89,31095],["Troup","2021-05-17",70414,195,31290],["Troup","2021-05-18",70414,255,31545],["Troup","2021-05-19",70414,196,31741],["Troup","2021-05-20",70414,322,32063],["Troup","2021-05-21",70414,209,32272],["Troup","2021-05-22",70414,71,32343],["Troup","2021-05-23",70414,78,32421],["Troup","2021-05-24",70414,159,32580],["Troup","2021-05-25",70414,192,32772],["Troup","2021-05-26",70414,138,32910],["Troup","2021-05-27",70414,153,33063],["Troup","2021-05-28",70414,135,33198],["Troup","2021-05-29",70414,81,33279],["Troup","2021-05-30",70414,48,33327],["Troup","2021-05-31",70414,42,33369],["Troup","2021-06-01",70414,163,33532],["Troup","2021-06-02",70414,134,33666],["Troup","2021-06-03",70414,118,33784],["Troup","2021-06-04",70414,236,34020],["Troup","2021-06-05",70414,101,34121],["Troup","2021-06-06",70414,90,34211],["Troup","2021-06-07",70414,113,34324],["Troup","2021-06-08",70414,167,34491],["Troup","2021-06-09",70414,107,34598],["Troup","2021-06-10",70414,173,34771],["Troup","2021-06-11",70414,187,34958],["Troup","2021-06-12",70414,182,35140],["Troup","2021-06-13",70414,40,35180],["Troup","2021-06-14",70414,107,35287],["Troup","2021-06-15",70414,106,35393],["Troup","2021-06-16",70414,80,35473],["Troup","2021-06-17",70414,108,35581],["Troup","2021-06-18",70414,138,35719],["Troup","2021-06-19",70414,45,35764],["Troup","2021-06-20",70414,34,35798],["Troup","2021-06-21",70414,72,35870],["Troup","2021-06-22",70414,104,35974],["Troup","2021-06-23",70414,89,36063],["Troup","2021-06-24",70414,67,36130],["Troup","2021-06-25",70414,128,36258],["Troup","2021-06-26",70414,61,36319],["Troup","2021-06-27",70414,41,36360],["Troup","2021-06-28",70414,83,36443],["Troup","2021-06-29",70414,105,36548],["Troup","2021-06-30",70414,63,36611],["Troup","2021-07-01",70414,60,36671],["Troup","2021-07-02",70414,89,36760],["Troup","2021-07-03",70414,48,36808],["Troup","2021-07-04",70414,5,36813],["Troup","2021-07-05",70414,56,36869],["Troup","2021-07-06",70414,78,36947],["Troup","2021-07-07",70414,71,37018],["Troup","2021-07-08",70414,78,37096],["Troup","2021-07-09",70414,89,37185],["Troup","2021-07-10",70414,58,37243],["Troup","2021-07-11",70414,25,37268],["Troup","2021-07-12",70414,109,37377],["Troup","2021-07-13",70414,114,37491],["Troup","2021-07-14",70414,60,37551],["Troup","2021-07-15",70414,104,37655],["Troup","2021-07-16",70414,134,37789],["Troup","2021-07-17",70414,45,37834],["Troup","2021-07-18",70414,34,37868],["Troup","2021-07-19",70414,111,37979],["Troup","2021-07-20",70414,107,38086],["Troup","2021-07-21",70414,105,38191],["Troup","2021-07-22",70414,128,38319],["Troup","2021-07-23",70414,187,38506],["Troup","2021-07-24",70414,111,38617],["Troup","2021-07-25",70414,41,38658],["Troup","2021-07-26",70414,143,38801],["Troup","2021-07-27",70414,155,38956],["Troup","2021-07-28",70414,138,39094],["Troup","2021-07-29",70414,147,39241],["Troup","2021-07-30",70414,199,39440],["Troup","2021-07-31",70414,112,39552],["Troup","2021-08-01",70414,79,39631],["Troup","2021-08-02",70414,134,39765],["Troup","2021-08-03",70414,180,39945],["Troup","2021-08-04",70414,171,40116],["Troup","2021-08-05",70414,155,40271],["Troup","2021-08-06",70414,245,40516],["Troup","2021-08-07",70414,118,40634],["Troup","2021-08-08",70414,70,40704],["Troup","2021-08-09",70414,149,40853],["Troup","2021-08-10",70414,165,41018],["Troup","2021-08-11",70414,159,41177],["Troup","2021-08-12",70414,131,41308],["Troup","2021-08-13",70414,230,41538],["Troup","2021-08-14",70414,162,41700],["Troup","2021-08-15",70414,75,41775],["Troup","2021-08-16",70414,190,41965],["Troup","2021-08-17",70414,236,42201],["Troup","2021-08-18",70414,207,42408],["Troup","2021-08-19",70414,240,42648],["Troup","2021-08-20",70414,296,42944],["Troup","2021-08-21",70414,136,43080],["Troup","2021-08-22",70414,98,43178],["Troup","2021-08-23",70414,181,43359],["Troup","2021-08-24",70414,234,43593],["Troup","2021-08-25",70414,194,43787],["Troup","2021-08-26",70414,278,44065],["Troup","2021-08-27",70414,245,44310],["Troup","2021-08-28",70414,124,44434],["Troup","2021-08-29",70414,79,44513],["Troup","2021-08-30",70414,192,44705],["Troup","2021-08-31",70414,217,44922],["Troup","2021-09-01",70414,154,45076],["Troup","2021-09-02",70414,237,45313],["Troup","2021-09-03",70414,248,45561],["Troup","2021-09-04",70414,118,45679],["Troup","2021-09-05",70414,103,45782],["Troup","2021-09-06",70414,23,45805],["Troup","2021-09-07",70414,231,46036],["Troup","2021-09-08",70414,205,46241],["Troup","2021-09-09",70414,243,46484],["Troup","2021-09-10",70414,297,46781],["Troup","2021-09-11",70414,148,46929],["Troup","2021-09-12",70414,80,47009],["Troup","2021-09-13",70414,224,47233],["Troup","2021-09-14",70414,208,47441],["Troup","2021-09-15",70414,127,47568],["Troup","2021-09-16",70414,190,47758],["Troup","2021-09-17",70414,236,47994],["Troup","2021-09-18",70414,77,48071],["Troup","2021-09-19",70414,66,48137],["Troup","2021-09-20",70414,124,48261],["Troup","2021-09-21",70414,159,48420],["Troup","2021-09-22",70414,126,48546],["Troup","2021-09-23",70414,178,48724],["Troup","2021-09-24",70414,187,48911],["Troup","2021-09-25",70414,95,49006],["Troup","2021-09-26",70414,63,49069],["Troup","2021-09-27",70414,136,49205],["Troup","2021-09-28",70414,205,49410],["Troup","2021-09-29",70414,134,49544],["Troup","2021-09-30",70414,152,49696],["Troup","2021-10-01",70414,196,49892],["Troup","2021-10-02",70414,90,49982],["Troup","2021-10-03",70414,43,50025],["Troup","2021-10-04",70414,113,50138],["Troup","2021-10-05",70414,207,50345],["Troup","2021-10-06",70414,143,50488],["Troup","2021-10-07",70414,150,50638],["Troup","2021-10-08",70414,203,50841],["Troup","2021-10-09",70414,74,50915],["Troup","2021-10-10",70414,42,50957],["Troup","2021-10-11",70414,84,51041],["Troup","2021-10-12",70414,109,51150],["Troup","2021-10-13",70414,90,51240],["Troup","2021-10-14",70414,92,51332],["Troup","2021-10-15",70414,110,51442],["Troup","2021-10-16",70414,44,51486],["Troup","2021-10-17",70414,33,51519],["Troup","2021-10-18",70414,97,51616],["Troup","2021-10-19",70414,108,51724],["Troup","2021-10-20",70414,108,51832],["Troup","2021-10-21",70414,114,51946],["Troup","2021-10-22",70414,130,52076],["Troup","2021-10-23",70414,170,52246],["Troup","2021-10-24",70414,47,52293],["Troup","2021-10-25",70414,194,52487],["Troup","2021-10-26",70414,242,52729],["Troup","2021-10-27",70414,169,52898],["Troup","2021-10-28",70414,275,53173],["Troup","2021-10-29",70414,219,53392],["Troup","2021-10-30",70414,75,53467],["Troup","2021-10-31",70414,37,53504],["Troup","2021-11-01",70414,141,53645],["Troup","2021-11-02",70414,180,53825],["Troup","2021-11-03",70414,172,53997],["Troup","2021-11-04",70414,157,54154],["Troup","2021-11-05",70414,247,54401],["Troup","2021-11-06",70414,61,54462],["Troup","2021-11-07",70414,53,54515],["Troup","2021-11-08",70414,101,54616],["Troup","2021-11-09",70414,183,54799],["Troup","2021-11-10",70414,105,54904],["Troup","2021-11-11",70414,161,55065],["Troup","2021-11-12",70414,227,55292],["Troup","2021-11-13",70414,51,55343],["Troup","2021-11-14",70414,25,55368],["Troup","2021-11-15",70414,133,55501],["Troup","2021-11-16",70414,121,55622],["Troup","2021-11-17",70414,108,55730],["Troup","2021-11-18",70414,159,55889],["Troup","2021-11-19",70414,213,56102],["Troup","2021-11-20",70414,90,56192],["Troup","2021-11-21",70414,39,56231],["Troup","2021-11-22",70414,147,56378],["Troup","2021-11-23",70414,135,56513],["Troup","2021-11-24",70414,117,56630],["Troup","2021-11-25",70414,1,56631],["Troup","2021-11-26",70414,95,56726],["Troup","2021-11-27",70414,67,56793],["Troup","2021-11-28",70414,59,56852],["Troup","2021-11-29",70414,156,57008],["Troup","2021-11-30",70414,198,57206],["Troup","2021-12-01",70414,181,57387],["Troup","2021-12-02",70414,244,57631],["Troup","2021-12-03",70414,285,57916],["Troup","2021-12-04",70414,107,58023],["Troup","2021-12-05",70414,65,58088],["Troup","2021-12-06",70414,147,58235],["Troup","2021-12-07",70414,159,58394],["Troup","2021-12-08",70414,121,58515],["Troup","2021-12-09",70414,177,58692],["Troup","2021-12-10",70414,205,58897],["Troup","2021-12-11",70414,116,59013],["Troup","2021-12-12",70414,41,59054],["Troup","2021-12-13",70414,115,59169],["Troup","2021-12-14",70414,107,59276],["Troup","2021-12-15",70414,127,59403],["Troup","2021-12-16",70414,153,59556],["Troup","2021-12-17",70414,200,59756],["Troup","2021-12-18",70414,97,59853],["Troup","2021-12-19",70414,50,59903],["Troup","2021-12-20",70414,180,60083],["Troup","2021-12-21",70414,156,60239],["Troup","2021-12-22",70414,187,60426],["Troup","2021-12-23",70414,140,60566],["Troup","2021-12-24",70414,65,60631],["Troup","2021-12-26",70414,83,60714],["Troup","2021-12-27",70414,152,60866],["Troup","2021-12-28",70414,185,61051],["Troup","2021-12-29",70414,184,61235],["Troup","2021-12-30",70414,187,61422],["Troup","2021-12-31",70414,122,61544],["Troup","2022-01-01",70414,7,61551],["Troup","2022-01-02",70414,76,61627],["Troup","2022-01-03",70414,58,61685],["Turner","2020-12-17",8076,2,2],["Turner","2020-12-18",8076,2,4],["Turner","2020-12-20",8076,1,5],["Turner","2020-12-21",8076,3,8],["Turner","2020-12-22",8076,2,10],["Turner","2020-12-23",8076,16,26],["Turner","2020-12-24",8076,4,30],["Turner","2020-12-28",8076,28,58],["Turner","2020-12-29",8076,11,69],["Turner","2020-12-30",8076,18,87],["Turner","2020-12-31",8076,14,101],["Turner","2021-01-01",8076,1,102],["Turner","2021-01-03",8076,43,145],["Turner","2021-01-04",8076,29,174],["Turner","2021-01-05",8076,14,188],["Turner","2021-01-06",8076,24,212],["Turner","2021-01-07",8076,20,232],["Turner","2021-01-08",8076,16,248],["Turner","2021-01-09",8076,1,249],["Turner","2021-01-11",8076,57,306],["Turner","2021-01-12",8076,14,320],["Turner","2021-01-13",8076,47,367],["Turner","2021-01-14",8076,51,418],["Turner","2021-01-15",8076,58,476],["Turner","2021-01-16",8076,1,477],["Turner","2021-01-18",8076,54,531],["Turner","2021-01-19",8076,23,554],["Turner","2021-01-20",8076,57,611],["Turner","2021-01-21",8076,82,693],["Turner","2021-01-22",8076,69,762],["Turner","2021-01-24",8076,67,829],["Turner","2021-01-25",8076,65,894],["Turner","2021-01-26",8076,32,926],["Turner","2021-01-27",8076,70,996],["Turner","2021-01-28",8076,74,1070],["Turner","2021-01-29",8076,45,1115],["Turner","2021-01-30",8076,2,1117],["Turner","2021-01-31",8076,2,1119],["Turner","2021-02-01",8076,77,1196],["Turner","2021-02-02",8076,22,1218],["Turner","2021-02-03",8076,83,1301],["Turner","2021-02-04",8076,72,1373],["Turner","2021-02-05",8076,61,1434],["Turner","2021-02-06",8076,5,1439],["Turner","2021-02-08",8076,69,1508],["Turner","2021-02-09",8076,19,1527],["Turner","2021-02-10",8076,59,1586],["Turner","2021-02-11",8076,74,1660],["Turner","2021-02-12",8076,74,1734],["Turner","2021-02-13",8076,1,1735],["Turner","2021-02-14",8076,1,1736],["Turner","2021-02-15",8076,61,1797],["Turner","2021-02-16",8076,34,1831],["Turner","2021-02-17",8076,82,1913],["Turner","2021-02-18",8076,76,1989],["Turner","2021-02-19",8076,66,2055],["Turner","2021-02-22",8076,80,2135],["Turner","2021-02-23",8076,24,2159],["Turner","2021-02-24",8076,74,2233],["Turner","2021-02-25",8076,69,2302],["Turner","2021-02-26",8076,56,2358],["Turner","2021-02-27",8076,2,2360],["Turner","2021-02-28",8076,2,2362],["Turner","2021-03-01",8076,63,2425],["Turner","2021-03-02",8076,22,2447],["Turner","2021-03-03",8076,60,2507],["Turner","2021-03-04",8076,28,2535],["Turner","2021-03-05",8076,64,2599],["Turner","2021-03-06",8076,3,2602],["Turner","2021-03-07",8076,2,2604],["Turner","2021-03-08",8076,57,2661],["Turner","2021-03-09",8076,19,2680],["Turner","2021-03-10",8076,105,2785],["Turner","2021-03-11",8076,51,2836],["Turner","2021-03-12",8076,48,2884],["Turner","2021-03-13",8076,8,2892],["Turner","2021-03-14",8076,10,2902],["Turner","2021-03-15",8076,54,2956],["Turner","2021-03-16",8076,42,2998],["Turner","2021-03-17",8076,79,3077],["Turner","2021-03-18",8076,24,3101],["Turner","2021-03-19",8076,43,3144],["Turner","2021-03-20",8076,1,3145],["Turner","2021-03-21",8076,10,3155],["Turner","2021-03-22",8076,23,3178],["Turner","2021-03-23",8076,35,3213],["Turner","2021-03-24",8076,59,3272],["Turner","2021-03-25",8076,123,3395],["Turner","2021-03-26",8076,23,3418],["Turner","2021-03-27",8076,2,3420],["Turner","2021-03-28",8076,11,3431],["Turner","2021-03-29",8076,14,3445],["Turner","2021-03-30",8076,57,3502],["Turner","2021-03-31",8076,59,3561],["Turner","2021-04-01",8076,82,3643],["Turner","2021-04-02",8076,93,3736],["Turner","2021-04-03",8076,6,3742],["Turner","2021-04-04",8076,1,3743],["Turner","2021-04-05",8076,57,3800],["Turner","2021-04-06",8076,39,3839],["Turner","2021-04-07",8076,103,3942],["Turner","2021-04-08",8076,32,3974],["Turner","2021-04-09",8076,28,4002],["Turner","2021-04-10",8076,7,4009],["Turner","2021-04-11",8076,9,4018],["Turner","2021-04-12",8076,33,4051],["Turner","2021-04-13",8076,38,4089],["Turner","2021-04-14",8076,75,4164],["Turner","2021-04-15",8076,146,4310],["Turner","2021-04-16",8076,36,4346],["Turner","2021-04-17",8076,4,4350],["Turner","2021-04-19",8076,28,4378],["Turner","2021-04-20",8076,25,4403],["Turner","2021-04-21",8076,70,4473],["Turner","2021-04-22",8076,30,4503],["Turner","2021-04-23",8076,64,4567],["Turner","2021-04-25",8076,1,4568],["Turner","2021-04-26",8076,13,4581],["Turner","2021-04-27",8076,25,4606],["Turner","2021-04-28",8076,65,4671],["Turner","2021-04-29",8076,69,4740],["Turner","2021-04-30",8076,22,4762],["Turner","2021-05-01",8076,3,4765],["Turner","2021-05-03",8076,15,4780],["Turner","2021-05-04",8076,12,4792],["Turner","2021-05-05",8076,81,4873],["Turner","2021-05-06",8076,80,4953],["Turner","2021-05-07",8076,20,4973],["Turner","2021-05-08",8076,4,4977],["Turner","2021-05-09",8076,3,4980],["Turner","2021-05-10",8076,17,4997],["Turner","2021-05-11",8076,28,5025],["Turner","2021-05-12",8076,43,5068],["Turner","2021-05-13",8076,27,5095],["Turner","2021-05-14",8076,51,5146],["Turner","2021-05-15",8076,6,5152],["Turner","2021-05-16",8076,5,5157],["Turner","2021-05-17",8076,14,5171],["Turner","2021-05-18",8076,18,5189],["Turner","2021-05-19",8076,53,5242],["Turner","2021-05-20",8076,31,5273],["Turner","2021-05-21",8076,24,5297],["Turner","2021-05-22",8076,5,5302],["Turner","2021-05-23",8076,1,5303],["Turner","2021-05-24",8076,13,5316],["Turner","2021-05-25",8076,8,5324],["Turner","2021-05-26",8076,33,5357],["Turner","2021-05-27",8076,34,5391],["Turner","2021-05-28",8076,14,5405],["Turner","2021-05-29",8076,4,5409],["Turner","2021-05-30",8076,6,5415],["Turner","2021-05-31",8076,2,5417],["Turner","2021-06-01",8076,13,5430],["Turner","2021-06-02",8076,19,5449],["Turner","2021-06-03",8076,38,5487],["Turner","2021-06-04",8076,10,5497],["Turner","2021-06-05",8076,4,5501],["Turner","2021-06-06",8076,4,5505],["Turner","2021-06-07",8076,14,5519],["Turner","2021-06-08",8076,17,5536],["Turner","2021-06-09",8076,28,5564],["Turner","2021-06-10",8076,10,5574],["Turner","2021-06-11",8076,19,5593],["Turner","2021-06-12",8076,9,5602],["Turner","2021-06-14",8076,6,5608],["Turner","2021-06-15",8076,6,5614],["Turner","2021-06-16",8076,30,5644],["Turner","2021-06-17",8076,12,5656],["Turner","2021-06-18",8076,15,5671],["Turner","2021-06-19",8076,2,5673],["Turner","2021-06-20",8076,5,5678],["Turner","2021-06-21",8076,7,5685],["Turner","2021-06-22",8076,92,5777],["Turner","2021-06-23",8076,9,5786],["Turner","2021-06-24",8076,18,5804],["Turner","2021-06-25",8076,16,5820],["Turner","2021-06-26",8076,19,5839],["Turner","2021-06-28",8076,5,5844],["Turner","2021-06-29",8076,7,5851],["Turner","2021-06-30",8076,7,5858],["Turner","2021-07-01",8076,11,5869],["Turner","2021-07-02",8076,9,5878],["Turner","2021-07-03",8076,7,5885],["Turner","2021-07-05",8076,5,5890],["Turner","2021-07-06",8076,5,5895],["Turner","2021-07-07",8076,6,5901],["Turner","2021-07-08",8076,18,5919],["Turner","2021-07-09",8076,11,5930],["Turner","2021-07-10",8076,5,5935],["Turner","2021-07-12",8076,7,5942],["Turner","2021-07-13",8076,10,5952],["Turner","2021-07-14",8076,9,5961],["Turner","2021-07-15",8076,18,5979],["Turner","2021-07-16",8076,8,5987],["Turner","2021-07-17",8076,17,6004],["Turner","2021-07-18",8076,2,6006],["Turner","2021-07-19",8076,5,6011],["Turner","2021-07-20",8076,13,6024],["Turner","2021-07-21",8076,13,6037],["Turner","2021-07-22",8076,45,6082],["Turner","2021-07-23",8076,20,6102],["Turner","2021-07-24",8076,8,6110],["Turner","2021-07-25",8076,8,6118],["Turner","2021-07-26",8076,28,6146],["Turner","2021-07-27",8076,45,6191],["Turner","2021-07-28",8076,26,6217],["Turner","2021-07-29",8076,41,6258],["Turner","2021-07-30",8076,59,6317],["Turner","2021-07-31",8076,7,6324],["Turner","2021-08-01",8076,4,6328],["Turner","2021-08-02",8076,37,6365],["Turner","2021-08-03",8076,23,6388],["Turner","2021-08-04",8076,36,6424],["Turner","2021-08-05",8076,43,6467],["Turner","2021-08-06",8076,38,6505],["Turner","2021-08-07",8076,19,6524],["Turner","2021-08-08",8076,6,6530],["Turner","2021-08-09",8076,35,6565],["Turner","2021-08-10",8076,24,6589],["Turner","2021-08-11",8076,31,6620],["Turner","2021-08-12",8076,42,6662],["Turner","2021-08-13",8076,42,6704],["Turner","2021-08-14",8076,21,6725],["Turner","2021-08-15",8076,10,6735],["Turner","2021-08-16",8076,37,6772],["Turner","2021-08-17",8076,49,6821],["Turner","2021-08-18",8076,22,6843],["Turner","2021-08-19",8076,39,6882],["Turner","2021-08-20",8076,49,6931],["Turner","2021-08-21",8076,6,6937],["Turner","2021-08-22",8076,11,6948],["Turner","2021-08-23",8076,46,6994],["Turner","2021-08-24",8076,30,7024],["Turner","2021-08-25",8076,23,7047],["Turner","2021-08-26",8076,50,7097],["Turner","2021-08-27",8076,32,7129],["Turner","2021-08-28",8076,14,7143],["Turner","2021-08-29",8076,9,7152],["Turner","2021-08-30",8076,56,7208],["Turner","2021-08-31",8076,34,7242],["Turner","2021-09-01",8076,36,7278],["Turner","2021-09-02",8076,46,7324],["Turner","2021-09-03",8076,43,7367],["Turner","2021-09-04",8076,14,7381],["Turner","2021-09-05",8076,10,7391],["Turner","2021-09-06",8076,5,7396],["Turner","2021-09-07",8076,49,7445],["Turner","2021-09-08",8076,21,7466],["Turner","2021-09-09",8076,67,7533],["Turner","2021-09-10",8076,45,7578],["Turner","2021-09-11",8076,11,7589],["Turner","2021-09-12",8076,4,7593],["Turner","2021-09-13",8076,35,7628],["Turner","2021-09-14",8076,29,7657],["Turner","2021-09-15",8076,19,7676],["Turner","2021-09-16",8076,24,7700],["Turner","2021-09-17",8076,39,7739],["Turner","2021-09-18",8076,10,7749],["Turner","2021-09-19",8076,5,7754],["Turner","2021-09-20",8076,25,7779],["Turner","2021-09-21",8076,17,7796],["Turner","2021-09-22",8076,10,7806],["Turner","2021-09-23",8076,40,7846],["Turner","2021-09-24",8076,14,7860],["Turner","2021-09-25",8076,6,7866],["Turner","2021-09-26",8076,6,7872],["Turner","2021-09-27",8076,18,7890],["Turner","2021-09-28",8076,15,7905],["Turner","2021-09-29",8076,9,7914],["Turner","2021-09-30",8076,25,7939],["Turner","2021-10-01",8076,28,7967],["Turner","2021-10-02",8076,3,7970],["Turner","2021-10-03",8076,3,7973],["Turner","2021-10-04",8076,11,7984],["Turner","2021-10-05",8076,11,7995],["Turner","2021-10-06",8076,16,8011],["Turner","2021-10-07",8076,36,8047],["Turner","2021-10-08",8076,7,8054],["Turner","2021-10-09",8076,4,8058],["Turner","2021-10-10",8076,3,8061],["Turner","2021-10-11",8076,8,8069],["Turner","2021-10-12",8076,10,8079],["Turner","2021-10-13",8076,8,8087],["Turner","2021-10-14",8076,20,8107],["Turner","2021-10-15",8076,4,8111],["Turner","2021-10-16",8076,3,8114],["Turner","2021-10-17",8076,2,8116],["Turner","2021-10-18",8076,16,8132],["Turner","2021-10-19",8076,10,8142],["Turner","2021-10-20",8076,9,8151],["Turner","2021-10-21",8076,28,8179],["Turner","2021-10-22",8076,11,8190],["Turner","2021-10-23",8076,2,8192],["Turner","2021-10-24",8076,1,8193],["Turner","2021-10-25",8076,14,8207],["Turner","2021-10-26",8076,15,8222],["Turner","2021-10-27",8076,32,8254],["Turner","2021-10-28",8076,15,8269],["Turner","2021-10-29",8076,28,8297],["Turner","2021-10-30",8076,1,8298],["Turner","2021-10-31",8076,3,8301],["Turner","2021-11-01",8076,20,8321],["Turner","2021-11-02",8076,10,8331],["Turner","2021-11-03",8076,39,8370],["Turner","2021-11-04",8076,10,8380],["Turner","2021-11-05",8076,31,8411],["Turner","2021-11-06",8076,1,8412],["Turner","2021-11-08",8076,6,8418],["Turner","2021-11-09",8076,34,8452],["Turner","2021-11-10",8076,40,8492],["Turner","2021-11-11",8076,9,8501],["Turner","2021-11-12",8076,9,8510],["Turner","2021-11-13",8076,8,8518],["Turner","2021-11-14",8076,16,8534],["Turner","2021-11-15",8076,29,8563],["Turner","2021-11-16",8076,12,8575],["Turner","2021-11-17",8076,34,8609],["Turner","2021-11-18",8076,10,8619],["Turner","2021-11-19",8076,25,8644],["Turner","2021-11-20",8076,3,8647],["Turner","2021-11-21",8076,10,8657],["Turner","2021-11-22",8076,23,8680],["Turner","2021-11-23",8076,25,8705],["Turner","2021-11-24",8076,5,8710],["Turner","2021-11-26",8076,6,8716],["Turner","2021-11-27",8076,3,8719],["Turner","2021-11-28",8076,4,8723],["Turner","2021-11-29",8076,11,8734],["Turner","2021-11-30",8076,15,8749],["Turner","2021-12-01",8076,23,8772],["Turner","2021-12-02",8076,48,8820],["Turner","2021-12-03",8076,45,8865],["Turner","2021-12-04",8076,7,8872],["Turner","2021-12-05",8076,5,8877],["Turner","2021-12-06",8076,14,8891],["Turner","2021-12-07",8076,11,8902],["Turner","2021-12-08",8076,55,8957],["Turner","2021-12-09",8076,30,8987],["Turner","2021-12-10",8076,36,9023],["Turner","2021-12-11",8076,2,9025],["Turner","2021-12-12",8076,2,9027],["Turner","2021-12-13",8076,20,9047],["Turner","2021-12-14",8076,11,9058],["Turner","2021-12-15",8076,59,9117],["Turner","2021-12-16",8076,18,9135],["Turner","2021-12-17",8076,24,9159],["Turner","2021-12-18",8076,5,9164],["Turner","2021-12-19",8076,1,9165],["Turner","2021-12-20",8076,13,9178],["Turner","2021-12-21",8076,45,9223],["Turner","2021-12-22",8076,43,9266],["Turner","2021-12-23",8076,13,9279],["Turner","2021-12-24",8076,4,9283],["Turner","2021-12-26",8076,2,9285],["Turner","2021-12-27",8076,20,9305],["Turner","2021-12-28",8076,15,9320],["Turner","2021-12-29",8076,25,9345],["Turner","2021-12-30",8076,42,9387],["Turner","2021-12-31",8076,18,9405],["Turner","2022-01-01",8076,1,9406],["Turner","2022-01-02",8076,3,9409],["Turner","2022-01-03",8076,6,9415],["Twiggs","2020-12-17",8086,1,1],["Twiggs","2020-12-18",8086,3,4],["Twiggs","2020-12-19",8086,1,5],["Twiggs","2020-12-22",8086,5,10],["Twiggs","2020-12-23",8086,7,17],["Twiggs","2020-12-24",8086,4,21],["Twiggs","2020-12-26",8086,1,22],["Twiggs","2020-12-27",8086,26,48],["Twiggs","2020-12-28",8086,38,86],["Twiggs","2020-12-29",8086,7,93],["Twiggs","2020-12-30",8086,9,102],["Twiggs","2020-12-31",8086,4,106],["Twiggs","2021-01-03",8086,1,107],["Twiggs","2021-01-04",8086,4,111],["Twiggs","2021-01-05",8086,5,116],["Twiggs","2021-01-06",8086,22,138],["Twiggs","2021-01-07",8086,5,143],["Twiggs","2021-01-08",8086,9,152],["Twiggs","2021-01-09",8086,1,153],["Twiggs","2021-01-10",8086,2,155],["Twiggs","2021-01-11",8086,14,169],["Twiggs","2021-01-12",8086,7,176],["Twiggs","2021-01-13",8086,30,206],["Twiggs","2021-01-14",8086,24,230],["Twiggs","2021-01-15",8086,37,267],["Twiggs","2021-01-16",8086,10,277],["Twiggs","2021-01-17",8086,33,310],["Twiggs","2021-01-18",8086,64,374],["Twiggs","2021-01-19",8086,23,397],["Twiggs","2021-01-20",8086,83,480],["Twiggs","2021-01-21",8086,43,523],["Twiggs","2021-01-22",8086,64,587],["Twiggs","2021-01-23",8086,12,599],["Twiggs","2021-01-24",8086,2,601],["Twiggs","2021-01-25",8086,51,652],["Twiggs","2021-01-26",8086,20,672],["Twiggs","2021-01-27",8086,102,774],["Twiggs","2021-01-28",8086,26,800],["Twiggs","2021-01-29",8086,34,834],["Twiggs","2021-01-31",8086,2,836],["Twiggs","2021-02-01",8086,23,859],["Twiggs","2021-02-02",8086,17,876],["Twiggs","2021-02-03",8086,71,947],["Twiggs","2021-02-04",8086,46,993],["Twiggs","2021-02-05",8086,38,1031],["Twiggs","2021-02-06",8086,6,1037],["Twiggs","2021-02-07",8086,3,1040],["Twiggs","2021-02-08",8086,60,1100],["Twiggs","2021-02-09",8086,22,1122],["Twiggs","2021-02-10",8086,69,1191],["Twiggs","2021-02-11",8086,26,1217],["Twiggs","2021-02-12",8086,61,1278],["Twiggs","2021-02-13",8086,23,1301],["Twiggs","2021-02-14",8086,2,1303],["Twiggs","2021-02-15",8086,43,1346],["Twiggs","2021-02-16",8086,23,1369],["Twiggs","2021-02-17",8086,78,1447],["Twiggs","2021-02-18",8086,40,1487],["Twiggs","2021-02-19",8086,67,1554],["Twiggs","2021-02-20",8086,12,1566],["Twiggs","2021-02-22",8086,25,1591],["Twiggs","2021-02-23",8086,32,1623],["Twiggs","2021-02-24",8086,143,1766],["Twiggs","2021-02-25",8086,73,1839],["Twiggs","2021-02-26",8086,91,1930],["Twiggs","2021-02-27",8086,5,1935],["Twiggs","2021-02-28",8086,2,1937],["Twiggs","2021-03-01",8086,72,2009],["Twiggs","2021-03-02",8086,38,2047],["Twiggs","2021-03-03",8086,106,2153],["Twiggs","2021-03-04",8086,57,2210],["Twiggs","2021-03-05",8086,60,2270],["Twiggs","2021-03-06",8086,6,2276],["Twiggs","2021-03-07",8086,4,2280],["Twiggs","2021-03-08",8086,49,2329],["Twiggs","2021-03-09",8086,20,2349],["Twiggs","2021-03-10",8086,102,2451],["Twiggs","2021-03-11",8086,44,2495],["Twiggs","2021-03-12",8086,94,2589],["Twiggs","2021-03-13",8086,17,2606],["Twiggs","2021-03-14",8086,3,2609],["Twiggs","2021-03-15",8086,68,2677],["Twiggs","2021-03-16",8086,51,2728],["Twiggs","2021-03-17",8086,142,2870],["Twiggs","2021-03-18",8086,43,2913],["Twiggs","2021-03-19",8086,99,3012],["Twiggs","2021-03-20",8086,7,3019],["Twiggs","2021-03-21",8086,2,3021],["Twiggs","2021-03-22",8086,62,3083],["Twiggs","2021-03-23",8086,30,3113],["Twiggs","2021-03-24",8086,120,3233],["Twiggs","2021-03-25",8086,60,3293],["Twiggs","2021-03-26",8086,89,3382],["Twiggs","2021-03-27",8086,14,3396],["Twiggs","2021-03-28",8086,10,3406],["Twiggs","2021-03-29",8086,64,3470],["Twiggs","2021-03-30",8086,39,3509],["Twiggs","2021-03-31",8086,105,3614],["Twiggs","2021-04-01",8086,61,3675],["Twiggs","2021-04-02",8086,77,3752],["Twiggs","2021-04-03",8086,16,3768],["Twiggs","2021-04-04",8086,8,3776],["Twiggs","2021-04-05",8086,54,3830],["Twiggs","2021-04-06",8086,39,3869],["Twiggs","2021-04-07",8086,106,3975],["Twiggs","2021-04-08",8086,67,4042],["Twiggs","2021-04-09",8086,93,4135],["Twiggs","2021-04-10",8086,18,4153],["Twiggs","2021-04-11",8086,7,4160],["Twiggs","2021-04-12",8086,60,4220],["Twiggs","2021-04-13",8086,45,4265],["Twiggs","2021-04-14",8086,121,4386],["Twiggs","2021-04-15",8086,37,4423],["Twiggs","2021-04-16",8086,57,4480],["Twiggs","2021-04-17",8086,16,4496],["Twiggs","2021-04-18",8086,8,4504],["Twiggs","2021-04-19",8086,65,4569],["Twiggs","2021-04-20",8086,40,4609],["Twiggs","2021-04-21",8086,127,4736],["Twiggs","2021-04-22",8086,52,4788],["Twiggs","2021-04-23",8086,60,4848],["Twiggs","2021-04-24",8086,10,4858],["Twiggs","2021-04-25",8086,4,4862],["Twiggs","2021-04-26",8086,54,4916],["Twiggs","2021-04-27",8086,30,4946],["Twiggs","2021-04-28",8086,87,5033],["Twiggs","2021-04-29",8086,34,5067],["Twiggs","2021-04-30",8086,60,5127],["Twiggs","2021-05-01",8086,13,5140],["Twiggs","2021-05-02",8086,7,5147],["Twiggs","2021-05-03",8086,36,5183],["Twiggs","2021-05-04",8086,34,5217],["Twiggs","2021-05-05",8086,58,5275],["Twiggs","2021-05-06",8086,32,5307],["Twiggs","2021-05-07",8086,34,5341],["Twiggs","2021-05-08",8086,16,5357],["Twiggs","2021-05-09",8086,1,5358],["Twiggs","2021-05-10",8086,28,5386],["Twiggs","2021-05-11",8086,28,5414],["Twiggs","2021-05-12",8086,62,5476],["Twiggs","2021-05-13",8086,25,5501],["Twiggs","2021-05-14",8086,28,5529],["Twiggs","2021-05-15",8086,8,5537],["Twiggs","2021-05-16",8086,14,5551],["Twiggs","2021-05-17",8086,38,5589],["Twiggs","2021-05-18",8086,35,5624],["Twiggs","2021-05-19",8086,45,5669],["Twiggs","2021-05-20",8086,29,5698],["Twiggs","2021-05-21",8086,35,5733],["Twiggs","2021-05-22",8086,24,5757],["Twiggs","2021-05-23",8086,9,5766],["Twiggs","2021-05-24",8086,16,5782],["Twiggs","2021-05-25",8086,15,5797],["Twiggs","2021-05-26",8086,36,5833],["Twiggs","2021-05-27",8086,21,5854],["Twiggs","2021-05-28",8086,20,5874],["Twiggs","2021-05-29",8086,9,5883],["Twiggs","2021-05-30",8086,8,5891],["Twiggs","2021-05-31",8086,2,5893],["Twiggs","2021-06-01",8086,15,5908],["Twiggs","2021-06-02",8086,49,5957],["Twiggs","2021-06-03",8086,29,5986],["Twiggs","2021-06-04",8086,21,6007],["Twiggs","2021-06-05",8086,34,6041],["Twiggs","2021-06-06",8086,36,6077],["Twiggs","2021-06-07",8086,13,6090],["Twiggs","2021-06-08",8086,12,6102],["Twiggs","2021-06-09",8086,29,6131],["Twiggs","2021-06-10",8086,21,6152],["Twiggs","2021-06-11",8086,17,6169],["Twiggs","2021-06-12",8086,35,6204],["Twiggs","2021-06-13",8086,12,6216],["Twiggs","2021-06-14",8086,6,6222],["Twiggs","2021-06-15",8086,13,6235],["Twiggs","2021-06-16",8086,30,6265],["Twiggs","2021-06-17",8086,17,6282],["Twiggs","2021-06-18",8086,17,6299],["Twiggs","2021-06-19",8086,9,6308],["Twiggs","2021-06-20",8086,6,6314],["Twiggs","2021-06-21",8086,9,6323],["Twiggs","2021-06-22",8086,7,6330],["Twiggs","2021-06-23",8086,36,6366],["Twiggs","2021-06-24",8086,8,6374],["Twiggs","2021-06-25",8086,23,6397],["Twiggs","2021-06-26",8086,42,6439],["Twiggs","2021-06-27",8086,64,6503],["Twiggs","2021-06-28",8086,12,6515],["Twiggs","2021-06-29",8086,22,6537],["Twiggs","2021-06-30",8086,13,6550],["Twiggs","2021-07-01",8086,14,6564],["Twiggs","2021-07-02",8086,16,6580],["Twiggs","2021-07-03",8086,12,6592],["Twiggs","2021-07-05",8086,4,6596],["Twiggs","2021-07-06",8086,8,6604],["Twiggs","2021-07-07",8086,37,6641],["Twiggs","2021-07-08",8086,14,6655],["Twiggs","2021-07-09",8086,11,6666],["Twiggs","2021-07-10",8086,7,6673],["Twiggs","2021-07-11",8086,5,6678],["Twiggs","2021-07-12",8086,5,6683],["Twiggs","2021-07-13",8086,11,6694],["Twiggs","2021-07-14",8086,14,6708],["Twiggs","2021-07-15",8086,16,6724],["Twiggs","2021-07-16",8086,12,6736],["Twiggs","2021-07-17",8086,30,6766],["Twiggs","2021-07-18",8086,1,6767],["Twiggs","2021-07-19",8086,10,6777],["Twiggs","2021-07-20",8086,22,6799],["Twiggs","2021-07-21",8086,29,6828],["Twiggs","2021-07-22",8086,15,6843],["Twiggs","2021-07-23",8086,20,6863],["Twiggs","2021-07-24",8086,18,6881],["Twiggs","2021-07-25",8086,3,6884],["Twiggs","2021-07-26",8086,21,6905],["Twiggs","2021-07-27",8086,14,6919],["Twiggs","2021-07-28",8086,57,6976],["Twiggs","2021-07-29",8086,15,6991],["Twiggs","2021-07-30",8086,26,7017],["Twiggs","2021-07-31",8086,40,7057],["Twiggs","2021-08-01",8086,7,7064],["Twiggs","2021-08-02",8086,15,7079],["Twiggs","2021-08-03",8086,14,7093],["Twiggs","2021-08-04",8086,33,7126],["Twiggs","2021-08-05",8086,30,7156],["Twiggs","2021-08-06",8086,26,7182],["Twiggs","2021-08-07",8086,34,7216],["Twiggs","2021-08-08",8086,10,7226],["Twiggs","2021-08-09",8086,19,7245],["Twiggs","2021-08-10",8086,14,7259],["Twiggs","2021-08-11",8086,53,7312],["Twiggs","2021-08-12",8086,20,7332],["Twiggs","2021-08-13",8086,22,7354],["Twiggs","2021-08-14",8086,31,7385],["Twiggs","2021-08-15",8086,11,7396],["Twiggs","2021-08-16",8086,25,7421],["Twiggs","2021-08-17",8086,58,7479],["Twiggs","2021-08-18",8086,54,7533],["Twiggs","2021-08-19",8086,25,7558],["Twiggs","2021-08-20",8086,28,7586],["Twiggs","2021-08-21",8086,67,7653],["Twiggs","2021-08-22",8086,8,7661],["Twiggs","2021-08-23",8086,31,7692],["Twiggs","2021-08-24",8086,17,7709],["Twiggs","2021-08-25",8086,33,7742],["Twiggs","2021-08-26",8086,28,7770],["Twiggs","2021-08-27",8086,42,7812],["Twiggs","2021-08-28",8086,28,7840],["Twiggs","2021-08-29",8086,10,7850],["Twiggs","2021-08-30",8086,23,7873],["Twiggs","2021-08-31",8086,16,7889],["Twiggs","2021-09-01",8086,44,7933],["Twiggs","2021-09-02",8086,32,7965],["Twiggs","2021-09-03",8086,24,7989],["Twiggs","2021-09-04",8086,38,8027],["Twiggs","2021-09-05",8086,9,8036],["Twiggs","2021-09-06",8086,5,8041],["Twiggs","2021-09-07",8086,26,8067],["Twiggs","2021-09-08",8086,46,8113],["Twiggs","2021-09-09",8086,29,8142],["Twiggs","2021-09-10",8086,27,8169],["Twiggs","2021-09-11",8086,39,8208],["Twiggs","2021-09-12",8086,8,8216],["Twiggs","2021-09-13",8086,25,8241],["Twiggs","2021-09-14",8086,23,8264],["Twiggs","2021-09-15",8086,42,8306],["Twiggs","2021-09-16",8086,25,8331],["Twiggs","2021-09-17",8086,41,8372],["Twiggs","2021-09-18",8086,21,8393],["Twiggs","2021-09-19",8086,7,8400],["Twiggs","2021-09-20",8086,19,8419],["Twiggs","2021-09-21",8086,12,8431],["Twiggs","2021-09-22",8086,47,8478],["Twiggs","2021-09-23",8086,15,8493],["Twiggs","2021-09-24",8086,19,8512],["Twiggs","2021-09-25",8086,9,8521],["Twiggs","2021-09-26",8086,5,8526],["Twiggs","2021-09-27",8086,14,8540],["Twiggs","2021-09-28",8086,14,8554],["Twiggs","2021-09-29",8086,29,8583],["Twiggs","2021-09-30",8086,25,8608],["Twiggs","2021-10-01",8086,20,8628],["Twiggs","2021-10-02",8086,12,8640],["Twiggs","2021-10-03",8086,5,8645],["Twiggs","2021-10-04",8086,19,8664],["Twiggs","2021-10-05",8086,12,8676],["Twiggs","2021-10-06",8086,18,8694],["Twiggs","2021-10-07",8086,12,8706],["Twiggs","2021-10-08",8086,20,8726],["Twiggs","2021-10-09",8086,16,8742],["Twiggs","2021-10-10",8086,7,8749],["Twiggs","2021-10-11",8086,11,8760],["Twiggs","2021-10-12",8086,11,8771],["Twiggs","2021-10-13",8086,26,8797],["Twiggs","2021-10-14",8086,14,8811],["Twiggs","2021-10-15",8086,14,8825],["Twiggs","2021-10-16",8086,15,8840],["Twiggs","2021-10-17",8086,5,8845],["Twiggs","2021-10-18",8086,11,8856],["Twiggs","2021-10-19",8086,11,8867],["Twiggs","2021-10-20",8086,27,8894],["Twiggs","2021-10-21",8086,13,8907],["Twiggs","2021-10-22",8086,12,8919],["Twiggs","2021-10-23",8086,16,8935],["Twiggs","2021-10-24",8086,14,8949],["Twiggs","2021-10-25",8086,22,8971],["Twiggs","2021-10-26",8086,14,8985],["Twiggs","2021-10-27",8086,55,9040],["Twiggs","2021-10-28",8086,39,9079],["Twiggs","2021-10-29",8086,24,9103],["Twiggs","2021-10-30",8086,16,9119],["Twiggs","2021-10-31",8086,5,9124],["Twiggs","2021-11-01",8086,22,9146],["Twiggs","2021-11-02",8086,20,9166],["Twiggs","2021-11-03",8086,93,9259],["Twiggs","2021-11-04",8086,20,9279],["Twiggs","2021-11-05",8086,37,9316],["Twiggs","2021-11-06",8086,14,9330],["Twiggs","2021-11-07",8086,2,9332],["Twiggs","2021-11-08",8086,20,9352],["Twiggs","2021-11-09",8086,19,9371],["Twiggs","2021-11-10",8086,89,9460],["Twiggs","2021-11-11",8086,21,9481],["Twiggs","2021-11-12",8086,28,9509],["Twiggs","2021-11-13",8086,19,9528],["Twiggs","2021-11-14",8086,5,9533],["Twiggs","2021-11-15",8086,12,9545],["Twiggs","2021-11-16",8086,12,9557],["Twiggs","2021-11-17",8086,62,9619],["Twiggs","2021-11-18",8086,33,9652],["Twiggs","2021-11-19",8086,16,9668],["Twiggs","2021-11-20",8086,26,9694],["Twiggs","2021-11-21",8086,3,9697],["Twiggs","2021-11-22",8086,14,9711],["Twiggs","2021-11-23",8086,36,9747],["Twiggs","2021-11-24",8086,32,9779],["Twiggs","2021-11-26",8086,6,9785],["Twiggs","2021-11-27",8086,16,9801],["Twiggs","2021-11-28",8086,2,9803],["Twiggs","2021-11-29",8086,18,9821],["Twiggs","2021-11-30",8086,23,9844],["Twiggs","2021-12-01",8086,42,9886],["Twiggs","2021-12-02",8086,34,9920],["Twiggs","2021-12-03",8086,31,9951],["Twiggs","2021-12-04",8086,28,9979],["Twiggs","2021-12-05",8086,3,9982],["Twiggs","2021-12-06",8086,19,10001],["Twiggs","2021-12-07",8086,21,10022],["Twiggs","2021-12-08",8086,39,10061],["Twiggs","2021-12-09",8086,18,10079],["Twiggs","2021-12-10",8086,34,10113],["Twiggs","2021-12-11",8086,9,10122],["Twiggs","2021-12-12",8086,5,10127],["Twiggs","2021-12-13",8086,13,10140],["Twiggs","2021-12-14",8086,12,10152],["Twiggs","2021-12-15",8086,34,10186],["Twiggs","2021-12-16",8086,16,10202],["Twiggs","2021-12-17",8086,26,10228],["Twiggs","2021-12-18",8086,21,10249],["Twiggs","2021-12-19",8086,3,10252],["Twiggs","2021-12-20",8086,13,10265],["Twiggs","2021-12-21",8086,15,10280],["Twiggs","2021-12-22",8086,23,10303],["Twiggs","2021-12-23",8086,18,10321],["Twiggs","2021-12-24",8086,3,10324],["Twiggs","2021-12-26",8086,8,10332],["Twiggs","2021-12-27",8086,15,10347],["Twiggs","2021-12-28",8086,28,10375],["Twiggs","2021-12-29",8086,18,10393],["Twiggs","2021-12-30",8086,25,10418],["Twiggs","2021-12-31",8086,11,10429],["Twiggs","2022-01-02",8086,2,10431],["Twiggs","2022-01-03",8086,3,10434],["Union","2020-12-16",25335,1,1],["Union","2020-12-18",25335,3,4],["Union","2020-12-19",25335,1,5],["Union","2020-12-20",25335,6,11],["Union","2020-12-21",25335,1,12],["Union","2020-12-22",25335,2,14],["Union","2020-12-23",25335,88,102],["Union","2020-12-24",25335,63,165],["Union","2020-12-26",25335,1,166],["Union","2020-12-28",25335,44,210],["Union","2020-12-29",25335,105,315],["Union","2020-12-30",25335,12,327],["Union","2020-12-31",25335,5,332],["Union","2021-01-01",25335,11,343],["Union","2021-01-02",25335,1,344],["Union","2021-01-04",25335,82,426],["Union","2021-01-05",25335,91,517],["Union","2021-01-06",25335,51,568],["Union","2021-01-07",25335,45,613],["Union","2021-01-08",25335,10,623],["Union","2021-01-09",25335,6,629],["Union","2021-01-10",25335,3,632],["Union","2021-01-11",25335,46,678],["Union","2021-01-12",25335,163,841],["Union","2021-01-13",25335,130,971],["Union","2021-01-14",25335,297,1268],["Union","2021-01-15",25335,71,1339],["Union","2021-01-16",25335,40,1379],["Union","2021-01-17",25335,19,1398],["Union","2021-01-18",25335,237,1635],["Union","2021-01-19",25335,136,1771],["Union","2021-01-20",25335,144,1915],["Union","2021-01-21",25335,101,2016],["Union","2021-01-22",25335,778,2794],["Union","2021-01-23",25335,29,2823],["Union","2021-01-24",25335,6,2829],["Union","2021-01-25",25335,214,3043],["Union","2021-01-26",25335,110,3153],["Union","2021-01-27",25335,106,3259],["Union","2021-01-28",25335,78,3337],["Union","2021-01-29",25335,237,3574],["Union","2021-01-30",25335,15,3589],["Union","2021-01-31",25335,5,3594],["Union","2021-02-01",25335,326,3920],["Union","2021-02-02",25335,117,4037],["Union","2021-02-03",25335,124,4161],["Union","2021-02-04",25335,251,4412],["Union","2021-02-05",25335,136,4548],["Union","2021-02-06",25335,22,4570],["Union","2021-02-07",25335,16,4586],["Union","2021-02-08",25335,273,4859],["Union","2021-02-09",25335,213,5072],["Union","2021-02-10",25335,181,5253],["Union","2021-02-11",25335,201,5454],["Union","2021-02-12",25335,101,5555],["Union","2021-02-13",25335,49,5604],["Union","2021-02-14",25335,20,5624],["Union","2021-02-15",25335,118,5742],["Union","2021-02-16",25335,145,5887],["Union","2021-02-17",25335,167,6054],["Union","2021-02-18",25335,159,6213],["Union","2021-02-19",25335,213,6426],["Union","2021-02-20",25335,30,6456],["Union","2021-02-21",25335,7,6463],["Union","2021-02-22",25335,74,6537],["Union","2021-02-23",25335,167,6704],["Union","2021-02-24",25335,132,6836],["Union","2021-02-25",25335,136,6972],["Union","2021-02-26",25335,1056,8028],["Union","2021-02-27",25335,27,8055],["Union","2021-02-28",25335,42,8097],["Union","2021-03-01",25335,261,8358],["Union","2021-03-02",25335,153,8511],["Union","2021-03-03",25335,229,8740],["Union","2021-03-04",25335,294,9034],["Union","2021-03-05",25335,249,9283],["Union","2021-03-06",25335,26,9309],["Union","2021-03-07",25335,45,9354],["Union","2021-03-08",25335,212,9566],["Union","2021-03-09",25335,213,9779],["Union","2021-03-10",25335,215,9994],["Union","2021-03-11",25335,210,10204],["Union","2021-03-12",25335,228,10432],["Union","2021-03-13",25335,27,10459],["Union","2021-03-14",25335,50,10509],["Union","2021-03-15",25335,210,10719],["Union","2021-03-16",25335,134,10853],["Union","2021-03-17",25335,448,11301],["Union","2021-03-18",25335,179,11480],["Union","2021-03-19",25335,212,11692],["Union","2021-03-20",25335,28,11720],["Union","2021-03-21",25335,46,11766],["Union","2021-03-22",25335,125,11891],["Union","2021-03-23",25335,159,12050],["Union","2021-03-24",25335,150,12200],["Union","2021-03-25",25335,165,12365],["Union","2021-03-26",25335,206,12571],["Union","2021-03-27",25335,55,12626],["Union","2021-03-28",25335,68,12694],["Union","2021-03-29",25335,170,12864],["Union","2021-03-30",25335,165,13029],["Union","2021-03-31",25335,255,13284],["Union","2021-04-01",25335,251,13535],["Union","2021-04-02",25335,67,13602],["Union","2021-04-03",25335,35,13637],["Union","2021-04-04",25335,42,13679],["Union","2021-04-05",25335,132,13811],["Union","2021-04-06",25335,219,14030],["Union","2021-04-07",25335,483,14513],["Union","2021-04-08",25335,209,14722],["Union","2021-04-09",25335,158,14880],["Union","2021-04-10",25335,38,14918],["Union","2021-04-11",25335,43,14961],["Union","2021-04-12",25335,205,15166],["Union","2021-04-13",25335,204,15370],["Union","2021-04-14",25335,165,15535],["Union","2021-04-15",25335,199,15734],["Union","2021-04-16",25335,210,15944],["Union","2021-04-17",25335,83,16027],["Union","2021-04-18",25335,36,16063],["Union","2021-04-19",25335,156,16219],["Union","2021-04-20",25335,113,16332],["Union","2021-04-21",25335,174,16506],["Union","2021-04-22",25335,84,16590],["Union","2021-04-23",25335,147,16737],["Union","2021-04-24",25335,28,16765],["Union","2021-04-25",25335,14,16779],["Union","2021-04-26",25335,84,16863],["Union","2021-04-27",25335,126,16989],["Union","2021-04-28",25335,86,17075],["Union","2021-04-29",25335,111,17186],["Union","2021-04-30",25335,85,17271],["Union","2021-05-01",25335,38,17309],["Union","2021-05-02",25335,16,17325],["Union","2021-05-03",25335,48,17373],["Union","2021-05-04",25335,137,17510],["Union","2021-05-05",25335,86,17596],["Union","2021-05-06",25335,52,17648],["Union","2021-05-07",25335,73,17721],["Union","2021-05-08",25335,65,17786],["Union","2021-05-09",25335,8,17794],["Union","2021-05-10",25335,39,17833],["Union","2021-05-11",25335,54,17887],["Union","2021-05-12",25335,74,17961],["Union","2021-05-13",25335,34,17995],["Union","2021-05-14",25335,30,18025],["Union","2021-05-15",25335,19,18044],["Union","2021-05-16",25335,8,18052],["Union","2021-05-17",25335,41,18093],["Union","2021-05-18",25335,83,18176],["Union","2021-05-19",25335,57,18233],["Union","2021-05-20",25335,47,18280],["Union","2021-05-21",25335,45,18325],["Union","2021-05-22",25335,15,18340],["Union","2021-05-23",25335,19,18359],["Union","2021-05-24",25335,19,18378],["Union","2021-05-25",25335,53,18431],["Union","2021-05-26",25335,40,18471],["Union","2021-05-27",25335,36,18507],["Union","2021-05-28",25335,35,18542],["Union","2021-05-29",25335,14,18556],["Union","2021-05-30",25335,9,18565],["Union","2021-05-31",25335,11,18576],["Union","2021-06-01",25335,55,18631],["Union","2021-06-02",25335,54,18685],["Union","2021-06-03",25335,19,18704],["Union","2021-06-04",25335,33,18737],["Union","2021-06-05",25335,13,18750],["Union","2021-06-06",25335,15,18765],["Union","2021-06-07",25335,25,18790],["Union","2021-06-08",25335,39,18829],["Union","2021-06-09",25335,36,18865],["Union","2021-06-10",25335,18,18883],["Union","2021-06-11",25335,23,18906],["Union","2021-06-12",25335,16,18922],["Union","2021-06-13",25335,6,18928],["Union","2021-06-14",25335,22,18950],["Union","2021-06-15",25335,30,18980],["Union","2021-06-16",25335,33,19013],["Union","2021-06-17",25335,23,19036],["Union","2021-06-18",25335,16,19052],["Union","2021-06-19",25335,9,19061],["Union","2021-06-20",25335,8,19069],["Union","2021-06-21",25335,19,19088],["Union","2021-06-22",25335,29,19117],["Union","2021-06-23",25335,15,19132],["Union","2021-06-24",25335,14,19146],["Union","2021-06-25",25335,21,19167],["Union","2021-06-26",25335,9,19176],["Union","2021-06-27",25335,3,19179],["Union","2021-06-28",25335,11,19190],["Union","2021-06-29",25335,23,19213],["Union","2021-06-30",25335,25,19238],["Union","2021-07-01",25335,23,19261],["Union","2021-07-02",25335,22,19283],["Union","2021-07-03",25335,8,19291],["Union","2021-07-04",25335,1,19292],["Union","2021-07-05",25335,12,19304],["Union","2021-07-06",25335,6,19310],["Union","2021-07-07",25335,18,19328],["Union","2021-07-08",25335,13,19341],["Union","2021-07-09",25335,16,19357],["Union","2021-07-10",25335,7,19364],["Union","2021-07-11",25335,4,19368],["Union","2021-07-12",25335,21,19389],["Union","2021-07-13",25335,16,19405],["Union","2021-07-14",25335,12,19417],["Union","2021-07-15",25335,12,19429],["Union","2021-07-16",25335,23,19452],["Union","2021-07-17",25335,5,19457],["Union","2021-07-18",25335,6,19463],["Union","2021-07-19",25335,14,19477],["Union","2021-07-20",25335,25,19502],["Union","2021-07-21",25335,20,19522],["Union","2021-07-22",25335,22,19544],["Union","2021-07-23",25335,28,19572],["Union","2021-07-24",25335,18,19590],["Union","2021-07-25",25335,7,19597],["Union","2021-07-26",25335,23,19620],["Union","2021-07-27",25335,24,19644],["Union","2021-07-28",25335,35,19679],["Union","2021-07-29",25335,23,19702],["Union","2021-07-30",25335,33,19735],["Union","2021-07-31",25335,15,19750],["Union","2021-08-01",25335,13,19763],["Union","2021-08-02",25335,29,19792],["Union","2021-08-03",25335,29,19821],["Union","2021-08-04",25335,25,19846],["Union","2021-08-05",25335,26,19872],["Union","2021-08-06",25335,49,19921],["Union","2021-08-07",25335,26,19947],["Union","2021-08-08",25335,10,19957],["Union","2021-08-09",25335,45,20002],["Union","2021-08-10",25335,64,20066],["Union","2021-08-11",25335,48,20114],["Union","2021-08-12",25335,46,20160],["Union","2021-08-13",25335,51,20211],["Union","2021-08-14",25335,28,20239],["Union","2021-08-15",25335,21,20260],["Union","2021-08-16",25335,46,20306],["Union","2021-08-17",25335,37,20343],["Union","2021-08-18",25335,74,20417],["Union","2021-08-19",25335,54,20471],["Union","2021-08-20",25335,68,20539],["Union","2021-08-21",25335,29,20568],["Union","2021-08-22",25335,14,20582],["Union","2021-08-23",25335,76,20658],["Union","2021-08-24",25335,61,20719],["Union","2021-08-25",25335,58,20777],["Union","2021-08-26",25335,56,20833],["Union","2021-08-27",25335,82,20915],["Union","2021-08-28",25335,42,20957],["Union","2021-08-29",25335,29,20986],["Union","2021-08-30",25335,76,21062],["Union","2021-08-31",25335,39,21101],["Union","2021-09-01",25335,78,21179],["Union","2021-09-02",25335,60,21239],["Union","2021-09-03",25335,86,21325],["Union","2021-09-04",25335,35,21360],["Union","2021-09-05",25335,16,21376],["Union","2021-09-06",25335,12,21388],["Union","2021-09-07",25335,49,21437],["Union","2021-09-08",25335,77,21514],["Union","2021-09-09",25335,64,21578],["Union","2021-09-10",25335,85,21663],["Union","2021-09-11",25335,36,21699],["Union","2021-09-12",25335,12,21711],["Union","2021-09-13",25335,65,21776],["Union","2021-09-14",25335,52,21828],["Union","2021-09-15",25335,71,21899],["Union","2021-09-16",25335,42,21941],["Union","2021-09-17",25335,75,22016],["Union","2021-09-18",25335,19,22035],["Union","2021-09-19",25335,18,22053],["Union","2021-09-20",25335,52,22105],["Union","2021-09-21",25335,45,22150],["Union","2021-09-22",25335,52,22202],["Union","2021-09-23",25335,47,22249],["Union","2021-09-24",25335,49,22298],["Union","2021-09-25",25335,27,22325],["Union","2021-09-26",25335,26,22351],["Union","2021-09-27",25335,56,22407],["Union","2021-09-28",25335,39,22446],["Union","2021-09-29",25335,43,22489],["Union","2021-09-30",25335,64,22553],["Union","2021-10-01",25335,76,22629],["Union","2021-10-02",25335,19,22648],["Union","2021-10-03",25335,15,22663],["Union","2021-10-04",25335,48,22711],["Union","2021-10-05",25335,41,22752],["Union","2021-10-06",25335,35,22787],["Union","2021-10-07",25335,36,22823],["Union","2021-10-08",25335,43,22866],["Union","2021-10-09",25335,10,22876],["Union","2021-10-10",25335,8,22884],["Union","2021-10-11",25335,18,22902],["Union","2021-10-12",25335,37,22939],["Union","2021-10-13",25335,32,22971],["Union","2021-10-14",25335,29,23000],["Union","2021-10-15",25335,38,23038],["Union","2021-10-16",25335,10,23048],["Union","2021-10-17",25335,6,23054],["Union","2021-10-18",25335,19,23073],["Union","2021-10-19",25335,18,23091],["Union","2021-10-20",25335,57,23148],["Union","2021-10-21",25335,27,23175],["Union","2021-10-22",25335,61,23236],["Union","2021-10-23",25335,58,23294],["Union","2021-10-24",25335,64,23358],["Union","2021-10-25",25335,126,23484],["Union","2021-10-26",25335,132,23616],["Union","2021-10-27",25335,180,23796],["Union","2021-10-28",25335,151,23947],["Union","2021-10-29",25335,122,24069],["Union","2021-10-30",25335,38,24107],["Union","2021-10-31",25335,37,24144],["Union","2021-11-01",25335,125,24269],["Union","2021-11-02",25335,130,24399],["Union","2021-11-03",25335,464,24863],["Union","2021-11-04",25335,199,25062],["Union","2021-11-05",25335,109,25171],["Union","2021-11-06",25335,23,25194],["Union","2021-11-07",25335,27,25221],["Union","2021-11-08",25335,158,25379],["Union","2021-11-09",25335,94,25473],["Union","2021-11-10",25335,92,25565],["Union","2021-11-11",25335,48,25613],["Union","2021-11-12",25335,74,25687],["Union","2021-11-13",25335,40,25727],["Union","2021-11-14",25335,24,25751],["Union","2021-11-15",25335,106,25857],["Union","2021-11-16",25335,94,25951],["Union","2021-11-17",25335,106,26057],["Union","2021-11-18",25335,71,26128],["Union","2021-11-19",25335,83,26211],["Union","2021-11-20",25335,35,26246],["Union","2021-11-21",25335,30,26276],["Union","2021-11-22",25335,97,26373],["Union","2021-11-23",25335,95,26468],["Union","2021-11-24",25335,44,26512],["Union","2021-11-25",25335,1,26513],["Union","2021-11-26",25335,47,26560],["Union","2021-11-27",25335,23,26583],["Union","2021-11-28",25335,21,26604],["Union","2021-11-29",25335,151,26755],["Union","2021-11-30",25335,126,26881],["Union","2021-12-01",25335,109,26990],["Union","2021-12-02",25335,89,27079],["Union","2021-12-03",25335,131,27210],["Union","2021-12-04",25335,25,27235],["Union","2021-12-05",25335,22,27257],["Union","2021-12-06",25335,73,27330],["Union","2021-12-07",25335,84,27414],["Union","2021-12-08",25335,71,27485],["Union","2021-12-09",25335,63,27548],["Union","2021-12-10",25335,65,27613],["Union","2021-12-11",25335,19,27632],["Union","2021-12-12",25335,12,27644],["Union","2021-12-13",25335,68,27712],["Union","2021-12-14",25335,62,27774],["Union","2021-12-15",25335,49,27823],["Union","2021-12-16",25335,61,27884],["Union","2021-12-17",25335,48,27932],["Union","2021-12-18",25335,35,27967],["Union","2021-12-19",25335,18,27985],["Union","2021-12-20",25335,87,28072],["Union","2021-12-21",25335,76,28148],["Union","2021-12-22",25335,41,28189],["Union","2021-12-23",25335,31,28220],["Union","2021-12-24",25335,9,28229],["Union","2021-12-26",25335,11,28240],["Union","2021-12-27",25335,57,28297],["Union","2021-12-28",25335,74,28371],["Union","2021-12-29",25335,94,28465],["Union","2021-12-30",25335,50,28515],["Union","2021-12-31",25335,34,28549],["Union","2022-01-01",25335,8,28557],["Union","2022-01-02",25335,18,28575],["Union","2022-01-03",25335,4,28579],["Upson","2020-12-16",26277,1,1],["Upson","2020-12-18",26277,1,2],["Upson","2020-12-19",26277,5,7],["Upson","2020-12-20",26277,1,8],["Upson","2020-12-21",26277,16,24],["Upson","2020-12-22",26277,37,61],["Upson","2020-12-23",26277,71,132],["Upson","2020-12-24",26277,1,133],["Upson","2020-12-26",26277,2,135],["Upson","2020-12-28",26277,17,152],["Upson","2020-12-29",26277,106,258],["Upson","2020-12-30",26277,25,283],["Upson","2020-12-31",26277,95,378],["Upson","2021-01-01",26277,5,383],["Upson","2021-01-03",26277,7,390],["Upson","2021-01-04",26277,102,492],["Upson","2021-01-05",26277,126,618],["Upson","2021-01-06",26277,31,649],["Upson","2021-01-07",26277,5,654],["Upson","2021-01-08",26277,33,687],["Upson","2021-01-09",26277,18,705],["Upson","2021-01-10",26277,13,718],["Upson","2021-01-11",26277,27,745],["Upson","2021-01-12",26277,162,907],["Upson","2021-01-13",26277,216,1123],["Upson","2021-01-14",26277,151,1274],["Upson","2021-01-15",26277,192,1466],["Upson","2021-01-16",26277,26,1492],["Upson","2021-01-17",26277,11,1503],["Upson","2021-01-18",26277,39,1542],["Upson","2021-01-19",26277,272,1814],["Upson","2021-01-20",26277,46,1860],["Upson","2021-01-21",26277,268,2128],["Upson","2021-01-22",26277,206,2334],["Upson","2021-01-23",26277,6,2340],["Upson","2021-01-24",26277,36,2376],["Upson","2021-01-25",26277,259,2635],["Upson","2021-01-26",26277,285,2920],["Upson","2021-01-27",26277,42,2962],["Upson","2021-01-28",26277,122,3084],["Upson","2021-01-29",26277,144,3228],["Upson","2021-01-30",26277,7,3235],["Upson","2021-01-31",26277,12,3247],["Upson","2021-02-01",26277,45,3292],["Upson","2021-02-02",26277,194,3486],["Upson","2021-02-03",26277,108,3594],["Upson","2021-02-04",26277,349,3943],["Upson","2021-02-05",26277,192,4135],["Upson","2021-02-06",26277,5,4140],["Upson","2021-02-07",26277,4,4144],["Upson","2021-02-08",26277,9,4153],["Upson","2021-02-09",26277,159,4312],["Upson","2021-02-10",26277,47,4359],["Upson","2021-02-11",26277,307,4666],["Upson","2021-02-12",26277,232,4898],["Upson","2021-02-13",26277,30,4928],["Upson","2021-02-14",26277,27,4955],["Upson","2021-02-15",26277,41,4996],["Upson","2021-02-16",26277,252,5248],["Upson","2021-02-17",26277,48,5296],["Upson","2021-02-18",26277,258,5554],["Upson","2021-02-19",26277,176,5730],["Upson","2021-02-20",26277,18,5748],["Upson","2021-02-21",26277,13,5761],["Upson","2021-02-22",26277,45,5806],["Upson","2021-02-23",26277,137,5943],["Upson","2021-02-24",26277,48,5991],["Upson","2021-02-25",26277,276,6267],["Upson","2021-02-26",26277,149,6416],["Upson","2021-02-27",26277,10,6426],["Upson","2021-02-28",26277,23,6449],["Upson","2021-03-01",26277,42,6491],["Upson","2021-03-02",26277,142,6633],["Upson","2021-03-03",26277,43,6676],["Upson","2021-03-04",26277,207,6883],["Upson","2021-03-05",26277,154,7037],["Upson","2021-03-06",26277,19,7056],["Upson","2021-03-07",26277,8,7064],["Upson","2021-03-08",26277,225,7289],["Upson","2021-03-09",26277,135,7424],["Upson","2021-03-10",26277,57,7481],["Upson","2021-03-11",26277,255,7736],["Upson","2021-03-12",26277,160,7896],["Upson","2021-03-13",26277,20,7916],["Upson","2021-03-14",26277,11,7927],["Upson","2021-03-15",26277,51,7978],["Upson","2021-03-16",26277,160,8138],["Upson","2021-03-17",26277,69,8207],["Upson","2021-03-18",26277,175,8382],["Upson","2021-03-19",26277,196,8578],["Upson","2021-03-20",26277,28,8606],["Upson","2021-03-21",26277,13,8619],["Upson","2021-03-22",26277,72,8691],["Upson","2021-03-23",26277,213,8904],["Upson","2021-03-24",26277,75,8979],["Upson","2021-03-25",26277,318,9297],["Upson","2021-03-26",26277,214,9511],["Upson","2021-03-27",26277,30,9541],["Upson","2021-03-28",26277,28,9569],["Upson","2021-03-29",26277,292,9861],["Upson","2021-03-30",26277,216,10077],["Upson","2021-03-31",26277,96,10173],["Upson","2021-04-01",26277,370,10543],["Upson","2021-04-02",26277,200,10743],["Upson","2021-04-03",26277,33,10776],["Upson","2021-04-04",26277,27,10803],["Upson","2021-04-05",26277,89,10892],["Upson","2021-04-06",26277,212,11104],["Upson","2021-04-07",26277,152,11256],["Upson","2021-04-08",26277,267,11523],["Upson","2021-04-09",26277,243,11766],["Upson","2021-04-10",26277,38,11804],["Upson","2021-04-11",26277,22,11826],["Upson","2021-04-12",26277,98,11924],["Upson","2021-04-13",26277,217,12141],["Upson","2021-04-14",26277,100,12241],["Upson","2021-04-15",26277,307,12548],["Upson","2021-04-16",26277,253,12801],["Upson","2021-04-17",26277,25,12826],["Upson","2021-04-18",26277,15,12841],["Upson","2021-04-19",26277,60,12901],["Upson","2021-04-20",26277,231,13132],["Upson","2021-04-21",26277,90,13222],["Upson","2021-04-22",26277,286,13508],["Upson","2021-04-23",26277,166,13674],["Upson","2021-04-24",26277,36,13710],["Upson","2021-04-25",26277,10,13720],["Upson","2021-04-26",26277,47,13767],["Upson","2021-04-27",26277,172,13939],["Upson","2021-04-28",26277,116,14055],["Upson","2021-04-29",26277,184,14239],["Upson","2021-04-30",26277,218,14457],["Upson","2021-05-01",26277,27,14484],["Upson","2021-05-02",26277,24,14508],["Upson","2021-05-03",26277,68,14576],["Upson","2021-05-04",26277,161,14737],["Upson","2021-05-05",26277,102,14839],["Upson","2021-05-06",26277,213,15052],["Upson","2021-05-07",26277,220,15272],["Upson","2021-05-08",26277,51,15323],["Upson","2021-05-09",26277,10,15333],["Upson","2021-05-10",26277,34,15367],["Upson","2021-05-11",26277,177,15544],["Upson","2021-05-12",26277,55,15599],["Upson","2021-05-13",26277,116,15715],["Upson","2021-05-14",26277,109,15824],["Upson","2021-05-15",26277,36,15860],["Upson","2021-05-16",26277,15,15875],["Upson","2021-05-17",26277,37,15912],["Upson","2021-05-18",26277,104,16016],["Upson","2021-05-19",26277,48,16064],["Upson","2021-05-20",26277,51,16115],["Upson","2021-05-21",26277,96,16211],["Upson","2021-05-22",26277,32,16243],["Upson","2021-05-23",26277,15,16258],["Upson","2021-05-24",26277,25,16283],["Upson","2021-05-25",26277,93,16376],["Upson","2021-05-26",26277,55,16431],["Upson","2021-05-27",26277,46,16477],["Upson","2021-05-28",26277,74,16551],["Upson","2021-05-29",26277,18,16569],["Upson","2021-05-30",26277,13,16582],["Upson","2021-05-31",26277,14,16596],["Upson","2021-06-01",26277,88,16684],["Upson","2021-06-02",26277,55,16739],["Upson","2021-06-03",26277,51,16790],["Upson","2021-06-04",26277,97,16887],["Upson","2021-06-05",26277,33,16920],["Upson","2021-06-06",26277,14,16934],["Upson","2021-06-07",26277,35,16969],["Upson","2021-06-08",26277,68,17037],["Upson","2021-06-09",26277,33,17070],["Upson","2021-06-10",26277,43,17113],["Upson","2021-06-11",26277,62,17175],["Upson","2021-06-12",26277,23,17198],["Upson","2021-06-13",26277,6,17204],["Upson","2021-06-14",26277,21,17225],["Upson","2021-06-15",26277,71,17296],["Upson","2021-06-16",26277,38,17334],["Upson","2021-06-17",26277,40,17374],["Upson","2021-06-18",26277,52,17426],["Upson","2021-06-19",26277,16,17442],["Upson","2021-06-20",26277,10,17452],["Upson","2021-06-21",26277,18,17470],["Upson","2021-06-22",26277,58,17528],["Upson","2021-06-23",26277,24,17552],["Upson","2021-06-24",26277,32,17584],["Upson","2021-06-25",26277,49,17633],["Upson","2021-06-26",26277,10,17643],["Upson","2021-06-27",26277,12,17655],["Upson","2021-06-28",26277,22,17677],["Upson","2021-06-29",26277,51,17728],["Upson","2021-06-30",26277,25,17753],["Upson","2021-07-01",26277,27,17780],["Upson","2021-07-02",26277,15,17795],["Upson","2021-07-03",26277,13,17808],["Upson","2021-07-04",26277,1,17809],["Upson","2021-07-05",26277,13,17822],["Upson","2021-07-06",26277,31,17853],["Upson","2021-07-07",26277,18,17871],["Upson","2021-07-08",26277,21,17892],["Upson","2021-07-09",26277,36,17928],["Upson","2021-07-10",26277,8,17936],["Upson","2021-07-11",26277,11,17947],["Upson","2021-07-12",26277,18,17965],["Upson","2021-07-13",26277,33,17998],["Upson","2021-07-14",26277,15,18013],["Upson","2021-07-15",26277,33,18046],["Upson","2021-07-16",26277,40,18086],["Upson","2021-07-17",26277,13,18099],["Upson","2021-07-18",26277,8,18107],["Upson","2021-07-19",26277,27,18134],["Upson","2021-07-20",26277,28,18162],["Upson","2021-07-21",26277,37,18199],["Upson","2021-07-22",26277,37,18236],["Upson","2021-07-23",26277,46,18282],["Upson","2021-07-24",26277,23,18305],["Upson","2021-07-25",26277,16,18321],["Upson","2021-07-26",26277,40,18361],["Upson","2021-07-27",26277,58,18419],["Upson","2021-07-28",26277,59,18478],["Upson","2021-07-29",26277,58,18536],["Upson","2021-07-30",26277,87,18623],["Upson","2021-07-31",26277,20,18643],["Upson","2021-08-01",26277,29,18672],["Upson","2021-08-02",26277,32,18704],["Upson","2021-08-03",26277,57,18761],["Upson","2021-08-04",26277,39,18800],["Upson","2021-08-05",26277,59,18859],["Upson","2021-08-06",26277,111,18970],["Upson","2021-08-07",26277,35,19005],["Upson","2021-08-08",26277,19,19024],["Upson","2021-08-09",26277,56,19080],["Upson","2021-08-10",26277,82,19162],["Upson","2021-08-11",26277,59,19221],["Upson","2021-08-12",26277,67,19288],["Upson","2021-08-13",26277,122,19410],["Upson","2021-08-14",26277,34,19444],["Upson","2021-08-15",26277,27,19471],["Upson","2021-08-16",26277,60,19531],["Upson","2021-08-17",26277,87,19618],["Upson","2021-08-18",26277,82,19700],["Upson","2021-08-19",26277,72,19772],["Upson","2021-08-20",26277,160,19932],["Upson","2021-08-21",26277,46,19978],["Upson","2021-08-22",26277,47,20025],["Upson","2021-08-23",26277,104,20129],["Upson","2021-08-24",26277,155,20284],["Upson","2021-08-25",26277,79,20363],["Upson","2021-08-26",26277,96,20459],["Upson","2021-08-27",26277,158,20617],["Upson","2021-08-28",26277,54,20671],["Upson","2021-08-29",26277,42,20713],["Upson","2021-08-30",26277,114,20827],["Upson","2021-08-31",26277,135,20962],["Upson","2021-09-01",26277,71,21033],["Upson","2021-09-02",26277,94,21127],["Upson","2021-09-03",26277,185,21312],["Upson","2021-09-04",26277,53,21365],["Upson","2021-09-05",26277,37,21402],["Upson","2021-09-06",26277,25,21427],["Upson","2021-09-07",26277,140,21567],["Upson","2021-09-08",26277,68,21635],["Upson","2021-09-09",26277,67,21702],["Upson","2021-09-10",26277,146,21848],["Upson","2021-09-11",26277,47,21895],["Upson","2021-09-12",26277,33,21928],["Upson","2021-09-13",26277,84,22012],["Upson","2021-09-14",26277,133,22145],["Upson","2021-09-15",26277,70,22215],["Upson","2021-09-16",26277,74,22289],["Upson","2021-09-17",26277,156,22445],["Upson","2021-09-18",26277,51,22496],["Upson","2021-09-19",26277,54,22550],["Upson","2021-09-20",26277,78,22628],["Upson","2021-09-21",26277,93,22721],["Upson","2021-09-22",26277,54,22775],["Upson","2021-09-23",26277,67,22842],["Upson","2021-09-24",26277,151,22993],["Upson","2021-09-25",26277,45,23038],["Upson","2021-09-26",26277,31,23069],["Upson","2021-09-27",26277,126,23195],["Upson","2021-09-28",26277,299,23494],["Upson","2021-09-29",26277,102,23596],["Upson","2021-09-30",26277,159,23755],["Upson","2021-10-01",26277,320,24075],["Upson","2021-10-02",26277,34,24109],["Upson","2021-10-03",26277,28,24137],["Upson","2021-10-04",26277,84,24221],["Upson","2021-10-05",26277,279,24500],["Upson","2021-10-06",26277,50,24550],["Upson","2021-10-07",26277,128,24678],["Upson","2021-10-08",26277,163,24841],["Upson","2021-10-09",26277,26,24867],["Upson","2021-10-10",26277,14,24881],["Upson","2021-10-11",26277,33,24914],["Upson","2021-10-12",26277,147,25061],["Upson","2021-10-13",26277,45,25106],["Upson","2021-10-14",26277,91,25197],["Upson","2021-10-15",26277,121,25318],["Upson","2021-10-16",26277,14,25332],["Upson","2021-10-17",26277,6,25338],["Upson","2021-10-18",26277,40,25378],["Upson","2021-10-19",26277,113,25491],["Upson","2021-10-20",26277,35,25526],["Upson","2021-10-21",26277,61,25587],["Upson","2021-10-22",26277,122,25709],["Upson","2021-10-23",26277,24,25733],["Upson","2021-10-24",26277,18,25751],["Upson","2021-10-25",26277,59,25810],["Upson","2021-10-26",26277,115,25925],["Upson","2021-10-27",26277,63,25988],["Upson","2021-10-28",26277,96,26084],["Upson","2021-10-29",26277,106,26190],["Upson","2021-10-30",26277,25,26215],["Upson","2021-10-31",26277,17,26232],["Upson","2021-11-01",26277,50,26282],["Upson","2021-11-02",26277,92,26374],["Upson","2021-11-03",26277,49,26423],["Upson","2021-11-04",26277,29,26452],["Upson","2021-11-05",26277,104,26556],["Upson","2021-11-06",26277,21,26577],["Upson","2021-11-07",26277,14,26591],["Upson","2021-11-08",26277,39,26630],["Upson","2021-11-09",26277,90,26720],["Upson","2021-11-10",26277,34,26754],["Upson","2021-11-11",26277,40,26794],["Upson","2021-11-12",26277,95,26889],["Upson","2021-11-13",26277,21,26910],["Upson","2021-11-14",26277,20,26930],["Upson","2021-11-15",26277,29,26959],["Upson","2021-11-16",26277,75,27034],["Upson","2021-11-17",26277,42,27076],["Upson","2021-11-18",26277,35,27111],["Upson","2021-11-19",26277,97,27208],["Upson","2021-11-20",26277,16,27224],["Upson","2021-11-21",26277,17,27241],["Upson","2021-11-22",26277,48,27289],["Upson","2021-11-23",26277,101,27390],["Upson","2021-11-24",26277,33,27423],["Upson","2021-11-26",26277,34,27457],["Upson","2021-11-27",26277,9,27466],["Upson","2021-11-28",26277,10,27476],["Upson","2021-11-29",26277,55,27531],["Upson","2021-11-30",26277,112,27643],["Upson","2021-12-01",26277,65,27708],["Upson","2021-12-02",26277,44,27752],["Upson","2021-12-03",26277,202,27954],["Upson","2021-12-04",26277,30,27984],["Upson","2021-12-05",26277,27,28011],["Upson","2021-12-06",26277,61,28072],["Upson","2021-12-07",26277,96,28168],["Upson","2021-12-08",26277,46,28214],["Upson","2021-12-09",26277,45,28259],["Upson","2021-12-10",26277,112,28371],["Upson","2021-12-11",26277,20,28391],["Upson","2021-12-12",26277,20,28411],["Upson","2021-12-13",26277,30,28441],["Upson","2021-12-14",26277,78,28519],["Upson","2021-12-15",26277,40,28559],["Upson","2021-12-16",26277,32,28591],["Upson","2021-12-17",26277,82,28673],["Upson","2021-12-18",26277,34,28707],["Upson","2021-12-19",26277,12,28719],["Upson","2021-12-20",26277,39,28758],["Upson","2021-12-21",26277,99,28857],["Upson","2021-12-22",26277,52,28909],["Upson","2021-12-23",26277,37,28946],["Upson","2021-12-24",26277,12,28958],["Upson","2021-12-26",26277,9,28967],["Upson","2021-12-27",26277,58,29025],["Upson","2021-12-28",26277,142,29167],["Upson","2021-12-29",26277,64,29231],["Upson","2021-12-30",26277,53,29284],["Upson","2021-12-31",26277,32,29316],["Upson","2022-01-01",26277,12,29328],["Upson","2022-01-02",26277,19,29347],["Upson","2022-01-03",26277,10,29357],["Walker","2020-12-14",69610,1,1],["Walker","2020-12-18",69610,13,14],["Walker","2020-12-19",69610,4,18],["Walker","2020-12-20",69610,5,23],["Walker","2020-12-21",69610,16,39],["Walker","2020-12-22",69610,31,70],["Walker","2020-12-23",69610,30,100],["Walker","2020-12-24",69610,1,101],["Walker","2020-12-26",69610,2,103],["Walker","2020-12-27",69610,2,105],["Walker","2020-12-28",69610,48,153],["Walker","2020-12-29",69610,25,178],["Walker","2020-12-30",69610,28,206],["Walker","2020-12-31",69610,15,221],["Walker","2021-01-01",69610,2,223],["Walker","2021-01-03",69610,112,335],["Walker","2021-01-04",69610,40,375],["Walker","2021-01-05",69610,90,465],["Walker","2021-01-06",69610,52,517],["Walker","2021-01-07",69610,46,563],["Walker","2021-01-08",69610,74,637],["Walker","2021-01-09",69610,9,646],["Walker","2021-01-10",69610,3,649],["Walker","2021-01-11",69610,153,802],["Walker","2021-01-12",69610,211,1013],["Walker","2021-01-13",69610,230,1243],["Walker","2021-01-14",69610,422,1665],["Walker","2021-01-15",69610,186,1851],["Walker","2021-01-16",69610,51,1902],["Walker","2021-01-17",69610,12,1914],["Walker","2021-01-18",69610,126,2040],["Walker","2021-01-19",69610,249,2289],["Walker","2021-01-20",69610,257,2546],["Walker","2021-01-21",69610,301,2847],["Walker","2021-01-22",69610,240,3087],["Walker","2021-01-23",69610,5,3092],["Walker","2021-01-24",69610,74,3166],["Walker","2021-01-25",69610,304,3470],["Walker","2021-01-26",69610,255,3725],["Walker","2021-01-27",69610,398,4123],["Walker","2021-01-28",69610,413,4536],["Walker","2021-01-29",69610,309,4845],["Walker","2021-01-30",69610,11,4856],["Walker","2021-01-31",69610,1,4857],["Walker","2021-02-01",69610,405,5262],["Walker","2021-02-02",69610,364,5626],["Walker","2021-02-03",69610,280,5906],["Walker","2021-02-04",69610,339,6245],["Walker","2021-02-05",69610,261,6506],["Walker","2021-02-06",69610,15,6521],["Walker","2021-02-07",69610,15,6536],["Walker","2021-02-08",69610,192,6728],["Walker","2021-02-09",69610,175,6903],["Walker","2021-02-10",69610,305,7208],["Walker","2021-02-11",69610,266,7474],["Walker","2021-02-12",69610,195,7669],["Walker","2021-02-13",69610,24,7693],["Walker","2021-02-14",69610,6,7699],["Walker","2021-02-15",69610,349,8048],["Walker","2021-02-16",69610,55,8103],["Walker","2021-02-17",69610,262,8365],["Walker","2021-02-18",69610,306,8671],["Walker","2021-02-19",69610,289,8960],["Walker","2021-02-20",69610,4,8964],["Walker","2021-02-21",69610,4,8968],["Walker","2021-02-22",69610,153,9121],["Walker","2021-02-23",69610,145,9266],["Walker","2021-02-24",69610,400,9666],["Walker","2021-02-25",69610,480,10146],["Walker","2021-02-26",69610,477,10623],["Walker","2021-02-27",69610,26,10649],["Walker","2021-02-28",69610,15,10664],["Walker","2021-03-01",69610,385,11049],["Walker","2021-03-02",69610,424,11473],["Walker","2021-03-03",69610,728,12201],["Walker","2021-03-04",69610,507,12708],["Walker","2021-03-05",69610,265,12973],["Walker","2021-03-06",69610,17,12990],["Walker","2021-03-07",69610,23,13013],["Walker","2021-03-08",69610,420,13433],["Walker","2021-03-09",69610,446,13879],["Walker","2021-03-10",69610,704,14583],["Walker","2021-03-11",69610,525,15108],["Walker","2021-03-12",69610,459,15567],["Walker","2021-03-13",69610,33,15600],["Walker","2021-03-14",69610,16,15616],["Walker","2021-03-15",69610,401,16017],["Walker","2021-03-16",69610,364,16381],["Walker","2021-03-17",69610,416,16797],["Walker","2021-03-18",69610,297,17094],["Walker","2021-03-19",69610,272,17366],["Walker","2021-03-20",69610,30,17396],["Walker","2021-03-21",69610,19,17415],["Walker","2021-03-22",69610,257,17672],["Walker","2021-03-23",69610,205,17877],["Walker","2021-03-24",69610,571,18448],["Walker","2021-03-25",69610,358,18806],["Walker","2021-03-26",69610,524,19330],["Walker","2021-03-27",69610,36,19366],["Walker","2021-03-28",69610,50,19416],["Walker","2021-03-29",69610,280,19696],["Walker","2021-03-30",69610,309,20005],["Walker","2021-03-31",69610,396,20401],["Walker","2021-04-01",69610,1489,21890],["Walker","2021-04-02",69610,314,22204],["Walker","2021-04-03",69610,35,22239],["Walker","2021-04-04",69610,26,22265],["Walker","2021-04-05",69610,319,22584],["Walker","2021-04-06",69610,207,22791],["Walker","2021-04-07",69610,293,23084],["Walker","2021-04-08",69610,421,23505],["Walker","2021-04-09",69610,239,23744],["Walker","2021-04-10",69610,218,23962],["Walker","2021-04-11",69610,36,23998],["Walker","2021-04-12",69610,273,24271],["Walker","2021-04-13",69610,412,24683],["Walker","2021-04-14",69610,418,25101],["Walker","2021-04-15",69610,238,25339],["Walker","2021-04-16",69610,322,25661],["Walker","2021-04-17",69610,34,25695],["Walker","2021-04-18",69610,23,25718],["Walker","2021-04-19",69610,302,26020],["Walker","2021-04-20",69610,268,26288],["Walker","2021-04-21",69610,542,26830],["Walker","2021-04-22",69610,522,27352],["Walker","2021-04-23",69610,327,27679],["Walker","2021-04-24",69610,39,27718],["Walker","2021-04-25",69610,14,27732],["Walker","2021-04-26",69610,185,27917],["Walker","2021-04-27",69610,175,28092],["Walker","2021-04-28",69610,285,28377],["Walker","2021-04-29",69610,277,28654],["Walker","2021-04-30",69610,221,28875],["Walker","2021-05-01",69610,58,28933],["Walker","2021-05-02",69610,38,28971],["Walker","2021-05-03",69610,113,29084],["Walker","2021-05-04",69610,409,29493],["Walker","2021-05-05",69610,131,29624],["Walker","2021-05-06",69610,293,29917],["Walker","2021-05-07",69610,243,30160],["Walker","2021-05-08",69610,51,30211],["Walker","2021-05-09",69610,15,30226],["Walker","2021-05-10",69610,130,30356],["Walker","2021-05-11",69610,83,30439],["Walker","2021-05-12",69610,121,30560],["Walker","2021-05-13",69610,298,30858],["Walker","2021-05-14",69610,174,31032],["Walker","2021-05-15",69610,81,31113],["Walker","2021-05-16",69610,57,31170],["Walker","2021-05-17",69610,141,31311],["Walker","2021-05-18",69610,122,31433],["Walker","2021-05-19",69610,143,31576],["Walker","2021-05-20",69610,146,31722],["Walker","2021-05-21",69610,190,31912],["Walker","2021-05-22",69610,154,32066],["Walker","2021-05-23",69610,27,32093],["Walker","2021-05-24",69610,110,32203],["Walker","2021-05-25",69610,147,32350],["Walker","2021-05-26",69610,79,32429],["Walker","2021-05-27",69610,98,32527],["Walker","2021-05-28",69610,105,32632],["Walker","2021-05-29",69610,46,32678],["Walker","2021-05-30",69610,30,32708],["Walker","2021-05-31",69610,12,32720],["Walker","2021-06-01",69610,298,33018],["Walker","2021-06-02",69610,66,33084],["Walker","2021-06-03",69610,168,33252],["Walker","2021-06-04",69610,134,33386],["Walker","2021-06-05",69610,38,33424],["Walker","2021-06-06",69610,27,33451],["Walker","2021-06-07",69610,60,33511],["Walker","2021-06-08",69610,56,33567],["Walker","2021-06-09",69610,60,33627],["Walker","2021-06-10",69610,134,33761],["Walker","2021-06-11",69610,107,33868],["Walker","2021-06-12",69610,64,33932],["Walker","2021-06-13",69610,32,33964],["Walker","2021-06-14",69610,140,34104],["Walker","2021-06-15",69610,87,34191],["Walker","2021-06-16",69610,72,34263],["Walker","2021-06-17",69610,68,34331],["Walker","2021-06-18",69610,138,34469],["Walker","2021-06-19",69610,37,34506],["Walker","2021-06-20",69610,25,34531],["Walker","2021-06-21",69610,60,34591],["Walker","2021-06-22",69610,35,34626],["Walker","2021-06-23",69610,44,34670],["Walker","2021-06-24",69610,88,34758],["Walker","2021-06-25",69610,94,34852],["Walker","2021-06-26",69610,39,34891],["Walker","2021-06-27",69610,24,34915],["Walker","2021-06-28",69610,40,34955],["Walker","2021-06-29",69610,47,35002],["Walker","2021-06-30",69610,57,35059],["Walker","2021-07-01",69610,64,35123],["Walker","2021-07-02",69610,73,35196],["Walker","2021-07-03",69610,29,35225],["Walker","2021-07-04",69610,5,35230],["Walker","2021-07-05",69610,31,35261],["Walker","2021-07-06",69610,34,35295],["Walker","2021-07-07",69610,45,35340],["Walker","2021-07-08",69610,49,35389],["Walker","2021-07-09",69610,86,35475],["Walker","2021-07-10",69610,32,35507],["Walker","2021-07-11",69610,13,35520],["Walker","2021-07-12",69610,42,35562],["Walker","2021-07-13",69610,37,35599],["Walker","2021-07-14",69610,47,35646],["Walker","2021-07-15",69610,60,35706],["Walker","2021-07-16",69610,53,35759],["Walker","2021-07-17",69610,33,35792],["Walker","2021-07-18",69610,24,35816],["Walker","2021-07-19",69610,35,35851],["Walker","2021-07-20",69610,51,35902],["Walker","2021-07-21",69610,58,35960],["Walker","2021-07-22",69610,89,36049],["Walker","2021-07-23",69610,132,36181],["Walker","2021-07-24",69610,78,36259],["Walker","2021-07-25",69610,30,36289],["Walker","2021-07-26",69610,79,36368],["Walker","2021-07-27",69610,102,36470],["Walker","2021-07-28",69610,90,36560],["Walker","2021-07-29",69610,103,36663],["Walker","2021-07-30",69610,133,36796],["Walker","2021-07-31",69610,69,36865],["Walker","2021-08-01",69610,59,36924],["Walker","2021-08-02",69610,77,37001],["Walker","2021-08-03",69610,115,37116],["Walker","2021-08-04",69610,106,37222],["Walker","2021-08-05",69610,143,37365],["Walker","2021-08-06",69610,162,37527],["Walker","2021-08-07",69610,101,37628],["Walker","2021-08-08",69610,49,37677],["Walker","2021-08-09",69610,89,37766],["Walker","2021-08-10",69610,96,37862],["Walker","2021-08-11",69610,82,37944],["Walker","2021-08-12",69610,127,38071],["Walker","2021-08-13",69610,172,38243],["Walker","2021-08-14",69610,103,38346],["Walker","2021-08-15",69610,72,38418],["Walker","2021-08-16",69610,96,38514],["Walker","2021-08-17",69610,110,38624],["Walker","2021-08-18",69610,129,38753],["Walker","2021-08-19",69610,158,38911],["Walker","2021-08-20",69610,190,39101],["Walker","2021-08-21",69610,96,39197],["Walker","2021-08-22",69610,62,39259],["Walker","2021-08-23",69610,113,39372],["Walker","2021-08-24",69610,142,39514],["Walker","2021-08-25",69610,156,39670],["Walker","2021-08-26",69610,173,39843],["Walker","2021-08-27",69610,204,40047],["Walker","2021-08-28",69610,113,40160],["Walker","2021-08-29",69610,68,40228],["Walker","2021-08-30",69610,146,40374],["Walker","2021-08-31",69610,115,40489],["Walker","2021-09-01",69610,151,40640],["Walker","2021-09-02",69610,170,40810],["Walker","2021-09-03",69610,223,41033],["Walker","2021-09-04",69610,87,41120],["Walker","2021-09-05",69610,68,41188],["Walker","2021-09-06",69610,34,41222],["Walker","2021-09-07",69610,116,41338],["Walker","2021-09-08",69610,86,41424],["Walker","2021-09-09",69610,174,41598],["Walker","2021-09-10",69610,152,41750],["Walker","2021-09-11",69610,88,41838],["Walker","2021-09-12",69610,70,41908],["Walker","2021-09-13",69610,97,42005],["Walker","2021-09-14",69610,104,42109],["Walker","2021-09-15",69610,110,42219],["Walker","2021-09-16",69610,127,42346],["Walker","2021-09-17",69610,131,42477],["Walker","2021-09-18",69610,72,42549],["Walker","2021-09-19",69610,39,42588],["Walker","2021-09-20",69610,90,42678],["Walker","2021-09-21",69610,93,42771],["Walker","2021-09-22",69610,87,42858],["Walker","2021-09-23",69610,87,42945],["Walker","2021-09-24",69610,116,43061],["Walker","2021-09-25",69610,51,43112],["Walker","2021-09-26",69610,35,43147],["Walker","2021-09-27",69610,89,43236],["Walker","2021-09-28",69610,93,43329],["Walker","2021-09-29",69610,95,43424],["Walker","2021-09-30",69610,122,43546],["Walker","2021-10-01",69610,133,43679],["Walker","2021-10-02",69610,64,43743],["Walker","2021-10-03",69610,32,43775],["Walker","2021-10-04",69610,88,43863],["Walker","2021-10-05",69610,67,43930],["Walker","2021-10-06",69610,77,44007],["Walker","2021-10-07",69610,87,44094],["Walker","2021-10-08",69610,75,44169],["Walker","2021-10-09",69610,42,44211],["Walker","2021-10-10",69610,25,44236],["Walker","2021-10-11",69610,52,44288],["Walker","2021-10-12",69610,46,44334],["Walker","2021-10-13",69610,60,44394],["Walker","2021-10-14",69610,64,44458],["Walker","2021-10-15",69610,88,44546],["Walker","2021-10-16",69610,23,44569],["Walker","2021-10-17",69610,18,44587],["Walker","2021-10-18",69610,67,44654],["Walker","2021-10-19",69610,47,44701],["Walker","2021-10-20",69610,49,44750],["Walker","2021-10-21",69610,61,44811],["Walker","2021-10-22",69610,92,44903],["Walker","2021-10-23",69610,56,44959],["Walker","2021-10-24",69610,29,44988],["Walker","2021-10-25",69610,161,45149],["Walker","2021-10-26",69610,282,45431],["Walker","2021-10-27",69610,252,45683],["Walker","2021-10-28",69610,264,45947],["Walker","2021-10-29",69610,198,46145],["Walker","2021-10-30",69610,34,46179],["Walker","2021-10-31",69610,22,46201],["Walker","2021-11-01",69610,244,46445],["Walker","2021-11-02",69610,190,46635],["Walker","2021-11-03",69610,166,46801],["Walker","2021-11-04",69610,127,46928],["Walker","2021-11-05",69610,191,47119],["Walker","2021-11-06",69610,36,47155],["Walker","2021-11-07",69610,22,47177],["Walker","2021-11-08",69610,129,47306],["Walker","2021-11-09",69610,147,47453],["Walker","2021-11-10",69610,143,47596],["Walker","2021-11-11",69610,84,47680],["Walker","2021-11-12",69610,154,47834],["Walker","2021-11-13",69610,42,47876],["Walker","2021-11-14",69610,20,47896],["Walker","2021-11-15",69610,133,48029],["Walker","2021-11-16",69610,146,48175],["Walker","2021-11-17",69610,111,48286],["Walker","2021-11-18",69610,161,48447],["Walker","2021-11-19",69610,189,48636],["Walker","2021-11-20",69610,50,48686],["Walker","2021-11-21",69610,35,48721],["Walker","2021-11-22",69610,147,48868],["Walker","2021-11-23",69610,94,48962],["Walker","2021-11-24",69610,91,49053],["Walker","2021-11-26",69610,89,49142],["Walker","2021-11-27",69610,39,49181],["Walker","2021-11-28",69610,37,49218],["Walker","2021-11-29",69610,138,49356],["Walker","2021-11-30",69610,195,49551],["Walker","2021-12-01",69610,179,49730],["Walker","2021-12-02",69610,275,50005],["Walker","2021-12-03",69610,237,50242],["Walker","2021-12-04",69610,55,50297],["Walker","2021-12-05",69610,40,50337],["Walker","2021-12-06",69610,168,50505],["Walker","2021-12-07",69610,127,50632],["Walker","2021-12-08",69610,118,50750],["Walker","2021-12-09",69610,154,50904],["Walker","2021-12-10",69610,141,51045],["Walker","2021-12-11",69610,41,51086],["Walker","2021-12-12",69610,28,51114],["Walker","2021-12-13",69610,88,51202],["Walker","2021-12-14",69610,119,51321],["Walker","2021-12-15",69610,123,51444],["Walker","2021-12-16",69610,104,51548],["Walker","2021-12-17",69610,134,51682],["Walker","2021-12-18",69610,48,51730],["Walker","2021-12-19",69610,37,51767],["Walker","2021-12-20",69610,129,51896],["Walker","2021-12-21",69610,120,52016],["Walker","2021-12-22",69610,112,52128],["Walker","2021-12-23",69610,54,52182],["Walker","2021-12-24",69610,23,52205],["Walker","2021-12-26",69610,13,52218],["Walker","2021-12-27",69610,121,52339],["Walker","2021-12-28",69610,109,52448],["Walker","2021-12-29",69610,127,52575],["Walker","2021-12-30",69610,133,52708],["Walker","2021-12-31",69610,58,52766],["Walker","2022-01-01",69610,8,52774],["Walker","2022-01-02",69610,40,52814],["Walker","2022-01-03",69610,25,52839],["Walton","2020-12-12",95814,1,1],["Walton","2020-12-16",95814,2,3],["Walton","2020-12-17",95814,27,30],["Walton","2020-12-18",95814,28,58],["Walton","2020-12-19",95814,21,79],["Walton","2020-12-20",95814,18,97],["Walton","2020-12-21",95814,36,133],["Walton","2020-12-22",95814,63,196],["Walton","2020-12-23",95814,87,283],["Walton","2020-12-24",95814,18,301],["Walton","2020-12-26",95814,7,308],["Walton","2020-12-27",95814,15,323],["Walton","2020-12-28",95814,98,421],["Walton","2020-12-29",95814,103,524],["Walton","2020-12-30",95814,93,617],["Walton","2020-12-31",95814,87,704],["Walton","2021-01-01",95814,17,721],["Walton","2021-01-02",95814,30,751],["Walton","2021-01-03",95814,33,784],["Walton","2021-01-04",95814,113,897],["Walton","2021-01-05",95814,98,995],["Walton","2021-01-06",95814,95,1090],["Walton","2021-01-07",95814,120,1210],["Walton","2021-01-08",95814,182,1392],["Walton","2021-01-09",95814,73,1465],["Walton","2021-01-10",95814,37,1502],["Walton","2021-01-11",95814,115,1617],["Walton","2021-01-12",95814,131,1748],["Walton","2021-01-13",95814,204,1952],["Walton","2021-01-14",95814,168,2120],["Walton","2021-01-15",95814,295,2415],["Walton","2021-01-16",95814,180,2595],["Walton","2021-01-17",95814,72,2667],["Walton","2021-01-18",95814,212,2879],["Walton","2021-01-19",95814,277,3156],["Walton","2021-01-20",95814,411,3567],["Walton","2021-01-21",95814,480,4047],["Walton","2021-01-22",95814,296,4343],["Walton","2021-01-23",95814,198,4541],["Walton","2021-01-24",95814,61,4602],["Walton","2021-01-25",95814,333,4935],["Walton","2021-01-26",95814,267,5202],["Walton","2021-01-27",95814,367,5569],["Walton","2021-01-28",95814,652,6221],["Walton","2021-01-29",95814,378,6599],["Walton","2021-01-30",95814,97,6696],["Walton","2021-01-31",95814,26,6722],["Walton","2021-02-01",95814,198,6920],["Walton","2021-02-02",95814,179,7099],["Walton","2021-02-03",95814,326,7425],["Walton","2021-02-04",95814,333,7758],["Walton","2021-02-05",95814,222,7980],["Walton","2021-02-06",95814,155,8135],["Walton","2021-02-07",95814,42,8177],["Walton","2021-02-08",95814,173,8350],["Walton","2021-02-09",95814,164,8514],["Walton","2021-02-10",95814,407,8921],["Walton","2021-02-11",95814,455,9376],["Walton","2021-02-12",95814,347,9723],["Walton","2021-02-13",95814,310,10033],["Walton","2021-02-14",95814,54,10087],["Walton","2021-02-15",95814,349,10436],["Walton","2021-02-16",95814,421,10857],["Walton","2021-02-17",95814,471,11328],["Walton","2021-02-18",95814,460,11788],["Walton","2021-02-19",95814,313,12101],["Walton","2021-02-20",95814,164,12265],["Walton","2021-02-21",95814,59,12324],["Walton","2021-02-22",95814,218,12542],["Walton","2021-02-23",95814,267,12809],["Walton","2021-02-24",95814,507,13316],["Walton","2021-02-25",95814,677,13993],["Walton","2021-02-26",95814,427,14420],["Walton","2021-02-27",95814,114,14534],["Walton","2021-02-28",95814,50,14584],["Walton","2021-03-01",95814,332,14916],["Walton","2021-03-02",95814,376,15292],["Walton","2021-03-03",95814,503,15795],["Walton","2021-03-04",95814,545,16340],["Walton","2021-03-05",95814,334,16674],["Walton","2021-03-06",95814,130,16804],["Walton","2021-03-07",95814,80,16884],["Walton","2021-03-08",95814,441,17325],["Walton","2021-03-09",95814,508,17833],["Walton","2021-03-10",95814,672,18505],["Walton","2021-03-11",95814,637,19142],["Walton","2021-03-12",95814,515,19657],["Walton","2021-03-13",95814,275,19932],["Walton","2021-03-14",95814,109,20041],["Walton","2021-03-15",95814,635,20676],["Walton","2021-03-16",95814,631,21307],["Walton","2021-03-17",95814,723,22030],["Walton","2021-03-18",95814,591,22621],["Walton","2021-03-19",95814,569,23190],["Walton","2021-03-20",95814,272,23462],["Walton","2021-03-21",95814,110,23572],["Walton","2021-03-22",95814,508,24080],["Walton","2021-03-23",95814,538,24618],["Walton","2021-03-24",95814,911,25529],["Walton","2021-03-25",95814,851,26380],["Walton","2021-03-26",95814,680,27060],["Walton","2021-03-27",95814,201,27261],["Walton","2021-03-28",95814,155,27416],["Walton","2021-03-29",95814,593,28009],["Walton","2021-03-30",95814,726,28735],["Walton","2021-03-31",95814,978,29713],["Walton","2021-04-01",95814,929,30642],["Walton","2021-04-02",95814,607,31249],["Walton","2021-04-03",95814,364,31613],["Walton","2021-04-04",95814,124,31737],["Walton","2021-04-05",95814,650,32387],["Walton","2021-04-06",95814,716,33103],["Walton","2021-04-07",95814,962,34065],["Walton","2021-04-08",95814,812,34877],["Walton","2021-04-09",95814,694,35571],["Walton","2021-04-10",95814,355,35926],["Walton","2021-04-11",95814,144,36070],["Walton","2021-04-12",95814,599,36669],["Walton","2021-04-13",95814,671,37340],["Walton","2021-04-14",95814,886,38226],["Walton","2021-04-15",95814,738,38964],["Walton","2021-04-16",95814,709,39673],["Walton","2021-04-17",95814,227,39900],["Walton","2021-04-18",95814,161,40061],["Walton","2021-04-19",95814,516,40577],["Walton","2021-04-20",95814,576,41153],["Walton","2021-04-21",95814,715,41868],["Walton","2021-04-22",95814,747,42615],["Walton","2021-04-23",95814,831,43446],["Walton","2021-04-24",95814,246,43692],["Walton","2021-04-25",95814,84,43776],["Walton","2021-04-26",95814,594,44370],["Walton","2021-04-27",95814,519,44889],["Walton","2021-04-28",95814,841,45730],["Walton","2021-04-29",95814,701,46431],["Walton","2021-04-30",95814,591,47022],["Walton","2021-05-01",95814,339,47361],["Walton","2021-05-02",95814,117,47478],["Walton","2021-05-03",95814,364,47842],["Walton","2021-05-04",95814,488,48330],["Walton","2021-05-05",95814,565,48895],["Walton","2021-05-06",95814,567,49462],["Walton","2021-05-07",95814,431,49893],["Walton","2021-05-08",95814,168,50061],["Walton","2021-05-09",95814,78,50139],["Walton","2021-05-10",95814,308,50447],["Walton","2021-05-11",95814,326,50773],["Walton","2021-05-12",95814,467,51240],["Walton","2021-05-13",95814,387,51627],["Walton","2021-05-14",95814,419,52046],["Walton","2021-05-15",95814,202,52248],["Walton","2021-05-16",95814,94,52342],["Walton","2021-05-17",95814,317,52659],["Walton","2021-05-18",95814,337,52996],["Walton","2021-05-19",95814,362,53358],["Walton","2021-05-20",95814,310,53668],["Walton","2021-05-21",95814,328,53996],["Walton","2021-05-22",95814,162,54158],["Walton","2021-05-23",95814,111,54269],["Walton","2021-05-24",95814,250,54519],["Walton","2021-05-25",95814,272,54791],["Walton","2021-05-26",95814,388,55179],["Walton","2021-05-27",95814,242,55421],["Walton","2021-05-28",95814,251,55672],["Walton","2021-05-29",95814,125,55797],["Walton","2021-05-30",95814,75,55872],["Walton","2021-05-31",95814,28,55900],["Walton","2021-06-01",95814,225,56125],["Walton","2021-06-02",95814,242,56367],["Walton","2021-06-03",95814,214,56581],["Walton","2021-06-04",95814,245,56826],["Walton","2021-06-05",95814,128,56954],["Walton","2021-06-06",95814,81,57035],["Walton","2021-06-07",95814,183,57218],["Walton","2021-06-08",95814,197,57415],["Walton","2021-06-09",95814,192,57607],["Walton","2021-06-10",95814,179,57786],["Walton","2021-06-11",95814,224,58010],["Walton","2021-06-12",95814,111,58121],["Walton","2021-06-13",95814,64,58185],["Walton","2021-06-14",95814,168,58353],["Walton","2021-06-15",95814,195,58548],["Walton","2021-06-16",95814,151,58699],["Walton","2021-06-17",95814,139,58838],["Walton","2021-06-18",95814,158,58996],["Walton","2021-06-19",95814,75,59071],["Walton","2021-06-20",95814,65,59136],["Walton","2021-06-21",95814,99,59235],["Walton","2021-06-22",95814,156,59391],["Walton","2021-06-23",95814,142,59533],["Walton","2021-06-24",95814,96,59629],["Walton","2021-06-25",95814,146,59775],["Walton","2021-06-26",95814,97,59872],["Walton","2021-06-27",95814,54,59926],["Walton","2021-06-28",95814,112,60038],["Walton","2021-06-29",95814,110,60148],["Walton","2021-06-30",95814,118,60266],["Walton","2021-07-01",95814,110,60376],["Walton","2021-07-02",95814,98,60474],["Walton","2021-07-03",95814,60,60534],["Walton","2021-07-04",95814,7,60541],["Walton","2021-07-05",95814,68,60609],["Walton","2021-07-06",95814,102,60711],["Walton","2021-07-07",95814,93,60804],["Walton","2021-07-08",95814,97,60901],["Walton","2021-07-09",95814,136,61037],["Walton","2021-07-10",95814,83,61120],["Walton","2021-07-11",95814,51,61171],["Walton","2021-07-12",95814,119,61290],["Walton","2021-07-13",95814,89,61379],["Walton","2021-07-14",95814,82,61461],["Walton","2021-07-15",95814,89,61550],["Walton","2021-07-16",95814,119,61669],["Walton","2021-07-17",95814,92,61761],["Walton","2021-07-18",95814,57,61818],["Walton","2021-07-19",95814,123,61941],["Walton","2021-07-20",95814,136,62077],["Walton","2021-07-21",95814,137,62214],["Walton","2021-07-22",95814,132,62346],["Walton","2021-07-23",95814,170,62516],["Walton","2021-07-24",95814,117,62633],["Walton","2021-07-25",95814,80,62713],["Walton","2021-07-26",95814,166,62879],["Walton","2021-07-27",95814,166,63045],["Walton","2021-07-28",95814,180,63225],["Walton","2021-07-29",95814,147,63372],["Walton","2021-07-30",95814,187,63559],["Walton","2021-07-31",95814,133,63692],["Walton","2021-08-01",95814,95,63787],["Walton","2021-08-02",95814,179,63966],["Walton","2021-08-03",95814,145,64111],["Walton","2021-08-04",95814,153,64264],["Walton","2021-08-05",95814,139,64403],["Walton","2021-08-06",95814,239,64642],["Walton","2021-08-07",95814,157,64799],["Walton","2021-08-08",95814,96,64895],["Walton","2021-08-09",95814,203,65098],["Walton","2021-08-10",95814,231,65329],["Walton","2021-08-11",95814,197,65526],["Walton","2021-08-12",95814,219,65745],["Walton","2021-08-13",95814,255,66000],["Walton","2021-08-14",95814,158,66158],["Walton","2021-08-15",95814,100,66258],["Walton","2021-08-16",95814,210,66468],["Walton","2021-08-17",95814,241,66709],["Walton","2021-08-18",95814,210,66919],["Walton","2021-08-19",95814,217,67136],["Walton","2021-08-20",95814,267,67403],["Walton","2021-08-21",95814,187,67590],["Walton","2021-08-22",95814,111,67701],["Walton","2021-08-23",95814,245,67946],["Walton","2021-08-24",95814,215,68161],["Walton","2021-08-25",95814,223,68384],["Walton","2021-08-26",95814,245,68629],["Walton","2021-08-27",95814,305,68934],["Walton","2021-08-28",95814,174,69108],["Walton","2021-08-29",95814,98,69206],["Walton","2021-08-30",95814,226,69432],["Walton","2021-08-31",95814,252,69684],["Walton","2021-09-01",95814,248,69932],["Walton","2021-09-02",95814,275,70207],["Walton","2021-09-03",95814,294,70501],["Walton","2021-09-04",95814,164,70665],["Walton","2021-09-05",95814,104,70769],["Walton","2021-09-06",95814,59,70828],["Walton","2021-09-07",95814,277,71105],["Walton","2021-09-08",95814,204,71309],["Walton","2021-09-09",95814,230,71539],["Walton","2021-09-10",95814,319,71858],["Walton","2021-09-11",95814,142,72000],["Walton","2021-09-12",95814,103,72103],["Walton","2021-09-13",95814,208,72311],["Walton","2021-09-14",95814,179,72490],["Walton","2021-09-15",95814,175,72665],["Walton","2021-09-16",95814,194,72859],["Walton","2021-09-17",95814,218,73077],["Walton","2021-09-18",95814,121,73198],["Walton","2021-09-19",95814,78,73276],["Walton","2021-09-20",95814,191,73467],["Walton","2021-09-21",95814,156,73623],["Walton","2021-09-22",95814,184,73807],["Walton","2021-09-23",95814,154,73961],["Walton","2021-09-24",95814,201,74162],["Walton","2021-09-25",95814,123,74285],["Walton","2021-09-26",95814,70,74355],["Walton","2021-09-27",95814,167,74522],["Walton","2021-09-28",95814,214,74736],["Walton","2021-09-29",95814,213,74949],["Walton","2021-09-30",95814,220,75169],["Walton","2021-10-01",95814,255,75424],["Walton","2021-10-02",95814,128,75552],["Walton","2021-10-03",95814,65,75617],["Walton","2021-10-04",95814,212,75829],["Walton","2021-10-05",95814,201,76030],["Walton","2021-10-06",95814,223,76253],["Walton","2021-10-07",95814,147,76400],["Walton","2021-10-08",95814,214,76614],["Walton","2021-10-09",95814,67,76681],["Walton","2021-10-10",95814,51,76732],["Walton","2021-10-11",95814,126,76858],["Walton","2021-10-12",95814,172,77030],["Walton","2021-10-13",95814,186,77216],["Walton","2021-10-14",95814,143,77359],["Walton","2021-10-15",95814,139,77498],["Walton","2021-10-16",95814,73,77571],["Walton","2021-10-17",95814,46,77617],["Walton","2021-10-18",95814,140,77757],["Walton","2021-10-19",95814,157,77914],["Walton","2021-10-20",95814,150,78064],["Walton","2021-10-21",95814,145,78209],["Walton","2021-10-22",95814,243,78452],["Walton","2021-10-23",95814,167,78619],["Walton","2021-10-24",95814,84,78703],["Walton","2021-10-25",95814,296,78999],["Walton","2021-10-26",95814,222,79221],["Walton","2021-10-27",95814,257,79478],["Walton","2021-10-28",95814,244,79722],["Walton","2021-10-29",95814,256,79978],["Walton","2021-10-30",95814,105,80083],["Walton","2021-10-31",95814,66,80149],["Walton","2021-11-01",95814,233,80382],["Walton","2021-11-02",95814,214,80596],["Walton","2021-11-03",95814,237,80833],["Walton","2021-11-04",95814,189,81022],["Walton","2021-11-05",95814,253,81275],["Walton","2021-11-06",95814,119,81394],["Walton","2021-11-07",95814,74,81468],["Walton","2021-11-08",95814,170,81638],["Walton","2021-11-09",95814,206,81844],["Walton","2021-11-10",95814,207,82051],["Walton","2021-11-11",95814,156,82207],["Walton","2021-11-12",95814,284,82491],["Walton","2021-11-13",95814,126,82617],["Walton","2021-11-14",95814,69,82686],["Walton","2021-11-15",95814,192,82878],["Walton","2021-11-16",95814,235,83113],["Walton","2021-11-17",95814,219,83332],["Walton","2021-11-18",95814,215,83547],["Walton","2021-11-19",95814,277,83824],["Walton","2021-11-20",95814,114,83938],["Walton","2021-11-21",95814,81,84019],["Walton","2021-11-22",95814,223,84242],["Walton","2021-11-23",95814,245,84487],["Walton","2021-11-24",95814,154,84641],["Walton","2021-11-25",95814,1,84642],["Walton","2021-11-26",95814,140,84782],["Walton","2021-11-27",95814,114,84896],["Walton","2021-11-28",95814,112,85008],["Walton","2021-11-29",95814,217,85225],["Walton","2021-11-30",95814,268,85493],["Walton","2021-12-01",95814,311,85804],["Walton","2021-12-02",95814,315,86119],["Walton","2021-12-03",95814,322,86441],["Walton","2021-12-04",95814,186,86627],["Walton","2021-12-05",95814,87,86714],["Walton","2021-12-06",95814,251,86965],["Walton","2021-12-07",95814,242,87207],["Walton","2021-12-08",95814,253,87460],["Walton","2021-12-09",95814,225,87685],["Walton","2021-12-10",95814,300,87985],["Walton","2021-12-11",95814,107,88092],["Walton","2021-12-12",95814,97,88189],["Walton","2021-12-13",95814,178,88367],["Walton","2021-12-14",95814,226,88593],["Walton","2021-12-15",95814,219,88812],["Walton","2021-12-16",95814,211,89023],["Walton","2021-12-17",95814,249,89272],["Walton","2021-12-18",95814,165,89437],["Walton","2021-12-19",95814,92,89529],["Walton","2021-12-20",95814,260,89789],["Walton","2021-12-21",95814,272,90061],["Walton","2021-12-22",95814,260,90321],["Walton","2021-12-23",95814,200,90521],["Walton","2021-12-24",95814,61,90582],["Walton","2021-12-26",95814,65,90647],["Walton","2021-12-27",95814,244,90891],["Walton","2021-12-28",95814,256,91147],["Walton","2021-12-29",95814,255,91402],["Walton","2021-12-30",95814,234,91636],["Walton","2021-12-31",95814,127,91763],["Walton","2022-01-01",95814,24,91787],["Walton","2022-01-02",95814,61,91848],["Walton","2022-01-03",95814,90,91938],["Ware","2020-12-15",35853,2,2],["Ware","2020-12-16",35853,1,3],["Ware","2020-12-17",35853,1,4],["Ware","2020-12-18",35853,6,10],["Ware","2020-12-19",35853,2,12],["Ware","2020-12-20",35853,1,13],["Ware","2020-12-21",35853,3,16],["Ware","2020-12-22",35853,6,22],["Ware","2020-12-23",35853,32,54],["Ware","2020-12-24",35853,14,68],["Ware","2020-12-26",35853,1,69],["Ware","2020-12-28",35853,36,105],["Ware","2020-12-29",35853,58,163],["Ware","2020-12-30",35853,81,244],["Ware","2020-12-31",35853,36,280],["Ware","2021-01-01",35853,1,281],["Ware","2021-01-03",35853,4,285],["Ware","2021-01-04",35853,23,308],["Ware","2021-01-05",35853,36,344],["Ware","2021-01-06",35853,57,401],["Ware","2021-01-07",35853,47,448],["Ware","2021-01-08",35853,76,524],["Ware","2021-01-09",35853,6,530],["Ware","2021-01-10",35853,6,536],["Ware","2021-01-11",35853,178,714],["Ware","2021-01-12",35853,73,787],["Ware","2021-01-13",35853,153,940],["Ware","2021-01-14",35853,24,964],["Ware","2021-01-15",35853,158,1122],["Ware","2021-01-16",35853,149,1271],["Ware","2021-01-17",35853,6,1277],["Ware","2021-01-18",35853,169,1446],["Ware","2021-01-19",35853,58,1504],["Ware","2021-01-20",35853,100,1604],["Ware","2021-01-21",35853,87,1691],["Ware","2021-01-22",35853,144,1835],["Ware","2021-01-23",35853,20,1855],["Ware","2021-01-24",35853,28,1883],["Ware","2021-01-25",35853,193,2076],["Ware","2021-01-26",35853,57,2133],["Ware","2021-01-27",35853,151,2284],["Ware","2021-01-28",35853,38,2322],["Ware","2021-01-29",35853,214,2536],["Ware","2021-01-30",35853,108,2644],["Ware","2021-01-31",35853,6,2650],["Ware","2021-02-01",35853,255,2905],["Ware","2021-02-02",35853,48,2953],["Ware","2021-02-03",35853,267,3220],["Ware","2021-02-04",35853,32,3252],["Ware","2021-02-05",35853,161,3413],["Ware","2021-02-06",35853,16,3429],["Ware","2021-02-07",35853,6,3435],["Ware","2021-02-08",35853,387,3822],["Ware","2021-02-09",35853,47,3869],["Ware","2021-02-10",35853,197,4066],["Ware","2021-02-11",35853,74,4140],["Ware","2021-02-12",35853,283,4423],["Ware","2021-02-13",35853,252,4675],["Ware","2021-02-14",35853,7,4682],["Ware","2021-02-15",35853,318,5000],["Ware","2021-02-16",35853,58,5058],["Ware","2021-02-17",35853,234,5292],["Ware","2021-02-18",35853,35,5327],["Ware","2021-02-19",35853,305,5632],["Ware","2021-02-20",35853,47,5679],["Ware","2021-02-22",35853,323,6002],["Ware","2021-02-23",35853,31,6033],["Ware","2021-02-24",35853,149,6182],["Ware","2021-02-25",35853,46,6228],["Ware","2021-02-26",35853,246,6474],["Ware","2021-02-27",35853,13,6487],["Ware","2021-02-28",35853,9,6496],["Ware","2021-03-01",35853,304,6800],["Ware","2021-03-02",35853,92,6892],["Ware","2021-03-03",35853,141,7033],["Ware","2021-03-04",35853,38,7071],["Ware","2021-03-05",35853,320,7391],["Ware","2021-03-06",35853,5,7396],["Ware","2021-03-07",35853,13,7409],["Ware","2021-03-08",35853,279,7688],["Ware","2021-03-09",35853,54,7742],["Ware","2021-03-10",35853,294,8036],["Ware","2021-03-11",35853,93,8129],["Ware","2021-03-12",35853,361,8490],["Ware","2021-03-13",35853,15,8505],["Ware","2021-03-14",35853,15,8520],["Ware","2021-03-15",35853,317,8837],["Ware","2021-03-16",35853,92,8929],["Ware","2021-03-17",35853,403,9332],["Ware","2021-03-18",35853,89,9421],["Ware","2021-03-19",35853,396,9817],["Ware","2021-03-20",35853,56,9873],["Ware","2021-03-21",35853,14,9887],["Ware","2021-03-22",35853,324,10211],["Ware","2021-03-23",35853,97,10308],["Ware","2021-03-24",35853,344,10652],["Ware","2021-03-25",35853,199,10851],["Ware","2021-03-26",35853,325,11176],["Ware","2021-03-27",35853,118,11294],["Ware","2021-03-28",35853,17,11311],["Ware","2021-03-29",35853,176,11487],["Ware","2021-03-30",35853,182,11669],["Ware","2021-03-31",35853,285,11954],["Ware","2021-04-01",35853,151,12105],["Ware","2021-04-02",35853,199,12304],["Ware","2021-04-03",35853,55,12359],["Ware","2021-04-04",35853,14,12373],["Ware","2021-04-05",35853,174,12547],["Ware","2021-04-06",35853,156,12703],["Ware","2021-04-07",35853,301,13004],["Ware","2021-04-08",35853,162,13166],["Ware","2021-04-09",35853,234,13400],["Ware","2021-04-10",35853,88,13488],["Ware","2021-04-11",35853,16,13504],["Ware","2021-04-12",35853,108,13612],["Ware","2021-04-13",35853,273,13885],["Ware","2021-04-14",35853,324,14209],["Ware","2021-04-15",35853,160,14369],["Ware","2021-04-16",35853,286,14655],["Ware","2021-04-17",35853,160,14815],["Ware","2021-04-18",35853,2,14817],["Ware","2021-04-19",35853,190,15007],["Ware","2021-04-20",35853,205,15212],["Ware","2021-04-21",35853,304,15516],["Ware","2021-04-22",35853,158,15674],["Ware","2021-04-23",35853,262,15936],["Ware","2021-04-24",35853,77,16013],["Ware","2021-04-25",35853,3,16016],["Ware","2021-04-26",35853,135,16151],["Ware","2021-04-27",35853,144,16295],["Ware","2021-04-28",35853,232,16527],["Ware","2021-04-29",35853,101,16628],["Ware","2021-04-30",35853,175,16803],["Ware","2021-05-01",35853,54,16857],["Ware","2021-05-02",35853,1,16858],["Ware","2021-05-03",35853,38,16896],["Ware","2021-05-04",35853,134,17030],["Ware","2021-05-05",35853,135,17165],["Ware","2021-05-06",35853,69,17234],["Ware","2021-05-07",35853,81,17315],["Ware","2021-05-08",35853,47,17362],["Ware","2021-05-09",35853,3,17365],["Ware","2021-05-10",35853,38,17403],["Ware","2021-05-11",35853,72,17475],["Ware","2021-05-12",35853,149,17624],["Ware","2021-05-13",35853,71,17695],["Ware","2021-05-14",35853,69,17764],["Ware","2021-05-15",35853,76,17840],["Ware","2021-05-16",35853,6,17846],["Ware","2021-05-17",35853,34,17880],["Ware","2021-05-18",35853,94,17974],["Ware","2021-05-19",35853,153,18127],["Ware","2021-05-20",35853,270,18397],["Ware","2021-05-21",35853,92,18489],["Ware","2021-05-22",35853,19,18508],["Ware","2021-05-23",35853,16,18524],["Ware","2021-05-24",35853,32,18556],["Ware","2021-05-25",35853,66,18622],["Ware","2021-05-26",35853,107,18729],["Ware","2021-05-27",35853,29,18758],["Ware","2021-05-28",35853,56,18814],["Ware","2021-05-29",35853,13,18827],["Ware","2021-05-30",35853,6,18833],["Ware","2021-05-31",35853,3,18836],["Ware","2021-06-01",35853,64,18900],["Ware","2021-06-02",35853,88,18988],["Ware","2021-06-03",35853,46,19034],["Ware","2021-06-04",35853,31,19065],["Ware","2021-06-05",35853,16,19081],["Ware","2021-06-06",35853,5,19086],["Ware","2021-06-07",35853,29,19115],["Ware","2021-06-08",35853,35,19150],["Ware","2021-06-09",35853,97,19247],["Ware","2021-06-10",35853,40,19287],["Ware","2021-06-11",35853,65,19352],["Ware","2021-06-12",35853,24,19376],["Ware","2021-06-13",35853,5,19381],["Ware","2021-06-14",35853,23,19404],["Ware","2021-06-15",35853,31,19435],["Ware","2021-06-16",35853,90,19525],["Ware","2021-06-17",35853,19,19544],["Ware","2021-06-18",35853,48,19592],["Ware","2021-06-19",35853,11,19603],["Ware","2021-06-20",35853,16,19619],["Ware","2021-06-21",35853,21,19640],["Ware","2021-06-22",35853,20,19660],["Ware","2021-06-23",35853,74,19734],["Ware","2021-06-24",35853,22,19756],["Ware","2021-06-25",35853,21,19777],["Ware","2021-06-26",35853,15,19792],["Ware","2021-06-27",35853,6,19798],["Ware","2021-06-28",35853,18,19816],["Ware","2021-06-29",35853,16,19832],["Ware","2021-06-30",35853,82,19914],["Ware","2021-07-01",35853,25,19939],["Ware","2021-07-02",35853,34,19973],["Ware","2021-07-03",35853,6,19979],["Ware","2021-07-04",35853,1,19980],["Ware","2021-07-05",35853,10,19990],["Ware","2021-07-06",35853,20,20010],["Ware","2021-07-07",35853,32,20042],["Ware","2021-07-08",35853,31,20073],["Ware","2021-07-09",35853,24,20097],["Ware","2021-07-10",35853,6,20103],["Ware","2021-07-11",35853,2,20105],["Ware","2021-07-12",35853,22,20127],["Ware","2021-07-13",35853,38,20165],["Ware","2021-07-14",35853,62,20227],["Ware","2021-07-15",35853,20,20247],["Ware","2021-07-16",35853,35,20282],["Ware","2021-07-17",35853,21,20303],["Ware","2021-07-18",35853,6,20309],["Ware","2021-07-19",35853,35,20344],["Ware","2021-07-20",35853,27,20371],["Ware","2021-07-21",35853,98,20469],["Ware","2021-07-22",35853,49,20518],["Ware","2021-07-23",35853,77,20595],["Ware","2021-07-24",35853,42,20637],["Ware","2021-07-25",35853,21,20658],["Ware","2021-07-26",35853,64,20722],["Ware","2021-07-27",35853,85,20807],["Ware","2021-07-28",35853,170,20977],["Ware","2021-07-29",35853,67,21044],["Ware","2021-07-30",35853,85,21129],["Ware","2021-07-31",35853,44,21173],["Ware","2021-08-01",35853,31,21204],["Ware","2021-08-02",35853,60,21264],["Ware","2021-08-03",35853,88,21352],["Ware","2021-08-04",35853,106,21458],["Ware","2021-08-05",35853,109,21567],["Ware","2021-08-06",35853,109,21676],["Ware","2021-08-07",35853,40,21716],["Ware","2021-08-08",35853,30,21746],["Ware","2021-08-09",35853,93,21839],["Ware","2021-08-10",35853,129,21968],["Ware","2021-08-11",35853,166,22134],["Ware","2021-08-12",35853,124,22258],["Ware","2021-08-13",35853,133,22391],["Ware","2021-08-14",35853,56,22447],["Ware","2021-08-15",35853,48,22495],["Ware","2021-08-16",35853,94,22589],["Ware","2021-08-17",35853,109,22698],["Ware","2021-08-18",35853,145,22843],["Ware","2021-08-19",35853,114,22957],["Ware","2021-08-20",35853,117,23074],["Ware","2021-08-21",35853,53,23127],["Ware","2021-08-22",35853,31,23158],["Ware","2021-08-23",35853,121,23279],["Ware","2021-08-24",35853,93,23372],["Ware","2021-08-25",35853,168,23540],["Ware","2021-08-26",35853,132,23672],["Ware","2021-08-27",35853,138,23810],["Ware","2021-08-28",35853,54,23864],["Ware","2021-08-29",35853,39,23903],["Ware","2021-08-30",35853,110,24013],["Ware","2021-08-31",35853,131,24144],["Ware","2021-09-01",35853,139,24283],["Ware","2021-09-02",35853,124,24407],["Ware","2021-09-03",35853,147,24554],["Ware","2021-09-04",35853,55,24609],["Ware","2021-09-05",35853,26,24635],["Ware","2021-09-06",35853,24,24659],["Ware","2021-09-07",35853,106,24765],["Ware","2021-09-08",35853,146,24911],["Ware","2021-09-09",35853,103,25014],["Ware","2021-09-10",35853,153,25167],["Ware","2021-09-11",35853,62,25229],["Ware","2021-09-12",35853,31,25260],["Ware","2021-09-13",35853,114,25374],["Ware","2021-09-14",35853,87,25461],["Ware","2021-09-15",35853,96,25557],["Ware","2021-09-16",35853,96,25653],["Ware","2021-09-17",35853,113,25766],["Ware","2021-09-18",35853,33,25799],["Ware","2021-09-19",35853,22,25821],["Ware","2021-09-20",35853,67,25888],["Ware","2021-09-21",35853,58,25946],["Ware","2021-09-22",35853,76,26022],["Ware","2021-09-23",35853,61,26083],["Ware","2021-09-24",35853,84,26167],["Ware","2021-09-25",35853,28,26195],["Ware","2021-09-26",35853,10,26205],["Ware","2021-09-27",35853,53,26258],["Ware","2021-09-28",35853,62,26320],["Ware","2021-09-29",35853,63,26383],["Ware","2021-09-30",35853,62,26445],["Ware","2021-10-01",35853,64,26509],["Ware","2021-10-02",35853,21,26530],["Ware","2021-10-03",35853,13,26543],["Ware","2021-10-04",35853,62,26605],["Ware","2021-10-05",35853,35,26640],["Ware","2021-10-06",35853,47,26687],["Ware","2021-10-07",35853,33,26720],["Ware","2021-10-08",35853,52,26772],["Ware","2021-10-09",35853,16,26788],["Ware","2021-10-10",35853,10,26798],["Ware","2021-10-11",35853,24,26822],["Ware","2021-10-12",35853,40,26862],["Ware","2021-10-13",35853,33,26895],["Ware","2021-10-14",35853,36,26931],["Ware","2021-10-15",35853,42,26973],["Ware","2021-10-16",35853,15,26988],["Ware","2021-10-17",35853,9,26997],["Ware","2021-10-18",35853,38,27035],["Ware","2021-10-19",35853,26,27061],["Ware","2021-10-20",35853,42,27103],["Ware","2021-10-21",35853,37,27140],["Ware","2021-10-22",35853,33,27173],["Ware","2021-10-23",35853,25,27198],["Ware","2021-10-24",35853,5,27203],["Ware","2021-10-25",35853,60,27263],["Ware","2021-10-26",35853,75,27338],["Ware","2021-10-27",35853,130,27468],["Ware","2021-10-28",35853,106,27574],["Ware","2021-10-29",35853,128,27702],["Ware","2021-10-30",35853,16,27718],["Ware","2021-10-31",35853,10,27728],["Ware","2021-11-01",35853,114,27842],["Ware","2021-11-02",35853,141,27983],["Ware","2021-11-03",35853,119,28102],["Ware","2021-11-04",35853,76,28178],["Ware","2021-11-05",35853,111,28289],["Ware","2021-11-06",35853,15,28304],["Ware","2021-11-07",35853,17,28321],["Ware","2021-11-08",35853,111,28432],["Ware","2021-11-09",35853,119,28551],["Ware","2021-11-10",35853,99,28650],["Ware","2021-11-11",35853,45,28695],["Ware","2021-11-12",35853,112,28807],["Ware","2021-11-13",35853,16,28823],["Ware","2021-11-14",35853,7,28830],["Ware","2021-11-15",35853,100,28930],["Ware","2021-11-16",35853,100,29030],["Ware","2021-11-17",35853,110,29140],["Ware","2021-11-18",35853,98,29238],["Ware","2021-11-19",35853,99,29337],["Ware","2021-11-20",35853,17,29354],["Ware","2021-11-21",35853,9,29363],["Ware","2021-11-22",35853,92,29455],["Ware","2021-11-23",35853,131,29586],["Ware","2021-11-24",35853,67,29653],["Ware","2021-11-26",35853,17,29670],["Ware","2021-11-27",35853,14,29684],["Ware","2021-11-28",35853,12,29696],["Ware","2021-11-29",35853,157,29853],["Ware","2021-11-30",35853,149,30002],["Ware","2021-12-01",35853,130,30132],["Ware","2021-12-02",35853,103,30235],["Ware","2021-12-03",35853,152,30387],["Ware","2021-12-04",35853,34,30421],["Ware","2021-12-05",35853,10,30431],["Ware","2021-12-06",35853,87,30518],["Ware","2021-12-07",35853,92,30610],["Ware","2021-12-08",35853,114,30724],["Ware","2021-12-09",35853,100,30824],["Ware","2021-12-10",35853,111,30935],["Ware","2021-12-11",35853,20,30955],["Ware","2021-12-12",35853,9,30964],["Ware","2021-12-13",35853,65,31029],["Ware","2021-12-14",35853,65,31094],["Ware","2021-12-15",35853,102,31196],["Ware","2021-12-16",35853,78,31274],["Ware","2021-12-17",35853,102,31376],["Ware","2021-12-18",35853,21,31397],["Ware","2021-12-19",35853,14,31411],["Ware","2021-12-20",35853,113,31524],["Ware","2021-12-21",35853,108,31632],["Ware","2021-12-22",35853,83,31715],["Ware","2021-12-23",35853,20,31735],["Ware","2021-12-24",35853,9,31744],["Ware","2021-12-26",35853,13,31757],["Ware","2021-12-27",35853,92,31849],["Ware","2021-12-28",35853,116,31965],["Ware","2021-12-29",35853,116,32081],["Ware","2021-12-30",35853,95,32176],["Ware","2021-12-31",35853,49,32225],["Ware","2022-01-01",35853,1,32226],["Ware","2022-01-02",35853,11,32237],["Ware","2022-01-03",35853,13,32250],["Warren","2020-12-18",5210,1,1],["Warren","2020-12-21",5210,1,2],["Warren","2020-12-22",5210,2,4],["Warren","2020-12-23",5210,4,8],["Warren","2020-12-24",5210,1,9],["Warren","2020-12-27",5210,1,10],["Warren","2020-12-28",5210,2,12],["Warren","2020-12-29",5210,6,18],["Warren","2020-12-30",5210,3,21],["Warren","2021-01-02",5210,3,24],["Warren","2021-01-04",5210,7,31],["Warren","2021-01-05",5210,7,38],["Warren","2021-01-06",5210,19,57],["Warren","2021-01-07",5210,8,65],["Warren","2021-01-08",5210,11,76],["Warren","2021-01-09",5210,4,80],["Warren","2021-01-10",5210,30,110],["Warren","2021-01-11",5210,58,168],["Warren","2021-01-12",5210,6,174],["Warren","2021-01-13",5210,12,186],["Warren","2021-01-14",5210,56,242],["Warren","2021-01-15",5210,1,243],["Warren","2021-01-16",5210,9,252],["Warren","2021-01-18",5210,86,338],["Warren","2021-01-19",5210,18,356],["Warren","2021-01-20",5210,19,375],["Warren","2021-01-21",5210,7,382],["Warren","2021-01-22",5210,1,383],["Warren","2021-01-23",5210,4,387],["Warren","2021-01-25",5210,72,459],["Warren","2021-01-26",5210,13,472],["Warren","2021-01-27",5210,9,481],["Warren","2021-01-28",5210,32,513],["Warren","2021-01-29",5210,3,516],["Warren","2021-01-30",5210,3,519],["Warren","2021-01-31",5210,40,559],["Warren","2021-02-01",5210,54,613],["Warren","2021-02-02",5210,9,622],["Warren","2021-02-03",5210,27,649],["Warren","2021-02-04",5210,15,664],["Warren","2021-02-05",5210,13,677],["Warren","2021-02-06",5210,3,680],["Warren","2021-02-08",5210,48,728],["Warren","2021-02-09",5210,25,753],["Warren","2021-02-10",5210,15,768],["Warren","2021-02-11",5210,57,825],["Warren","2021-02-12",5210,13,838],["Warren","2021-02-13",5210,5,843],["Warren","2021-02-14",5210,1,844],["Warren","2021-02-15",5210,121,965],["Warren","2021-02-16",5210,18,983],["Warren","2021-02-17",5210,26,1009],["Warren","2021-02-18",5210,8,1017],["Warren","2021-02-19",5210,3,1020],["Warren","2021-02-21",5210,1,1021],["Warren","2021-02-22",5210,94,1115],["Warren","2021-02-23",5210,11,1126],["Warren","2021-02-24",5210,12,1138],["Warren","2021-02-25",5210,51,1189],["Warren","2021-02-26",5210,10,1199],["Warren","2021-02-27",5210,4,1203],["Warren","2021-03-01",5210,61,1264],["Warren","2021-03-02",5210,15,1279],["Warren","2021-03-03",5210,15,1294],["Warren","2021-03-04",5210,8,1302],["Warren","2021-03-05",5210,5,1307],["Warren","2021-03-06",5210,2,1309],["Warren","2021-03-08",5210,49,1358],["Warren","2021-03-09",5210,22,1380],["Warren","2021-03-10",5210,24,1404],["Warren","2021-03-11",5210,55,1459],["Warren","2021-03-12",5210,43,1502],["Warren","2021-03-13",5210,9,1511],["Warren","2021-03-14",5210,1,1512],["Warren","2021-03-15",5210,88,1600],["Warren","2021-03-16",5210,23,1623],["Warren","2021-03-17",5210,23,1646],["Warren","2021-03-18",5210,20,1666],["Warren","2021-03-19",5210,10,1676],["Warren","2021-03-20",5210,7,1683],["Warren","2021-03-21",5210,2,1685],["Warren","2021-03-22",5210,87,1772],["Warren","2021-03-23",5210,22,1794],["Warren","2021-03-24",5210,26,1820],["Warren","2021-03-25",5210,64,1884],["Warren","2021-03-26",5210,12,1896],["Warren","2021-03-27",5210,3,1899],["Warren","2021-03-28",5210,2,1901],["Warren","2021-03-29",5210,49,1950],["Warren","2021-03-30",5210,26,1976],["Warren","2021-03-31",5210,38,2014],["Warren","2021-04-01",5210,41,2055],["Warren","2021-04-02",5210,12,2067],["Warren","2021-04-03",5210,7,2074],["Warren","2021-04-04",5210,8,2082],["Warren","2021-04-05",5210,72,2154],["Warren","2021-04-06",5210,25,2179],["Warren","2021-04-07",5210,31,2210],["Warren","2021-04-08",5210,56,2266],["Warren","2021-04-09",5210,13,2279],["Warren","2021-04-10",5210,3,2282],["Warren","2021-04-12",5210,114,2396],["Warren","2021-04-13",5210,30,2426],["Warren","2021-04-14",5210,23,2449],["Warren","2021-04-15",5210,27,2476],["Warren","2021-04-16",5210,47,2523],["Warren","2021-04-17",5210,7,2530],["Warren","2021-04-18",5210,6,2536],["Warren","2021-04-19",5210,95,2631],["Warren","2021-04-20",5210,36,2667],["Warren","2021-04-21",5210,38,2705],["Warren","2021-04-22",5210,75,2780],["Warren","2021-04-23",5210,14,2794],["Warren","2021-04-24",5210,3,2797],["Warren","2021-04-26",5210,43,2840],["Warren","2021-04-27",5210,28,2868],["Warren","2021-04-28",5210,37,2905],["Warren","2021-04-29",5210,35,2940],["Warren","2021-04-30",5210,19,2959],["Warren","2021-05-01",5210,4,2963],["Warren","2021-05-02",5210,5,2968],["Warren","2021-05-03",5210,51,3019],["Warren","2021-05-04",5210,23,3042],["Warren","2021-05-05",5210,27,3069],["Warren","2021-05-06",5210,36,3105],["Warren","2021-05-07",5210,15,3120],["Warren","2021-05-08",5210,9,3129],["Warren","2021-05-09",5210,4,3133],["Warren","2021-05-10",5210,39,3172],["Warren","2021-05-11",5210,31,3203],["Warren","2021-05-12",5210,17,3220],["Warren","2021-05-13",5210,8,3228],["Warren","2021-05-14",5210,16,3244],["Warren","2021-05-15",5210,4,3248],["Warren","2021-05-16",5210,4,3252],["Warren","2021-05-17",5210,37,3289],["Warren","2021-05-18",5210,22,3311],["Warren","2021-05-19",5210,20,3331],["Warren","2021-05-20",5210,26,3357],["Warren","2021-05-21",5210,7,3364],["Warren","2021-05-22",5210,9,3373],["Warren","2021-05-23",5210,1,3374],["Warren","2021-05-24",5210,30,3404],["Warren","2021-05-25",5210,13,3417],["Warren","2021-05-26",5210,16,3433],["Warren","2021-05-27",5210,14,3447],["Warren","2021-05-28",5210,8,3455],["Warren","2021-05-29",5210,6,3461],["Warren","2021-05-30",5210,1,3462],["Warren","2021-05-31",5210,2,3464],["Warren","2021-06-01",5210,16,3480],["Warren","2021-06-02",5210,30,3510],["Warren","2021-06-03",5210,13,3523],["Warren","2021-06-04",5210,14,3537],["Warren","2021-06-05",5210,7,3544],["Warren","2021-06-06",5210,7,3551],["Warren","2021-06-07",5210,30,3581],["Warren","2021-06-08",5210,13,3594],["Warren","2021-06-09",5210,16,3610],["Warren","2021-06-10",5210,17,3627],["Warren","2021-06-11",5210,11,3638],["Warren","2021-06-12",5210,8,3646],["Warren","2021-06-13",5210,2,3648],["Warren","2021-06-14",5210,9,3657],["Warren","2021-06-15",5210,8,3665],["Warren","2021-06-16",5210,18,3683],["Warren","2021-06-17",5210,23,3706],["Warren","2021-06-18",5210,8,3714],["Warren","2021-06-19",5210,5,3719],["Warren","2021-06-20",5210,2,3721],["Warren","2021-06-21",5210,13,3734],["Warren","2021-06-22",5210,10,3744],["Warren","2021-06-23",5210,3,3747],["Warren","2021-06-24",5210,6,3753],["Warren","2021-06-25",5210,9,3762],["Warren","2021-06-26",5210,6,3768],["Warren","2021-06-27",5210,1,3769],["Warren","2021-06-28",5210,4,3773],["Warren","2021-06-29",5210,11,3784],["Warren","2021-06-30",5210,13,3797],["Warren","2021-07-01",5210,14,3811],["Warren","2021-07-02",5210,5,3816],["Warren","2021-07-03",5210,3,3819],["Warren","2021-07-04",5210,4,3823],["Warren","2021-07-05",5210,3,3826],["Warren","2021-07-06",5210,7,3833],["Warren","2021-07-07",5210,28,3861],["Warren","2021-07-08",5210,3,3864],["Warren","2021-07-09",5210,10,3874],["Warren","2021-07-10",5210,3,3877],["Warren","2021-07-11",5210,2,3879],["Warren","2021-07-12",5210,10,3889],["Warren","2021-07-13",5210,12,3901],["Warren","2021-07-14",5210,4,3905],["Warren","2021-07-15",5210,22,3927],["Warren","2021-07-16",5210,2,3929],["Warren","2021-07-17",5210,11,3940],["Warren","2021-07-18",5210,3,3943],["Warren","2021-07-19",5210,9,3952],["Warren","2021-07-20",5210,14,3966],["Warren","2021-07-21",5210,20,3986],["Warren","2021-07-22",5210,12,3998],["Warren","2021-07-23",5210,10,4008],["Warren","2021-07-24",5210,1,4009],["Warren","2021-07-25",5210,1,4010],["Warren","2021-07-26",5210,13,4023],["Warren","2021-07-27",5210,13,4036],["Warren","2021-07-28",5210,35,4071],["Warren","2021-07-29",5210,10,4081],["Warren","2021-07-30",5210,14,4095],["Warren","2021-07-31",5210,6,4101],["Warren","2021-08-01",5210,4,4105],["Warren","2021-08-02",5210,6,4111],["Warren","2021-08-03",5210,13,4124],["Warren","2021-08-04",5210,35,4159],["Warren","2021-08-05",5210,9,4168],["Warren","2021-08-06",5210,18,4186],["Warren","2021-08-07",5210,9,4195],["Warren","2021-08-08",5210,8,4203],["Warren","2021-08-09",5210,15,4218],["Warren","2021-08-10",5210,11,4229],["Warren","2021-08-11",5210,25,4254],["Warren","2021-08-12",5210,14,4268],["Warren","2021-08-13",5210,17,4285],["Warren","2021-08-14",5210,11,4296],["Warren","2021-08-15",5210,6,4302],["Warren","2021-08-16",5210,13,4315],["Warren","2021-08-17",5210,19,4334],["Warren","2021-08-18",5210,33,4367],["Warren","2021-08-19",5210,25,4392],["Warren","2021-08-20",5210,14,4406],["Warren","2021-08-21",5210,9,4415],["Warren","2021-08-22",5210,2,4417],["Warren","2021-08-23",5210,11,4428],["Warren","2021-08-24",5210,9,4437],["Warren","2021-08-25",5210,27,4464],["Warren","2021-08-26",5210,19,4483],["Warren","2021-08-27",5210,18,4501],["Warren","2021-08-28",5210,4,4505],["Warren","2021-08-29",5210,5,4510],["Warren","2021-08-30",5210,11,4521],["Warren","2021-08-31",5210,22,4543],["Warren","2021-09-01",5210,28,4571],["Warren","2021-09-02",5210,16,4587],["Warren","2021-09-03",5210,11,4598],["Warren","2021-09-04",5210,7,4605],["Warren","2021-09-05",5210,9,4614],["Warren","2021-09-06",5210,8,4622],["Warren","2021-09-07",5210,18,4640],["Warren","2021-09-08",5210,28,4668],["Warren","2021-09-09",5210,19,4687],["Warren","2021-09-10",5210,8,4695],["Warren","2021-09-11",5210,6,4701],["Warren","2021-09-12",5210,3,4704],["Warren","2021-09-13",5210,17,4721],["Warren","2021-09-14",5210,17,4738],["Warren","2021-09-15",5210,19,4757],["Warren","2021-09-16",5210,16,4773],["Warren","2021-09-17",5210,5,4778],["Warren","2021-09-18",5210,9,4787],["Warren","2021-09-19",5210,4,4791],["Warren","2021-09-20",5210,9,4800],["Warren","2021-09-21",5210,8,4808],["Warren","2021-09-22",5210,34,4842],["Warren","2021-09-23",5210,12,4854],["Warren","2021-09-24",5210,9,4863],["Warren","2021-09-25",5210,4,4867],["Warren","2021-09-26",5210,5,4872],["Warren","2021-09-27",5210,8,4880],["Warren","2021-09-28",5210,10,4890],["Warren","2021-09-29",5210,15,4905],["Warren","2021-09-30",5210,12,4917],["Warren","2021-10-01",5210,12,4929],["Warren","2021-10-02",5210,6,4935],["Warren","2021-10-03",5210,2,4937],["Warren","2021-10-04",5210,2,4939],["Warren","2021-10-05",5210,5,4944],["Warren","2021-10-06",5210,10,4954],["Warren","2021-10-07",5210,13,4967],["Warren","2021-10-08",5210,5,4972],["Warren","2021-10-09",5210,3,4975],["Warren","2021-10-10",5210,5,4980],["Warren","2021-10-11",5210,7,4987],["Warren","2021-10-12",5210,4,4991],["Warren","2021-10-13",5210,5,4996],["Warren","2021-10-14",5210,8,5004],["Warren","2021-10-15",5210,10,5014],["Warren","2021-10-16",5210,7,5021],["Warren","2021-10-17",5210,2,5023],["Warren","2021-10-18",5210,4,5027],["Warren","2021-10-19",5210,3,5030],["Warren","2021-10-20",5210,11,5041],["Warren","2021-10-21",5210,7,5048],["Warren","2021-10-22",5210,11,5059],["Warren","2021-10-23",5210,8,5067],["Warren","2021-10-25",5210,10,5077],["Warren","2021-10-26",5210,14,5091],["Warren","2021-10-27",5210,24,5115],["Warren","2021-10-28",5210,5,5120],["Warren","2021-10-29",5210,13,5133],["Warren","2021-10-30",5210,4,5137],["Warren","2021-10-31",5210,3,5140],["Warren","2021-11-01",5210,37,5177],["Warren","2021-11-02",5210,4,5181],["Warren","2021-11-03",5210,42,5223],["Warren","2021-11-04",5210,9,5232],["Warren","2021-11-05",5210,10,5242],["Warren","2021-11-06",5210,3,5245],["Warren","2021-11-07",5210,3,5248],["Warren","2021-11-08",5210,30,5278],["Warren","2021-11-09",5210,13,5291],["Warren","2021-11-10",5210,34,5325],["Warren","2021-11-11",5210,13,5338],["Warren","2021-11-12",5210,14,5352],["Warren","2021-11-13",5210,5,5357],["Warren","2021-11-15",5210,20,5377],["Warren","2021-11-16",5210,14,5391],["Warren","2021-11-17",5210,36,5427],["Warren","2021-11-18",5210,33,5460],["Warren","2021-11-19",5210,10,5470],["Warren","2021-11-20",5210,4,5474],["Warren","2021-11-21",5210,3,5477],["Warren","2021-11-22",5210,40,5517],["Warren","2021-11-23",5210,7,5524],["Warren","2021-11-24",5210,11,5535],["Warren","2021-11-26",5210,6,5541],["Warren","2021-11-27",5210,3,5544],["Warren","2021-11-28",5210,3,5547],["Warren","2021-11-29",5210,15,5562],["Warren","2021-11-30",5210,19,5581],["Warren","2021-12-01",5210,65,5646],["Warren","2021-12-02",5210,39,5685],["Warren","2021-12-03",5210,17,5702],["Warren","2021-12-04",5210,7,5709],["Warren","2021-12-05",5210,2,5711],["Warren","2021-12-06",5210,28,5739],["Warren","2021-12-07",5210,8,5747],["Warren","2021-12-08",5210,44,5791],["Warren","2021-12-09",5210,28,5819],["Warren","2021-12-10",5210,19,5838],["Warren","2021-12-11",5210,4,5842],["Warren","2021-12-12",5210,5,5847],["Warren","2021-12-13",5210,7,5854],["Warren","2021-12-14",5210,16,5870],["Warren","2021-12-15",5210,15,5885],["Warren","2021-12-16",5210,30,5915],["Warren","2021-12-17",5210,11,5926],["Warren","2021-12-18",5210,6,5932],["Warren","2021-12-19",5210,2,5934],["Warren","2021-12-20",5210,14,5948],["Warren","2021-12-21",5210,5,5953],["Warren","2021-12-22",5210,19,5972],["Warren","2021-12-23",5210,7,5979],["Warren","2021-12-24",5210,6,5985],["Warren","2021-12-26",5210,1,5986],["Warren","2021-12-27",5210,14,6000],["Warren","2021-12-28",5210,10,6010],["Warren","2021-12-29",5210,47,6057],["Warren","2021-12-30",5210,15,6072],["Warren","2021-12-31",5210,14,6086],["Warren","2022-01-01",5210,5,6091],["Warren","2022-01-02",5210,3,6094],["Warren","2022-01-03",5210,9,6103],["Washington","2020-12-15",20302,1,1],["Washington","2020-12-18",20302,3,4],["Washington","2020-12-19",20302,1,5],["Washington","2020-12-20",20302,1,6],["Washington","2020-12-22",20302,5,11],["Washington","2020-12-23",20302,11,22],["Washington","2020-12-24",20302,1,23],["Washington","2020-12-27",20302,1,24],["Washington","2020-12-28",20302,10,34],["Washington","2020-12-29",20302,17,51],["Washington","2020-12-30",20302,31,82],["Washington","2020-12-31",20302,27,109],["Washington","2021-01-02",20302,1,110],["Washington","2021-01-03",20302,1,111],["Washington","2021-01-04",20302,22,133],["Washington","2021-01-05",20302,54,187],["Washington","2021-01-06",20302,30,217],["Washington","2021-01-07",20302,16,233],["Washington","2021-01-08",20302,42,275],["Washington","2021-01-09",20302,5,280],["Washington","2021-01-11",20302,18,298],["Washington","2021-01-12",20302,140,438],["Washington","2021-01-13",20302,127,565],["Washington","2021-01-14",20302,90,655],["Washington","2021-01-15",20302,110,765],["Washington","2021-01-16",20302,47,812],["Washington","2021-01-17",20302,11,823],["Washington","2021-01-18",20302,62,885],["Washington","2021-01-19",20302,170,1055],["Washington","2021-01-20",20302,167,1222],["Washington","2021-01-21",20302,59,1281],["Washington","2021-01-22",20302,49,1330],["Washington","2021-01-23",20302,7,1337],["Washington","2021-01-24",20302,1,1338],["Washington","2021-01-25",20302,13,1351],["Washington","2021-01-26",20302,155,1506],["Washington","2021-01-27",20302,16,1522],["Washington","2021-01-28",20302,62,1584],["Washington","2021-01-29",20302,106,1690],["Washington","2021-01-30",20302,11,1701],["Washington","2021-01-31",20302,1,1702],["Washington","2021-02-01",20302,20,1722],["Washington","2021-02-02",20302,182,1904],["Washington","2021-02-03",20302,148,2052],["Washington","2021-02-04",20302,63,2115],["Washington","2021-02-05",20302,107,2222],["Washington","2021-02-06",20302,3,2225],["Washington","2021-02-07",20302,6,2231],["Washington","2021-02-08",20302,50,2281],["Washington","2021-02-09",20302,236,2517],["Washington","2021-02-10",20302,175,2692],["Washington","2021-02-11",20302,97,2789],["Washington","2021-02-12",20302,131,2920],["Washington","2021-02-13",20302,6,2926],["Washington","2021-02-14",20302,3,2929],["Washington","2021-02-15",20302,50,2979],["Washington","2021-02-16",20302,226,3205],["Washington","2021-02-17",20302,185,3390],["Washington","2021-02-18",20302,99,3489],["Washington","2021-02-19",20302,90,3579],["Washington","2021-02-20",20302,11,3590],["Washington","2021-02-21",20302,2,3592],["Washington","2021-02-22",20302,45,3637],["Washington","2021-02-23",20302,169,3806],["Washington","2021-02-24",20302,98,3904],["Washington","2021-02-25",20302,108,4012],["Washington","2021-02-26",20302,90,4102],["Washington","2021-02-27",20302,2,4104],["Washington","2021-02-28",20302,2,4106],["Washington","2021-03-01",20302,56,4162],["Washington","2021-03-02",20302,167,4329],["Washington","2021-03-03",20302,153,4482],["Washington","2021-03-04",20302,29,4511],["Washington","2021-03-05",20302,114,4625],["Washington","2021-03-06",20302,4,4629],["Washington","2021-03-07",20302,5,4634],["Washington","2021-03-08",20302,53,4687],["Washington","2021-03-09",20302,200,4887],["Washington","2021-03-10",20302,236,5123],["Washington","2021-03-11",20302,83,5206],["Washington","2021-03-12",20302,222,5428],["Washington","2021-03-13",20302,5,5433],["Washington","2021-03-14",20302,4,5437],["Washington","2021-03-15",20302,53,5490],["Washington","2021-03-16",20302,227,5717],["Washington","2021-03-17",20302,216,5933],["Washington","2021-03-18",20302,74,6007],["Washington","2021-03-19",20302,288,6295],["Washington","2021-03-20",20302,37,6332],["Washington","2021-03-21",20302,7,6339],["Washington","2021-03-22",20302,53,6392],["Washington","2021-03-23",20302,373,6765],["Washington","2021-03-24",20302,65,6830],["Washington","2021-03-25",20302,116,6946],["Washington","2021-03-26",20302,246,7192],["Washington","2021-03-27",20302,67,7259],["Washington","2021-03-28",20302,5,7264],["Washington","2021-03-29",20302,22,7286],["Washington","2021-03-30",20302,216,7502],["Washington","2021-03-31",20302,210,7712],["Washington","2021-04-01",20302,131,7843],["Washington","2021-04-02",20302,172,8015],["Washington","2021-04-03",20302,41,8056],["Washington","2021-04-04",20302,5,8061],["Washington","2021-04-05",20302,35,8096],["Washington","2021-04-06",20302,207,8303],["Washington","2021-04-07",20302,266,8569],["Washington","2021-04-08",20302,135,8704],["Washington","2021-04-09",20302,185,8889],["Washington","2021-04-10",20302,43,8932],["Washington","2021-04-11",20302,6,8938],["Washington","2021-04-12",20302,14,8952],["Washington","2021-04-13",20302,238,9190],["Washington","2021-04-14",20302,125,9315],["Washington","2021-04-15",20302,111,9426],["Washington","2021-04-16",20302,273,9699],["Washington","2021-04-17",20302,82,9781],["Washington","2021-04-18",20302,11,9792],["Washington","2021-04-19",20302,22,9814],["Washington","2021-04-20",20302,329,10143],["Washington","2021-04-21",20302,81,10224],["Washington","2021-04-22",20302,87,10311],["Washington","2021-04-23",20302,196,10507],["Washington","2021-04-24",20302,59,10566],["Washington","2021-04-25",20302,5,10571],["Washington","2021-04-26",20302,22,10593],["Washington","2021-04-27",20302,183,10776],["Washington","2021-04-28",20302,159,10935],["Washington","2021-04-29",20302,70,11005],["Washington","2021-04-30",20302,130,11135],["Washington","2021-05-01",20302,39,11174],["Washington","2021-05-02",20302,5,11179],["Washington","2021-05-03",20302,28,11207],["Washington","2021-05-04",20302,119,11326],["Washington","2021-05-05",20302,85,11411],["Washington","2021-05-06",20302,41,11452],["Washington","2021-05-07",20302,104,11556],["Washington","2021-05-08",20302,38,11594],["Washington","2021-05-09",20302,3,11597],["Washington","2021-05-10",20302,31,11628],["Washington","2021-05-11",20302,80,11708],["Washington","2021-05-12",20302,41,11749],["Washington","2021-05-13",20302,41,11790],["Washington","2021-05-14",20302,64,11854],["Washington","2021-05-15",20302,36,11890],["Washington","2021-05-16",20302,8,11898],["Washington","2021-05-17",20302,32,11930],["Washington","2021-05-18",20302,91,12021],["Washington","2021-05-19",20302,49,12070],["Washington","2021-05-20",20302,44,12114],["Washington","2021-05-21",20302,90,12204],["Washington","2021-05-22",20302,8,12212],["Washington","2021-05-23",20302,5,12217],["Washington","2021-05-24",20302,19,12236],["Washington","2021-05-25",20302,37,12273],["Washington","2021-05-26",20302,39,12312],["Washington","2021-05-27",20302,20,12332],["Washington","2021-05-28",20302,39,12371],["Washington","2021-05-29",20302,6,12377],["Washington","2021-05-30",20302,6,12383],["Washington","2021-05-31",20302,6,12389],["Washington","2021-06-01",20302,42,12431],["Washington","2021-06-02",20302,38,12469],["Washington","2021-06-03",20302,31,12500],["Washington","2021-06-04",20302,51,12551],["Washington","2021-06-05",20302,23,12574],["Washington","2021-06-06",20302,14,12588],["Washington","2021-06-07",20302,33,12621],["Washington","2021-06-08",20302,22,12643],["Washington","2021-06-09",20302,31,12674],["Washington","2021-06-10",20302,22,12696],["Washington","2021-06-11",20302,49,12745],["Washington","2021-06-12",20302,21,12766],["Washington","2021-06-13",20302,4,12770],["Washington","2021-06-14",20302,27,12797],["Washington","2021-06-15",20302,37,12834],["Washington","2021-06-16",20302,29,12863],["Washington","2021-06-17",20302,12,12875],["Washington","2021-06-18",20302,47,12922],["Washington","2021-06-19",20302,10,12932],["Washington","2021-06-20",20302,6,12938],["Washington","2021-06-21",20302,9,12947],["Washington","2021-06-22",20302,19,12966],["Washington","2021-06-23",20302,19,12985],["Washington","2021-06-24",20302,19,13004],["Washington","2021-06-25",20302,31,13035],["Washington","2021-06-26",20302,8,13043],["Washington","2021-06-27",20302,8,13051],["Washington","2021-06-28",20302,10,13061],["Washington","2021-06-29",20302,23,13084],["Washington","2021-06-30",20302,17,13101],["Washington","2021-07-01",20302,20,13121],["Washington","2021-07-02",20302,24,13145],["Washington","2021-07-03",20302,5,13150],["Washington","2021-07-04",20302,1,13151],["Washington","2021-07-05",20302,12,13163],["Washington","2021-07-06",20302,21,13184],["Washington","2021-07-07",20302,15,13199],["Washington","2021-07-08",20302,14,13213],["Washington","2021-07-09",20302,32,13245],["Washington","2021-07-10",20302,13,13258],["Washington","2021-07-11",20302,4,13262],["Washington","2021-07-12",20302,19,13281],["Washington","2021-07-13",20302,16,13297],["Washington","2021-07-14",20302,18,13315],["Washington","2021-07-15",20302,20,13335],["Washington","2021-07-16",20302,29,13364],["Washington","2021-07-17",20302,9,13373],["Washington","2021-07-18",20302,6,13379],["Washington","2021-07-19",20302,14,13393],["Washington","2021-07-20",20302,38,13431],["Washington","2021-07-21",20302,23,13454],["Washington","2021-07-22",20302,17,13471],["Washington","2021-07-23",20302,35,13506],["Washington","2021-07-24",20302,22,13528],["Washington","2021-07-25",20302,3,13531],["Washington","2021-07-26",20302,20,13551],["Washington","2021-07-27",20302,47,13598],["Washington","2021-07-28",20302,52,13650],["Washington","2021-07-29",20302,41,13691],["Washington","2021-07-30",20302,64,13755],["Washington","2021-07-31",20302,13,13768],["Washington","2021-08-01",20302,3,13771],["Washington","2021-08-02",20302,37,13808],["Washington","2021-08-03",20302,70,13878],["Washington","2021-08-04",20302,59,13937],["Washington","2021-08-05",20302,47,13984],["Washington","2021-08-06",20302,91,14075],["Washington","2021-08-07",20302,37,14112],["Washington","2021-08-08",20302,11,14123],["Washington","2021-08-09",20302,68,14191],["Washington","2021-08-10",20302,125,14316],["Washington","2021-08-11",20302,79,14395],["Washington","2021-08-12",20302,51,14446],["Washington","2021-08-13",20302,128,14574],["Washington","2021-08-14",20302,57,14631],["Washington","2021-08-15",20302,24,14655],["Washington","2021-08-16",20302,56,14711],["Washington","2021-08-17",20302,108,14819],["Washington","2021-08-18",20302,50,14869],["Washington","2021-08-19",20302,54,14923],["Washington","2021-08-20",20302,113,15036],["Washington","2021-08-21",20302,31,15067],["Washington","2021-08-22",20302,14,15081],["Washington","2021-08-23",20302,45,15126],["Washington","2021-08-24",20302,124,15250],["Washington","2021-08-25",20302,90,15340],["Washington","2021-08-26",20302,51,15391],["Washington","2021-08-27",20302,127,15518],["Washington","2021-08-28",20302,39,15557],["Washington","2021-08-29",20302,21,15578],["Washington","2021-08-30",20302,91,15669],["Washington","2021-08-31",20302,104,15773],["Washington","2021-09-01",20302,65,15838],["Washington","2021-09-02",20302,41,15879],["Washington","2021-09-03",20302,147,16026],["Washington","2021-09-04",20302,32,16058],["Washington","2021-09-05",20302,18,16076],["Washington","2021-09-06",20302,18,16094],["Washington","2021-09-07",20302,140,16234],["Washington","2021-09-08",20302,78,16312],["Washington","2021-09-09",20302,52,16364],["Washington","2021-09-10",20302,153,16517],["Washington","2021-09-11",20302,40,16557],["Washington","2021-09-12",20302,16,16573],["Washington","2021-09-13",20302,58,16631],["Washington","2021-09-14",20302,80,16711],["Washington","2021-09-15",20302,66,16777],["Washington","2021-09-16",20302,40,16817],["Washington","2021-09-17",20302,80,16897],["Washington","2021-09-18",20302,25,16922],["Washington","2021-09-19",20302,4,16926],["Washington","2021-09-20",20302,62,16988],["Washington","2021-09-21",20302,72,17060],["Washington","2021-09-22",20302,37,17097],["Washington","2021-09-23",20302,25,17122],["Washington","2021-09-24",20302,83,17205],["Washington","2021-09-25",20302,9,17214],["Washington","2021-09-26",20302,3,17217],["Washington","2021-09-27",20302,24,17241],["Washington","2021-09-28",20302,57,17298],["Washington","2021-09-29",20302,32,17330],["Washington","2021-09-30",20302,23,17353],["Washington","2021-10-01",20302,62,17415],["Washington","2021-10-02",20302,6,17421],["Washington","2021-10-03",20302,13,17434],["Washington","2021-10-04",20302,49,17483],["Washington","2021-10-05",20302,33,17516],["Washington","2021-10-06",20302,39,17555],["Washington","2021-10-07",20302,26,17581],["Washington","2021-10-08",20302,54,17635],["Washington","2021-10-09",20302,10,17645],["Washington","2021-10-10",20302,6,17651],["Washington","2021-10-11",20302,9,17660],["Washington","2021-10-12",20302,27,17687],["Washington","2021-10-13",20302,16,17703],["Washington","2021-10-14",20302,20,17723],["Washington","2021-10-15",20302,26,17749],["Washington","2021-10-16",20302,5,17754],["Washington","2021-10-17",20302,5,17759],["Washington","2021-10-18",20302,19,17778],["Washington","2021-10-19",20302,30,17808],["Washington","2021-10-20",20302,22,17830],["Washington","2021-10-21",20302,18,17848],["Washington","2021-10-22",20302,37,17885],["Washington","2021-10-23",20302,10,17895],["Washington","2021-10-24",20302,6,17901],["Washington","2021-10-25",20302,47,17948],["Washington","2021-10-26",20302,155,18103],["Washington","2021-10-27",20302,91,18194],["Washington","2021-10-28",20302,34,18228],["Washington","2021-10-29",20302,165,18393],["Washington","2021-10-30",20302,26,18419],["Washington","2021-10-31",20302,7,18426],["Washington","2021-11-01",20302,35,18461],["Washington","2021-11-02",20302,149,18610],["Washington","2021-11-03",20302,64,18674],["Washington","2021-11-04",20302,36,18710],["Washington","2021-11-05",20302,175,18885],["Washington","2021-11-06",20302,6,18891],["Washington","2021-11-07",20302,5,18896],["Washington","2021-11-08",20302,27,18923],["Washington","2021-11-09",20302,124,19047],["Washington","2021-11-10",20302,72,19119],["Washington","2021-11-11",20302,26,19145],["Washington","2021-11-12",20302,71,19216],["Washington","2021-11-13",20302,8,19224],["Washington","2021-11-14",20302,3,19227],["Washington","2021-11-15",20302,52,19279],["Washington","2021-11-16",20302,131,19410],["Washington","2021-11-17",20302,66,19476],["Washington","2021-11-18",20302,85,19561],["Washington","2021-11-19",20302,144,19705],["Washington","2021-11-20",20302,8,19713],["Washington","2021-11-21",20302,4,19717],["Washington","2021-11-22",20302,55,19772],["Washington","2021-11-23",20302,100,19872],["Washington","2021-11-24",20302,20,19892],["Washington","2021-11-26",20302,6,19898],["Washington","2021-11-27",20302,13,19911],["Washington","2021-11-28",20302,11,19922],["Washington","2021-11-29",20302,64,19986],["Washington","2021-11-30",20302,132,20118],["Washington","2021-12-01",20302,76,20194],["Washington","2021-12-02",20302,116,20310],["Washington","2021-12-03",20302,154,20464],["Washington","2021-12-04",20302,22,20486],["Washington","2021-12-05",20302,9,20495],["Washington","2021-12-06",20302,43,20538],["Washington","2021-12-07",20302,92,20630],["Washington","2021-12-08",20302,50,20680],["Washington","2021-12-09",20302,40,20720],["Washington","2021-12-10",20302,132,20852],["Washington","2021-12-11",20302,8,20860],["Washington","2021-12-12",20302,6,20866],["Washington","2021-12-13",20302,30,20896],["Washington","2021-12-14",20302,62,20958],["Washington","2021-12-15",20302,39,20997],["Washington","2021-12-16",20302,21,21018],["Washington","2021-12-17",20302,88,21106],["Washington","2021-12-18",20302,7,21113],["Washington","2021-12-19",20302,9,21122],["Washington","2021-12-20",20302,45,21167],["Washington","2021-12-21",20302,73,21240],["Washington","2021-12-22",20302,38,21278],["Washington","2021-12-23",20302,17,21295],["Washington","2021-12-24",20302,6,21301],["Washington","2021-12-26",20302,7,21308],["Washington","2021-12-27",20302,36,21344],["Washington","2021-12-28",20302,93,21437],["Washington","2021-12-29",20302,56,21493],["Washington","2021-12-30",20302,37,21530],["Washington","2021-12-31",20302,97,21627],["Washington","2022-01-01",20302,3,21630],["Washington","2022-01-02",20302,7,21637],["Washington","2022-01-03",20302,13,21650],["Wayne","2020-12-15",29974,1,1],["Wayne","2020-12-16",29974,1,2],["Wayne","2020-12-17",29974,4,6],["Wayne","2020-12-18",29974,7,13],["Wayne","2020-12-19",29974,1,14],["Wayne","2020-12-21",29974,2,16],["Wayne","2020-12-22",29974,8,24],["Wayne","2020-12-23",29974,65,89],["Wayne","2020-12-24",29974,24,113],["Wayne","2020-12-28",29974,39,152],["Wayne","2020-12-29",29974,21,173],["Wayne","2020-12-30",29974,22,195],["Wayne","2020-12-31",29974,10,205],["Wayne","2021-01-01",29974,5,210],["Wayne","2021-01-03",29974,60,270],["Wayne","2021-01-04",29974,41,311],["Wayne","2021-01-05",29974,21,332],["Wayne","2021-01-06",29974,37,369],["Wayne","2021-01-07",29974,29,398],["Wayne","2021-01-08",29974,32,430],["Wayne","2021-01-09",29974,5,435],["Wayne","2021-01-10",29974,3,438],["Wayne","2021-01-11",29974,85,523],["Wayne","2021-01-12",29974,32,555],["Wayne","2021-01-13",29974,80,635],["Wayne","2021-01-14",29974,73,708],["Wayne","2021-01-15",29974,33,741],["Wayne","2021-01-16",29974,60,801],["Wayne","2021-01-17",29974,76,877],["Wayne","2021-01-18",29974,121,998],["Wayne","2021-01-19",29974,131,1129],["Wayne","2021-01-20",29974,147,1276],["Wayne","2021-01-21",29974,84,1360],["Wayne","2021-01-22",29974,85,1445],["Wayne","2021-01-23",29974,39,1484],["Wayne","2021-01-24",29974,43,1527],["Wayne","2021-01-25",29974,215,1742],["Wayne","2021-01-26",29974,141,1883],["Wayne","2021-01-27",29974,147,2030],["Wayne","2021-01-28",29974,106,2136],["Wayne","2021-01-29",29974,59,2195],["Wayne","2021-01-30",29974,50,2245],["Wayne","2021-01-31",29974,26,2271],["Wayne","2021-02-01",29974,144,2415],["Wayne","2021-02-02",29974,212,2627],["Wayne","2021-02-03",29974,184,2811],["Wayne","2021-02-04",29974,186,2997],["Wayne","2021-02-05",29974,56,3053],["Wayne","2021-02-06",29974,77,3130],["Wayne","2021-02-07",29974,75,3205],["Wayne","2021-02-08",29974,200,3405],["Wayne","2021-02-09",29974,120,3525],["Wayne","2021-02-10",29974,173,3698],["Wayne","2021-02-11",29974,120,3818],["Wayne","2021-02-12",29974,92,3910],["Wayne","2021-02-13",29974,33,3943],["Wayne","2021-02-14",29974,13,3956],["Wayne","2021-02-15",29974,135,4091],["Wayne","2021-02-16",29974,135,4226],["Wayne","2021-02-17",29974,161,4387],["Wayne","2021-02-18",29974,112,4499],["Wayne","2021-02-19",29974,93,4592],["Wayne","2021-02-20",29974,78,4670],["Wayne","2021-02-21",29974,6,4676],["Wayne","2021-02-22",29974,147,4823],["Wayne","2021-02-23",29974,94,4917],["Wayne","2021-02-24",29974,144,5061],["Wayne","2021-02-25",29974,206,5267],["Wayne","2021-02-26",29974,115,5382],["Wayne","2021-02-27",29974,27,5409],["Wayne","2021-02-28",29974,16,5425],["Wayne","2021-03-01",29974,247,5672],["Wayne","2021-03-02",29974,185,5857],["Wayne","2021-03-03",29974,189,6046],["Wayne","2021-03-04",29974,204,6250],["Wayne","2021-03-05",29974,87,6337],["Wayne","2021-03-06",29974,14,6351],["Wayne","2021-03-07",29974,19,6370],["Wayne","2021-03-08",29974,182,6552],["Wayne","2021-03-09",29974,214,6766],["Wayne","2021-03-10",29974,244,7010],["Wayne","2021-03-11",29974,253,7263],["Wayne","2021-03-12",29974,120,7383],["Wayne","2021-03-13",29974,50,7433],["Wayne","2021-03-14",29974,37,7470],["Wayne","2021-03-15",29974,173,7643],["Wayne","2021-03-16",29974,150,7793],["Wayne","2021-03-17",29974,199,7992],["Wayne","2021-03-18",29974,150,8142],["Wayne","2021-03-19",29974,122,8264],["Wayne","2021-03-20",29974,29,8293],["Wayne","2021-03-21",29974,26,8319],["Wayne","2021-03-22",29974,148,8467],["Wayne","2021-03-23",29974,170,8637],["Wayne","2021-03-24",29974,142,8779],["Wayne","2021-03-25",29974,226,9005],["Wayne","2021-03-26",29974,90,9095],["Wayne","2021-03-27",29974,35,9130],["Wayne","2021-03-28",29974,31,9161],["Wayne","2021-03-29",29974,108,9269],["Wayne","2021-03-30",29974,109,9378],["Wayne","2021-03-31",29974,228,9606],["Wayne","2021-04-01",29974,220,9826],["Wayne","2021-04-02",29974,82,9908],["Wayne","2021-04-03",29974,23,9931],["Wayne","2021-04-04",29974,24,9955],["Wayne","2021-04-05",29974,101,10056],["Wayne","2021-04-06",29974,157,10213],["Wayne","2021-04-07",29974,194,10407],["Wayne","2021-04-08",29974,129,10536],["Wayne","2021-04-09",29974,116,10652],["Wayne","2021-04-10",29974,46,10698],["Wayne","2021-04-11",29974,48,10746],["Wayne","2021-04-12",29974,120,10866],["Wayne","2021-04-13",29974,135,11001],["Wayne","2021-04-14",29974,213,11214],["Wayne","2021-04-15",29974,151,11365],["Wayne","2021-04-16",29974,95,11460],["Wayne","2021-04-17",29974,26,11486],["Wayne","2021-04-18",29974,12,11498],["Wayne","2021-04-19",29974,98,11596],["Wayne","2021-04-20",29974,114,11710],["Wayne","2021-04-21",29974,157,11867],["Wayne","2021-04-22",29974,193,12060],["Wayne","2021-04-23",29974,133,12193],["Wayne","2021-04-24",29974,35,12228],["Wayne","2021-04-25",29974,14,12242],["Wayne","2021-04-26",29974,71,12313],["Wayne","2021-04-27",29974,105,12418],["Wayne","2021-04-28",29974,146,12564],["Wayne","2021-04-29",29974,121,12685],["Wayne","2021-04-30",29974,111,12796],["Wayne","2021-05-01",29974,31,12827],["Wayne","2021-05-02",29974,9,12836],["Wayne","2021-05-03",29974,58,12894],["Wayne","2021-05-04",29974,95,12989],["Wayne","2021-05-05",29974,112,13101],["Wayne","2021-05-06",29974,74,13175],["Wayne","2021-05-07",29974,79,13254],["Wayne","2021-05-08",29974,23,13277],["Wayne","2021-05-09",29974,17,13294],["Wayne","2021-05-10",29974,63,13357],["Wayne","2021-05-11",29974,72,13429],["Wayne","2021-05-12",29974,72,13501],["Wayne","2021-05-13",29974,82,13583],["Wayne","2021-05-14",29974,64,13647],["Wayne","2021-05-15",29974,43,13690],["Wayne","2021-05-16",29974,19,13709],["Wayne","2021-05-17",29974,67,13776],["Wayne","2021-05-18",29974,85,13861],["Wayne","2021-05-19",29974,77,13938],["Wayne","2021-05-20",29974,54,13992],["Wayne","2021-05-21",29974,67,14059],["Wayne","2021-05-22",29974,71,14130],["Wayne","2021-05-23",29974,14,14144],["Wayne","2021-05-24",29974,36,14180],["Wayne","2021-05-25",29974,67,14247],["Wayne","2021-05-26",29974,46,14293],["Wayne","2021-05-27",29974,54,14347],["Wayne","2021-05-28",29974,42,14389],["Wayne","2021-05-29",29974,8,14397],["Wayne","2021-05-30",29974,6,14403],["Wayne","2021-05-31",29974,3,14406],["Wayne","2021-06-01",29974,56,14462],["Wayne","2021-06-02",29974,45,14507],["Wayne","2021-06-03",29974,37,14544],["Wayne","2021-06-04",29974,29,14573],["Wayne","2021-06-05",29974,30,14603],["Wayne","2021-06-06",29974,6,14609],["Wayne","2021-06-07",29974,44,14653],["Wayne","2021-06-08",29974,44,14697],["Wayne","2021-06-09",29974,29,14726],["Wayne","2021-06-10",29974,53,14779],["Wayne","2021-06-11",29974,41,14820],["Wayne","2021-06-12",29974,24,14844],["Wayne","2021-06-13",29974,18,14862],["Wayne","2021-06-14",29974,30,14892],["Wayne","2021-06-15",29974,63,14955],["Wayne","2021-06-16",29974,25,14980],["Wayne","2021-06-17",29974,32,15012],["Wayne","2021-06-18",29974,32,15044],["Wayne","2021-06-19",29974,31,15075],["Wayne","2021-06-20",29974,6,15081],["Wayne","2021-06-21",29974,25,15106],["Wayne","2021-06-22",29974,40,15146],["Wayne","2021-06-23",29974,26,15172],["Wayne","2021-06-24",29974,32,15204],["Wayne","2021-06-25",29974,27,15231],["Wayne","2021-06-26",29974,13,15244],["Wayne","2021-06-27",29974,10,15254],["Wayne","2021-06-28",29974,15,15269],["Wayne","2021-06-29",29974,26,15295],["Wayne","2021-06-30",29974,17,15312],["Wayne","2021-07-01",29974,23,15335],["Wayne","2021-07-02",29974,24,15359],["Wayne","2021-07-03",29974,12,15371],["Wayne","2021-07-04",29974,4,15375],["Wayne","2021-07-05",29974,16,15391],["Wayne","2021-07-06",29974,27,15418],["Wayne","2021-07-07",29974,12,15430],["Wayne","2021-07-08",29974,37,15467],["Wayne","2021-07-09",29974,27,15494],["Wayne","2021-07-10",29974,13,15507],["Wayne","2021-07-11",29974,7,15514],["Wayne","2021-07-12",29974,23,15537],["Wayne","2021-07-13",29974,12,15549],["Wayne","2021-07-14",29974,16,15565],["Wayne","2021-07-15",29974,37,15602],["Wayne","2021-07-16",29974,27,15629],["Wayne","2021-07-17",29974,19,15648],["Wayne","2021-07-18",29974,7,15655],["Wayne","2021-07-19",29974,21,15676],["Wayne","2021-07-20",29974,53,15729],["Wayne","2021-07-21",29974,29,15758],["Wayne","2021-07-22",29974,52,15810],["Wayne","2021-07-23",29974,71,15881],["Wayne","2021-07-24",29974,31,15912],["Wayne","2021-07-25",29974,23,15935],["Wayne","2021-07-26",29974,41,15976],["Wayne","2021-07-27",29974,72,16048],["Wayne","2021-07-28",29974,44,16092],["Wayne","2021-07-29",29974,42,16134],["Wayne","2021-07-30",29974,71,16205],["Wayne","2021-07-31",29974,37,16242],["Wayne","2021-08-01",29974,37,16279],["Wayne","2021-08-02",29974,65,16344],["Wayne","2021-08-03",29974,73,16417],["Wayne","2021-08-04",29974,56,16473],["Wayne","2021-08-05",29974,68,16541],["Wayne","2021-08-06",29974,120,16661],["Wayne","2021-08-07",29974,43,16704],["Wayne","2021-08-08",29974,21,16725],["Wayne","2021-08-09",29974,64,16789],["Wayne","2021-08-10",29974,102,16891],["Wayne","2021-08-11",29974,80,16971],["Wayne","2021-08-12",29974,96,17067],["Wayne","2021-08-13",29974,89,17156],["Wayne","2021-08-14",29974,63,17219],["Wayne","2021-08-15",29974,37,17256],["Wayne","2021-08-16",29974,73,17329],["Wayne","2021-08-17",29974,102,17431],["Wayne","2021-08-18",29974,57,17488],["Wayne","2021-08-19",29974,102,17590],["Wayne","2021-08-20",29974,184,17774],["Wayne","2021-08-21",29974,38,17812],["Wayne","2021-08-22",29974,24,17836],["Wayne","2021-08-23",29974,61,17897],["Wayne","2021-08-24",29974,85,17982],["Wayne","2021-08-25",29974,82,18064],["Wayne","2021-08-26",29974,103,18167],["Wayne","2021-08-27",29974,121,18288],["Wayne","2021-08-28",29974,52,18340],["Wayne","2021-08-29",29974,30,18370],["Wayne","2021-08-30",29974,93,18463],["Wayne","2021-08-31",29974,111,18574],["Wayne","2021-09-01",29974,95,18669],["Wayne","2021-09-02",29974,132,18801],["Wayne","2021-09-03",29974,245,19046],["Wayne","2021-09-04",29974,53,19099],["Wayne","2021-09-05",29974,40,19139],["Wayne","2021-09-06",29974,31,19170],["Wayne","2021-09-07",29974,104,19274],["Wayne","2021-09-08",29974,98,19372],["Wayne","2021-09-09",29974,129,19501],["Wayne","2021-09-10",29974,141,19642],["Wayne","2021-09-11",29974,53,19695],["Wayne","2021-09-12",29974,33,19728],["Wayne","2021-09-13",29974,79,19807],["Wayne","2021-09-14",29974,103,19910],["Wayne","2021-09-15",29974,57,19967],["Wayne","2021-09-16",29974,92,20059],["Wayne","2021-09-17",29974,174,20233],["Wayne","2021-09-18",29974,47,20280],["Wayne","2021-09-19",29974,26,20306],["Wayne","2021-09-20",29974,92,20398],["Wayne","2021-09-21",29974,76,20474],["Wayne","2021-09-22",29974,40,20514],["Wayne","2021-09-23",29974,77,20591],["Wayne","2021-09-24",29974,82,20673],["Wayne","2021-09-25",29974,29,20702],["Wayne","2021-09-26",29974,16,20718],["Wayne","2021-09-27",29974,40,20758],["Wayne","2021-09-28",29974,83,20841],["Wayne","2021-09-29",29974,56,20897],["Wayne","2021-09-30",29974,105,21002],["Wayne","2021-10-01",29974,124,21126],["Wayne","2021-10-02",29974,29,21155],["Wayne","2021-10-03",29974,29,21184],["Wayne","2021-10-04",29974,37,21221],["Wayne","2021-10-05",29974,61,21282],["Wayne","2021-10-06",29974,42,21324],["Wayne","2021-10-07",29974,58,21382],["Wayne","2021-10-08",29974,66,21448],["Wayne","2021-10-09",29974,21,21469],["Wayne","2021-10-10",29974,18,21487],["Wayne","2021-10-11",29974,33,21520],["Wayne","2021-10-12",29974,52,21572],["Wayne","2021-10-13",29974,29,21601],["Wayne","2021-10-14",29974,41,21642],["Wayne","2021-10-15",29974,67,21709],["Wayne","2021-10-16",29974,6,21715],["Wayne","2021-10-17",29974,9,21724],["Wayne","2021-10-18",29974,29,21753],["Wayne","2021-10-19",29974,40,21793],["Wayne","2021-10-20",29974,31,21824],["Wayne","2021-10-21",29974,33,21857],["Wayne","2021-10-22",29974,54,21911],["Wayne","2021-10-23",29974,56,21967],["Wayne","2021-10-24",29974,27,21994],["Wayne","2021-10-25",29974,76,22070],["Wayne","2021-10-26",29974,109,22179],["Wayne","2021-10-27",29974,83,22262],["Wayne","2021-10-28",29974,139,22401],["Wayne","2021-10-29",29974,87,22488],["Wayne","2021-10-30",29974,22,22510],["Wayne","2021-10-31",29974,21,22531],["Wayne","2021-11-01",29974,63,22594],["Wayne","2021-11-02",29974,123,22717],["Wayne","2021-11-03",29974,52,22769],["Wayne","2021-11-04",29974,122,22891],["Wayne","2021-11-05",29974,77,22968],["Wayne","2021-11-06",29974,20,22988],["Wayne","2021-11-07",29974,13,23001],["Wayne","2021-11-08",29974,51,23052],["Wayne","2021-11-09",29974,86,23138],["Wayne","2021-11-10",29974,45,23183],["Wayne","2021-11-11",29974,97,23280],["Wayne","2021-11-12",29974,114,23394],["Wayne","2021-11-13",29974,26,23420],["Wayne","2021-11-14",29974,18,23438],["Wayne","2021-11-15",29974,43,23481],["Wayne","2021-11-16",29974,69,23550],["Wayne","2021-11-17",29974,53,23603],["Wayne","2021-11-18",29974,103,23706],["Wayne","2021-11-19",29974,107,23813],["Wayne","2021-11-20",29974,41,23854],["Wayne","2021-11-21",29974,25,23879],["Wayne","2021-11-22",29974,62,23941],["Wayne","2021-11-23",29974,66,24007],["Wayne","2021-11-24",29974,21,24028],["Wayne","2021-11-26",29974,28,24056],["Wayne","2021-11-27",29974,14,24070],["Wayne","2021-11-28",29974,12,24082],["Wayne","2021-11-29",29974,74,24156],["Wayne","2021-11-30",29974,133,24289],["Wayne","2021-12-01",29974,67,24356],["Wayne","2021-12-02",29974,104,24460],["Wayne","2021-12-03",29974,96,24556],["Wayne","2021-12-04",29974,26,24582],["Wayne","2021-12-05",29974,8,24590],["Wayne","2021-12-06",29974,38,24628],["Wayne","2021-12-07",29974,79,24707],["Wayne","2021-12-08",29974,56,24763],["Wayne","2021-12-09",29974,100,24863],["Wayne","2021-12-10",29974,62,24925],["Wayne","2021-12-11",29974,25,24950],["Wayne","2021-12-12",29974,10,24960],["Wayne","2021-12-13",29974,36,24996],["Wayne","2021-12-14",29974,54,25050],["Wayne","2021-12-15",29974,46,25096],["Wayne","2021-12-16",29974,76,25172],["Wayne","2021-12-17",29974,59,25231],["Wayne","2021-12-18",29974,19,25250],["Wayne","2021-12-19",29974,12,25262],["Wayne","2021-12-20",29974,46,25308],["Wayne","2021-12-21",29974,85,25393],["Wayne","2021-12-22",29974,61,25454],["Wayne","2021-12-23",29974,48,25502],["Wayne","2021-12-24",29974,9,25511],["Wayne","2021-12-26",29974,21,25532],["Wayne","2021-12-27",29974,26,25558],["Wayne","2021-12-28",29974,78,25636],["Wayne","2021-12-29",29974,60,25696],["Wayne","2021-12-30",29974,65,25761],["Wayne","2021-12-31",29974,41,25802],["Wayne","2022-01-01",29974,3,25805],["Wayne","2022-01-02",29974,10,25815],["Wayne","2022-01-03",29974,19,25834],["Webster","2020-12-23",2550,1,1],["Webster","2020-12-24",2550,2,3],["Webster","2020-12-26",2550,2,5],["Webster","2020-12-28",2550,4,9],["Webster","2020-12-29",2550,2,11],["Webster","2020-12-31",2550,2,13],["Webster","2021-01-01",2550,1,14],["Webster","2021-01-03",2550,2,16],["Webster","2021-01-04",2550,2,18],["Webster","2021-01-05",2550,6,24],["Webster","2021-01-06",2550,9,33],["Webster","2021-01-07",2550,1,34],["Webster","2021-01-08",2550,4,38],["Webster","2021-01-09",2550,1,39],["Webster","2021-01-11",2550,38,77],["Webster","2021-01-12",2550,5,82],["Webster","2021-01-13",2550,5,87],["Webster","2021-01-14",2550,73,160],["Webster","2021-01-15",2550,48,208],["Webster","2021-01-16",2550,1,209],["Webster","2021-01-17",2550,3,212],["Webster","2021-01-18",2550,9,221],["Webster","2021-01-19",2550,5,226],["Webster","2021-01-20",2550,4,230],["Webster","2021-01-21",2550,58,288],["Webster","2021-01-22",2550,14,302],["Webster","2021-01-24",2550,2,304],["Webster","2021-01-25",2550,14,318],["Webster","2021-01-26",2550,8,326],["Webster","2021-01-27",2550,13,339],["Webster","2021-01-28",2550,33,372],["Webster","2021-01-29",2550,7,379],["Webster","2021-01-31",2550,1,380],["Webster","2021-02-01",2550,9,389],["Webster","2021-02-02",2550,2,391],["Webster","2021-02-03",2550,9,400],["Webster","2021-02-04",2550,2,402],["Webster","2021-02-05",2550,9,411],["Webster","2021-02-07",2550,4,415],["Webster","2021-02-08",2550,39,454],["Webster","2021-02-09",2550,1,455],["Webster","2021-02-10",2550,6,461],["Webster","2021-02-11",2550,79,540],["Webster","2021-02-12",2550,42,582],["Webster","2021-02-13",2550,2,584],["Webster","2021-02-15",2550,29,613],["Webster","2021-02-16",2550,8,621],["Webster","2021-02-17",2550,2,623],["Webster","2021-02-18",2550,55,678],["Webster","2021-02-19",2550,8,686],["Webster","2021-02-22",2550,21,707],["Webster","2021-02-23",2550,3,710],["Webster","2021-02-24",2550,8,718],["Webster","2021-02-25",2550,34,752],["Webster","2021-02-26",2550,9,761],["Webster","2021-02-27",2550,1,762],["Webster","2021-02-28",2550,2,764],["Webster","2021-03-01",2550,12,776],["Webster","2021-03-02",2550,5,781],["Webster","2021-03-03",2550,4,785],["Webster","2021-03-04",2550,37,822],["Webster","2021-03-05",2550,4,826],["Webster","2021-03-07",2550,1,827],["Webster","2021-03-08",2550,22,849],["Webster","2021-03-09",2550,10,859],["Webster","2021-03-10",2550,4,863],["Webster","2021-03-11",2550,42,905],["Webster","2021-03-12",2550,15,920],["Webster","2021-03-14",2550,2,922],["Webster","2021-03-15",2550,43,965],["Webster","2021-03-16",2550,12,977],["Webster","2021-03-17",2550,7,984],["Webster","2021-03-18",2550,5,989],["Webster","2021-03-19",2550,20,1009],["Webster","2021-03-22",2550,11,1020],["Webster","2021-03-23",2550,9,1029],["Webster","2021-03-24",2550,4,1033],["Webster","2021-03-25",2550,41,1074],["Webster","2021-03-26",2550,20,1094],["Webster","2021-03-27",2550,1,1095],["Webster","2021-03-28",2550,1,1096],["Webster","2021-03-29",2550,16,1112],["Webster","2021-03-30",2550,9,1121],["Webster","2021-03-31",2550,5,1126],["Webster","2021-04-01",2550,50,1176],["Webster","2021-04-02",2550,7,1183],["Webster","2021-04-03",2550,1,1184],["Webster","2021-04-05",2550,28,1212],["Webster","2021-04-06",2550,12,1224],["Webster","2021-04-07",2550,5,1229],["Webster","2021-04-08",2550,55,1284],["Webster","2021-04-09",2550,19,1303],["Webster","2021-04-10",2550,1,1304],["Webster","2021-04-11",2550,3,1307],["Webster","2021-04-12",2550,36,1343],["Webster","2021-04-13",2550,15,1358],["Webster","2021-04-14",2550,7,1365],["Webster","2021-04-15",2550,8,1373],["Webster","2021-04-16",2550,25,1398],["Webster","2021-04-17",2550,1,1399],["Webster","2021-04-18",2550,1,1400],["Webster","2021-04-19",2550,10,1410],["Webster","2021-04-20",2550,17,1427],["Webster","2021-04-21",2550,2,1429],["Webster","2021-04-22",2550,42,1471],["Webster","2021-04-23",2550,26,1497],["Webster","2021-04-24",2550,1,1498],["Webster","2021-04-26",2550,13,1511],["Webster","2021-04-27",2550,8,1519],["Webster","2021-04-28",2550,13,1532],["Webster","2021-04-29",2550,18,1550],["Webster","2021-04-30",2550,11,1561],["Webster","2021-05-01",2550,2,1563],["Webster","2021-05-02",2550,1,1564],["Webster","2021-05-03",2550,5,1569],["Webster","2021-05-04",2550,6,1575],["Webster","2021-05-05",2550,6,1581],["Webster","2021-05-06",2550,21,1602],["Webster","2021-05-07",2550,11,1613],["Webster","2021-05-09",2550,1,1614],["Webster","2021-05-10",2550,21,1635],["Webster","2021-05-11",2550,5,1640],["Webster","2021-05-12",2550,4,1644],["Webster","2021-05-13",2550,13,1657],["Webster","2021-05-14",2550,16,1673],["Webster","2021-05-17",2550,9,1682],["Webster","2021-05-18",2550,3,1685],["Webster","2021-05-19",2550,2,1687],["Webster","2021-05-20",2550,9,1696],["Webster","2021-05-21",2550,12,1708],["Webster","2021-05-24",2550,1,1709],["Webster","2021-05-25",2550,8,1717],["Webster","2021-05-26",2550,4,1721],["Webster","2021-05-27",2550,15,1736],["Webster","2021-05-28",2550,4,1740],["Webster","2021-05-30",2550,3,1743],["Webster","2021-05-31",2550,1,1744],["Webster","2021-06-01",2550,1,1745],["Webster","2021-06-02",2550,1,1746],["Webster","2021-06-03",2550,6,1752],["Webster","2021-06-04",2550,7,1759],["Webster","2021-06-05",2550,2,1761],["Webster","2021-06-07",2550,5,1766],["Webster","2021-06-08",2550,1,1767],["Webster","2021-06-09",2550,2,1769],["Webster","2021-06-10",2550,9,1778],["Webster","2021-06-11",2550,10,1788],["Webster","2021-06-14",2550,5,1793],["Webster","2021-06-15",2550,6,1799],["Webster","2021-06-16",2550,2,1801],["Webster","2021-06-17",2550,7,1808],["Webster","2021-06-18",2550,8,1816],["Webster","2021-06-20",2550,1,1817],["Webster","2021-06-21",2550,2,1819],["Webster","2021-06-22",2550,2,1821],["Webster","2021-06-23",2550,1,1822],["Webster","2021-06-24",2550,5,1827],["Webster","2021-06-25",2550,2,1829],["Webster","2021-06-27",2550,1,1830],["Webster","2021-06-28",2550,3,1833],["Webster","2021-06-29",2550,3,1836],["Webster","2021-06-30",2550,3,1839],["Webster","2021-07-01",2550,4,1843],["Webster","2021-07-02",2550,3,1846],["Webster","2021-07-06",2550,3,1849],["Webster","2021-07-07",2550,5,1854],["Webster","2021-07-08",2550,7,1861],["Webster","2021-07-09",2550,4,1865],["Webster","2021-07-12",2550,1,1866],["Webster","2021-07-13",2550,2,1868],["Webster","2021-07-14",2550,2,1870],["Webster","2021-07-15",2550,6,1876],["Webster","2021-07-16",2550,2,1878],["Webster","2021-07-19",2550,3,1881],["Webster","2021-07-21",2550,3,1884],["Webster","2021-07-22",2550,8,1892],["Webster","2021-07-23",2550,7,1899],["Webster","2021-07-24",2550,1,1900],["Webster","2021-07-27",2550,4,1904],["Webster","2021-07-28",2550,7,1911],["Webster","2021-07-29",2550,3,1914],["Webster","2021-07-30",2550,9,1923],["Webster","2021-07-31",2550,2,1925],["Webster","2021-08-01",2550,1,1926],["Webster","2021-08-02",2550,3,1929],["Webster","2021-08-03",2550,4,1933],["Webster","2021-08-04",2550,18,1951],["Webster","2021-08-05",2550,20,1971],["Webster","2021-08-06",2550,3,1974],["Webster","2021-08-07",2550,4,1978],["Webster","2021-08-08",2550,1,1979],["Webster","2021-08-09",2550,8,1987],["Webster","2021-08-10",2550,4,1991],["Webster","2021-08-11",2550,14,2005],["Webster","2021-08-12",2550,7,2012],["Webster","2021-08-13",2550,16,2028],["Webster","2021-08-14",2550,2,2030],["Webster","2021-08-15",2550,2,2032],["Webster","2021-08-16",2550,2,2034],["Webster","2021-08-17",2550,5,2039],["Webster","2021-08-18",2550,7,2046],["Webster","2021-08-19",2550,13,2059],["Webster","2021-08-20",2550,14,2073],["Webster","2021-08-21",2550,6,2079],["Webster","2021-08-23",2550,3,2082],["Webster","2021-08-24",2550,6,2088],["Webster","2021-08-25",2550,7,2095],["Webster","2021-08-26",2550,15,2110],["Webster","2021-08-27",2550,6,2116],["Webster","2021-08-28",2550,2,2118],["Webster","2021-08-29",2550,5,2123],["Webster","2021-08-30",2550,4,2127],["Webster","2021-08-31",2550,10,2137],["Webster","2021-09-01",2550,16,2153],["Webster","2021-09-02",2550,7,2160],["Webster","2021-09-03",2550,8,2168],["Webster","2021-09-04",2550,1,2169],["Webster","2021-09-05",2550,2,2171],["Webster","2021-09-06",2550,1,2172],["Webster","2021-09-07",2550,10,2182],["Webster","2021-09-08",2550,7,2189],["Webster","2021-09-09",2550,10,2199],["Webster","2021-09-10",2550,9,2208],["Webster","2021-09-11",2550,4,2212],["Webster","2021-09-12",2550,3,2215],["Webster","2021-09-13",2550,4,2219],["Webster","2021-09-14",2550,4,2223],["Webster","2021-09-15",2550,11,2234],["Webster","2021-09-16",2550,7,2241],["Webster","2021-09-17",2550,6,2247],["Webster","2021-09-18",2550,2,2249],["Webster","2021-09-19",2550,1,2250],["Webster","2021-09-20",2550,2,2252],["Webster","2021-09-21",2550,11,2263],["Webster","2021-09-22",2550,8,2271],["Webster","2021-09-23",2550,7,2278],["Webster","2021-09-24",2550,6,2284],["Webster","2021-09-26",2550,2,2286],["Webster","2021-09-27",2550,4,2290],["Webster","2021-09-28",2550,3,2293],["Webster","2021-09-29",2550,12,2305],["Webster","2021-09-30",2550,5,2310],["Webster","2021-10-01",2550,9,2319],["Webster","2021-10-02",2550,2,2321],["Webster","2021-10-04",2550,6,2327],["Webster","2021-10-05",2550,6,2333],["Webster","2021-10-06",2550,3,2336],["Webster","2021-10-07",2550,4,2340],["Webster","2021-10-08",2550,4,2344],["Webster","2021-10-09",2550,2,2346],["Webster","2021-10-10",2550,1,2347],["Webster","2021-10-11",2550,2,2349],["Webster","2021-10-12",2550,4,2353],["Webster","2021-10-13",2550,6,2359],["Webster","2021-10-14",2550,2,2361],["Webster","2021-10-15",2550,2,2363],["Webster","2021-10-16",2550,1,2364],["Webster","2021-10-19",2550,3,2367],["Webster","2021-10-20",2550,2,2369],["Webster","2021-10-21",2550,2,2371],["Webster","2021-10-22",2550,2,2373],["Webster","2021-10-25",2550,7,2380],["Webster","2021-10-26",2550,7,2387],["Webster","2021-10-27",2550,9,2396],["Webster","2021-10-28",2550,54,2450],["Webster","2021-10-29",2550,14,2464],["Webster","2021-10-30",2550,2,2466],["Webster","2021-11-01",2550,14,2480],["Webster","2021-11-02",2550,3,2483],["Webster","2021-11-03",2550,30,2513],["Webster","2021-11-04",2550,29,2542],["Webster","2021-11-05",2550,7,2549],["Webster","2021-11-07",2550,3,2552],["Webster","2021-11-08",2550,5,2557],["Webster","2021-11-09",2550,4,2561],["Webster","2021-11-10",2550,15,2576],["Webster","2021-11-11",2550,2,2578],["Webster","2021-11-12",2550,9,2587],["Webster","2021-11-15",2550,4,2591],["Webster","2021-11-16",2550,2,2593],["Webster","2021-11-17",2550,25,2618],["Webster","2021-11-18",2550,4,2622],["Webster","2021-11-19",2550,15,2637],["Webster","2021-11-20",2550,1,2638],["Webster","2021-11-22",2550,7,2645],["Webster","2021-11-23",2550,4,2649],["Webster","2021-11-24",2550,7,2656],["Webster","2021-11-26",2550,4,2660],["Webster","2021-11-27",2550,2,2662],["Webster","2021-11-29",2550,3,2665],["Webster","2021-11-30",2550,6,2671],["Webster","2021-12-01",2550,12,2683],["Webster","2021-12-02",2550,17,2700],["Webster","2021-12-03",2550,16,2716],["Webster","2021-12-05",2550,2,2718],["Webster","2021-12-06",2550,8,2726],["Webster","2021-12-07",2550,1,2727],["Webster","2021-12-08",2550,11,2738],["Webster","2021-12-09",2550,7,2745],["Webster","2021-12-10",2550,9,2754],["Webster","2021-12-11",2550,1,2755],["Webster","2021-12-12",2550,2,2757],["Webster","2021-12-13",2550,5,2762],["Webster","2021-12-14",2550,3,2765],["Webster","2021-12-15",2550,14,2779],["Webster","2021-12-16",2550,12,2791],["Webster","2021-12-17",2550,7,2798],["Webster","2021-12-19",2550,1,2799],["Webster","2021-12-20",2550,7,2806],["Webster","2021-12-21",2550,6,2812],["Webster","2021-12-22",2550,17,2829],["Webster","2021-12-23",2550,1,2830],["Webster","2021-12-24",2550,1,2831],["Webster","2021-12-26",2550,2,2833],["Webster","2021-12-27",2550,10,2843],["Webster","2021-12-28",2550,4,2847],["Webster","2021-12-29",2550,3,2850],["Webster","2021-12-30",2550,23,2873],["Webster","2021-12-31",2550,5,2878],["Webster","2022-01-02",2550,1,2879],["Webster","2022-01-03",2550,8,2887],["Wheeler","2020-12-17",7909,1,1],["Wheeler","2020-12-18",7909,3,4],["Wheeler","2020-12-19",7909,2,6],["Wheeler","2020-12-21",7909,2,8],["Wheeler","2020-12-22",7909,1,9],["Wheeler","2020-12-23",7909,2,11],["Wheeler","2020-12-24",7909,1,12],["Wheeler","2020-12-28",7909,6,18],["Wheeler","2020-12-29",7909,4,22],["Wheeler","2020-12-30",7909,18,40],["Wheeler","2020-12-31",7909,3,43],["Wheeler","2021-01-01",7909,1,44],["Wheeler","2021-01-03",7909,1,45],["Wheeler","2021-01-04",7909,6,51],["Wheeler","2021-01-05",7909,13,64],["Wheeler","2021-01-06",7909,8,72],["Wheeler","2021-01-07",7909,22,94],["Wheeler","2021-01-08",7909,2,96],["Wheeler","2021-01-09",7909,3,99],["Wheeler","2021-01-11",7909,94,193],["Wheeler","2021-01-12",7909,29,222],["Wheeler","2021-01-13",7909,51,273],["Wheeler","2021-01-14",7909,9,282],["Wheeler","2021-01-15",7909,41,323],["Wheeler","2021-01-16",7909,3,326],["Wheeler","2021-01-17",7909,1,327],["Wheeler","2021-01-18",7909,136,463],["Wheeler","2021-01-19",7909,19,482],["Wheeler","2021-01-20",7909,14,496],["Wheeler","2021-01-21",7909,6,502],["Wheeler","2021-01-22",7909,6,508],["Wheeler","2021-01-23",7909,2,510],["Wheeler","2021-01-24",7909,1,511],["Wheeler","2021-01-25",7909,72,583],["Wheeler","2021-01-26",7909,29,612],["Wheeler","2021-01-27",7909,9,621],["Wheeler","2021-01-28",7909,10,631],["Wheeler","2021-01-29",7909,2,633],["Wheeler","2021-01-30",7909,1,634],["Wheeler","2021-02-01",7909,42,676],["Wheeler","2021-02-02",7909,19,695],["Wheeler","2021-02-03",7909,9,704],["Wheeler","2021-02-04",7909,17,721],["Wheeler","2021-02-05",7909,38,759],["Wheeler","2021-02-06",7909,5,764],["Wheeler","2021-02-08",7909,126,890],["Wheeler","2021-02-09",7909,32,922],["Wheeler","2021-02-10",7909,16,938],["Wheeler","2021-02-11",7909,6,944],["Wheeler","2021-02-12",7909,8,952],["Wheeler","2021-02-15",7909,192,1144],["Wheeler","2021-02-16",7909,26,1170],["Wheeler","2021-02-17",7909,18,1188],["Wheeler","2021-02-18",7909,5,1193],["Wheeler","2021-02-19",7909,3,1196],["Wheeler","2021-02-20",7909,1,1197],["Wheeler","2021-02-22",7909,97,1294],["Wheeler","2021-02-23",7909,29,1323],["Wheeler","2021-02-24",7909,11,1334],["Wheeler","2021-02-25",7909,9,1343],["Wheeler","2021-02-27",7909,5,1348],["Wheeler","2021-02-28",7909,1,1349],["Wheeler","2021-03-01",7909,63,1412],["Wheeler","2021-03-02",7909,11,1423],["Wheeler","2021-03-03",7909,14,1437],["Wheeler","2021-03-04",7909,8,1445],["Wheeler","2021-03-05",7909,7,1452],["Wheeler","2021-03-08",7909,39,1491],["Wheeler","2021-03-09",7909,23,1514],["Wheeler","2021-03-10",7909,22,1536],["Wheeler","2021-03-11",7909,13,1549],["Wheeler","2021-03-12",7909,34,1583],["Wheeler","2021-03-13",7909,2,1585],["Wheeler","2021-03-15",7909,37,1622],["Wheeler","2021-03-16",7909,19,1641],["Wheeler","2021-03-17",7909,15,1656],["Wheeler","2021-03-18",7909,5,1661],["Wheeler","2021-03-19",7909,2,1663],["Wheeler","2021-03-20",7909,2,1665],["Wheeler","2021-03-21",7909,1,1666],["Wheeler","2021-03-22",7909,72,1738],["Wheeler","2021-03-23",7909,20,1758],["Wheeler","2021-03-24",7909,6,1764],["Wheeler","2021-03-25",7909,14,1778],["Wheeler","2021-03-26",7909,5,1783],["Wheeler","2021-03-27",7909,5,1788],["Wheeler","2021-03-28",7909,1,1789],["Wheeler","2021-03-29",7909,69,1858],["Wheeler","2021-03-30",7909,26,1884],["Wheeler","2021-03-31",7909,48,1932],["Wheeler","2021-04-01",7909,8,1940],["Wheeler","2021-04-02",7909,8,1948],["Wheeler","2021-04-03",7909,5,1953],["Wheeler","2021-04-05",7909,36,1989],["Wheeler","2021-04-06",7909,20,2009],["Wheeler","2021-04-07",7909,19,2028],["Wheeler","2021-04-08",7909,19,2047],["Wheeler","2021-04-09",7909,15,2062],["Wheeler","2021-04-10",7909,2,2064],["Wheeler","2021-04-12",7909,36,2100],["Wheeler","2021-04-13",7909,21,2121],["Wheeler","2021-04-14",7909,11,2132],["Wheeler","2021-04-15",7909,16,2148],["Wheeler","2021-04-16",7909,5,2153],["Wheeler","2021-04-17",7909,3,2156],["Wheeler","2021-04-18",7909,1,2157],["Wheeler","2021-04-19",7909,51,2208],["Wheeler","2021-04-20",7909,23,2231],["Wheeler","2021-04-21",7909,17,2248],["Wheeler","2021-04-22",7909,22,2270],["Wheeler","2021-04-23",7909,6,2276],["Wheeler","2021-04-24",7909,6,2282],["Wheeler","2021-04-25",7909,1,2283],["Wheeler","2021-04-26",7909,37,2320],["Wheeler","2021-04-27",7909,23,2343],["Wheeler","2021-04-28",7909,13,2356],["Wheeler","2021-04-29",7909,7,2363],["Wheeler","2021-04-30",7909,11,2374],["Wheeler","2021-05-01",7909,3,2377],["Wheeler","2021-05-02",7909,1,2378],["Wheeler","2021-05-03",7909,23,2401],["Wheeler","2021-05-04",7909,6,2407],["Wheeler","2021-05-05",7909,16,2423],["Wheeler","2021-05-06",7909,7,2430],["Wheeler","2021-05-07",7909,25,2455],["Wheeler","2021-05-08",7909,1,2456],["Wheeler","2021-05-10",7909,14,2470],["Wheeler","2021-05-11",7909,13,2483],["Wheeler","2021-05-12",7909,8,2491],["Wheeler","2021-05-13",7909,7,2498],["Wheeler","2021-05-14",7909,3,2501],["Wheeler","2021-05-15",7909,2,2503],["Wheeler","2021-05-16",7909,3,2506],["Wheeler","2021-05-17",7909,27,2533],["Wheeler","2021-05-18",7909,10,2543],["Wheeler","2021-05-19",7909,17,2560],["Wheeler","2021-05-20",7909,15,2575],["Wheeler","2021-05-21",7909,5,2580],["Wheeler","2021-05-22",7909,4,2584],["Wheeler","2021-05-23",7909,1,2585],["Wheeler","2021-05-24",7909,16,2601],["Wheeler","2021-05-25",7909,9,2610],["Wheeler","2021-05-26",7909,7,2617],["Wheeler","2021-05-27",7909,5,2622],["Wheeler","2021-05-28",7909,6,2628],["Wheeler","2021-05-31",7909,1,2629],["Wheeler","2021-06-01",7909,11,2640],["Wheeler","2021-06-02",7909,9,2649],["Wheeler","2021-06-03",7909,4,2653],["Wheeler","2021-06-04",7909,4,2657],["Wheeler","2021-06-05",7909,2,2659],["Wheeler","2021-06-06",7909,2,2661],["Wheeler","2021-06-07",7909,4,2665],["Wheeler","2021-06-08",7909,5,2670],["Wheeler","2021-06-09",7909,2,2672],["Wheeler","2021-06-10",7909,5,2677],["Wheeler","2021-06-11",7909,6,2683],["Wheeler","2021-06-12",7909,4,2687],["Wheeler","2021-06-13",7909,1,2688],["Wheeler","2021-06-14",7909,10,2698],["Wheeler","2021-06-15",7909,9,2707],["Wheeler","2021-06-16",7909,5,2712],["Wheeler","2021-06-17",7909,7,2719],["Wheeler","2021-06-18",7909,1,2720],["Wheeler","2021-06-19",7909,7,2727],["Wheeler","2021-06-21",7909,8,2735],["Wheeler","2021-06-22",7909,5,2740],["Wheeler","2021-06-23",7909,7,2747],["Wheeler","2021-06-24",7909,2,2749],["Wheeler","2021-06-25",7909,2,2751],["Wheeler","2021-06-26",7909,1,2752],["Wheeler","2021-06-27",7909,5,2757],["Wheeler","2021-06-28",7909,1,2758],["Wheeler","2021-06-29",7909,3,2761],["Wheeler","2021-06-30",7909,2,2763],["Wheeler","2021-07-01",7909,7,2770],["Wheeler","2021-07-02",7909,2,2772],["Wheeler","2021-07-03",7909,4,2776],["Wheeler","2021-07-05",7909,1,2777],["Wheeler","2021-07-06",7909,5,2782],["Wheeler","2021-07-07",7909,3,2785],["Wheeler","2021-07-08",7909,6,2791],["Wheeler","2021-07-09",7909,6,2797],["Wheeler","2021-07-10",7909,4,2801],["Wheeler","2021-07-11",7909,2,2803],["Wheeler","2021-07-12",7909,5,2808],["Wheeler","2021-07-13",7909,13,2821],["Wheeler","2021-07-14",7909,1,2822],["Wheeler","2021-07-15",7909,3,2825],["Wheeler","2021-07-16",7909,2,2827],["Wheeler","2021-07-17",7909,1,2828],["Wheeler","2021-07-18",7909,1,2829],["Wheeler","2021-07-19",7909,7,2836],["Wheeler","2021-07-20",7909,11,2847],["Wheeler","2021-07-21",7909,8,2855],["Wheeler","2021-07-22",7909,12,2867],["Wheeler","2021-07-23",7909,6,2873],["Wheeler","2021-07-24",7909,3,2876],["Wheeler","2021-07-26",7909,9,2885],["Wheeler","2021-07-27",7909,7,2892],["Wheeler","2021-07-28",7909,15,2907],["Wheeler","2021-07-29",7909,21,2928],["Wheeler","2021-07-30",7909,10,2938],["Wheeler","2021-07-31",7909,9,2947],["Wheeler","2021-08-01",7909,2,2949],["Wheeler","2021-08-02",7909,18,2967],["Wheeler","2021-08-03",7909,15,2982],["Wheeler","2021-08-04",7909,15,2997],["Wheeler","2021-08-05",7909,17,3014],["Wheeler","2021-08-06",7909,10,3024],["Wheeler","2021-08-07",7909,3,3027],["Wheeler","2021-08-08",7909,9,3036],["Wheeler","2021-08-09",7909,20,3056],["Wheeler","2021-08-10",7909,14,3070],["Wheeler","2021-08-11",7909,10,3080],["Wheeler","2021-08-12",7909,13,3093],["Wheeler","2021-08-13",7909,12,3105],["Wheeler","2021-08-14",7909,6,3111],["Wheeler","2021-08-15",7909,6,3117],["Wheeler","2021-08-16",7909,16,3133],["Wheeler","2021-08-17",7909,24,3157],["Wheeler","2021-08-18",7909,28,3185],["Wheeler","2021-08-19",7909,29,3214],["Wheeler","2021-08-20",7909,17,3231],["Wheeler","2021-08-21",7909,7,3238],["Wheeler","2021-08-22",7909,2,3240],["Wheeler","2021-08-23",7909,15,3255],["Wheeler","2021-08-24",7909,29,3284],["Wheeler","2021-08-25",7909,41,3325],["Wheeler","2021-08-26",7909,25,3350],["Wheeler","2021-08-27",7909,16,3366],["Wheeler","2021-08-28",7909,9,3375],["Wheeler","2021-08-29",7909,6,3381],["Wheeler","2021-08-30",7909,26,3407],["Wheeler","2021-08-31",7909,23,3430],["Wheeler","2021-09-01",7909,47,3477],["Wheeler","2021-09-02",7909,29,3506],["Wheeler","2021-09-03",7909,12,3518],["Wheeler","2021-09-04",7909,5,3523],["Wheeler","2021-09-05",7909,4,3527],["Wheeler","2021-09-06",7909,1,3528],["Wheeler","2021-09-07",7909,22,3550],["Wheeler","2021-09-08",7909,32,3582],["Wheeler","2021-09-09",7909,9,3591],["Wheeler","2021-09-10",7909,19,3610],["Wheeler","2021-09-11",7909,11,3621],["Wheeler","2021-09-12",7909,2,3623],["Wheeler","2021-09-13",7909,17,3640],["Wheeler","2021-09-14",7909,20,3660],["Wheeler","2021-09-15",7909,30,3690],["Wheeler","2021-09-16",7909,8,3698],["Wheeler","2021-09-17",7909,13,3711],["Wheeler","2021-09-18",7909,4,3715],["Wheeler","2021-09-20",7909,16,3731],["Wheeler","2021-09-21",7909,10,3741],["Wheeler","2021-09-22",7909,48,3789],["Wheeler","2021-09-23",7909,9,3798],["Wheeler","2021-09-24",7909,10,3808],["Wheeler","2021-09-25",7909,3,3811],["Wheeler","2021-09-27",7909,14,3825],["Wheeler","2021-09-28",7909,7,3832],["Wheeler","2021-09-29",7909,25,3857],["Wheeler","2021-09-30",7909,8,3865],["Wheeler","2021-10-01",7909,6,3871],["Wheeler","2021-10-02",7909,3,3874],["Wheeler","2021-10-03",7909,1,3875],["Wheeler","2021-10-04",7909,10,3885],["Wheeler","2021-10-05",7909,4,3889],["Wheeler","2021-10-06",7909,13,3902],["Wheeler","2021-10-07",7909,8,3910],["Wheeler","2021-10-08",7909,5,3915],["Wheeler","2021-10-09",7909,4,3919],["Wheeler","2021-10-10",7909,1,3920],["Wheeler","2021-10-11",7909,3,3923],["Wheeler","2021-10-12",7909,12,3935],["Wheeler","2021-10-13",7909,7,3942],["Wheeler","2021-10-14",7909,1,3943],["Wheeler","2021-10-15",7909,5,3948],["Wheeler","2021-10-16",7909,2,3950],["Wheeler","2021-10-18",7909,16,3966],["Wheeler","2021-10-19",7909,1,3967],["Wheeler","2021-10-20",7909,10,3977],["Wheeler","2021-10-22",7909,5,3982],["Wheeler","2021-10-23",7909,3,3985],["Wheeler","2021-10-24",7909,1,3986],["Wheeler","2021-10-25",7909,6,3992],["Wheeler","2021-10-26",7909,7,3999],["Wheeler","2021-10-27",7909,54,4053],["Wheeler","2021-10-28",7909,21,4074],["Wheeler","2021-10-29",7909,10,4084],["Wheeler","2021-10-31",7909,1,4085],["Wheeler","2021-11-01",7909,41,4126],["Wheeler","2021-11-02",7909,19,4145],["Wheeler","2021-11-03",7909,53,4198],["Wheeler","2021-11-04",7909,14,4212],["Wheeler","2021-11-05",7909,9,4221],["Wheeler","2021-11-06",7909,1,4222],["Wheeler","2021-11-08",7909,36,4258],["Wheeler","2021-11-09",7909,26,4284],["Wheeler","2021-11-10",7909,32,4316],["Wheeler","2021-11-11",7909,8,4324],["Wheeler","2021-11-12",7909,6,4330],["Wheeler","2021-11-13",7909,1,4331],["Wheeler","2021-11-15",7909,25,4356],["Wheeler","2021-11-16",7909,28,4384],["Wheeler","2021-11-17",7909,34,4418],["Wheeler","2021-11-18",7909,4,4422],["Wheeler","2021-11-19",7909,8,4430],["Wheeler","2021-11-20",7909,2,4432],["Wheeler","2021-11-22",7909,14,4446],["Wheeler","2021-11-23",7909,7,4453],["Wheeler","2021-11-24",7909,13,4466],["Wheeler","2021-11-26",7909,3,4469],["Wheeler","2021-11-27",7909,4,4473],["Wheeler","2021-11-28",7909,3,4476],["Wheeler","2021-11-29",7909,18,4494],["Wheeler","2021-11-30",7909,25,4519],["Wheeler","2021-12-01",7909,33,4552],["Wheeler","2021-12-02",7909,18,4570],["Wheeler","2021-12-03",7909,11,4581],["Wheeler","2021-12-04",7909,4,4585],["Wheeler","2021-12-06",7909,18,4603],["Wheeler","2021-12-07",7909,2,4605],["Wheeler","2021-12-08",7909,22,4627],["Wheeler","2021-12-09",7909,6,4633],["Wheeler","2021-12-10",7909,10,4643],["Wheeler","2021-12-11",7909,2,4645],["Wheeler","2021-12-13",7909,10,4655],["Wheeler","2021-12-14",7909,1,4656],["Wheeler","2021-12-15",7909,18,4674],["Wheeler","2021-12-16",7909,10,4684],["Wheeler","2021-12-17",7909,7,4691],["Wheeler","2021-12-18",7909,1,4692],["Wheeler","2021-12-19",7909,3,4695],["Wheeler","2021-12-20",7909,19,4714],["Wheeler","2021-12-21",7909,10,4724],["Wheeler","2021-12-22",7909,18,4742],["Wheeler","2021-12-23",7909,2,4744],["Wheeler","2021-12-24",7909,2,4746],["Wheeler","2021-12-26",7909,2,4748],["Wheeler","2021-12-27",7909,14,4762],["Wheeler","2021-12-28",7909,2,4764],["Wheeler","2021-12-29",7909,16,4780],["Wheeler","2021-12-30",7909,11,4791],["Wheeler","2021-12-31",7909,4,4795],["Wheeler","2022-01-01",7909,1,4796],["Wheeler","2022-01-03",7909,1,4797],["White","2020-12-16",31758,1,1],["White","2020-12-17",31758,1,2],["White","2020-12-18",31758,9,11],["White","2020-12-19",31758,10,21],["White","2020-12-20",31758,3,24],["White","2020-12-21",31758,16,40],["White","2020-12-22",31758,15,55],["White","2020-12-23",31758,26,81],["White","2020-12-24",31758,7,88],["White","2020-12-26",31758,1,89],["White","2020-12-27",31758,3,92],["White","2020-12-28",31758,25,117],["White","2020-12-29",31758,42,159],["White","2020-12-30",31758,36,195],["White","2020-12-31",31758,10,205],["White","2021-01-01",31758,8,213],["White","2021-01-02",31758,4,217],["White","2021-01-03",31758,3,220],["White","2021-01-04",31758,48,268],["White","2021-01-05",31758,30,298],["White","2021-01-06",31758,25,323],["White","2021-01-07",31758,25,348],["White","2021-01-08",31758,61,409],["White","2021-01-09",31758,9,418],["White","2021-01-10",31758,7,425],["White","2021-01-11",31758,97,522],["White","2021-01-12",31758,87,609],["White","2021-01-13",31758,255,864],["White","2021-01-14",31758,158,1022],["White","2021-01-15",31758,94,1116],["White","2021-01-16",31758,35,1151],["White","2021-01-17",31758,26,1177],["White","2021-01-18",31758,172,1349],["White","2021-01-19",31758,161,1510],["White","2021-01-20",31758,215,1725],["White","2021-01-21",31758,187,1912],["White","2021-01-22",31758,111,2023],["White","2021-01-23",31758,17,2040],["White","2021-01-24",31758,22,2062],["White","2021-01-25",31758,133,2195],["White","2021-01-26",31758,127,2322],["White","2021-01-27",31758,216,2538],["White","2021-01-28",31758,91,2629],["White","2021-01-29",31758,77,2706],["White","2021-01-30",31758,26,2732],["White","2021-01-31",31758,10,2742],["White","2021-02-01",31758,115,2857],["White","2021-02-02",31758,89,2946],["White","2021-02-03",31758,131,3077],["White","2021-02-04",31758,111,3188],["White","2021-02-05",31758,88,3276],["White","2021-02-06",31758,13,3289],["White","2021-02-07",31758,3,3292],["White","2021-02-08",31758,132,3424],["White","2021-02-09",31758,152,3576],["White","2021-02-10",31758,185,3761],["White","2021-02-11",31758,164,3925],["White","2021-02-12",31758,132,4057],["White","2021-02-13",31758,46,4103],["White","2021-02-14",31758,24,4127],["White","2021-02-15",31758,188,4315],["White","2021-02-16",31758,175,4490],["White","2021-02-17",31758,179,4669],["White","2021-02-18",31758,142,4811],["White","2021-02-19",31758,86,4897],["White","2021-02-20",31758,22,4919],["White","2021-02-21",31758,20,4939],["White","2021-02-22",31758,100,5039],["White","2021-02-23",31758,601,5640],["White","2021-02-24",31758,297,5937],["White","2021-02-25",31758,207,6144],["White","2021-02-26",31758,222,6366],["White","2021-02-27",31758,65,6431],["White","2021-02-28",31758,22,6453],["White","2021-03-01",31758,251,6704],["White","2021-03-02",31758,215,6919],["White","2021-03-03",31758,247,7166],["White","2021-03-04",31758,223,7389],["White","2021-03-05",31758,103,7492],["White","2021-03-06",31758,27,7519],["White","2021-03-07",31758,20,7539],["White","2021-03-08",31758,151,7690],["White","2021-03-09",31758,159,7849],["White","2021-03-10",31758,182,8031],["White","2021-03-11",31758,335,8366],["White","2021-03-12",31758,127,8493],["White","2021-03-13",31758,30,8523],["White","2021-03-14",31758,15,8538],["White","2021-03-15",31758,208,8746],["White","2021-03-16",31758,583,9329],["White","2021-03-17",31758,201,9530],["White","2021-03-18",31758,167,9697],["White","2021-03-19",31758,175,9872],["White","2021-03-20",31758,26,9898],["White","2021-03-21",31758,29,9927],["White","2021-03-22",31758,125,10052],["White","2021-03-23",31758,148,10200],["White","2021-03-24",31758,288,10488],["White","2021-03-25",31758,190,10678],["White","2021-03-26",31758,171,10849],["White","2021-03-27",31758,120,10969],["White","2021-03-28",31758,34,11003],["White","2021-03-29",31758,192,11195],["White","2021-03-30",31758,217,11412],["White","2021-03-31",31758,226,11638],["White","2021-04-01",31758,184,11822],["White","2021-04-02",31758,147,11969],["White","2021-04-03",31758,24,11993],["White","2021-04-04",31758,24,12017],["White","2021-04-05",31758,168,12185],["White","2021-04-06",31758,182,12367],["White","2021-04-07",31758,189,12556],["White","2021-04-08",31758,189,12745],["White","2021-04-09",31758,159,12904],["White","2021-04-10",31758,31,12935],["White","2021-04-11",31758,29,12964],["White","2021-04-12",31758,193,13157],["White","2021-04-13",31758,117,13274],["White","2021-04-14",31758,154,13428],["White","2021-04-15",31758,179,13607],["White","2021-04-16",31758,168,13775],["White","2021-04-17",31758,114,13889],["White","2021-04-18",31758,11,13900],["White","2021-04-19",31758,159,14059],["White","2021-04-20",31758,133,14192],["White","2021-04-21",31758,222,14414],["White","2021-04-22",31758,159,14573],["White","2021-04-23",31758,153,14726],["White","2021-04-24",31758,47,14773],["White","2021-04-25",31758,11,14784],["White","2021-04-26",31758,79,14863],["White","2021-04-27",31758,153,15016],["White","2021-04-28",31758,110,15126],["White","2021-04-29",31758,124,15250],["White","2021-04-30",31758,115,15365],["White","2021-05-01",31758,38,15403],["White","2021-05-02",31758,17,15420],["White","2021-05-03",31758,77,15497],["White","2021-05-04",31758,95,15592],["White","2021-05-05",31758,90,15682],["White","2021-05-06",31758,79,15761],["White","2021-05-07",31758,113,15874],["White","2021-05-08",31758,24,15898],["White","2021-05-09",31758,11,15909],["White","2021-05-10",31758,61,15970],["White","2021-05-11",31758,71,16041],["White","2021-05-12",31758,68,16109],["White","2021-05-13",31758,56,16165],["White","2021-05-14",31758,86,16251],["White","2021-05-15",31758,41,16292],["White","2021-05-16",31758,20,16312],["White","2021-05-17",31758,66,16378],["White","2021-05-18",31758,85,16463],["White","2021-05-19",31758,54,16517],["White","2021-05-20",31758,58,16575],["White","2021-05-21",31758,50,16625],["White","2021-05-22",31758,45,16670],["White","2021-05-23",31758,17,16687],["White","2021-05-24",31758,32,16719],["White","2021-05-25",31758,60,16779],["White","2021-05-26",31758,38,16817],["White","2021-05-27",31758,44,16861],["White","2021-05-28",31758,59,16920],["White","2021-05-29",31758,31,16951],["White","2021-05-30",31758,10,16961],["White","2021-05-31",31758,5,16966],["White","2021-06-01",31758,36,17002],["White","2021-06-02",31758,35,17037],["White","2021-06-03",31758,41,17078],["White","2021-06-04",31758,45,17123],["White","2021-06-05",31758,24,17147],["White","2021-06-06",31758,13,17160],["White","2021-06-07",31758,29,17189],["White","2021-06-08",31758,57,17246],["White","2021-06-09",31758,42,17288],["White","2021-06-10",31758,42,17330],["White","2021-06-11",31758,52,17382],["White","2021-06-12",31758,28,17410],["White","2021-06-13",31758,7,17417],["White","2021-06-14",31758,29,17446],["White","2021-06-15",31758,47,17493],["White","2021-06-16",31758,40,17533],["White","2021-06-17",31758,31,17564],["White","2021-06-18",31758,29,17593],["White","2021-06-19",31758,30,17623],["White","2021-06-20",31758,9,17632],["White","2021-06-21",31758,24,17656],["White","2021-06-22",31758,39,17695],["White","2021-06-23",31758,30,17725],["White","2021-06-24",31758,29,17754],["White","2021-06-25",31758,40,17794],["White","2021-06-26",31758,8,17802],["White","2021-06-27",31758,9,17811],["White","2021-06-28",31758,14,17825],["White","2021-06-29",31758,28,17853],["White","2021-06-30",31758,25,17878],["White","2021-07-01",31758,19,17897],["White","2021-07-02",31758,22,17919],["White","2021-07-03",31758,6,17925],["White","2021-07-05",31758,15,17940],["White","2021-07-06",31758,18,17958],["White","2021-07-07",31758,20,17978],["White","2021-07-08",31758,15,17993],["White","2021-07-09",31758,28,18021],["White","2021-07-10",31758,21,18042],["White","2021-07-11",31758,7,18049],["White","2021-07-12",31758,16,18065],["White","2021-07-13",31758,23,18088],["White","2021-07-14",31758,16,18104],["White","2021-07-15",31758,14,18118],["White","2021-07-16",31758,30,18148],["White","2021-07-17",31758,9,18157],["White","2021-07-18",31758,12,18169],["White","2021-07-19",31758,26,18195],["White","2021-07-20",31758,21,18216],["White","2021-07-21",31758,27,18243],["White","2021-07-22",31758,25,18268],["White","2021-07-23",31758,42,18310],["White","2021-07-24",31758,15,18325],["White","2021-07-25",31758,17,18342],["White","2021-07-26",31758,22,18364],["White","2021-07-27",31758,35,18399],["White","2021-07-28",31758,31,18430],["White","2021-07-29",31758,37,18467],["White","2021-07-30",31758,42,18509],["White","2021-07-31",31758,23,18532],["White","2021-08-01",31758,15,18547],["White","2021-08-02",31758,42,18589],["White","2021-08-03",31758,42,18631],["White","2021-08-04",31758,63,18694],["White","2021-08-05",31758,68,18762],["White","2021-08-06",31758,71,18833],["White","2021-08-07",31758,28,18861],["White","2021-08-08",31758,23,18884],["White","2021-08-09",31758,46,18930],["White","2021-08-10",31758,50,18980],["White","2021-08-11",31758,49,19029],["White","2021-08-12",31758,48,19077],["White","2021-08-13",31758,72,19149],["White","2021-08-14",31758,43,19192],["White","2021-08-15",31758,28,19220],["White","2021-08-16",31758,47,19267],["White","2021-08-17",31758,60,19327],["White","2021-08-18",31758,59,19386],["White","2021-08-19",31758,66,19452],["White","2021-08-20",31758,84,19536],["White","2021-08-21",31758,27,19563],["White","2021-08-22",31758,27,19590],["White","2021-08-23",31758,73,19663],["White","2021-08-24",31758,41,19704],["White","2021-08-25",31758,93,19797],["White","2021-08-26",31758,101,19898],["White","2021-08-27",31758,111,20009],["White","2021-08-28",31758,62,20071],["White","2021-08-29",31758,28,20099],["White","2021-08-30",31758,99,20198],["White","2021-08-31",31758,83,20281],["White","2021-09-01",31758,97,20378],["White","2021-09-02",31758,80,20458],["White","2021-09-03",31758,106,20564],["White","2021-09-04",31758,31,20595],["White","2021-09-05",31758,32,20627],["White","2021-09-06",31758,15,20642],["White","2021-09-07",31758,68,20710],["White","2021-09-08",31758,83,20793],["White","2021-09-09",31758,86,20879],["White","2021-09-10",31758,102,20981],["White","2021-09-11",31758,42,21023],["White","2021-09-12",31758,27,21050],["White","2021-09-13",31758,58,21108],["White","2021-09-14",31758,58,21166],["White","2021-09-15",31758,52,21218],["White","2021-09-16",31758,47,21265],["White","2021-09-17",31758,69,21334],["White","2021-09-18",31758,38,21372],["White","2021-09-19",31758,19,21391],["White","2021-09-20",31758,71,21462],["White","2021-09-21",31758,52,21514],["White","2021-09-22",31758,55,21569],["White","2021-09-23",31758,51,21620],["White","2021-09-24",31758,67,21687],["White","2021-09-25",31758,37,21724],["White","2021-09-26",31758,22,21746],["White","2021-09-27",31758,67,21813],["White","2021-09-28",31758,68,21881],["White","2021-09-29",31758,58,21939],["White","2021-09-30",31758,80,22019],["White","2021-10-01",31758,79,22098],["White","2021-10-02",31758,27,22125],["White","2021-10-03",31758,17,22142],["White","2021-10-04",31758,53,22195],["White","2021-10-05",31758,63,22258],["White","2021-10-06",31758,57,22315],["White","2021-10-07",31758,50,22365],["White","2021-10-08",31758,46,22411],["White","2021-10-09",31758,20,22431],["White","2021-10-10",31758,12,22443],["White","2021-10-11",31758,34,22477],["White","2021-10-12",31758,36,22513],["White","2021-10-13",31758,37,22550],["White","2021-10-14",31758,24,22574],["White","2021-10-15",31758,42,22616],["White","2021-10-16",31758,7,22623],["White","2021-10-17",31758,8,22631],["White","2021-10-18",31758,28,22659],["White","2021-10-19",31758,31,22690],["White","2021-10-20",31758,42,22732],["White","2021-10-21",31758,47,22779],["White","2021-10-22",31758,90,22869],["White","2021-10-23",31758,64,22933],["White","2021-10-24",31758,48,22981],["White","2021-10-25",31758,122,23103],["White","2021-10-26",31758,158,23261],["White","2021-10-27",31758,151,23412],["White","2021-10-28",31758,126,23538],["White","2021-10-29",31758,126,23664],["White","2021-10-30",31758,30,23694],["White","2021-10-31",31758,24,23718],["White","2021-11-01",31758,120,23838],["White","2021-11-02",31758,104,23942],["White","2021-11-03",31758,95,24037],["White","2021-11-04",31758,100,24137],["White","2021-11-05",31758,107,24244],["White","2021-11-06",31758,28,24272],["White","2021-11-07",31758,21,24293],["White","2021-11-08",31758,82,24375],["White","2021-11-09",31758,75,24450],["White","2021-11-10",31758,98,24548],["White","2021-11-11",31758,66,24614],["White","2021-11-12",31758,57,24671],["White","2021-11-13",31758,24,24695],["White","2021-11-14",31758,14,24709],["White","2021-11-15",31758,98,24807],["White","2021-11-16",31758,72,24879],["White","2021-11-17",31758,78,24957],["White","2021-11-18",31758,105,25062],["White","2021-11-19",31758,84,25146],["White","2021-11-20",31758,39,25185],["White","2021-11-21",31758,24,25209],["White","2021-11-22",31758,71,25280],["White","2021-11-23",31758,74,25354],["White","2021-11-24",31758,54,25408],["White","2021-11-25",31758,1,25409],["White","2021-11-26",31758,36,25445],["White","2021-11-27",31758,28,25473],["White","2021-11-28",31758,20,25493],["White","2021-11-29",31758,113,25606],["White","2021-11-30",31758,107,25713],["White","2021-12-01",31758,105,25818],["White","2021-12-02",31758,99,25917],["White","2021-12-03",31758,120,26037],["White","2021-12-04",31758,27,26064],["White","2021-12-05",31758,18,26082],["White","2021-12-06",31758,67,26149],["White","2021-12-07",31758,50,26199],["White","2021-12-08",31758,90,26289],["White","2021-12-09",31758,55,26344],["White","2021-12-10",31758,85,26429],["White","2021-12-11",31758,24,26453],["White","2021-12-12",31758,20,26473],["White","2021-12-13",31758,50,26523],["White","2021-12-14",31758,66,26589],["White","2021-12-15",31758,74,26663],["White","2021-12-16",31758,57,26720],["White","2021-12-17",31758,73,26793],["White","2021-12-18",31758,30,26823],["White","2021-12-19",31758,10,26833],["White","2021-12-20",31758,62,26895],["White","2021-12-21",31758,84,26979],["White","2021-12-22",31758,69,27048],["White","2021-12-23",31758,41,27089],["White","2021-12-24",31758,6,27095],["White","2021-12-26",31758,20,27115],["White","2021-12-27",31758,77,27192],["White","2021-12-28",31758,75,27267],["White","2021-12-29",31758,83,27350],["White","2021-12-30",31758,79,27429],["White","2021-12-31",31758,27,27456],["White","2022-01-01",31758,18,27474],["White","2022-01-02",31758,21,27495],["White","2022-01-03",31758,21,27516],["Whitfield","2020-12-12",104672,1,1],["Whitfield","2020-12-14",104672,1,2],["Whitfield","2020-12-16",104672,1,3],["Whitfield","2020-12-17",104672,19,22],["Whitfield","2020-12-18",104672,111,133],["Whitfield","2020-12-20",104672,26,159],["Whitfield","2020-12-21",104672,162,321],["Whitfield","2020-12-22",104672,234,555],["Whitfield","2020-12-23",104672,87,642],["Whitfield","2020-12-24",104672,21,663],["Whitfield","2020-12-25",104672,1,664],["Whitfield","2020-12-26",104672,1,665],["Whitfield","2020-12-27",104672,3,668],["Whitfield","2020-12-28",104672,146,814],["Whitfield","2020-12-29",104672,84,898],["Whitfield","2020-12-30",104672,83,981],["Whitfield","2020-12-31",104672,60,1041],["Whitfield","2021-01-01",104672,26,1067],["Whitfield","2021-01-02",104672,1,1068],["Whitfield","2021-01-03",104672,19,1087],["Whitfield","2021-01-04",104672,138,1225],["Whitfield","2021-01-05",104672,440,1665],["Whitfield","2021-01-06",104672,506,2171],["Whitfield","2021-01-07",104672,609,2780],["Whitfield","2021-01-08",104672,325,3105],["Whitfield","2021-01-09",104672,10,3115],["Whitfield","2021-01-10",104672,7,3122],["Whitfield","2021-01-11",104672,652,3774],["Whitfield","2021-01-12",104672,889,4663],["Whitfield","2021-01-13",104672,674,5337],["Whitfield","2021-01-14",104672,631,5968],["Whitfield","2021-01-15",104672,420,6388],["Whitfield","2021-01-16",104672,36,6424],["Whitfield","2021-01-17",104672,19,6443],["Whitfield","2021-01-18",104672,1044,7487],["Whitfield","2021-01-19",104672,508,7995],["Whitfield","2021-01-20",104672,832,8827],["Whitfield","2021-01-21",104672,324,9151],["Whitfield","2021-01-22",104672,157,9308],["Whitfield","2021-01-23",104672,27,9335],["Whitfield","2021-01-24",104672,27,9362],["Whitfield","2021-01-25",104672,284,9646],["Whitfield","2021-01-26",104672,646,10292],["Whitfield","2021-01-27",104672,533,10825],["Whitfield","2021-01-28",104672,552,11377],["Whitfield","2021-01-29",104672,291,11668],["Whitfield","2021-01-30",104672,17,11685],["Whitfield","2021-01-31",104672,14,11699],["Whitfield","2021-02-01",104672,450,12149],["Whitfield","2021-02-02",104672,607,12756],["Whitfield","2021-02-03",104672,1505,14261],["Whitfield","2021-02-04",104672,1355,15616],["Whitfield","2021-02-05",104672,393,16009],["Whitfield","2021-02-06",104672,7,16016],["Whitfield","2021-02-07",104672,8,16024],["Whitfield","2021-02-08",104672,650,16674],["Whitfield","2021-02-09",104672,836,17510],["Whitfield","2021-02-10",104672,1312,18822],["Whitfield","2021-02-11",104672,551,19373],["Whitfield","2021-02-12",104672,376,19749],["Whitfield","2021-02-13",104672,35,19784],["Whitfield","2021-02-14",104672,23,19807],["Whitfield","2021-02-15",104672,780,20587],["Whitfield","2021-02-16",104672,467,21054],["Whitfield","2021-02-17",104672,210,21264],["Whitfield","2021-02-18",104672,186,21450],["Whitfield","2021-02-19",104672,195,21645],["Whitfield","2021-02-20",104672,28,21673],["Whitfield","2021-02-21",104672,22,21695],["Whitfield","2021-02-22",104672,208,21903],["Whitfield","2021-02-23",104672,317,22220],["Whitfield","2021-02-24",104672,1115,23335],["Whitfield","2021-02-25",104672,1010,24345],["Whitfield","2021-02-26",104672,305,24650],["Whitfield","2021-02-27",104672,122,24772],["Whitfield","2021-02-28",104672,41,24813],["Whitfield","2021-03-01",104672,272,25085],["Whitfield","2021-03-02",104672,357,25442],["Whitfield","2021-03-03",104672,479,25921],["Whitfield","2021-03-04",104672,293,26214],["Whitfield","2021-03-05",104672,247,26461],["Whitfield","2021-03-06",104672,14,26475],["Whitfield","2021-03-07",104672,49,26524],["Whitfield","2021-03-08",104672,381,26905],["Whitfield","2021-03-09",104672,503,27408],["Whitfield","2021-03-10",104672,545,27953],["Whitfield","2021-03-11",104672,556,28509],["Whitfield","2021-03-12",104672,516,29025],["Whitfield","2021-03-13",104672,77,29102],["Whitfield","2021-03-14",104672,51,29153],["Whitfield","2021-03-15",104672,636,29789],["Whitfield","2021-03-16",104672,669,30458],["Whitfield","2021-03-17",104672,539,30997],["Whitfield","2021-03-18",104672,539,31536],["Whitfield","2021-03-19",104672,463,31999],["Whitfield","2021-03-20",104672,82,32081],["Whitfield","2021-03-21",104672,84,32165],["Whitfield","2021-03-22",104672,901,33066],["Whitfield","2021-03-23",104672,503,33569],["Whitfield","2021-03-24",104672,990,34559],["Whitfield","2021-03-25",104672,873,35432],["Whitfield","2021-03-26",104672,824,36256],["Whitfield","2021-03-27",104672,122,36378],["Whitfield","2021-03-28",104672,148,36526],["Whitfield","2021-03-29",104672,779,37305],["Whitfield","2021-03-30",104672,984,38289],["Whitfield","2021-03-31",104672,900,39189],["Whitfield","2021-04-01",104672,964,40153],["Whitfield","2021-04-02",104672,790,40943],["Whitfield","2021-04-03",104672,171,41114],["Whitfield","2021-04-04",104672,126,41240],["Whitfield","2021-04-05",104672,897,42137],["Whitfield","2021-04-06",104672,910,43047],["Whitfield","2021-04-07",104672,788,43835],["Whitfield","2021-04-08",104672,731,44566],["Whitfield","2021-04-09",104672,683,45249],["Whitfield","2021-04-10",104672,172,45421],["Whitfield","2021-04-11",104672,121,45542],["Whitfield","2021-04-12",104672,638,46180],["Whitfield","2021-04-13",104672,679,46859],["Whitfield","2021-04-14",104672,1173,48032],["Whitfield","2021-04-15",104672,998,49030],["Whitfield","2021-04-16",104672,750,49780],["Whitfield","2021-04-17",104672,536,50316],["Whitfield","2021-04-18",104672,97,50413],["Whitfield","2021-04-19",104672,679,51092],["Whitfield","2021-04-20",104672,714,51806],["Whitfield","2021-04-21",104672,945,52751],["Whitfield","2021-04-22",104672,687,53438],["Whitfield","2021-04-23",104672,652,54090],["Whitfield","2021-04-24",104672,188,54278],["Whitfield","2021-04-25",104672,107,54385],["Whitfield","2021-04-26",104672,566,54951],["Whitfield","2021-04-27",104672,499,55450],["Whitfield","2021-04-28",104672,619,56069],["Whitfield","2021-04-29",104672,482,56551],["Whitfield","2021-04-30",104672,572,57123],["Whitfield","2021-05-01",104672,265,57388],["Whitfield","2021-05-02",104672,113,57501],["Whitfield","2021-05-03",104672,358,57859],["Whitfield","2021-05-04",104672,632,58491],["Whitfield","2021-05-05",104672,748,59239],["Whitfield","2021-05-06",104672,482,59721],["Whitfield","2021-05-07",104672,433,60154],["Whitfield","2021-05-08",104672,168,60322],["Whitfield","2021-05-09",104672,67,60389],["Whitfield","2021-05-10",104672,288,60677],["Whitfield","2021-05-11",104672,602,61279],["Whitfield","2021-05-12",104672,415,61694],["Whitfield","2021-05-13",104672,313,62007],["Whitfield","2021-05-14",104672,347,62354],["Whitfield","2021-05-15",104672,135,62489],["Whitfield","2021-05-16",104672,97,62586],["Whitfield","2021-05-17",104672,314,62900],["Whitfield","2021-05-18",104672,293,63193],["Whitfield","2021-05-19",104672,328,63521],["Whitfield","2021-05-20",104672,271,63792],["Whitfield","2021-05-21",104672,267,64059],["Whitfield","2021-05-22",104672,193,64252],["Whitfield","2021-05-23",104672,60,64312],["Whitfield","2021-05-24",104672,209,64521],["Whitfield","2021-05-25",104672,548,65069],["Whitfield","2021-05-26",104672,204,65273],["Whitfield","2021-05-27",104672,205,65478],["Whitfield","2021-05-28",104672,173,65651],["Whitfield","2021-05-29",104672,124,65775],["Whitfield","2021-05-30",104672,58,65833],["Whitfield","2021-05-31",104672,20,65853],["Whitfield","2021-06-01",104672,396,66249],["Whitfield","2021-06-02",104672,184,66433],["Whitfield","2021-06-03",104672,207,66640],["Whitfield","2021-06-04",104672,248,66888],["Whitfield","2021-06-05",104672,106,66994],["Whitfield","2021-06-06",104672,79,67073],["Whitfield","2021-06-07",104672,179,67252],["Whitfield","2021-06-08",104672,217,67469],["Whitfield","2021-06-09",104672,227,67696],["Whitfield","2021-06-10",104672,181,67877],["Whitfield","2021-06-11",104672,205,68082],["Whitfield","2021-06-12",104672,131,68213],["Whitfield","2021-06-13",104672,49,68262],["Whitfield","2021-06-14",104672,219,68481],["Whitfield","2021-06-15",104672,181,68662],["Whitfield","2021-06-16",104672,158,68820],["Whitfield","2021-06-17",104672,163,68983],["Whitfield","2021-06-18",104672,158,69141],["Whitfield","2021-06-19",104672,77,69218],["Whitfield","2021-06-20",104672,42,69260],["Whitfield","2021-06-21",104672,93,69353],["Whitfield","2021-06-22",104672,173,69526],["Whitfield","2021-06-23",104672,143,69669],["Whitfield","2021-06-24",104672,120,69789],["Whitfield","2021-06-25",104672,151,69940],["Whitfield","2021-06-26",104672,139,70079],["Whitfield","2021-06-27",104672,35,70114],["Whitfield","2021-06-28",104672,102,70216],["Whitfield","2021-06-29",104672,106,70322],["Whitfield","2021-06-30",104672,126,70448],["Whitfield","2021-07-01",104672,110,70558],["Whitfield","2021-07-02",104672,142,70700],["Whitfield","2021-07-03",104672,78,70778],["Whitfield","2021-07-04",104672,8,70786],["Whitfield","2021-07-05",104672,96,70882],["Whitfield","2021-07-06",104672,125,71007],["Whitfield","2021-07-07",104672,151,71158],["Whitfield","2021-07-08",104672,104,71262],["Whitfield","2021-07-09",104672,120,71382],["Whitfield","2021-07-10",104672,56,71438],["Whitfield","2021-07-11",104672,43,71481],["Whitfield","2021-07-12",104672,115,71596],["Whitfield","2021-07-13",104672,111,71707],["Whitfield","2021-07-14",104672,102,71809],["Whitfield","2021-07-15",104672,104,71913],["Whitfield","2021-07-16",104672,116,72029],["Whitfield","2021-07-17",104672,80,72109],["Whitfield","2021-07-18",104672,52,72161],["Whitfield","2021-07-19",104672,105,72266],["Whitfield","2021-07-20",104672,113,72379],["Whitfield","2021-07-21",104672,129,72508],["Whitfield","2021-07-22",104672,167,72675],["Whitfield","2021-07-23",104672,193,72868],["Whitfield","2021-07-24",104672,124,72992],["Whitfield","2021-07-25",104672,40,73032],["Whitfield","2021-07-26",104672,163,73195],["Whitfield","2021-07-27",104672,160,73355],["Whitfield","2021-07-28",104672,235,73590],["Whitfield","2021-07-29",104672,241,73831],["Whitfield","2021-07-30",104672,230,74061],["Whitfield","2021-07-31",104672,167,74228],["Whitfield","2021-08-01",104672,93,74321],["Whitfield","2021-08-02",104672,196,74517],["Whitfield","2021-08-03",104672,211,74728],["Whitfield","2021-08-04",104672,298,75026],["Whitfield","2021-08-05",104672,215,75241],["Whitfield","2021-08-06",104672,184,75425],["Whitfield","2021-08-07",104672,183,75608],["Whitfield","2021-08-08",104672,100,75708],["Whitfield","2021-08-09",104672,214,75922],["Whitfield","2021-08-10",104672,222,76144],["Whitfield","2021-08-11",104672,211,76355],["Whitfield","2021-08-12",104672,264,76619],["Whitfield","2021-08-13",104672,305,76924],["Whitfield","2021-08-14",104672,232,77156],["Whitfield","2021-08-15",104672,137,77293],["Whitfield","2021-08-16",104672,280,77573],["Whitfield","2021-08-17",104672,331,77904],["Whitfield","2021-08-18",104672,403,78307],["Whitfield","2021-08-19",104672,526,78833],["Whitfield","2021-08-20",104672,460,79293],["Whitfield","2021-08-21",104672,240,79533],["Whitfield","2021-08-22",104672,142,79675],["Whitfield","2021-08-23",104672,337,80012],["Whitfield","2021-08-24",104672,442,80454],["Whitfield","2021-08-25",104672,393,80847],["Whitfield","2021-08-26",104672,359,81206],["Whitfield","2021-08-27",104672,392,81598],["Whitfield","2021-08-28",104672,243,81841],["Whitfield","2021-08-29",104672,134,81975],["Whitfield","2021-08-30",104672,305,82280],["Whitfield","2021-08-31",104672,302,82582],["Whitfield","2021-09-01",104672,396,82978],["Whitfield","2021-09-02",104672,365,83343],["Whitfield","2021-09-03",104672,395,83738],["Whitfield","2021-09-04",104672,231,83969],["Whitfield","2021-09-05",104672,124,84093],["Whitfield","2021-09-06",104672,27,84120],["Whitfield","2021-09-07",104672,487,84607],["Whitfield","2021-09-08",104672,426,85033],["Whitfield","2021-09-09",104672,494,85527],["Whitfield","2021-09-10",104672,444,85971],["Whitfield","2021-09-11",104672,237,86208],["Whitfield","2021-09-12",104672,124,86332],["Whitfield","2021-09-13",104672,304,86636],["Whitfield","2021-09-14",104672,312,86948],["Whitfield","2021-09-15",104672,249,87197],["Whitfield","2021-09-16",104672,329,87526],["Whitfield","2021-09-17",104672,319,87845],["Whitfield","2021-09-18",104672,162,88007],["Whitfield","2021-09-19",104672,78,88085],["Whitfield","2021-09-20",104672,188,88273],["Whitfield","2021-09-21",104672,220,88493],["Whitfield","2021-09-22",104672,185,88678],["Whitfield","2021-09-23",104672,203,88881],["Whitfield","2021-09-24",104672,223,89104],["Whitfield","2021-09-25",104672,134,89238],["Whitfield","2021-09-26",104672,81,89319],["Whitfield","2021-09-27",104672,322,89641],["Whitfield","2021-09-28",104672,377,90018],["Whitfield","2021-09-29",104672,292,90310],["Whitfield","2021-09-30",104672,293,90603],["Whitfield","2021-10-01",104672,326,90929],["Whitfield","2021-10-02",104672,180,91109],["Whitfield","2021-10-03",104672,58,91167],["Whitfield","2021-10-04",104672,273,91440],["Whitfield","2021-10-05",104672,251,91691],["Whitfield","2021-10-06",104672,256,91947],["Whitfield","2021-10-07",104672,229,92176],["Whitfield","2021-10-08",104672,239,92415],["Whitfield","2021-10-09",104672,79,92494],["Whitfield","2021-10-10",104672,56,92550],["Whitfield","2021-10-11",104672,98,92648],["Whitfield","2021-10-12",104672,219,92867],["Whitfield","2021-10-13",104672,105,92972],["Whitfield","2021-10-14",104672,260,93232],["Whitfield","2021-10-15",104672,199,93431],["Whitfield","2021-10-16",104672,60,93491],["Whitfield","2021-10-17",104672,38,93529],["Whitfield","2021-10-18",104672,168,93697],["Whitfield","2021-10-19",104672,137,93834],["Whitfield","2021-10-20",104672,172,94006],["Whitfield","2021-10-21",104672,156,94162],["Whitfield","2021-10-22",104672,277,94439],["Whitfield","2021-10-23",104672,96,94535],["Whitfield","2021-10-24",104672,61,94596],["Whitfield","2021-10-25",104672,182,94778],["Whitfield","2021-10-26",104672,236,95014],["Whitfield","2021-10-27",104672,246,95260],["Whitfield","2021-10-28",104672,172,95432],["Whitfield","2021-10-29",104672,198,95630],["Whitfield","2021-10-30",104672,77,95707],["Whitfield","2021-10-31",104672,37,95744],["Whitfield","2021-11-01",104672,153,95897],["Whitfield","2021-11-02",104672,160,96057],["Whitfield","2021-11-03",104672,188,96245],["Whitfield","2021-11-04",104672,178,96423],["Whitfield","2021-11-05",104672,211,96634],["Whitfield","2021-11-06",104672,86,96720],["Whitfield","2021-11-07",104672,46,96766],["Whitfield","2021-11-08",104672,153,96919],["Whitfield","2021-11-09",104672,246,97165],["Whitfield","2021-11-10",104672,191,97356],["Whitfield","2021-11-11",104672,105,97461],["Whitfield","2021-11-12",104672,248,97709],["Whitfield","2021-11-13",104672,150,97859],["Whitfield","2021-11-14",104672,55,97914],["Whitfield","2021-11-15",104672,200,98114],["Whitfield","2021-11-16",104672,251,98365],["Whitfield","2021-11-17",104672,202,98567],["Whitfield","2021-11-18",104672,184,98751],["Whitfield","2021-11-19",104672,254,99005],["Whitfield","2021-11-20",104672,116,99121],["Whitfield","2021-11-21",104672,50,99171],["Whitfield","2021-11-22",104672,247,99418],["Whitfield","2021-11-23",104672,237,99655],["Whitfield","2021-11-24",104672,162,99817],["Whitfield","2021-11-25",104672,2,99819],["Whitfield","2021-11-26",104672,123,99942],["Whitfield","2021-11-27",104672,85,100027],["Whitfield","2021-11-28",104672,53,100080],["Whitfield","2021-11-29",104672,262,100342],["Whitfield","2021-11-30",104672,347,100689],["Whitfield","2021-12-01",104672,325,101014],["Whitfield","2021-12-02",104672,283,101297],["Whitfield","2021-12-03",104672,369,101666],["Whitfield","2021-12-04",104672,140,101806],["Whitfield","2021-12-05",104672,56,101862],["Whitfield","2021-12-06",104672,212,102074],["Whitfield","2021-12-07",104672,163,102237],["Whitfield","2021-12-08",104672,161,102398],["Whitfield","2021-12-09",104672,214,102612],["Whitfield","2021-12-10",104672,277,102889],["Whitfield","2021-12-11",104672,91,102980],["Whitfield","2021-12-12",104672,59,103039],["Whitfield","2021-12-13",104672,198,103237],["Whitfield","2021-12-14",104672,213,103450],["Whitfield","2021-12-15",104672,231,103681],["Whitfield","2021-12-16",104672,195,103876],["Whitfield","2021-12-17",104672,237,104113],["Whitfield","2021-12-18",104672,132,104245],["Whitfield","2021-12-19",104672,64,104309],["Whitfield","2021-12-20",104672,283,104592],["Whitfield","2021-12-21",104672,337,104929],["Whitfield","2021-12-22",104672,302,105231],["Whitfield","2021-12-23",104672,129,105360],["Whitfield","2021-12-24",104672,40,105400],["Whitfield","2021-12-26",104672,67,105467],["Whitfield","2021-12-27",104672,263,105730],["Whitfield","2021-12-28",104672,140,105870],["Whitfield","2021-12-29",104672,160,106030],["Whitfield","2021-12-30",104672,173,106203],["Whitfield","2021-12-31",104672,105,106308],["Whitfield","2022-01-01",104672,8,106316],["Whitfield","2022-01-02",104672,62,106378],["Whitfield","2022-01-03",104672,59,106437],["Wilcox","2020-12-16",8790,1,1],["Wilcox","2020-12-21",8790,1,2],["Wilcox","2020-12-22",8790,1,3],["Wilcox","2020-12-23",8790,5,8],["Wilcox","2020-12-24",8790,4,12],["Wilcox","2020-12-26",8790,1,13],["Wilcox","2020-12-28",8790,6,19],["Wilcox","2020-12-29",8790,6,25],["Wilcox","2020-12-30",8790,8,33],["Wilcox","2020-12-31",8790,5,38],["Wilcox","2021-01-03",8790,1,39],["Wilcox","2021-01-04",8790,13,52],["Wilcox","2021-01-05",8790,44,96],["Wilcox","2021-01-06",8790,23,119],["Wilcox","2021-01-07",8790,32,151],["Wilcox","2021-01-08",8790,11,162],["Wilcox","2021-01-09",8790,2,164],["Wilcox","2021-01-11",8790,28,192],["Wilcox","2021-01-12",8790,48,240],["Wilcox","2021-01-13",8790,37,277],["Wilcox","2021-01-14",8790,103,380],["Wilcox","2021-01-15",8790,30,410],["Wilcox","2021-01-16",8790,3,413],["Wilcox","2021-01-17",8790,1,414],["Wilcox","2021-01-18",8790,15,429],["Wilcox","2021-01-19",8790,37,466],["Wilcox","2021-01-20",8790,57,523],["Wilcox","2021-01-21",8790,129,652],["Wilcox","2021-01-22",8790,4,656],["Wilcox","2021-01-24",8790,1,657],["Wilcox","2021-01-25",8790,14,671],["Wilcox","2021-01-26",8790,13,684],["Wilcox","2021-01-27",8790,27,711],["Wilcox","2021-01-28",8790,129,840],["Wilcox","2021-01-29",8790,8,848],["Wilcox","2021-01-30",8790,4,852],["Wilcox","2021-01-31",8790,1,853],["Wilcox","2021-02-01",8790,10,863],["Wilcox","2021-02-02",8790,17,880],["Wilcox","2021-02-03",8790,25,905],["Wilcox","2021-02-04",8790,117,1022],["Wilcox","2021-02-05",8790,20,1042],["Wilcox","2021-02-07",8790,1,1043],["Wilcox","2021-02-08",8790,19,1062],["Wilcox","2021-02-09",8790,48,1110],["Wilcox","2021-02-10",8790,17,1127],["Wilcox","2021-02-11",8790,162,1289],["Wilcox","2021-02-12",8790,34,1323],["Wilcox","2021-02-13",8790,5,1328],["Wilcox","2021-02-14",8790,2,1330],["Wilcox","2021-02-15",8790,12,1342],["Wilcox","2021-02-16",8790,28,1370],["Wilcox","2021-02-17",8790,41,1411],["Wilcox","2021-02-18",8790,186,1597],["Wilcox","2021-02-19",8790,12,1609],["Wilcox","2021-02-20",8790,3,1612],["Wilcox","2021-02-22",8790,12,1624],["Wilcox","2021-02-23",8790,8,1632],["Wilcox","2021-02-24",8790,19,1651],["Wilcox","2021-02-25",8790,153,1804],["Wilcox","2021-02-26",8790,6,1810],["Wilcox","2021-02-27",8790,3,1813],["Wilcox","2021-03-01",8790,13,1826],["Wilcox","2021-03-02",8790,9,1835],["Wilcox","2021-03-03",8790,12,1847],["Wilcox","2021-03-04",8790,109,1956],["Wilcox","2021-03-05",8790,12,1968],["Wilcox","2021-03-07",8790,1,1969],["Wilcox","2021-03-08",8790,64,2033],["Wilcox","2021-03-09",8790,22,2055],["Wilcox","2021-03-10",8790,28,2083],["Wilcox","2021-03-11",8790,96,2179],["Wilcox","2021-03-12",8790,23,2202],["Wilcox","2021-03-13",8790,3,2205],["Wilcox","2021-03-14",8790,8,2213],["Wilcox","2021-03-15",8790,31,2244],["Wilcox","2021-03-16",8790,31,2275],["Wilcox","2021-03-17",8790,83,2358],["Wilcox","2021-03-18",8790,97,2455],["Wilcox","2021-03-19",8790,21,2476],["Wilcox","2021-03-20",8790,6,2482],["Wilcox","2021-03-21",8790,2,2484],["Wilcox","2021-03-22",8790,17,2501],["Wilcox","2021-03-23",8790,39,2540],["Wilcox","2021-03-24",8790,80,2620],["Wilcox","2021-03-25",8790,59,2679],["Wilcox","2021-03-26",8790,27,2706],["Wilcox","2021-03-27",8790,1,2707],["Wilcox","2021-03-29",8790,22,2729],["Wilcox","2021-03-30",8790,25,2754],["Wilcox","2021-03-31",8790,74,2828],["Wilcox","2021-04-01",8790,36,2864],["Wilcox","2021-04-02",8790,21,2885],["Wilcox","2021-04-03",8790,3,2888],["Wilcox","2021-04-04",8790,3,2891],["Wilcox","2021-04-05",8790,83,2974],["Wilcox","2021-04-06",8790,36,3010],["Wilcox","2021-04-07",8790,116,3126],["Wilcox","2021-04-08",8790,100,3226],["Wilcox","2021-04-09",8790,19,3245],["Wilcox","2021-04-10",8790,7,3252],["Wilcox","2021-04-11",8790,4,3256],["Wilcox","2021-04-12",8790,16,3272],["Wilcox","2021-04-13",8790,23,3295],["Wilcox","2021-04-14",8790,127,3422],["Wilcox","2021-04-15",8790,38,3460],["Wilcox","2021-04-16",8790,23,3483],["Wilcox","2021-04-17",8790,6,3489],["Wilcox","2021-04-18",8790,1,3490],["Wilcox","2021-04-19",8790,22,3512],["Wilcox","2021-04-20",8790,45,3557],["Wilcox","2021-04-21",8790,108,3665],["Wilcox","2021-04-22",8790,41,3706],["Wilcox","2021-04-23",8790,27,3733],["Wilcox","2021-04-24",8790,2,3735],["Wilcox","2021-04-25",8790,2,3737],["Wilcox","2021-04-26",8790,23,3760],["Wilcox","2021-04-27",8790,14,3774],["Wilcox","2021-04-28",8790,78,3852],["Wilcox","2021-04-29",8790,59,3911],["Wilcox","2021-04-30",8790,22,3933],["Wilcox","2021-05-01",8790,3,3936],["Wilcox","2021-05-02",8790,5,3941],["Wilcox","2021-05-03",8790,14,3955],["Wilcox","2021-05-04",8790,19,3974],["Wilcox","2021-05-05",8790,70,4044],["Wilcox","2021-05-06",8790,23,4067],["Wilcox","2021-05-07",8790,28,4095],["Wilcox","2021-05-08",8790,8,4103],["Wilcox","2021-05-10",8790,13,4116],["Wilcox","2021-05-11",8790,12,4128],["Wilcox","2021-05-12",8790,54,4182],["Wilcox","2021-05-13",8790,15,4197],["Wilcox","2021-05-14",8790,16,4213],["Wilcox","2021-05-15",8790,4,4217],["Wilcox","2021-05-16",8790,2,4219],["Wilcox","2021-05-17",8790,17,4236],["Wilcox","2021-05-18",8790,13,4249],["Wilcox","2021-05-19",8790,41,4290],["Wilcox","2021-05-20",8790,16,4306],["Wilcox","2021-05-21",8790,18,4324],["Wilcox","2021-05-22",8790,9,4333],["Wilcox","2021-05-23",8790,3,4336],["Wilcox","2021-05-24",8790,5,4341],["Wilcox","2021-05-25",8790,8,4349],["Wilcox","2021-05-26",8790,30,4379],["Wilcox","2021-05-27",8790,15,4394],["Wilcox","2021-05-28",8790,9,4403],["Wilcox","2021-05-29",8790,2,4405],["Wilcox","2021-05-30",8790,4,4409],["Wilcox","2021-05-31",8790,4,4413],["Wilcox","2021-06-01",8790,20,4433],["Wilcox","2021-06-02",8790,26,4459],["Wilcox","2021-06-03",8790,17,4476],["Wilcox","2021-06-04",8790,16,4492],["Wilcox","2021-06-05",8790,4,4496],["Wilcox","2021-06-06",8790,5,4501],["Wilcox","2021-06-07",8790,8,4509],["Wilcox","2021-06-08",8790,6,4515],["Wilcox","2021-06-09",8790,25,4540],["Wilcox","2021-06-10",8790,6,4546],["Wilcox","2021-06-11",8790,7,4553],["Wilcox","2021-06-12",8790,7,4560],["Wilcox","2021-06-14",8790,6,4566],["Wilcox","2021-06-15",8790,17,4583],["Wilcox","2021-06-16",8790,22,4605],["Wilcox","2021-06-17",8790,3,4608],["Wilcox","2021-06-18",8790,9,4617],["Wilcox","2021-06-19",8790,3,4620],["Wilcox","2021-06-20",8790,4,4624],["Wilcox","2021-06-21",8790,4,4628],["Wilcox","2021-06-22",8790,7,4635],["Wilcox","2021-06-23",8790,24,4659],["Wilcox","2021-06-24",8790,5,4664],["Wilcox","2021-06-25",8790,7,4671],["Wilcox","2021-06-27",8790,3,4674],["Wilcox","2021-06-28",8790,5,4679],["Wilcox","2021-06-29",8790,2,4681],["Wilcox","2021-06-30",8790,17,4698],["Wilcox","2021-07-01",8790,10,4708],["Wilcox","2021-07-02",8790,5,4713],["Wilcox","2021-07-03",8790,2,4715],["Wilcox","2021-07-04",8790,1,4716],["Wilcox","2021-07-05",8790,2,4718],["Wilcox","2021-07-06",8790,5,4723],["Wilcox","2021-07-07",8790,18,4741],["Wilcox","2021-07-08",8790,4,4745],["Wilcox","2021-07-09",8790,8,4753],["Wilcox","2021-07-10",8790,6,4759],["Wilcox","2021-07-11",8790,1,4760],["Wilcox","2021-07-12",8790,3,4763],["Wilcox","2021-07-13",8790,6,4769],["Wilcox","2021-07-14",8790,12,4781],["Wilcox","2021-07-15",8790,8,4789],["Wilcox","2021-07-16",8790,3,4792],["Wilcox","2021-07-17",8790,2,4794],["Wilcox","2021-07-18",8790,1,4795],["Wilcox","2021-07-19",8790,15,4810],["Wilcox","2021-07-20",8790,12,4822],["Wilcox","2021-07-21",8790,26,4848],["Wilcox","2021-07-22",8790,13,4861],["Wilcox","2021-07-23",8790,14,4875],["Wilcox","2021-07-24",8790,4,4879],["Wilcox","2021-07-25",8790,2,4881],["Wilcox","2021-07-26",8790,9,4890],["Wilcox","2021-07-27",8790,12,4902],["Wilcox","2021-07-28",8790,63,4965],["Wilcox","2021-07-29",8790,7,4972],["Wilcox","2021-07-30",8790,19,4991],["Wilcox","2021-07-31",8790,7,4998],["Wilcox","2021-08-02",8790,12,5010],["Wilcox","2021-08-03",8790,12,5022],["Wilcox","2021-08-04",8790,40,5062],["Wilcox","2021-08-05",8790,8,5070],["Wilcox","2021-08-06",8790,31,5101],["Wilcox","2021-08-07",8790,8,5109],["Wilcox","2021-08-08",8790,6,5115],["Wilcox","2021-08-09",8790,27,5142],["Wilcox","2021-08-10",8790,21,5163],["Wilcox","2021-08-11",8790,47,5210],["Wilcox","2021-08-12",8790,20,5230],["Wilcox","2021-08-13",8790,21,5251],["Wilcox","2021-08-14",8790,12,5263],["Wilcox","2021-08-15",8790,2,5265],["Wilcox","2021-08-16",8790,21,5286],["Wilcox","2021-08-17",8790,17,5303],["Wilcox","2021-08-18",8790,65,5368],["Wilcox","2021-08-19",8790,24,5392],["Wilcox","2021-08-20",8790,30,5422],["Wilcox","2021-08-21",8790,7,5429],["Wilcox","2021-08-22",8790,5,5434],["Wilcox","2021-08-23",8790,16,5450],["Wilcox","2021-08-24",8790,25,5475],["Wilcox","2021-08-25",8790,56,5531],["Wilcox","2021-08-26",8790,21,5552],["Wilcox","2021-08-27",8790,28,5580],["Wilcox","2021-08-28",8790,6,5586],["Wilcox","2021-08-29",8790,7,5593],["Wilcox","2021-08-30",8790,32,5625],["Wilcox","2021-08-31",8790,16,5641],["Wilcox","2021-09-01",8790,43,5684],["Wilcox","2021-09-02",8790,29,5713],["Wilcox","2021-09-03",8790,24,5737],["Wilcox","2021-09-04",8790,16,5753],["Wilcox","2021-09-05",8790,5,5758],["Wilcox","2021-09-06",8790,4,5762],["Wilcox","2021-09-07",8790,26,5788],["Wilcox","2021-09-08",8790,63,5851],["Wilcox","2021-09-09",8790,25,5876],["Wilcox","2021-09-10",8790,23,5899],["Wilcox","2021-09-11",8790,4,5903],["Wilcox","2021-09-12",8790,2,5905],["Wilcox","2021-09-13",8790,26,5931],["Wilcox","2021-09-14",8790,20,5951],["Wilcox","2021-09-15",8790,37,5988],["Wilcox","2021-09-16",8790,14,6002],["Wilcox","2021-09-17",8790,19,6021],["Wilcox","2021-09-18",8790,3,6024],["Wilcox","2021-09-19",8790,4,6028],["Wilcox","2021-09-20",8790,29,6057],["Wilcox","2021-09-21",8790,12,6069],["Wilcox","2021-09-22",8790,34,6103],["Wilcox","2021-09-23",8790,24,6127],["Wilcox","2021-09-24",8790,13,6140],["Wilcox","2021-09-25",8790,3,6143],["Wilcox","2021-09-26",8790,3,6146],["Wilcox","2021-09-27",8790,7,6153],["Wilcox","2021-09-28",8790,6,6159],["Wilcox","2021-09-29",8790,24,6183],["Wilcox","2021-09-30",8790,7,6190],["Wilcox","2021-10-01",8790,12,6202],["Wilcox","2021-10-02",8790,7,6209],["Wilcox","2021-10-03",8790,2,6211],["Wilcox","2021-10-04",8790,18,6229],["Wilcox","2021-10-05",8790,13,6242],["Wilcox","2021-10-06",8790,16,6258],["Wilcox","2021-10-07",8790,9,6267],["Wilcox","2021-10-08",8790,13,6280],["Wilcox","2021-10-09",8790,3,6283],["Wilcox","2021-10-11",8790,8,6291],["Wilcox","2021-10-12",8790,5,6296],["Wilcox","2021-10-13",8790,27,6323],["Wilcox","2021-10-14",8790,13,6336],["Wilcox","2021-10-15",8790,6,6342],["Wilcox","2021-10-17",8790,3,6345],["Wilcox","2021-10-18",8790,14,6359],["Wilcox","2021-10-19",8790,3,6362],["Wilcox","2021-10-20",8790,12,6374],["Wilcox","2021-10-21",8790,3,6377],["Wilcox","2021-10-22",8790,4,6381],["Wilcox","2021-10-23",8790,7,6388],["Wilcox","2021-10-24",8790,2,6390],["Wilcox","2021-10-25",8790,15,6405],["Wilcox","2021-10-26",8790,16,6421],["Wilcox","2021-10-27",8790,59,6480],["Wilcox","2021-10-28",8790,10,6490],["Wilcox","2021-10-29",8790,17,6507],["Wilcox","2021-10-30",8790,2,6509],["Wilcox","2021-11-01",8790,50,6559],["Wilcox","2021-11-02",8790,11,6570],["Wilcox","2021-11-03",8790,40,6610],["Wilcox","2021-11-04",8790,14,6624],["Wilcox","2021-11-05",8790,9,6633],["Wilcox","2021-11-06",8790,2,6635],["Wilcox","2021-11-08",8790,27,6662],["Wilcox","2021-11-09",8790,11,6673],["Wilcox","2021-11-10",8790,32,6705],["Wilcox","2021-11-11",8790,18,6723],["Wilcox","2021-11-12",8790,11,6734],["Wilcox","2021-11-13",8790,6,6740],["Wilcox","2021-11-14",8790,2,6742],["Wilcox","2021-11-15",8790,28,6770],["Wilcox","2021-11-16",8790,7,6777],["Wilcox","2021-11-17",8790,45,6822],["Wilcox","2021-11-18",8790,21,6843],["Wilcox","2021-11-19",8790,15,6858],["Wilcox","2021-11-20",8790,7,6865],["Wilcox","2021-11-21",8790,4,6869],["Wilcox","2021-11-22",8790,36,6905],["Wilcox","2021-11-23",8790,14,6919],["Wilcox","2021-11-24",8790,16,6935],["Wilcox","2021-11-26",8790,3,6938],["Wilcox","2021-11-27",8790,2,6940],["Wilcox","2021-11-28",8790,1,6941],["Wilcox","2021-11-29",8790,44,6985],["Wilcox","2021-11-30",8790,11,6996],["Wilcox","2021-12-01",8790,68,7064],["Wilcox","2021-12-02",8790,13,7077],["Wilcox","2021-12-03",8790,18,7095],["Wilcox","2021-12-04",8790,7,7102],["Wilcox","2021-12-05",8790,4,7106],["Wilcox","2021-12-06",8790,38,7144],["Wilcox","2021-12-07",8790,6,7150],["Wilcox","2021-12-08",8790,36,7186],["Wilcox","2021-12-09",8790,14,7200],["Wilcox","2021-12-10",8790,6,7206],["Wilcox","2021-12-11",8790,5,7211],["Wilcox","2021-12-12",8790,1,7212],["Wilcox","2021-12-13",8790,41,7253],["Wilcox","2021-12-14",8790,4,7257],["Wilcox","2021-12-15",8790,28,7285],["Wilcox","2021-12-16",8790,5,7290],["Wilcox","2021-12-17",8790,13,7303],["Wilcox","2021-12-19",8790,1,7304],["Wilcox","2021-12-20",8790,27,7331],["Wilcox","2021-12-21",8790,14,7345],["Wilcox","2021-12-22",8790,28,7373],["Wilcox","2021-12-23",8790,5,7378],["Wilcox","2021-12-24",8790,1,7379],["Wilcox","2021-12-26",8790,1,7380],["Wilcox","2021-12-27",8790,18,7398],["Wilcox","2021-12-28",8790,10,7408],["Wilcox","2021-12-29",8790,55,7463],["Wilcox","2021-12-30",8790,17,7480],["Wilcox","2021-12-31",8790,7,7487],["Wilcox","2022-01-02",8790,2,7489],["Wilcox","2022-01-03",8790,3,7492],["Wilkes","2020-12-15",10014,1,1],["Wilkes","2020-12-17",10014,1,2],["Wilkes","2020-12-18",10014,2,4],["Wilkes","2020-12-19",10014,1,5],["Wilkes","2020-12-20",10014,1,6],["Wilkes","2020-12-22",10014,35,41],["Wilkes","2020-12-23",10014,8,49],["Wilkes","2020-12-24",10014,1,50],["Wilkes","2020-12-26",10014,1,51],["Wilkes","2020-12-28",10014,12,63],["Wilkes","2020-12-29",10014,9,72],["Wilkes","2020-12-30",10014,4,76],["Wilkes","2020-12-31",10014,4,80],["Wilkes","2021-01-04",10014,16,96],["Wilkes","2021-01-05",10014,11,107],["Wilkes","2021-01-06",10014,18,125],["Wilkes","2021-01-07",10014,13,138],["Wilkes","2021-01-08",10014,12,150],["Wilkes","2021-01-09",10014,3,153],["Wilkes","2021-01-10",10014,5,158],["Wilkes","2021-01-11",10014,19,177],["Wilkes","2021-01-12",10014,60,237],["Wilkes","2021-01-13",10014,56,293],["Wilkes","2021-01-14",10014,53,346],["Wilkes","2021-01-15",10014,40,386],["Wilkes","2021-01-16",10014,6,392],["Wilkes","2021-01-18",10014,14,406],["Wilkes","2021-01-19",10014,134,540],["Wilkes","2021-01-20",10014,27,567],["Wilkes","2021-01-21",10014,60,627],["Wilkes","2021-01-22",10014,33,660],["Wilkes","2021-01-23",10014,3,663],["Wilkes","2021-01-24",10014,23,686],["Wilkes","2021-01-25",10014,21,707],["Wilkes","2021-01-26",10014,15,722],["Wilkes","2021-01-27",10014,18,740],["Wilkes","2021-01-28",10014,116,856],["Wilkes","2021-01-29",10014,11,867],["Wilkes","2021-01-30",10014,2,869],["Wilkes","2021-01-31",10014,5,874],["Wilkes","2021-02-01",10014,26,900],["Wilkes","2021-02-02",10014,21,921],["Wilkes","2021-02-03",10014,29,950],["Wilkes","2021-02-04",10014,127,1077],["Wilkes","2021-02-05",10014,43,1120],["Wilkes","2021-02-06",10014,10,1130],["Wilkes","2021-02-07",10014,1,1131],["Wilkes","2021-02-08",10014,21,1152],["Wilkes","2021-02-09",10014,136,1288],["Wilkes","2021-02-10",10014,48,1336],["Wilkes","2021-02-11",10014,105,1441],["Wilkes","2021-02-12",10014,29,1470],["Wilkes","2021-02-13",10014,33,1503],["Wilkes","2021-02-14",10014,1,1504],["Wilkes","2021-02-15",10014,24,1528],["Wilkes","2021-02-16",10014,46,1574],["Wilkes","2021-02-17",10014,86,1660],["Wilkes","2021-02-18",10014,127,1787],["Wilkes","2021-02-19",10014,34,1821],["Wilkes","2021-02-20",10014,4,1825],["Wilkes","2021-02-21",10014,1,1826],["Wilkes","2021-02-22",10014,10,1836],["Wilkes","2021-02-23",10014,92,1928],["Wilkes","2021-02-24",10014,13,1941],["Wilkes","2021-02-25",10014,173,2114],["Wilkes","2021-02-26",10014,23,2137],["Wilkes","2021-02-27",10014,7,2144],["Wilkes","2021-02-28",10014,2,2146],["Wilkes","2021-03-01",10014,23,2169],["Wilkes","2021-03-02",10014,19,2188],["Wilkes","2021-03-03",10014,33,2221],["Wilkes","2021-03-04",10014,135,2356],["Wilkes","2021-03-05",10014,20,2376],["Wilkes","2021-03-06",10014,17,2393],["Wilkes","2021-03-07",10014,2,2395],["Wilkes","2021-03-08",10014,22,2417],["Wilkes","2021-03-09",10014,150,2567],["Wilkes","2021-03-10",10014,43,2610],["Wilkes","2021-03-11",10014,110,2720],["Wilkes","2021-03-12",10014,39,2759],["Wilkes","2021-03-13",10014,18,2777],["Wilkes","2021-03-14",10014,5,2782],["Wilkes","2021-03-15",10014,9,2791],["Wilkes","2021-03-16",10014,37,2828],["Wilkes","2021-03-17",10014,85,2913],["Wilkes","2021-03-18",10014,187,3100],["Wilkes","2021-03-19",10014,131,3231],["Wilkes","2021-03-20",10014,7,3238],["Wilkes","2021-03-21",10014,4,3242],["Wilkes","2021-03-22",10014,41,3283],["Wilkes","2021-03-23",10014,116,3399],["Wilkes","2021-03-24",10014,32,3431],["Wilkes","2021-03-25",10014,166,3597],["Wilkes","2021-03-26",10014,109,3706],["Wilkes","2021-03-27",10014,10,3716],["Wilkes","2021-03-28",10014,4,3720],["Wilkes","2021-03-29",10014,19,3739],["Wilkes","2021-03-30",10014,101,3840],["Wilkes","2021-03-31",10014,77,3917],["Wilkes","2021-04-01",10014,113,4030],["Wilkes","2021-04-02",10014,36,4066],["Wilkes","2021-04-03",10014,11,4077],["Wilkes","2021-04-04",10014,8,4085],["Wilkes","2021-04-05",10014,37,4122],["Wilkes","2021-04-06",10014,123,4245],["Wilkes","2021-04-07",10014,33,4278],["Wilkes","2021-04-08",10014,161,4439],["Wilkes","2021-04-09",10014,37,4476],["Wilkes","2021-04-10",10014,20,4496],["Wilkes","2021-04-11",10014,4,4500],["Wilkes","2021-04-12",10014,19,4519],["Wilkes","2021-04-13",10014,54,4573],["Wilkes","2021-04-14",10014,116,4689],["Wilkes","2021-04-15",10014,136,4825],["Wilkes","2021-04-16",10014,72,4897],["Wilkes","2021-04-17",10014,25,4922],["Wilkes","2021-04-18",10014,5,4927],["Wilkes","2021-04-19",10014,34,4961],["Wilkes","2021-04-20",10014,38,4999],["Wilkes","2021-04-21",10014,101,5100],["Wilkes","2021-04-22",10014,188,5288],["Wilkes","2021-04-23",10014,46,5334],["Wilkes","2021-04-24",10014,11,5345],["Wilkes","2021-04-25",10014,2,5347],["Wilkes","2021-04-26",10014,35,5382],["Wilkes","2021-04-27",10014,88,5470],["Wilkes","2021-04-28",10014,62,5532],["Wilkes","2021-04-29",10014,112,5644],["Wilkes","2021-04-30",10014,25,5669],["Wilkes","2021-05-01",10014,8,5677],["Wilkes","2021-05-02",10014,5,5682],["Wilkes","2021-05-03",10014,15,5697],["Wilkes","2021-05-04",10014,78,5775],["Wilkes","2021-05-05",10014,32,5807],["Wilkes","2021-05-06",10014,95,5902],["Wilkes","2021-05-07",10014,30,5932],["Wilkes","2021-05-08",10014,12,5944],["Wilkes","2021-05-09",10014,3,5947],["Wilkes","2021-05-10",10014,19,5966],["Wilkes","2021-05-11",10014,24,5990],["Wilkes","2021-05-12",10014,11,6001],["Wilkes","2021-05-13",10014,108,6109],["Wilkes","2021-05-14",10014,44,6153],["Wilkes","2021-05-15",10014,10,6163],["Wilkes","2021-05-16",10014,8,6171],["Wilkes","2021-05-17",10014,22,6193],["Wilkes","2021-05-18",10014,25,6218],["Wilkes","2021-05-19",10014,26,6244],["Wilkes","2021-05-20",10014,102,6346],["Wilkes","2021-05-21",10014,29,6375],["Wilkes","2021-05-22",10014,7,6382],["Wilkes","2021-05-23",10014,3,6385],["Wilkes","2021-05-24",10014,28,6413],["Wilkes","2021-05-25",10014,11,6424],["Wilkes","2021-05-26",10014,42,6466],["Wilkes","2021-05-27",10014,23,6489],["Wilkes","2021-05-28",10014,14,6503],["Wilkes","2021-05-29",10014,4,6507],["Wilkes","2021-05-30",10014,2,6509],["Wilkes","2021-05-31",10014,1,6510],["Wilkes","2021-06-01",10014,17,6527],["Wilkes","2021-06-02",10014,19,6546],["Wilkes","2021-06-03",10014,45,6591],["Wilkes","2021-06-04",10014,30,6621],["Wilkes","2021-06-05",10014,13,6634],["Wilkes","2021-06-06",10014,5,6639],["Wilkes","2021-06-07",10014,9,6648],["Wilkes","2021-06-08",10014,13,6661],["Wilkes","2021-06-09",10014,15,6676],["Wilkes","2021-06-10",10014,45,6721],["Wilkes","2021-06-11",10014,35,6756],["Wilkes","2021-06-12",10014,12,6768],["Wilkes","2021-06-13",10014,1,6769],["Wilkes","2021-06-14",10014,24,6793],["Wilkes","2021-06-15",10014,9,6802],["Wilkes","2021-06-16",10014,37,6839],["Wilkes","2021-06-17",10014,36,6875],["Wilkes","2021-06-18",10014,12,6887],["Wilkes","2021-06-19",10014,4,6891],["Wilkes","2021-06-20",10014,2,6893],["Wilkes","2021-06-21",10014,9,6902],["Wilkes","2021-06-22",10014,10,6912],["Wilkes","2021-06-23",10014,8,6920],["Wilkes","2021-06-24",10014,26,6946],["Wilkes","2021-06-25",10014,10,6956],["Wilkes","2021-06-26",10014,7,6963],["Wilkes","2021-06-27",10014,3,6966],["Wilkes","2021-06-28",10014,6,6972],["Wilkes","2021-06-29",10014,6,6978],["Wilkes","2021-06-30",10014,5,6983],["Wilkes","2021-07-01",10014,15,6998],["Wilkes","2021-07-02",10014,10,7008],["Wilkes","2021-07-03",10014,9,7017],["Wilkes","2021-07-05",10014,14,7031],["Wilkes","2021-07-06",10014,14,7045],["Wilkes","2021-07-07",10014,12,7057],["Wilkes","2021-07-08",10014,37,7094],["Wilkes","2021-07-09",10014,10,7104],["Wilkes","2021-07-10",10014,9,7113],["Wilkes","2021-07-11",10014,1,7114],["Wilkes","2021-07-12",10014,10,7124],["Wilkes","2021-07-13",10014,4,7128],["Wilkes","2021-07-14",10014,16,7144],["Wilkes","2021-07-15",10014,25,7169],["Wilkes","2021-07-16",10014,12,7181],["Wilkes","2021-07-17",10014,5,7186],["Wilkes","2021-07-18",10014,4,7190],["Wilkes","2021-07-19",10014,11,7201],["Wilkes","2021-07-20",10014,7,7208],["Wilkes","2021-07-21",10014,17,7225],["Wilkes","2021-07-22",10014,26,7251],["Wilkes","2021-07-23",10014,19,7270],["Wilkes","2021-07-24",10014,39,7309],["Wilkes","2021-07-25",10014,1,7310],["Wilkes","2021-07-26",10014,14,7324],["Wilkes","2021-07-27",10014,20,7344],["Wilkes","2021-07-28",10014,16,7360],["Wilkes","2021-07-29",10014,37,7397],["Wilkes","2021-07-30",10014,25,7422],["Wilkes","2021-07-31",10014,13,7435],["Wilkes","2021-08-01",10014,2,7437],["Wilkes","2021-08-02",10014,19,7456],["Wilkes","2021-08-03",10014,19,7475],["Wilkes","2021-08-04",10014,5,7480],["Wilkes","2021-08-05",10014,41,7521],["Wilkes","2021-08-06",10014,21,7542],["Wilkes","2021-08-07",10014,13,7555],["Wilkes","2021-08-08",10014,7,7562],["Wilkes","2021-08-09",10014,10,7572],["Wilkes","2021-08-10",10014,14,7586],["Wilkes","2021-08-11",10014,12,7598],["Wilkes","2021-08-12",10014,59,7657],["Wilkes","2021-08-13",10014,27,7684],["Wilkes","2021-08-14",10014,31,7715],["Wilkes","2021-08-15",10014,6,7721],["Wilkes","2021-08-16",10014,17,7738],["Wilkes","2021-08-17",10014,16,7754],["Wilkes","2021-08-18",10014,27,7781],["Wilkes","2021-08-19",10014,53,7834],["Wilkes","2021-08-20",10014,34,7868],["Wilkes","2021-08-21",10014,21,7889],["Wilkes","2021-08-22",10014,6,7895],["Wilkes","2021-08-23",10014,18,7913],["Wilkes","2021-08-24",10014,15,7928],["Wilkes","2021-08-25",10014,20,7948],["Wilkes","2021-08-26",10014,52,8000],["Wilkes","2021-08-27",10014,22,8022],["Wilkes","2021-08-28",10014,20,8042],["Wilkes","2021-08-29",10014,8,8050],["Wilkes","2021-08-30",10014,38,8088],["Wilkes","2021-08-31",10014,24,8112],["Wilkes","2021-09-01",10014,17,8129],["Wilkes","2021-09-02",10014,53,8182],["Wilkes","2021-09-03",10014,30,8212],["Wilkes","2021-09-04",10014,20,8232],["Wilkes","2021-09-05",10014,6,8238],["Wilkes","2021-09-06",10014,4,8242],["Wilkes","2021-09-07",10014,20,8262],["Wilkes","2021-09-08",10014,16,8278],["Wilkes","2021-09-09",10014,52,8330],["Wilkes","2021-09-10",10014,25,8355],["Wilkes","2021-09-11",10014,17,8372],["Wilkes","2021-09-12",10014,6,8378],["Wilkes","2021-09-13",10014,14,8392],["Wilkes","2021-09-14",10014,13,8405],["Wilkes","2021-09-15",10014,9,8414],["Wilkes","2021-09-16",10014,47,8461],["Wilkes","2021-09-17",10014,21,8482],["Wilkes","2021-09-18",10014,12,8494],["Wilkes","2021-09-19",10014,6,8500],["Wilkes","2021-09-20",10014,15,8515],["Wilkes","2021-09-21",10014,17,8532],["Wilkes","2021-09-22",10014,13,8545],["Wilkes","2021-09-23",10014,49,8594],["Wilkes","2021-09-24",10014,18,8612],["Wilkes","2021-09-25",10014,12,8624],["Wilkes","2021-09-26",10014,3,8627],["Wilkes","2021-09-27",10014,17,8644],["Wilkes","2021-09-28",10014,10,8654],["Wilkes","2021-09-29",10014,12,8666],["Wilkes","2021-09-30",10014,20,8686],["Wilkes","2021-10-01",10014,22,8708],["Wilkes","2021-10-02",10014,8,8716],["Wilkes","2021-10-03",10014,1,8717],["Wilkes","2021-10-04",10014,7,8724],["Wilkes","2021-10-05",10014,12,8736],["Wilkes","2021-10-06",10014,8,8744],["Wilkes","2021-10-07",10014,36,8780],["Wilkes","2021-10-08",10014,11,8791],["Wilkes","2021-10-09",10014,7,8798],["Wilkes","2021-10-10",10014,3,8801],["Wilkes","2021-10-11",10014,10,8811],["Wilkes","2021-10-12",10014,10,8821],["Wilkes","2021-10-13",10014,12,8833],["Wilkes","2021-10-14",10014,29,8862],["Wilkes","2021-10-15",10014,11,8873],["Wilkes","2021-10-16",10014,7,8880],["Wilkes","2021-10-17",10014,8,8888],["Wilkes","2021-10-18",10014,2,8890],["Wilkes","2021-10-19",10014,9,8899],["Wilkes","2021-10-20",10014,7,8906],["Wilkes","2021-10-21",10014,15,8921],["Wilkes","2021-10-22",10014,14,8935],["Wilkes","2021-10-23",10014,8,8943],["Wilkes","2021-10-24",10014,5,8948],["Wilkes","2021-10-25",10014,22,8970],["Wilkes","2021-10-26",10014,47,9017],["Wilkes","2021-10-27",10014,26,9043],["Wilkes","2021-10-28",10014,92,9135],["Wilkes","2021-10-29",10014,37,9172],["Wilkes","2021-10-30",10014,7,9179],["Wilkes","2021-10-31",10014,1,9180],["Wilkes","2021-11-01",10014,44,9224],["Wilkes","2021-11-02",10014,63,9287],["Wilkes","2021-11-03",10014,36,9323],["Wilkes","2021-11-04",10014,79,9402],["Wilkes","2021-11-05",10014,27,9429],["Wilkes","2021-11-06",10014,4,9433],["Wilkes","2021-11-07",10014,1,9434],["Wilkes","2021-11-08",10014,16,9450],["Wilkes","2021-11-09",10014,78,9528],["Wilkes","2021-11-10",10014,69,9597],["Wilkes","2021-11-11",10014,25,9622],["Wilkes","2021-11-12",10014,27,9649],["Wilkes","2021-11-13",10014,6,9655],["Wilkes","2021-11-14",10014,6,9661],["Wilkes","2021-11-15",10014,9,9670],["Wilkes","2021-11-16",10014,56,9726],["Wilkes","2021-11-17",10014,23,9749],["Wilkes","2021-11-18",10014,68,9817],["Wilkes","2021-11-19",10014,20,9837],["Wilkes","2021-11-20",10014,9,9846],["Wilkes","2021-11-21",10014,5,9851],["Wilkes","2021-11-22",10014,20,9871],["Wilkes","2021-11-23",10014,22,9893],["Wilkes","2021-11-24",10014,29,9922],["Wilkes","2021-11-26",10014,24,9946],["Wilkes","2021-11-27",10014,4,9950],["Wilkes","2021-11-28",10014,2,9952],["Wilkes","2021-11-29",10014,24,9976],["Wilkes","2021-11-30",10014,37,10013],["Wilkes","2021-12-01",10014,28,10041],["Wilkes","2021-12-02",10014,52,10093],["Wilkes","2021-12-03",10014,34,10127],["Wilkes","2021-12-04",10014,12,10139],["Wilkes","2021-12-05",10014,4,10143],["Wilkes","2021-12-06",10014,20,10163],["Wilkes","2021-12-07",10014,39,10202],["Wilkes","2021-12-08",10014,28,10230],["Wilkes","2021-12-09",10014,105,10335],["Wilkes","2021-12-10",10014,24,10359],["Wilkes","2021-12-11",10014,8,10367],["Wilkes","2021-12-12",10014,7,10374],["Wilkes","2021-12-13",10014,20,10394],["Wilkes","2021-12-14",10014,32,10426],["Wilkes","2021-12-15",10014,37,10463],["Wilkes","2021-12-16",10014,67,10530],["Wilkes","2021-12-17",10014,30,10560],["Wilkes","2021-12-18",10014,12,10572],["Wilkes","2021-12-19",10014,8,10580],["Wilkes","2021-12-20",10014,12,10592],["Wilkes","2021-12-21",10014,33,10625],["Wilkes","2021-12-22",10014,54,10679],["Wilkes","2021-12-23",10014,38,10717],["Wilkes","2021-12-24",10014,5,10722],["Wilkes","2021-12-26",10014,3,10725],["Wilkes","2021-12-27",10014,11,10736],["Wilkes","2021-12-28",10014,37,10773],["Wilkes","2021-12-29",10014,39,10812],["Wilkes","2021-12-30",10014,19,10831],["Wilkes","2021-12-31",10014,15,10846],["Wilkes","2022-01-01",10014,1,10847],["Wilkes","2022-01-02",10014,6,10853],["Wilkes","2022-01-03",10014,6,10859],["Wilkinson","2020-12-17",8919,1,1],["Wilkinson","2020-12-18",8919,1,2],["Wilkinson","2020-12-22",8919,4,6],["Wilkinson","2020-12-23",8919,1,7],["Wilkinson","2020-12-24",8919,2,9],["Wilkinson","2020-12-26",8919,7,16],["Wilkinson","2020-12-27",8919,4,20],["Wilkinson","2020-12-28",8919,45,65],["Wilkinson","2020-12-29",8919,7,72],["Wilkinson","2020-12-30",8919,17,89],["Wilkinson","2020-12-31",8919,11,100],["Wilkinson","2021-01-04",8919,26,126],["Wilkinson","2021-01-05",8919,7,133],["Wilkinson","2021-01-06",8919,20,153],["Wilkinson","2021-01-07",8919,19,172],["Wilkinson","2021-01-08",8919,14,186],["Wilkinson","2021-01-09",8919,1,187],["Wilkinson","2021-01-10",8919,2,189],["Wilkinson","2021-01-11",8919,37,226],["Wilkinson","2021-01-12",8919,17,243],["Wilkinson","2021-01-13",8919,64,307],["Wilkinson","2021-01-14",8919,102,409],["Wilkinson","2021-01-15",8919,62,471],["Wilkinson","2021-01-16",8919,42,513],["Wilkinson","2021-01-17",8919,5,518],["Wilkinson","2021-01-18",8919,55,573],["Wilkinson","2021-01-19",8919,20,593],["Wilkinson","2021-01-20",8919,100,693],["Wilkinson","2021-01-21",8919,113,806],["Wilkinson","2021-01-22",8919,46,852],["Wilkinson","2021-01-23",8919,7,859],["Wilkinson","2021-01-24",8919,3,862],["Wilkinson","2021-01-25",8919,71,933],["Wilkinson","2021-01-26",8919,17,950],["Wilkinson","2021-01-27",8919,58,1008],["Wilkinson","2021-01-28",8919,50,1058],["Wilkinson","2021-01-29",8919,35,1093],["Wilkinson","2021-01-31",8919,4,1097],["Wilkinson","2021-02-01",8919,45,1142],["Wilkinson","2021-02-02",8919,44,1186],["Wilkinson","2021-02-03",8919,54,1240],["Wilkinson","2021-02-04",8919,57,1297],["Wilkinson","2021-02-05",8919,45,1342],["Wilkinson","2021-02-06",8919,9,1351],["Wilkinson","2021-02-07",8919,1,1352],["Wilkinson","2021-02-08",8919,76,1428],["Wilkinson","2021-02-09",8919,29,1457],["Wilkinson","2021-02-10",8919,44,1501],["Wilkinson","2021-02-11",8919,99,1600],["Wilkinson","2021-02-12",8919,24,1624],["Wilkinson","2021-02-13",8919,10,1634],["Wilkinson","2021-02-14",8919,3,1637],["Wilkinson","2021-02-15",8919,69,1706],["Wilkinson","2021-02-16",8919,34,1740],["Wilkinson","2021-02-17",8919,74,1814],["Wilkinson","2021-02-18",8919,73,1887],["Wilkinson","2021-02-19",8919,41,1928],["Wilkinson","2021-02-20",8919,9,1937],["Wilkinson","2021-02-21",8919,2,1939],["Wilkinson","2021-02-22",8919,39,1978],["Wilkinson","2021-02-23",8919,33,2011],["Wilkinson","2021-02-24",8919,49,2060],["Wilkinson","2021-02-25",8919,144,2204],["Wilkinson","2021-02-26",8919,99,2303],["Wilkinson","2021-02-27",8919,16,2319],["Wilkinson","2021-02-28",8919,4,2323],["Wilkinson","2021-03-01",8919,113,2436],["Wilkinson","2021-03-02",8919,72,2508],["Wilkinson","2021-03-03",8919,62,2570],["Wilkinson","2021-03-04",8919,141,2711],["Wilkinson","2021-03-05",8919,65,2776],["Wilkinson","2021-03-07",8919,1,2777],["Wilkinson","2021-03-08",8919,123,2900],["Wilkinson","2021-03-09",8919,29,2929],["Wilkinson","2021-03-10",8919,69,2998],["Wilkinson","2021-03-11",8919,84,3082],["Wilkinson","2021-03-12",8919,47,3129],["Wilkinson","2021-03-13",8919,15,3144],["Wilkinson","2021-03-14",8919,1,3145],["Wilkinson","2021-03-15",8919,97,3242],["Wilkinson","2021-03-16",8919,41,3283],["Wilkinson","2021-03-17",8919,136,3419],["Wilkinson","2021-03-18",8919,35,3454],["Wilkinson","2021-03-19",8919,149,3603],["Wilkinson","2021-03-20",8919,4,3607],["Wilkinson","2021-03-21",8919,2,3609],["Wilkinson","2021-03-22",8919,102,3711],["Wilkinson","2021-03-23",8919,26,3737],["Wilkinson","2021-03-24",8919,84,3821],["Wilkinson","2021-03-25",8919,94,3915],["Wilkinson","2021-03-26",8919,96,4011],["Wilkinson","2021-03-27",8919,23,4034],["Wilkinson","2021-03-28",8919,4,4038],["Wilkinson","2021-03-29",8919,130,4168],["Wilkinson","2021-03-30",8919,73,4241],["Wilkinson","2021-03-31",8919,49,4290],["Wilkinson","2021-04-01",8919,150,4440],["Wilkinson","2021-04-02",8919,46,4486],["Wilkinson","2021-04-03",8919,16,4502],["Wilkinson","2021-04-04",8919,5,4507],["Wilkinson","2021-04-05",8919,54,4561],["Wilkinson","2021-04-06",8919,73,4634],["Wilkinson","2021-04-07",8919,46,4680],["Wilkinson","2021-04-08",8919,99,4779],["Wilkinson","2021-04-09",8919,60,4839],["Wilkinson","2021-04-10",8919,11,4850],["Wilkinson","2021-04-11",8919,3,4853],["Wilkinson","2021-04-12",8919,91,4944],["Wilkinson","2021-04-13",8919,36,4980],["Wilkinson","2021-04-14",8919,115,5095],["Wilkinson","2021-04-15",8919,34,5129],["Wilkinson","2021-04-16",8919,53,5182],["Wilkinson","2021-04-17",8919,9,5191],["Wilkinson","2021-04-18",8919,4,5195],["Wilkinson","2021-04-19",8919,191,5386],["Wilkinson","2021-04-20",8919,30,5416],["Wilkinson","2021-04-21",8919,47,5463],["Wilkinson","2021-04-22",8919,123,5586],["Wilkinson","2021-04-23",8919,31,5617],["Wilkinson","2021-04-24",8919,5,5622],["Wilkinson","2021-04-25",8919,4,5626],["Wilkinson","2021-04-26",8919,82,5708],["Wilkinson","2021-04-27",8919,65,5773],["Wilkinson","2021-04-28",8919,27,5800],["Wilkinson","2021-04-29",8919,65,5865],["Wilkinson","2021-04-30",8919,69,5934],["Wilkinson","2021-05-01",8919,9,5943],["Wilkinson","2021-05-02",8919,4,5947],["Wilkinson","2021-05-03",8919,19,5966],["Wilkinson","2021-05-04",8919,12,5978],["Wilkinson","2021-05-05",8919,66,6044],["Wilkinson","2021-05-06",8919,46,6090],["Wilkinson","2021-05-07",8919,18,6108],["Wilkinson","2021-05-08",8919,4,6112],["Wilkinson","2021-05-09",8919,3,6115],["Wilkinson","2021-05-10",8919,14,6129],["Wilkinson","2021-05-11",8919,22,6151],["Wilkinson","2021-05-12",8919,48,6199],["Wilkinson","2021-05-13",8919,31,6230],["Wilkinson","2021-05-14",8919,12,6242],["Wilkinson","2021-05-15",8919,8,6250],["Wilkinson","2021-05-16",8919,9,6259],["Wilkinson","2021-05-17",8919,21,6280],["Wilkinson","2021-05-18",8919,18,6298],["Wilkinson","2021-05-19",8919,25,6323],["Wilkinson","2021-05-20",8919,75,6398],["Wilkinson","2021-05-21",8919,20,6418],["Wilkinson","2021-05-22",8919,7,6425],["Wilkinson","2021-05-23",8919,5,6430],["Wilkinson","2021-05-24",8919,10,6440],["Wilkinson","2021-05-25",8919,32,6472],["Wilkinson","2021-05-26",8919,13,6485],["Wilkinson","2021-05-27",8919,21,6506],["Wilkinson","2021-05-28",8919,16,6522],["Wilkinson","2021-05-29",8919,7,6529],["Wilkinson","2021-05-30",8919,1,6530],["Wilkinson","2021-05-31",8919,4,6534],["Wilkinson","2021-06-01",8919,17,6551],["Wilkinson","2021-06-02",8919,63,6614],["Wilkinson","2021-06-03",8919,28,6642],["Wilkinson","2021-06-04",8919,11,6653],["Wilkinson","2021-06-05",8919,6,6659],["Wilkinson","2021-06-06",8919,10,6669],["Wilkinson","2021-06-07",8919,10,6679],["Wilkinson","2021-06-08",8919,14,6693],["Wilkinson","2021-06-09",8919,21,6714],["Wilkinson","2021-06-10",8919,22,6736],["Wilkinson","2021-06-11",8919,9,6745],["Wilkinson","2021-06-12",8919,6,6751],["Wilkinson","2021-06-13",8919,3,6754],["Wilkinson","2021-06-14",8919,8,6762],["Wilkinson","2021-06-15",8919,6,6768],["Wilkinson","2021-06-16",8919,19,6787],["Wilkinson","2021-06-17",8919,23,6810],["Wilkinson","2021-06-18",8919,14,6824],["Wilkinson","2021-06-19",8919,4,6828],["Wilkinson","2021-06-20",8919,3,6831],["Wilkinson","2021-06-21",8919,5,6836],["Wilkinson","2021-06-22",8919,7,6843],["Wilkinson","2021-06-23",8919,29,6872],["Wilkinson","2021-06-24",8919,12,6884],["Wilkinson","2021-06-25",8919,9,6893],["Wilkinson","2021-06-26",8919,3,6896],["Wilkinson","2021-06-27",8919,3,6899],["Wilkinson","2021-06-28",8919,9,6908],["Wilkinson","2021-06-29",8919,13,6921],["Wilkinson","2021-06-30",8919,19,6940],["Wilkinson","2021-07-01",8919,26,6966],["Wilkinson","2021-07-02",8919,9,6975],["Wilkinson","2021-07-03",8919,5,6980],["Wilkinson","2021-07-05",8919,10,6990],["Wilkinson","2021-07-06",8919,4,6994],["Wilkinson","2021-07-07",8919,4,6998],["Wilkinson","2021-07-08",8919,13,7011],["Wilkinson","2021-07-09",8919,7,7018],["Wilkinson","2021-07-10",8919,7,7025],["Wilkinson","2021-07-11",8919,3,7028],["Wilkinson","2021-07-12",8919,4,7032],["Wilkinson","2021-07-13",8919,13,7045],["Wilkinson","2021-07-14",8919,8,7053],["Wilkinson","2021-07-15",8919,11,7064],["Wilkinson","2021-07-16",8919,9,7073],["Wilkinson","2021-07-17",8919,3,7076],["Wilkinson","2021-07-18",8919,1,7077],["Wilkinson","2021-07-19",8919,10,7087],["Wilkinson","2021-07-20",8919,7,7094],["Wilkinson","2021-07-21",8919,30,7124],["Wilkinson","2021-07-22",8919,32,7156],["Wilkinson","2021-07-23",8919,16,7172],["Wilkinson","2021-07-24",8919,19,7191],["Wilkinson","2021-07-25",8919,6,7197],["Wilkinson","2021-07-26",8919,19,7216],["Wilkinson","2021-07-27",8919,17,7233],["Wilkinson","2021-07-28",8919,18,7251],["Wilkinson","2021-07-29",8919,59,7310],["Wilkinson","2021-07-30",8919,23,7333],["Wilkinson","2021-07-31",8919,22,7355],["Wilkinson","2021-08-01",8919,12,7367],["Wilkinson","2021-08-02",8919,22,7389],["Wilkinson","2021-08-03",8919,25,7414],["Wilkinson","2021-08-04",8919,19,7433],["Wilkinson","2021-08-05",8919,35,7468],["Wilkinson","2021-08-06",8919,19,7487],["Wilkinson","2021-08-07",8919,5,7492],["Wilkinson","2021-08-08",8919,7,7499],["Wilkinson","2021-08-09",8919,20,7519],["Wilkinson","2021-08-10",8919,26,7545],["Wilkinson","2021-08-11",8919,22,7567],["Wilkinson","2021-08-12",8919,30,7597],["Wilkinson","2021-08-13",8919,27,7624],["Wilkinson","2021-08-14",8919,13,7637],["Wilkinson","2021-08-15",8919,9,7646],["Wilkinson","2021-08-16",8919,27,7673],["Wilkinson","2021-08-17",8919,19,7692],["Wilkinson","2021-08-18",8919,49,7741],["Wilkinson","2021-08-19",8919,72,7813],["Wilkinson","2021-08-20",8919,26,7839],["Wilkinson","2021-08-21",8919,15,7854],["Wilkinson","2021-08-22",8919,9,7863],["Wilkinson","2021-08-23",8919,22,7885],["Wilkinson","2021-08-24",8919,37,7922],["Wilkinson","2021-08-25",8919,25,7947],["Wilkinson","2021-08-26",8919,65,8012],["Wilkinson","2021-08-27",8919,25,8037],["Wilkinson","2021-08-28",8919,15,8052],["Wilkinson","2021-08-29",8919,15,8067],["Wilkinson","2021-08-30",8919,24,8091],["Wilkinson","2021-08-31",8919,31,8122],["Wilkinson","2021-09-01",8919,34,8156],["Wilkinson","2021-09-02",8919,66,8222],["Wilkinson","2021-09-03",8919,24,8246],["Wilkinson","2021-09-04",8919,12,8258],["Wilkinson","2021-09-05",8919,9,8267],["Wilkinson","2021-09-06",8919,9,8276],["Wilkinson","2021-09-07",8919,21,8297],["Wilkinson","2021-09-08",8919,35,8332],["Wilkinson","2021-09-09",8919,45,8377],["Wilkinson","2021-09-10",8919,22,8399],["Wilkinson","2021-09-11",8919,7,8406],["Wilkinson","2021-09-12",8919,8,8414],["Wilkinson","2021-09-13",8919,17,8431],["Wilkinson","2021-09-14",8919,22,8453],["Wilkinson","2021-09-15",8919,46,8499],["Wilkinson","2021-09-16",8919,59,8558],["Wilkinson","2021-09-17",8919,23,8581],["Wilkinson","2021-09-18",8919,8,8589],["Wilkinson","2021-09-19",8919,5,8594],["Wilkinson","2021-09-20",8919,11,8605],["Wilkinson","2021-09-21",8919,19,8624],["Wilkinson","2021-09-22",8919,8,8632],["Wilkinson","2021-09-23",8919,38,8670],["Wilkinson","2021-09-24",8919,16,8686],["Wilkinson","2021-09-25",8919,3,8689],["Wilkinson","2021-09-26",8919,3,8692],["Wilkinson","2021-09-27",8919,9,8701],["Wilkinson","2021-09-28",8919,18,8719],["Wilkinson","2021-09-29",8919,42,8761],["Wilkinson","2021-09-30",8919,34,8795],["Wilkinson","2021-10-01",8919,26,8821],["Wilkinson","2021-10-02",8919,8,8829],["Wilkinson","2021-10-03",8919,3,8832],["Wilkinson","2021-10-04",8919,16,8848],["Wilkinson","2021-10-05",8919,10,8858],["Wilkinson","2021-10-06",8919,14,8872],["Wilkinson","2021-10-07",8919,34,8906],["Wilkinson","2021-10-08",8919,9,8915],["Wilkinson","2021-10-09",8919,3,8918],["Wilkinson","2021-10-10",8919,3,8921],["Wilkinson","2021-10-11",8919,7,8928],["Wilkinson","2021-10-12",8919,13,8941],["Wilkinson","2021-10-13",8919,22,8963],["Wilkinson","2021-10-14",8919,14,8977],["Wilkinson","2021-10-15",8919,15,8992],["Wilkinson","2021-10-16",8919,2,8994],["Wilkinson","2021-10-17",8919,3,8997],["Wilkinson","2021-10-18",8919,5,9002],["Wilkinson","2021-10-19",8919,8,9010],["Wilkinson","2021-10-20",8919,14,9024],["Wilkinson","2021-10-21",8919,14,9038],["Wilkinson","2021-10-22",8919,14,9052],["Wilkinson","2021-10-23",8919,7,9059],["Wilkinson","2021-10-24",8919,3,9062],["Wilkinson","2021-10-25",8919,6,9068],["Wilkinson","2021-10-26",8919,17,9085],["Wilkinson","2021-10-27",8919,150,9235],["Wilkinson","2021-10-28",8919,105,9340],["Wilkinson","2021-10-29",8919,15,9355],["Wilkinson","2021-10-30",8919,3,9358],["Wilkinson","2021-10-31",8919,5,9363],["Wilkinson","2021-11-01",8919,14,9377],["Wilkinson","2021-11-02",8919,8,9385],["Wilkinson","2021-11-03",8919,118,9503],["Wilkinson","2021-11-04",8919,109,9612],["Wilkinson","2021-11-05",8919,14,9626],["Wilkinson","2021-11-06",8919,5,9631],["Wilkinson","2021-11-07",8919,8,9639],["Wilkinson","2021-11-08",8919,21,9660],["Wilkinson","2021-11-09",8919,14,9674],["Wilkinson","2021-11-10",8919,89,9763],["Wilkinson","2021-11-11",8919,8,9771],["Wilkinson","2021-11-12",8919,23,9794],["Wilkinson","2021-11-13",8919,8,9802],["Wilkinson","2021-11-14",8919,4,9806],["Wilkinson","2021-11-15",8919,24,9830],["Wilkinson","2021-11-16",8919,14,9844],["Wilkinson","2021-11-17",8919,78,9922],["Wilkinson","2021-11-18",8919,89,10011],["Wilkinson","2021-11-19",8919,14,10025],["Wilkinson","2021-11-20",8919,7,10032],["Wilkinson","2021-11-21",8919,5,10037],["Wilkinson","2021-11-22",8919,14,10051],["Wilkinson","2021-11-23",8919,20,10071],["Wilkinson","2021-11-24",8919,12,10083],["Wilkinson","2021-11-26",8919,5,10088],["Wilkinson","2021-11-27",8919,2,10090],["Wilkinson","2021-11-28",8919,5,10095],["Wilkinson","2021-11-29",8919,13,10108],["Wilkinson","2021-11-30",8919,21,10129],["Wilkinson","2021-12-01",8919,68,10197],["Wilkinson","2021-12-02",8919,74,10271],["Wilkinson","2021-12-03",8919,24,10295],["Wilkinson","2021-12-04",8919,4,10299],["Wilkinson","2021-12-05",8919,1,10300],["Wilkinson","2021-12-06",8919,11,10311],["Wilkinson","2021-12-07",8919,13,10324],["Wilkinson","2021-12-08",8919,105,10429],["Wilkinson","2021-12-09",8919,54,10483],["Wilkinson","2021-12-10",8919,24,10507],["Wilkinson","2021-12-11",8919,7,10514],["Wilkinson","2021-12-12",8919,9,10523],["Wilkinson","2021-12-13",8919,7,10530],["Wilkinson","2021-12-14",8919,10,10540],["Wilkinson","2021-12-15",8919,60,10600],["Wilkinson","2021-12-16",8919,57,10657],["Wilkinson","2021-12-17",8919,13,10670],["Wilkinson","2021-12-18",8919,4,10674],["Wilkinson","2021-12-19",8919,5,10679],["Wilkinson","2021-12-20",8919,14,10693],["Wilkinson","2021-12-21",8919,18,10711],["Wilkinson","2021-12-22",8919,20,10731],["Wilkinson","2021-12-23",8919,45,10776],["Wilkinson","2021-12-26",8919,2,10778],["Wilkinson","2021-12-27",8919,15,10793],["Wilkinson","2021-12-28",8919,24,10817],["Wilkinson","2021-12-29",8919,80,10897],["Wilkinson","2021-12-30",8919,76,10973],["Wilkinson","2021-12-31",8919,8,10981],["Wilkinson","2022-01-01",8919,1,10982],["Wilkinson","2022-01-02",8919,2,10984],["Wilkinson","2022-01-03",8919,5,10989],["Worth","2020-12-12",20142,1,1],["Worth","2020-12-17",20142,10,11],["Worth","2020-12-18",20142,26,37],["Worth","2020-12-19",20142,7,44],["Worth","2020-12-20",20142,2,46],["Worth","2020-12-21",20142,10,56],["Worth","2020-12-22",20142,13,69],["Worth","2020-12-23",20142,46,115],["Worth","2020-12-24",20142,7,122],["Worth","2020-12-26",20142,1,123],["Worth","2020-12-27",20142,2,125],["Worth","2020-12-28",20142,21,146],["Worth","2020-12-29",20142,30,176],["Worth","2020-12-30",20142,34,210],["Worth","2020-12-31",20142,19,229],["Worth","2021-01-01",20142,1,230],["Worth","2021-01-02",20142,3,233],["Worth","2021-01-03",20142,2,235],["Worth","2021-01-04",20142,17,252],["Worth","2021-01-05",20142,35,287],["Worth","2021-01-06",20142,36,323],["Worth","2021-01-07",20142,29,352],["Worth","2021-01-08",20142,50,402],["Worth","2021-01-09",20142,46,448],["Worth","2021-01-11",20142,153,601],["Worth","2021-01-12",20142,120,721],["Worth","2021-01-13",20142,161,882],["Worth","2021-01-14",20142,182,1064],["Worth","2021-01-15",20142,121,1185],["Worth","2021-01-16",20142,32,1217],["Worth","2021-01-17",20142,5,1222],["Worth","2021-01-18",20142,195,1417],["Worth","2021-01-19",20142,228,1645],["Worth","2021-01-20",20142,193,1838],["Worth","2021-01-21",20142,218,2056],["Worth","2021-01-22",20142,90,2146],["Worth","2021-01-23",20142,47,2193],["Worth","2021-01-24",20142,1,2194],["Worth","2021-01-25",20142,153,2347],["Worth","2021-01-26",20142,167,2514],["Worth","2021-01-27",20142,99,2613],["Worth","2021-01-28",20142,147,2760],["Worth","2021-01-29",20142,46,2806],["Worth","2021-01-30",20142,57,2863],["Worth","2021-01-31",20142,4,2867],["Worth","2021-02-01",20142,144,3011],["Worth","2021-02-02",20142,145,3156],["Worth","2021-02-03",20142,145,3301],["Worth","2021-02-04",20142,192,3493],["Worth","2021-02-05",20142,72,3565],["Worth","2021-02-06",20142,73,3638],["Worth","2021-02-07",20142,11,3649],["Worth","2021-02-08",20142,204,3853],["Worth","2021-02-09",20142,242,4095],["Worth","2021-02-10",20142,224,4319],["Worth","2021-02-11",20142,221,4540],["Worth","2021-02-12",20142,107,4647],["Worth","2021-02-13",20142,15,4662],["Worth","2021-02-14",20142,7,4669],["Worth","2021-02-15",20142,176,4845],["Worth","2021-02-16",20142,200,5045],["Worth","2021-02-17",20142,146,5191],["Worth","2021-02-18",20142,201,5392],["Worth","2021-02-19",20142,90,5482],["Worth","2021-02-20",20142,49,5531],["Worth","2021-02-21",20142,13,5544],["Worth","2021-02-22",20142,111,5655],["Worth","2021-02-23",20142,126,5781],["Worth","2021-02-24",20142,100,5881],["Worth","2021-02-25",20142,142,6023],["Worth","2021-02-26",20142,57,6080],["Worth","2021-02-27",20142,6,6086],["Worth","2021-02-28",20142,4,6090],["Worth","2021-03-01",20142,125,6215],["Worth","2021-03-02",20142,121,6336],["Worth","2021-03-03",20142,86,6422],["Worth","2021-03-04",20142,124,6546],["Worth","2021-03-05",20142,43,6589],["Worth","2021-03-06",20142,38,6627],["Worth","2021-03-07",20142,3,6630],["Worth","2021-03-08",20142,57,6687],["Worth","2021-03-09",20142,125,6812],["Worth","2021-03-10",20142,91,6903],["Worth","2021-03-11",20142,61,6964],["Worth","2021-03-12",20142,169,7133],["Worth","2021-03-13",20142,27,7160],["Worth","2021-03-14",20142,18,7178],["Worth","2021-03-15",20142,57,7235],["Worth","2021-03-16",20142,191,7426],["Worth","2021-03-17",20142,116,7542],["Worth","2021-03-18",20142,64,7606],["Worth","2021-03-19",20142,64,7670],["Worth","2021-03-20",20142,33,7703],["Worth","2021-03-21",20142,11,7714],["Worth","2021-03-22",20142,56,7770],["Worth","2021-03-23",20142,144,7914],["Worth","2021-03-24",20142,92,8006],["Worth","2021-03-25",20142,83,8089],["Worth","2021-03-26",20142,85,8174],["Worth","2021-03-27",20142,15,8189],["Worth","2021-03-28",20142,9,8198],["Worth","2021-03-29",20142,52,8250],["Worth","2021-03-30",20142,195,8445],["Worth","2021-03-31",20142,134,8579],["Worth","2021-04-01",20142,87,8666],["Worth","2021-04-02",20142,105,8771],["Worth","2021-04-03",20142,26,8797],["Worth","2021-04-04",20142,3,8800],["Worth","2021-04-05",20142,62,8862],["Worth","2021-04-06",20142,167,9029],["Worth","2021-04-07",20142,135,9164],["Worth","2021-04-08",20142,89,9253],["Worth","2021-04-09",20142,73,9326],["Worth","2021-04-10",20142,24,9350],["Worth","2021-04-11",20142,16,9366],["Worth","2021-04-12",20142,66,9432],["Worth","2021-04-13",20142,184,9616],["Worth","2021-04-14",20142,59,9675],["Worth","2021-04-15",20142,49,9724],["Worth","2021-04-16",20142,137,9861],["Worth","2021-04-17",20142,29,9890],["Worth","2021-04-18",20142,4,9894],["Worth","2021-04-19",20142,53,9947],["Worth","2021-04-20",20142,167,10114],["Worth","2021-04-21",20142,87,10201],["Worth","2021-04-22",20142,67,10268],["Worth","2021-04-23",20142,74,10342],["Worth","2021-04-24",20142,7,10349],["Worth","2021-04-25",20142,7,10356],["Worth","2021-04-26",20142,31,10387],["Worth","2021-04-27",20142,184,10571],["Worth","2021-04-28",20142,48,10619],["Worth","2021-04-29",20142,63,10682],["Worth","2021-04-30",20142,37,10719],["Worth","2021-05-01",20142,30,10749],["Worth","2021-05-02",20142,22,10771],["Worth","2021-05-03",20142,22,10793],["Worth","2021-05-04",20142,69,10862],["Worth","2021-05-05",20142,99,10961],["Worth","2021-05-06",20142,57,11018],["Worth","2021-05-07",20142,28,11046],["Worth","2021-05-08",20142,17,11063],["Worth","2021-05-09",20142,8,11071],["Worth","2021-05-10",20142,24,11095],["Worth","2021-05-11",20142,59,11154],["Worth","2021-05-12",20142,69,11223],["Worth","2021-05-13",20142,38,11261],["Worth","2021-05-14",20142,36,11297],["Worth","2021-05-15",20142,20,11317],["Worth","2021-05-16",20142,8,11325],["Worth","2021-05-17",20142,23,11348],["Worth","2021-05-18",20142,57,11405],["Worth","2021-05-19",20142,78,11483],["Worth","2021-05-20",20142,57,11540],["Worth","2021-05-21",20142,30,11570],["Worth","2021-05-22",20142,22,11592],["Worth","2021-05-23",20142,8,11600],["Worth","2021-05-24",20142,30,11630],["Worth","2021-05-25",20142,63,11693],["Worth","2021-05-26",20142,29,11722],["Worth","2021-05-27",20142,29,11751],["Worth","2021-05-28",20142,24,11775],["Worth","2021-05-29",20142,4,11779],["Worth","2021-05-30",20142,9,11788],["Worth","2021-05-31",20142,8,11796],["Worth","2021-06-01",20142,48,11844],["Worth","2021-06-02",20142,26,11870],["Worth","2021-06-03",20142,43,11913],["Worth","2021-06-04",20142,22,11935],["Worth","2021-06-05",20142,19,11954],["Worth","2021-06-06",20142,17,11971],["Worth","2021-06-07",20142,18,11989],["Worth","2021-06-08",20142,28,12017],["Worth","2021-06-09",20142,25,12042],["Worth","2021-06-10",20142,36,12078],["Worth","2021-06-11",20142,20,12098],["Worth","2021-06-12",20142,14,12112],["Worth","2021-06-13",20142,3,12115],["Worth","2021-06-14",20142,26,12141],["Worth","2021-06-15",20142,53,12194],["Worth","2021-06-16",20142,26,12220],["Worth","2021-06-17",20142,31,12251],["Worth","2021-06-18",20142,23,12274],["Worth","2021-06-19",20142,6,12280],["Worth","2021-06-20",20142,9,12289],["Worth","2021-06-21",20142,16,12305],["Worth","2021-06-22",20142,34,12339],["Worth","2021-06-23",20142,19,12358],["Worth","2021-06-24",20142,33,12391],["Worth","2021-06-25",20142,17,12408],["Worth","2021-06-26",20142,13,12421],["Worth","2021-06-28",20142,16,12437],["Worth","2021-06-29",20142,40,12477],["Worth","2021-06-30",20142,15,12492],["Worth","2021-07-01",20142,41,12533],["Worth","2021-07-02",20142,21,12554],["Worth","2021-07-03",20142,4,12558],["Worth","2021-07-04",20142,2,12560],["Worth","2021-07-05",20142,10,12570],["Worth","2021-07-06",20142,31,12601],["Worth","2021-07-07",20142,15,12616],["Worth","2021-07-08",20142,15,12631],["Worth","2021-07-09",20142,26,12657],["Worth","2021-07-10",20142,5,12662],["Worth","2021-07-11",20142,2,12664],["Worth","2021-07-12",20142,24,12688],["Worth","2021-07-13",20142,33,12721],["Worth","2021-07-14",20142,25,12746],["Worth","2021-07-15",20142,30,12776],["Worth","2021-07-16",20142,19,12795],["Worth","2021-07-17",20142,19,12814],["Worth","2021-07-18",20142,5,12819],["Worth","2021-07-19",20142,12,12831],["Worth","2021-07-20",20142,38,12869],["Worth","2021-07-21",20142,24,12893],["Worth","2021-07-22",20142,35,12928],["Worth","2021-07-23",20142,30,12958],["Worth","2021-07-24",20142,19,12977],["Worth","2021-07-25",20142,7,12984],["Worth","2021-07-26",20142,21,13005],["Worth","2021-07-27",20142,65,13070],["Worth","2021-07-28",20142,45,13115],["Worth","2021-07-29",20142,85,13200],["Worth","2021-07-30",20142,49,13249],["Worth","2021-07-31",20142,21,13270],["Worth","2021-08-01",20142,8,13278],["Worth","2021-08-02",20142,29,13307],["Worth","2021-08-03",20142,77,13384],["Worth","2021-08-04",20142,37,13421],["Worth","2021-08-05",20142,82,13503],["Worth","2021-08-06",20142,57,13560],["Worth","2021-08-07",20142,36,13596],["Worth","2021-08-08",20142,20,13616],["Worth","2021-08-09",20142,39,13655],["Worth","2021-08-10",20142,89,13744],["Worth","2021-08-11",20142,64,13808],["Worth","2021-08-12",20142,80,13888],["Worth","2021-08-13",20142,46,13934],["Worth","2021-08-14",20142,35,13969],["Worth","2021-08-15",20142,31,14000],["Worth","2021-08-16",20142,49,14049],["Worth","2021-08-17",20142,109,14158],["Worth","2021-08-18",20142,78,14236],["Worth","2021-08-19",20142,99,14335],["Worth","2021-08-20",20142,70,14405],["Worth","2021-08-21",20142,31,14436],["Worth","2021-08-22",20142,13,14449],["Worth","2021-08-23",20142,45,14494],["Worth","2021-08-24",20142,117,14611],["Worth","2021-08-25",20142,50,14661],["Worth","2021-08-26",20142,124,14785],["Worth","2021-08-27",20142,74,14859],["Worth","2021-08-28",20142,46,14905],["Worth","2021-08-29",20142,23,14928],["Worth","2021-08-30",20142,54,14982],["Worth","2021-08-31",20142,114,15096],["Worth","2021-09-01",20142,74,15170],["Worth","2021-09-02",20142,74,15244],["Worth","2021-09-03",20142,82,15326],["Worth","2021-09-04",20142,40,15366],["Worth","2021-09-05",20142,20,15386],["Worth","2021-09-06",20142,17,15403],["Worth","2021-09-07",20142,88,15491],["Worth","2021-09-08",20142,59,15550],["Worth","2021-09-09",20142,102,15652],["Worth","2021-09-10",20142,65,15717],["Worth","2021-09-11",20142,28,15745],["Worth","2021-09-12",20142,29,15774],["Worth","2021-09-13",20142,40,15814],["Worth","2021-09-14",20142,66,15880],["Worth","2021-09-15",20142,41,15921],["Worth","2021-09-16",20142,56,15977],["Worth","2021-09-17",20142,47,16024],["Worth","2021-09-18",20142,32,16056],["Worth","2021-09-19",20142,8,16064],["Worth","2021-09-20",20142,24,16088],["Worth","2021-09-21",20142,72,16160],["Worth","2021-09-22",20142,31,16191],["Worth","2021-09-23",20142,66,16257],["Worth","2021-09-24",20142,55,16312],["Worth","2021-09-25",20142,27,16339],["Worth","2021-09-26",20142,11,16350],["Worth","2021-09-27",20142,27,16377],["Worth","2021-09-28",20142,65,16442],["Worth","2021-09-29",20142,118,16560],["Worth","2021-09-30",20142,101,16661],["Worth","2021-10-01",20142,49,16710],["Worth","2021-10-02",20142,27,16737],["Worth","2021-10-03",20142,6,16743],["Worth","2021-10-04",20142,114,16857],["Worth","2021-10-05",20142,77,16934],["Worth","2021-10-06",20142,62,16996],["Worth","2021-10-07",20142,86,17082],["Worth","2021-10-08",20142,63,17145],["Worth","2021-10-09",20142,14,17159],["Worth","2021-10-10",20142,10,17169],["Worth","2021-10-11",20142,51,17220],["Worth","2021-10-12",20142,67,17287],["Worth","2021-10-13",20142,55,17342],["Worth","2021-10-14",20142,73,17415],["Worth","2021-10-15",20142,36,17451],["Worth","2021-10-16",20142,16,17467],["Worth","2021-10-17",20142,8,17475],["Worth","2021-10-18",20142,15,17490],["Worth","2021-10-19",20142,35,17525],["Worth","2021-10-20",20142,18,17543],["Worth","2021-10-21",20142,31,17574],["Worth","2021-10-22",20142,25,17599],["Worth","2021-10-23",20142,13,17612],["Worth","2021-10-24",20142,10,17622],["Worth","2021-10-25",20142,26,17648],["Worth","2021-10-26",20142,44,17692],["Worth","2021-10-27",20142,50,17742],["Worth","2021-10-28",20142,78,17820],["Worth","2021-10-29",20142,45,17865],["Worth","2021-10-30",20142,10,17875],["Worth","2021-10-31",20142,6,17881],["Worth","2021-11-01",20142,23,17904],["Worth","2021-11-02",20142,75,17979],["Worth","2021-11-03",20142,68,18047],["Worth","2021-11-04",20142,58,18105],["Worth","2021-11-05",20142,43,18148],["Worth","2021-11-06",20142,26,18174],["Worth","2021-11-07",20142,3,18177],["Worth","2021-11-08",20142,18,18195],["Worth","2021-11-09",20142,63,18258],["Worth","2021-11-10",20142,56,18314],["Worth","2021-11-11",20142,39,18353],["Worth","2021-11-12",20142,32,18385],["Worth","2021-11-13",20142,18,18403],["Worth","2021-11-14",20142,4,18407],["Worth","2021-11-15",20142,28,18435],["Worth","2021-11-16",20142,88,18523],["Worth","2021-11-17",20142,72,18595],["Worth","2021-11-18",20142,78,18673],["Worth","2021-11-19",20142,37,18710],["Worth","2021-11-20",20142,24,18734],["Worth","2021-11-21",20142,11,18745],["Worth","2021-11-22",20142,29,18774],["Worth","2021-11-23",20142,68,18842],["Worth","2021-11-24",20142,42,18884],["Worth","2021-11-26",20142,19,18903],["Worth","2021-11-27",20142,20,18923],["Worth","2021-11-28",20142,7,18930],["Worth","2021-11-29",20142,29,18959],["Worth","2021-11-30",20142,55,19014],["Worth","2021-12-01",20142,60,19074],["Worth","2021-12-02",20142,70,19144],["Worth","2021-12-03",20142,60,19204],["Worth","2021-12-04",20142,24,19228],["Worth","2021-12-05",20142,11,19239],["Worth","2021-12-06",20142,23,19262],["Worth","2021-12-07",20142,74,19336],["Worth","2021-12-08",20142,55,19391],["Worth","2021-12-09",20142,78,19469],["Worth","2021-12-10",20142,59,19528],["Worth","2021-12-11",20142,19,19547],["Worth","2021-12-12",20142,8,19555],["Worth","2021-12-13",20142,29,19584],["Worth","2021-12-14",20142,34,19618],["Worth","2021-12-15",20142,38,19656],["Worth","2021-12-16",20142,44,19700],["Worth","2021-12-17",20142,52,19752],["Worth","2021-12-18",20142,9,19761],["Worth","2021-12-19",20142,5,19766],["Worth","2021-12-20",20142,33,19799],["Worth","2021-12-21",20142,62,19861],["Worth","2021-12-22",20142,31,19892],["Worth","2021-12-23",20142,30,19922],["Worth","2021-12-24",20142,9,19931],["Worth","2021-12-26",20142,10,19941],["Worth","2021-12-27",20142,20,19961],["Worth","2021-12-28",20142,68,20029],["Worth","2021-12-29",20142,34,20063],["Worth","2021-12-30",20142,88,20151],["Worth","2021-12-31",20142,28,20179],["Worth","2022-01-01",20142,6,20185],["Worth","2022-01-02",20142,16,20201],["Worth","2022-01-03",20142,16,20217],["Unknown","2020-12-12",0,3,3],["Unknown","2020-12-13",0,2,5],["Unknown","2020-12-14",0,3,8],["Unknown","2020-12-15",0,8,16],["Unknown","2020-12-16",0,46,62],["Unknown","2020-12-17",0,217,279],["Unknown","2020-12-18",0,469,748],["Unknown","2020-12-19",0,196,944],["Unknown","2020-12-20",0,174,1118],["Unknown","2020-12-21",0,338,1456],["Unknown","2020-12-22",0,768,2224],["Unknown","2020-12-23",0,992,3216],["Unknown","2020-12-24",0,288,3504],["Unknown","2020-12-25",0,11,3515],["Unknown","2020-12-26",0,110,3625],["Unknown","2020-12-27",0,84,3709],["Unknown","2020-12-28",0,700,4409],["Unknown","2020-12-29",0,809,5218],["Unknown","2020-12-30",0,1019,6237],["Unknown","2020-12-31",0,443,6680],["Unknown","2021-01-01",0,226,6906],["Unknown","2021-01-02",0,106,7012],["Unknown","2021-01-03",0,74,7086],["Unknown","2021-01-04",0,734,7820],["Unknown","2021-01-05",0,1068,8888],["Unknown","2021-01-06",0,915,9803],["Unknown","2021-01-07",0,1012,10815],["Unknown","2021-01-08",0,1320,12135],["Unknown","2021-01-09",0,640,12775],["Unknown","2021-01-10",0,220,12995],["Unknown","2021-01-11",0,1477,14472],["Unknown","2021-01-12",0,1913,16385],["Unknown","2021-01-13",0,2258,18643],["Unknown","2021-01-14",0,2292,20935],["Unknown","2021-01-15",0,2174,23109],["Unknown","2021-01-16",0,1386,24495],["Unknown","2021-01-17",0,563,25058],["Unknown","2021-01-18",0,2236,27294],["Unknown","2021-01-19",0,2605,29899],["Unknown","2021-01-20",0,2662,32561],["Unknown","2021-01-21",0,2862,35423],["Unknown","2021-01-22",0,2398,37821],["Unknown","2021-01-23",0,559,38380],["Unknown","2021-01-24",0,265,38645],["Unknown","2021-01-25",0,1654,40299],["Unknown","2021-01-26",0,1878,42177],["Unknown","2021-01-27",0,2010,44187],["Unknown","2021-01-28",0,3621,47808],["Unknown","2021-01-29",0,2516,50324],["Unknown","2021-01-30",0,613,50937],["Unknown","2021-01-31",0,149,51086],["Unknown","2021-02-01",0,1848,52934],["Unknown","2021-02-02",0,1791,54725],["Unknown","2021-02-03",0,1943,56668],["Unknown","2021-02-04",0,2447,59115],["Unknown","2021-02-05",0,2516,61631],["Unknown","2021-02-06",0,636,62267],["Unknown","2021-02-07",0,317,62584],["Unknown","2021-02-08",0,1640,64224],["Unknown","2021-02-09",0,2119,66343],["Unknown","2021-02-10",0,2099,68442],["Unknown","2021-02-11",0,2398,70840],["Unknown","2021-02-12",0,2573,73413],["Unknown","2021-02-13",0,1423,74836],["Unknown","2021-02-14",0,706,75542],["Unknown","2021-02-15",0,2390,77932],["Unknown","2021-02-16",0,2402,80334],["Unknown","2021-02-17",0,2627,82961],["Unknown","2021-02-18",0,2825,85786],["Unknown","2021-02-19",0,3246,89032],["Unknown","2021-02-20",0,930,89962],["Unknown","2021-02-21",0,407,90369],["Unknown","2021-02-22",0,1329,91698],["Unknown","2021-02-23",0,2086,93784],["Unknown","2021-02-24",0,2100,95884],["Unknown","2021-02-25",0,4167,100051],["Unknown","2021-02-26",0,3957,104008],["Unknown","2021-02-27",0,1006,105014],["Unknown","2021-02-28",0,451,105465],["Unknown","2021-03-01",0,2152,107617],["Unknown","2021-03-02",0,2324,109941],["Unknown","2021-03-03",0,2718,112659],["Unknown","2021-03-04",0,2805,115464],["Unknown","2021-03-05",0,3191,118655],["Unknown","2021-03-06",0,1033,119688],["Unknown","2021-03-07",0,539,120227],["Unknown","2021-03-08",0,2536,122763],["Unknown","2021-03-09",0,3469,126232],["Unknown","2021-03-10",0,3232,129464],["Unknown","2021-03-11",0,3422,132886],["Unknown","2021-03-12",0,3689,136575],["Unknown","2021-03-13",0,1610,138185],["Unknown","2021-03-14",0,703,138888],["Unknown","2021-03-15",0,3125,142013],["Unknown","2021-03-16",0,3899,145912],["Unknown","2021-03-17",0,3645,149557],["Unknown","2021-03-18",0,3604,153161],["Unknown","2021-03-19",0,4379,157540],["Unknown","2021-03-20",0,1879,159419],["Unknown","2021-03-21",0,1059,160478],["Unknown","2021-03-22",0,3404,163882],["Unknown","2021-03-23",0,4323,168205],["Unknown","2021-03-24",0,4264,172469],["Unknown","2021-03-25",0,4678,177147],["Unknown","2021-03-26",0,4950,182097],["Unknown","2021-03-27",0,2591,184688],["Unknown","2021-03-28",0,1246,185934],["Unknown","2021-03-29",0,4200,190134],["Unknown","2021-03-30",0,6402,196536],["Unknown","2021-03-31",0,6388,202924],["Unknown","2021-04-01",0,6621,209545],["Unknown","2021-04-02",0,5693,215238],["Unknown","2021-04-03",0,2051,217289],["Unknown","2021-04-04",0,1087,218376],["Unknown","2021-04-05",0,4888,223264],["Unknown","2021-04-06",0,5582,228846],["Unknown","2021-04-07",0,5562,234408],["Unknown","2021-04-08",0,4960,239368],["Unknown","2021-04-09",0,5696,245064],["Unknown","2021-04-10",0,2681,247745],["Unknown","2021-04-11",0,1270,249015],["Unknown","2021-04-12",0,4758,253773],["Unknown","2021-04-13",0,5309,259082],["Unknown","2021-04-14",0,5042,264124],["Unknown","2021-04-15",0,5076,269200],["Unknown","2021-04-16",0,5643,274843],["Unknown","2021-04-17",0,2794,277637],["Unknown","2021-04-18",0,1730,279367],["Unknown","2021-04-19",0,4479,283846],["Unknown","2021-04-20",0,5449,289295],["Unknown","2021-04-21",0,5402,294697],["Unknown","2021-04-22",0,5558,300255],["Unknown","2021-04-23",0,6023,306278],["Unknown","2021-04-24",0,3102,309380],["Unknown","2021-04-25",0,1820,311200],["Unknown","2021-04-26",0,4374,315574],["Unknown","2021-04-27",0,4798,320372],["Unknown","2021-04-28",0,5365,325737],["Unknown","2021-04-29",0,4613,330350],["Unknown","2021-04-30",0,5687,336037],["Unknown","2021-05-01",0,2937,338974],["Unknown","2021-05-02",0,1642,340616],["Unknown","2021-05-03",0,3154,343770],["Unknown","2021-05-04",0,4059,347829],["Unknown","2021-05-05",0,4153,351982],["Unknown","2021-05-06",0,3905,355887],["Unknown","2021-05-07",0,4822,360709],["Unknown","2021-05-08",0,2599,363308],["Unknown","2021-05-09",0,1389,364697],["Unknown","2021-05-10",0,2852,367549],["Unknown","2021-05-11",0,3864,371413],["Unknown","2021-05-12",0,4148,375561],["Unknown","2021-05-13",0,3749,379310],["Unknown","2021-05-14",0,4236,383546],["Unknown","2021-05-15",0,3420,386966],["Unknown","2021-05-16",0,2510,389476],["Unknown","2021-05-17",0,3773,393249],["Unknown","2021-05-18",0,4424,397673],["Unknown","2021-05-19",0,4042,401715],["Unknown","2021-05-20",0,3893,405608],["Unknown","2021-05-21",0,3870,409478],["Unknown","2021-05-22",0,3258,412736],["Unknown","2021-05-23",0,1880,414616],["Unknown","2021-05-24",0,2886,417502],["Unknown","2021-05-25",0,3204,420706],["Unknown","2021-05-26",0,3372,424078],["Unknown","2021-05-27",0,2877,426955],["Unknown","2021-05-28",0,2979,429934],["Unknown","2021-05-29",0,2093,432027],["Unknown","2021-05-30",0,1622,433649],["Unknown","2021-05-31",0,652,434301],["Unknown","2021-06-01",0,3602,437903],["Unknown","2021-06-02",0,3178,441081],["Unknown","2021-06-03",0,2992,444073],["Unknown","2021-06-04",0,3796,447869],["Unknown","2021-06-05",0,3002,450871],["Unknown","2021-06-06",0,2185,453056],["Unknown","2021-06-07",0,3073,456129],["Unknown","2021-06-08",0,3189,459318],["Unknown","2021-06-09",0,2746,462064],["Unknown","2021-06-10",0,2981,465045],["Unknown","2021-06-11",0,3378,468423],["Unknown","2021-06-12",0,3068,471491],["Unknown","2021-06-13",0,1594,473085],["Unknown","2021-06-14",0,2626,475711],["Unknown","2021-06-15",0,2717,478428],["Unknown","2021-06-16",0,2423,480851],["Unknown","2021-06-17",0,2539,483390],["Unknown","2021-06-18",0,2669,486059],["Unknown","2021-06-19",0,2082,488141],["Unknown","2021-06-20",0,1365,489506],["Unknown","2021-06-21",0,1849,491355],["Unknown","2021-06-22",0,2411,493766],["Unknown","2021-06-23",0,2514,496280],["Unknown","2021-06-24",0,2058,498338],["Unknown","2021-06-25",0,2326,500664],["Unknown","2021-06-26",0,2039,502703],["Unknown","2021-06-27",0,1561,504264],["Unknown","2021-06-28",0,2065,506329],["Unknown","2021-06-29",0,2025,508354],["Unknown","2021-06-30",0,1886,510240],["Unknown","2021-07-01",0,1814,512054],["Unknown","2021-07-02",0,2118,514172],["Unknown","2021-07-03",0,2876,517048],["Unknown","2021-07-04",0,231,517279],["Unknown","2021-07-05",0,1998,519277],["Unknown","2021-07-06",0,1872,521149],["Unknown","2021-07-07",0,2069,523218],["Unknown","2021-07-08",0,1819,525037],["Unknown","2021-07-09",0,2213,527250],["Unknown","2021-07-10",0,1891,529141],["Unknown","2021-07-11",0,1434,530575],["Unknown","2021-07-12",0,2063,532638],["Unknown","2021-07-13",0,1894,534532],["Unknown","2021-07-14",0,1827,536359],["Unknown","2021-07-15",0,1915,538274],["Unknown","2021-07-16",0,2058,540332],["Unknown","2021-07-17",0,1919,542251],["Unknown","2021-07-18",0,1406,543657],["Unknown","2021-07-19",0,2289,545946],["Unknown","2021-07-20",0,2239,548185],["Unknown","2021-07-21",0,2511,550696],["Unknown","2021-07-22",0,2318,553014],["Unknown","2021-07-23",0,2750,555764],["Unknown","2021-07-24",0,2648,558412],["Unknown","2021-07-25",0,1484,559896],["Unknown","2021-07-26",0,2748,562644],["Unknown","2021-07-27",0,2835,565479],["Unknown","2021-07-28",0,2961,568440],["Unknown","2021-07-29",0,2797,571237],["Unknown","2021-07-30",0,3551,574788],["Unknown","2021-07-31",0,3090,577878],["Unknown","2021-08-01",0,2696,580574],["Unknown","2021-08-02",0,3138,583712],["Unknown","2021-08-03",0,3104,586816],["Unknown","2021-08-04",0,3229,590045],["Unknown","2021-08-05",0,2977,593022],["Unknown","2021-08-06",0,3829,596851],["Unknown","2021-08-07",0,3382,600233],["Unknown","2021-08-08",0,3144,603377],["Unknown","2021-08-09",0,3307,606684],["Unknown","2021-08-10",0,3517,610201],["Unknown","2021-08-11",0,3193,613394],["Unknown","2021-08-12",0,3206,616600],["Unknown","2021-08-13",0,6207,622807],["Unknown","2021-08-14",0,3909,626716],["Unknown","2021-08-15",0,2608,629324],["Unknown","2021-08-16",0,5697,635021],["Unknown","2021-08-17",0,7190,642211],["Unknown","2021-08-18",0,6759,648970],["Unknown","2021-08-19",0,6587,655557],["Unknown","2021-08-20",0,7937,663494],["Unknown","2021-08-21",0,5809,669303],["Unknown","2021-08-22",0,4180,673483],["Unknown","2021-08-23",0,6355,679838],["Unknown","2021-08-24",0,6486,686324],["Unknown","2021-08-25",0,6697,693021],["Unknown","2021-08-26",0,6751,699772],["Unknown","2021-08-27",0,7715,707487],["Unknown","2021-08-28",0,6282,713769],["Unknown","2021-08-29",0,4247,718016],["Unknown","2021-08-30",0,6645,724661],["Unknown","2021-08-31",0,6404,731065],["Unknown","2021-09-01",0,6466,737531],["Unknown","2021-09-02",0,6183,743714],["Unknown","2021-09-03",0,8304,752018],["Unknown","2021-09-04",0,5598,757616],["Unknown","2021-09-05",0,4243,761859],["Unknown","2021-09-06",0,1648,763507],["Unknown","2021-09-07",0,7560,771067],["Unknown","2021-09-08",0,7469,778536],["Unknown","2021-09-09",0,7430,785966],["Unknown","2021-09-10",0,9220,795186],["Unknown","2021-09-11",0,6616,801802],["Unknown","2021-09-12",0,4748,806550],["Unknown","2021-09-13",0,7432,813982],["Unknown","2021-09-14",0,7360,821342],["Unknown","2021-09-15",0,7049,828391],["Unknown","2021-09-16",0,7139,835530],["Unknown","2021-09-17",0,8662,844192],["Unknown","2021-09-18",0,6623,850815],["Unknown","2021-09-19",0,4393,855208],["Unknown","2021-09-20",0,7017,862225],["Unknown","2021-09-21",0,6333,868558],["Unknown","2021-09-22",0,6363,874921],["Unknown","2021-09-23",0,5901,880822],["Unknown","2021-09-24",0,7639,888461],["Unknown","2021-09-25",0,5337,893798],["Unknown","2021-09-26",0,3796,897594],["Unknown","2021-09-27",0,5268,902862],["Unknown","2021-09-28",0,6184,909046],["Unknown","2021-09-29",0,6024,915070],["Unknown","2021-09-30",0,6166,921236],["Unknown","2021-10-01",0,7579,928815],["Unknown","2021-10-02",0,5121,933936],["Unknown","2021-10-03",0,3341,937277],["Unknown","2021-10-04",0,5414,942691],["Unknown","2021-10-05",0,5262,947953],["Unknown","2021-10-06",0,5289,953242],["Unknown","2021-10-07",0,5019,958261],["Unknown","2021-10-08",0,6286,964547],["Unknown","2021-10-09",0,4037,968584],["Unknown","2021-10-10",0,2915,971499],["Unknown","2021-10-11",0,4565,976064],["Unknown","2021-10-12",0,4404,980468],["Unknown","2021-10-13",0,4506,984974],["Unknown","2021-10-14",0,4174,989148],["Unknown","2021-10-15",0,5184,994332],["Unknown","2021-10-16",0,3368,997700],["Unknown","2021-10-17",0,2269,999969],["Unknown","2021-10-18",0,4652,1004621],["Unknown","2021-10-19",0,3635,1008256],["Unknown","2021-10-20",0,3458,1011714],["Unknown","2021-10-21",0,3512,1015226],["Unknown","2021-10-22",0,5219,1020445],["Unknown","2021-10-23",0,3753,1024198],["Unknown","2021-10-24",0,2552,1026750],["Unknown","2021-10-25",0,4968,1031718],["Unknown","2021-10-26",0,4676,1036394],["Unknown","2021-10-27",0,4975,1041369],["Unknown","2021-10-28",0,4671,1046040],["Unknown","2021-10-29",0,5657,1051697],["Unknown","2021-10-30",0,3368,1055065],["Unknown","2021-10-31",0,2192,1057257],["Unknown","2021-11-01",0,4729,1061986],["Unknown","2021-11-02",0,4535,1066521],["Unknown","2021-11-03",0,4783,1071304],["Unknown","2021-11-04",0,4547,1075851],["Unknown","2021-11-05",0,5999,1081850],["Unknown","2021-11-06",0,4767,1086617],["Unknown","2021-11-07",0,3056,1089673],["Unknown","2021-11-08",0,5276,1094949],["Unknown","2021-11-09",0,5709,1100658],["Unknown","2021-11-10",0,5160,1105818],["Unknown","2021-11-11",0,5016,1110834],["Unknown","2021-11-12",0,6240,1117074],["Unknown","2021-11-13",0,5008,1122082],["Unknown","2021-11-14",0,2538,1124620],["Unknown","2021-11-15",0,5981,1130601],["Unknown","2021-11-16",0,5117,1135718],["Unknown","2021-11-17",0,4738,1140456],["Unknown","2021-11-18",0,5157,1145613],["Unknown","2021-11-19",0,6117,1151730],["Unknown","2021-11-20",0,4501,1156231],["Unknown","2021-11-21",0,2709,1158940],["Unknown","2021-11-22",0,5626,1164566],["Unknown","2021-11-23",0,5317,1169883],["Unknown","2021-11-24",0,4325,1174208],["Unknown","2021-11-25",0,30,1174238],["Unknown","2021-11-26",0,4789,1179027],["Unknown","2021-11-27",0,3837,1182864],["Unknown","2021-11-28",0,3009,1185873],["Unknown","2021-11-29",0,6163,1192036],["Unknown","2021-11-30",0,6610,1198646],["Unknown","2021-12-01",0,7084,1205730],["Unknown","2021-12-02",0,6646,1212376],["Unknown","2021-12-03",0,8223,1220599],["Unknown","2021-12-04",0,6063,1226662],["Unknown","2021-12-05",0,3071,1229733],["Unknown","2021-12-06",0,5844,1235577],["Unknown","2021-12-07",0,6260,1241837],["Unknown","2021-12-08",0,5617,1247454],["Unknown","2021-12-09",0,5538,1252992],["Unknown","2021-12-10",0,6500,1259492],["Unknown","2021-12-11",0,4448,1263940],["Unknown","2021-12-12",0,2749,1266689],["Unknown","2021-12-13",0,4773,1271462],["Unknown","2021-12-14",0,4980,1276442],["Unknown","2021-12-15",0,4726,1281168],["Unknown","2021-12-16",0,4249,1285417],["Unknown","2021-12-17",0,5710,1291127],["Unknown","2021-12-18",0,4168,1295295],["Unknown","2021-12-19",0,2723,1298018],["Unknown","2021-12-20",0,5734,1303752],["Unknown","2021-12-21",0,5790,1309542],["Unknown","2021-12-22",0,5689,1315231],["Unknown","2021-12-23",0,4776,1320007],["Unknown","2021-12-24",0,1913,1321920],["Unknown","2021-12-25",0,8,1321928],["Unknown","2021-12-26",0,2237,1324165],["Unknown","2021-12-27",0,5314,1329479],["Unknown","2021-12-28",0,5787,1335266],["Unknown","2021-12-29",0,5896,1341162],["Unknown","2021-12-30",0,4870,1346032],["Unknown","2021-12-31",0,2838,1348870],["Unknown","2022-01-01",0,548,1349418],["Unknown","2022-01-02",0,2153,1351571],["Unknown","2022-01-03",0,1897,1353468]]} \ No newline at end of file diff --git a/src/components/charts/overall/cases/ChipsCases.vue b/src/components/charts/overall/cases/ChipsCases.vue index 13f3dcf70..c8338e56e 100644 --- a/src/components/charts/overall/cases/ChipsCases.vue +++ b/src/components/charts/overall/cases/ChipsCases.vue @@ -90,9 +90,7 @@ const chips = reactive({ const yesterday = col(data, data.value.rows.at(-2), 'cases') const change = today - yesterday - const percent = change > 0 - ? ((change / yesterday) * 100) - : ((change / today) * 100) + const percent = (change / Math.abs(prev)) * 100 if (Math.abs(percent) === Infinity) return 100 if (isNaN(percent)) return 0 @@ -129,9 +127,7 @@ const chips = reactive({ const yesterday = today - col(data, data.value.rows.at(-1), 'cases') const change = today - yesterday - const percent = change > 0 - ? ((change / yesterday) * 100) - : ((change / today) * 100) + const percent = (change / Math.abs(prev)) * 100 if (Math.abs(percent) === Infinity) return 100 if (isNaN(percent)) return 0 diff --git a/src/components/charts/overall/hospitalizations/ChipsHospitalizations.vue b/src/components/charts/overall/hospitalizations/ChipsHospitalizations.vue index 68aa738a0..aa850cde2 100644 --- a/src/components/charts/overall/hospitalizations/ChipsHospitalizations.vue +++ b/src/components/charts/overall/hospitalizations/ChipsHospitalizations.vue @@ -67,9 +67,7 @@ const chips = reactive({ const yesterday = col(data, data.value.rows.at(-2), 'hospitalizations') const change = today - yesterday - const percent = change > 0 - ? ((change / yesterday) * 100) - : ((change / today) * 100) + const percent = (change / Math.abs(prev)) * 100 if (Math.abs(percent) === Infinity) return 100 if (isNaN(percent)) return 0 diff --git a/src/components/charts/summary/ChipsSummary.vue b/src/components/charts/summary/ChipsSummary.vue index 24cafae88..c97ad83f6 100644 --- a/src/components/charts/summary/ChipsSummary.vue +++ b/src/components/charts/summary/ChipsSummary.vue @@ -122,9 +122,7 @@ const chips = reactive({ const yesterday = col(data.value.testing, data.value.testing.prev, 'combined_performed') const change = today - yesterday - const percent = change > 0 - ? ((change / yesterday) * 100) - : ((change / today) * 100) + const percent = (change / Math.abs(prev)) * 100 if (Math.abs(percent) === Infinity) return 100 if (isNaN(percent)) return 0 @@ -159,9 +157,7 @@ const chips = reactive({ const yesterday = col(data.value.cases, data.value.cases.prev, 'cases') const change = today - yesterday - const percent = change > 0 - ? ((change / yesterday) * 100) - : ((change / today) * 100) + const percent = (change / Math.abs(prev)) * 100 if (Math.abs(percent) === Infinity) return 100 if (isNaN(percent)) return 0 @@ -190,9 +186,7 @@ const chips = reactive({ const yesterday = col(data.value.deaths, data.value.deaths.prev, 'deaths') const change = today - yesterday - const percent = change > 0 - ? ((change / yesterday) * 100) - : ((change / today) * 100) + const percent = (change / Math.abs(prev)) * 100 if (Math.abs(percent) === Infinity) return 100 if (isNaN(percent)) return 0